diff --git a/lsteamclient/cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001.cpp b/lsteamclient/cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001.cpp index 2fce1666..92151ea7 100644 --- a/lsteamclient/cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001.cpp +++ b/lsteamclient/cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001.cpp @@ -1,34 +1,43 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001.h" -void cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetNumInstalledApps( struct cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetNumInstalledApps_params *params ) +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; params->_ret = iface->GetNumInstalledApps( ); + return 0; } -void cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetInstalledApps( struct cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetInstalledApps_params *params ) +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; params->_ret = iface->GetInstalledApps( params->pvecAppID, params->unMaxAppIDs ); + return 0; } -void cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName( struct cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName_params *params ) +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; params->_ret = iface->GetAppName( params->nAppID, params->pchName, params->cchNameMax ); + return 0; } -void cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInstallDir( struct cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInstallDir_params *params ) +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; params->_ret = iface->GetAppInstallDir( params->nAppID, params->pchDirectory, params->cchNameMax ); + return 0; } -void cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppBuildId( struct cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppBuildId_params *params ) +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; params->_ret = iface->GetAppBuildId( params->nAppID ); + return 0; } diff --git a/lsteamclient/cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001.h b/lsteamclient/cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001.h deleted file mode 100644 index 6f29b592..00000000 --- a/lsteamclient/cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001.h +++ /dev/null @@ -1,56 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetNumInstalledApps_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetNumInstalledApps( struct cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetNumInstalledApps_params *params ); - -struct cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetInstalledApps_params -{ - void *linux_side; - uint32_t _ret; - uint32_t *pvecAppID; - uint32_t unMaxAppIDs; -}; -extern void cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetInstalledApps( struct cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetInstalledApps_params *params ); - -struct cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName_params -{ - void *linux_side; - int32_t _ret; - uint32_t nAppID; - char *pchName; - int32_t cchNameMax; -}; -extern void cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName( struct cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName_params *params ); - -struct cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInstallDir_params -{ - void *linux_side; - int32_t _ret; - uint32_t nAppID; - char *pchDirectory; - int32_t cchNameMax; -}; -extern void cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInstallDir( struct cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInstallDir_params *params ); - -struct cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppBuildId_params -{ - void *linux_side; - int32_t _ret; - uint32_t nAppID; -}; -extern void cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppBuildId( struct cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppBuildId_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001.cpp b/lsteamclient/cppISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001.cpp index 4cec4d6c..7423305c 100644 --- a/lsteamclient/cppISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001.cpp +++ b/lsteamclient/cppISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001.cpp @@ -1,10 +1,11 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001.h" -void cppISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001_GetAppOwnershipTicketData( struct cppISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001_GetAppOwnershipTicketData_params *params ) +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; params->_ret = iface->GetAppOwnershipTicketData( params->nAppID, params->pvBuffer, params->cbBufferLength, params->piAppId, params->piSteamId, params->piSignature, params->pcbSignature ); + return 0; } diff --git a/lsteamclient/cppISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001.h b/lsteamclient/cppISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001.h deleted file mode 100644 index 119b787d..00000000 --- a/lsteamclient/cppISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001.h +++ /dev/null @@ -1,26 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001_GetAppOwnershipTicketData_params -{ - void *linux_side; - uint32_t _ret; - uint32_t nAppID; - void *pvBuffer; - uint32_t cbBufferLength; - uint32_t *piAppId; - uint32_t *piSteamId; - uint32_t *piSignature; - uint32_t *pcbSignature; -}; -extern void cppISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001_GetAppOwnershipTicketData( struct cppISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001_GetAppOwnershipTicketData_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION001.cpp b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION001.cpp index 120b97c0..c61a397e 100644 --- a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION001.cpp +++ b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION001.cpp @@ -1,10 +1,11 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamApps_STEAMAPPS_INTERFACE_VERSION001.h" -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION001_GetAppData( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION001_GetAppData_params *params ) +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; params->_ret = iface->GetAppData( params->nAppID, params->pchKey, params->pchValue, params->cchValueMax ); + return 0; } diff --git a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION001.h b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION001.h deleted file mode 100644 index 3e82a647..00000000 --- a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION001.h +++ /dev/null @@ -1,23 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION001_GetAppData_params -{ - void *linux_side; - int32_t _ret; - uint32_t nAppID; - const char *pchKey; - char *pchValue; - int32_t cchValueMax; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION001_GetAppData( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION001_GetAppData_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION002.cpp b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION002.cpp index f69aaef2..74dcbd45 100644 --- a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION002.cpp +++ b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION002.cpp @@ -1,46 +1,59 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamApps_STEAMAPPS_INTERFACE_VERSION002.h" -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed_params *params ) +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; params->_ret = iface->BIsSubscribed( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence_params *params ) +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; params->_ret = iface->BIsLowViolence( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe_params *params ) +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; params->_ret = iface->BIsCybercafe( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned_params *params ) +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; params->_ret = iface->BIsVACBanned( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentGameLanguage( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentGameLanguage_params *params ) +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; params->_ret = iface->GetCurrentGameLanguage( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages_params *params ) +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; params->_ret = iface->GetAvailableGameLanguages( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp_params *params ) +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; params->_ret = iface->BIsSubscribedApp( params->appID ); + return 0; } diff --git a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION002.h b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION002.h deleted file mode 100644 index 3c91a537..00000000 --- a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION002.h +++ /dev/null @@ -1,62 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentGameLanguage_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentGameLanguage( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentGameLanguage_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp_params -{ - void *linux_side; - bool _ret; - uint32_t appID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION003.cpp b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION003.cpp index adbf3ac8..27e1f8d0 100644 --- a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION003.cpp +++ b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION003.cpp @@ -1,52 +1,67 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamApps_STEAMAPPS_INTERFACE_VERSION003.h" -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribed( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribed_params *params ) +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; params->_ret = iface->BIsSubscribed( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsLowViolence( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsLowViolence_params *params ) +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; params->_ret = iface->BIsLowViolence( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsCybercafe( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsCybercafe_params *params ) +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; params->_ret = iface->BIsCybercafe( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsVACBanned( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsVACBanned_params *params ) +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; params->_ret = iface->BIsVACBanned( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetCurrentGameLanguage( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetCurrentGameLanguage_params *params ) +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; params->_ret = iface->GetCurrentGameLanguage( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetAvailableGameLanguages( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetAvailableGameLanguages_params *params ) +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; params->_ret = iface->GetAvailableGameLanguages( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp_params *params ) +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; params->_ret = iface->BIsSubscribedApp( params->appID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsDlcInstalled( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsDlcInstalled_params *params ) +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; params->_ret = iface->BIsDlcInstalled( params->appID ); + return 0; } diff --git a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION003.h b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION003.h deleted file mode 100644 index 1f8a09b7..00000000 --- a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION003.h +++ /dev/null @@ -1,70 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribed_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribed( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribed_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsLowViolence_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsLowViolence( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsLowViolence_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsCybercafe_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsCybercafe( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsCybercafe_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsVACBanned_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsVACBanned( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsVACBanned_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetCurrentGameLanguage_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetCurrentGameLanguage( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetCurrentGameLanguage_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetAvailableGameLanguages_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetAvailableGameLanguages( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetAvailableGameLanguages_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp_params -{ - void *linux_side; - bool _ret; - uint32_t appID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsDlcInstalled_params -{ - void *linux_side; - bool _ret; - uint32_t appID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsDlcInstalled( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsDlcInstalled_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION004.cpp b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION004.cpp index 562cfd83..1283f451 100644 --- a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION004.cpp +++ b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION004.cpp @@ -1,88 +1,115 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamApps_STEAMAPPS_INTERFACE_VERSION004.h" -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribed( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribed_params *params ) +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; params->_ret = iface->BIsSubscribed( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsLowViolence( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsLowViolence_params *params ) +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; params->_ret = iface->BIsLowViolence( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsCybercafe( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsCybercafe_params *params ) +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; params->_ret = iface->BIsCybercafe( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsVACBanned( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsVACBanned_params *params ) +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; params->_ret = iface->BIsVACBanned( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetCurrentGameLanguage( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetCurrentGameLanguage_params *params ) +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; params->_ret = iface->GetCurrentGameLanguage( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetAvailableGameLanguages( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetAvailableGameLanguages_params *params ) +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; params->_ret = iface->GetAvailableGameLanguages( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedApp( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedApp_params *params ) +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; params->_ret = iface->BIsSubscribedApp( params->appID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsDlcInstalled( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsDlcInstalled_params *params ) +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; params->_ret = iface->BIsDlcInstalled( params->appID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetEarliestPurchaseUnixTime( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetEarliestPurchaseUnixTime_params *params ) +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; params->_ret = iface->GetEarliestPurchaseUnixTime( params->nAppID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedFromFreeWeekend( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedFromFreeWeekend_params *params ) +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; params->_ret = iface->BIsSubscribedFromFreeWeekend( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetDLCCount( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetDLCCount_params *params ) +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; params->_ret = iface->GetDLCCount( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByIndex( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByIndex_params *params ) +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; params->_ret = iface->BGetDLCDataByIndex( params->iDLC, params->pAppID, params->pbAvailable, params->pchName, params->cchNameBufferSize ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_InstallDLC( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_InstallDLC_params *params ) +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; iface->InstallDLC( params->nAppID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_UninstallDLC( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_UninstallDLC_params *params ) +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; iface->UninstallDLC( params->nAppID ); + return 0; } diff --git a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION004.h b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION004.h deleted file mode 100644 index d49ff5ed..00000000 --- a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION004.h +++ /dev/null @@ -1,118 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribed_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribed( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribed_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsLowViolence_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsLowViolence( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsLowViolence_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsCybercafe_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsCybercafe( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsCybercafe_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsVACBanned_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsVACBanned( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsVACBanned_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetCurrentGameLanguage_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetCurrentGameLanguage( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetCurrentGameLanguage_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetAvailableGameLanguages_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetAvailableGameLanguages( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetAvailableGameLanguages_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedApp_params -{ - void *linux_side; - bool _ret; - uint32_t appID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedApp( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedApp_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsDlcInstalled_params -{ - void *linux_side; - bool _ret; - uint32_t appID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsDlcInstalled( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsDlcInstalled_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetEarliestPurchaseUnixTime_params -{ - void *linux_side; - uint32_t _ret; - uint32_t nAppID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetEarliestPurchaseUnixTime( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetEarliestPurchaseUnixTime_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedFromFreeWeekend_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedFromFreeWeekend( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedFromFreeWeekend_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetDLCCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetDLCCount( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetDLCCount_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByIndex_params -{ - void *linux_side; - bool _ret; - int32_t iDLC; - uint32_t *pAppID; - bool *pbAvailable; - char *pchName; - int32_t cchNameBufferSize; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByIndex( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByIndex_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_InstallDLC_params -{ - void *linux_side; - uint32_t nAppID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_InstallDLC( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_InstallDLC_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_UninstallDLC_params -{ - void *linux_side; - uint32_t nAppID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_UninstallDLC( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_UninstallDLC_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION005.cpp b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION005.cpp index 38863eec..7cc01b49 100644 --- a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION005.cpp +++ b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION005.cpp @@ -1,124 +1,163 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamApps_STEAMAPPS_INTERFACE_VERSION005.h" -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribed( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribed_params *params ) +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; params->_ret = iface->BIsSubscribed( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsLowViolence( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsLowViolence_params *params ) +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; params->_ret = iface->BIsLowViolence( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsCybercafe( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsCybercafe_params *params ) +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; params->_ret = iface->BIsCybercafe( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsVACBanned( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsVACBanned_params *params ) +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; params->_ret = iface->BIsVACBanned( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentGameLanguage( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentGameLanguage_params *params ) +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; params->_ret = iface->GetCurrentGameLanguage( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAvailableGameLanguages( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAvailableGameLanguages_params *params ) +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; params->_ret = iface->GetAvailableGameLanguages( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedApp( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedApp_params *params ) +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; params->_ret = iface->BIsSubscribedApp( params->appID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsDlcInstalled( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsDlcInstalled_params *params ) +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; params->_ret = iface->BIsDlcInstalled( params->appID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetEarliestPurchaseUnixTime( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetEarliestPurchaseUnixTime_params *params ) +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; params->_ret = iface->GetEarliestPurchaseUnixTime( params->nAppID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedFromFreeWeekend( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedFromFreeWeekend_params *params ) +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; params->_ret = iface->BIsSubscribedFromFreeWeekend( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetDLCCount( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetDLCCount_params *params ) +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; params->_ret = iface->GetDLCCount( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BGetDLCDataByIndex( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BGetDLCDataByIndex_params *params ) +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; params->_ret = iface->BGetDLCDataByIndex( params->iDLC, params->pAppID, params->pbAvailable, params->pchName, params->cchNameBufferSize ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_InstallDLC( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_InstallDLC_params *params ) +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; iface->InstallDLC( params->nAppID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_UninstallDLC( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_UninstallDLC_params *params ) +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; iface->UninstallDLC( params->nAppID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_RequestAppProofOfPurchaseKey( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_RequestAppProofOfPurchaseKey_params *params ) +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; iface->RequestAppProofOfPurchaseKey( params->nAppID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaName( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaName_params *params ) +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; params->_ret = iface->GetCurrentBetaName( params->pchName, params->cchNameBufferSize ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_MarkContentCorrupt( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_MarkContentCorrupt_params *params ) +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; params->_ret = iface->MarkContentCorrupt( params->bMissingFilesOnly ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetInstalledDepots( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetInstalledDepots_params *params ) +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; params->_ret = iface->GetInstalledDepots( params->pvecDepots, params->cMaxDepots ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAppInstallDir( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAppInstallDir_params *params ) +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; params->_ret = iface->GetAppInstallDir( params->appID, params->pchFolder, params->cchFolderBufferSize ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsAppInstalled( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsAppInstalled_params *params ) +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; params->_ret = iface->BIsAppInstalled( params->appID ); + return 0; } diff --git a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION005.h b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION005.h deleted file mode 100644 index b3cad553..00000000 --- a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION005.h +++ /dev/null @@ -1,169 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribed_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribed( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribed_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsLowViolence_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsLowViolence( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsLowViolence_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsCybercafe_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsCybercafe( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsCybercafe_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsVACBanned_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsVACBanned( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsVACBanned_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentGameLanguage_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentGameLanguage( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentGameLanguage_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAvailableGameLanguages_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAvailableGameLanguages( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAvailableGameLanguages_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedApp_params -{ - void *linux_side; - bool _ret; - uint32_t appID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedApp( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedApp_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsDlcInstalled_params -{ - void *linux_side; - bool _ret; - uint32_t appID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsDlcInstalled( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsDlcInstalled_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetEarliestPurchaseUnixTime_params -{ - void *linux_side; - uint32_t _ret; - uint32_t nAppID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetEarliestPurchaseUnixTime( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetEarliestPurchaseUnixTime_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedFromFreeWeekend_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedFromFreeWeekend( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedFromFreeWeekend_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetDLCCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetDLCCount( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetDLCCount_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BGetDLCDataByIndex_params -{ - void *linux_side; - bool _ret; - int32_t iDLC; - uint32_t *pAppID; - bool *pbAvailable; - char *pchName; - int32_t cchNameBufferSize; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BGetDLCDataByIndex( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BGetDLCDataByIndex_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_InstallDLC_params -{ - void *linux_side; - uint32_t nAppID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_InstallDLC( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_InstallDLC_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_UninstallDLC_params -{ - void *linux_side; - uint32_t nAppID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_UninstallDLC( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_UninstallDLC_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_RequestAppProofOfPurchaseKey_params -{ - void *linux_side; - uint32_t nAppID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_RequestAppProofOfPurchaseKey( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_RequestAppProofOfPurchaseKey_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaName_params -{ - void *linux_side; - bool _ret; - char *pchName; - int32_t cchNameBufferSize; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaName( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaName_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_MarkContentCorrupt_params -{ - void *linux_side; - bool _ret; - bool bMissingFilesOnly; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_MarkContentCorrupt( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_MarkContentCorrupt_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetInstalledDepots_params -{ - void *linux_side; - uint32_t _ret; - uint32_t *pvecDepots; - uint32_t cMaxDepots; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetInstalledDepots( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetInstalledDepots_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAppInstallDir_params -{ - void *linux_side; - uint32_t _ret; - uint32_t appID; - char *pchFolder; - uint32_t cchFolderBufferSize; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAppInstallDir( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAppInstallDir_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsAppInstalled_params -{ - void *linux_side; - bool _ret; - uint32_t appID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsAppInstalled( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsAppInstalled_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION006.cpp b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION006.cpp index 1c63392d..6c1f802a 100644 --- a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION006.cpp +++ b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION006.cpp @@ -1,136 +1,179 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamApps_STEAMAPPS_INTERFACE_VERSION006.h" -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribed( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribed_params *params ) +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; params->_ret = iface->BIsSubscribed( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsLowViolence( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsLowViolence_params *params ) +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; params->_ret = iface->BIsLowViolence( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsCybercafe( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsCybercafe_params *params ) +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; params->_ret = iface->BIsCybercafe( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsVACBanned( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsVACBanned_params *params ) +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; params->_ret = iface->BIsVACBanned( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentGameLanguage( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentGameLanguage_params *params ) +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; params->_ret = iface->GetCurrentGameLanguage( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAvailableGameLanguages( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAvailableGameLanguages_params *params ) +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; params->_ret = iface->GetAvailableGameLanguages( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedApp( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedApp_params *params ) +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; params->_ret = iface->BIsSubscribedApp( params->appID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsDlcInstalled( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsDlcInstalled_params *params ) +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; params->_ret = iface->BIsDlcInstalled( params->appID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetEarliestPurchaseUnixTime( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetEarliestPurchaseUnixTime_params *params ) +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; params->_ret = iface->GetEarliestPurchaseUnixTime( params->nAppID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedFromFreeWeekend( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedFromFreeWeekend_params *params ) +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; params->_ret = iface->BIsSubscribedFromFreeWeekend( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetDLCCount( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetDLCCount_params *params ) +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; params->_ret = iface->GetDLCCount( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BGetDLCDataByIndex( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BGetDLCDataByIndex_params *params ) +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; params->_ret = iface->BGetDLCDataByIndex( params->iDLC, params->pAppID, params->pbAvailable, params->pchName, params->cchNameBufferSize ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_InstallDLC( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_InstallDLC_params *params ) +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; iface->InstallDLC( params->nAppID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_UninstallDLC( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_UninstallDLC_params *params ) +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; iface->UninstallDLC( params->nAppID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_RequestAppProofOfPurchaseKey( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_RequestAppProofOfPurchaseKey_params *params ) +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; iface->RequestAppProofOfPurchaseKey( params->nAppID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaName( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaName_params *params ) +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; params->_ret = iface->GetCurrentBetaName( params->pchName, params->cchNameBufferSize ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_MarkContentCorrupt( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_MarkContentCorrupt_params *params ) +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; params->_ret = iface->MarkContentCorrupt( params->bMissingFilesOnly ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetInstalledDepots( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetInstalledDepots_params *params ) +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; params->_ret = iface->GetInstalledDepots( params->appID, params->pvecDepots, params->cMaxDepots ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppInstallDir( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppInstallDir_params *params ) +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; params->_ret = iface->GetAppInstallDir( params->appID, params->pchFolder, params->cchFolderBufferSize ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsAppInstalled( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsAppInstalled_params *params ) +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; params->_ret = iface->BIsAppInstalled( params->appID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppOwner( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppOwner_params *params ) +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; *params->_ret = iface->GetAppOwner( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetLaunchQueryParam( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetLaunchQueryParam_params *params ) +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; params->_ret = iface->GetLaunchQueryParam( params->pchKey ); + return 0; } diff --git a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION006.h b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION006.h deleted file mode 100644 index b33c9db8..00000000 --- a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION006.h +++ /dev/null @@ -1,185 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribed_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribed( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribed_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsLowViolence_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsLowViolence( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsLowViolence_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsCybercafe_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsCybercafe( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsCybercafe_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsVACBanned_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsVACBanned( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsVACBanned_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentGameLanguage_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentGameLanguage( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentGameLanguage_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAvailableGameLanguages_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAvailableGameLanguages( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAvailableGameLanguages_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedApp_params -{ - void *linux_side; - bool _ret; - uint32_t appID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedApp( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedApp_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsDlcInstalled_params -{ - void *linux_side; - bool _ret; - uint32_t appID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsDlcInstalled( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsDlcInstalled_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetEarliestPurchaseUnixTime_params -{ - void *linux_side; - uint32_t _ret; - uint32_t nAppID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetEarliestPurchaseUnixTime( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetEarliestPurchaseUnixTime_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedFromFreeWeekend_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedFromFreeWeekend( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedFromFreeWeekend_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetDLCCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetDLCCount( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetDLCCount_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BGetDLCDataByIndex_params -{ - void *linux_side; - bool _ret; - int32_t iDLC; - uint32_t *pAppID; - bool *pbAvailable; - char *pchName; - int32_t cchNameBufferSize; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BGetDLCDataByIndex( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BGetDLCDataByIndex_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_InstallDLC_params -{ - void *linux_side; - uint32_t nAppID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_InstallDLC( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_InstallDLC_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_UninstallDLC_params -{ - void *linux_side; - uint32_t nAppID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_UninstallDLC( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_UninstallDLC_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_RequestAppProofOfPurchaseKey_params -{ - void *linux_side; - uint32_t nAppID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_RequestAppProofOfPurchaseKey( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_RequestAppProofOfPurchaseKey_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaName_params -{ - void *linux_side; - bool _ret; - char *pchName; - int32_t cchNameBufferSize; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaName( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaName_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_MarkContentCorrupt_params -{ - void *linux_side; - bool _ret; - bool bMissingFilesOnly; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_MarkContentCorrupt( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_MarkContentCorrupt_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetInstalledDepots_params -{ - void *linux_side; - uint32_t _ret; - uint32_t appID; - uint32_t *pvecDepots; - uint32_t cMaxDepots; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetInstalledDepots( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetInstalledDepots_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppInstallDir_params -{ - void *linux_side; - uint32_t _ret; - uint32_t appID; - char *pchFolder; - uint32_t cchFolderBufferSize; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppInstallDir( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppInstallDir_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsAppInstalled_params -{ - void *linux_side; - bool _ret; - uint32_t appID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsAppInstalled( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsAppInstalled_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppOwner_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppOwner( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppOwner_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetLaunchQueryParam_params -{ - void *linux_side; - const char *_ret; - const char *pchKey; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetLaunchQueryParam( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetLaunchQueryParam_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION007.cpp b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION007.cpp index 5f44dd2d..15561d88 100644 --- a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION007.cpp +++ b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION007.cpp @@ -1,148 +1,195 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamApps_STEAMAPPS_INTERFACE_VERSION007.h" -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribed( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribed_params *params ) +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; params->_ret = iface->BIsSubscribed( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsLowViolence( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsLowViolence_params *params ) +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; params->_ret = iface->BIsLowViolence( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsCybercafe( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsCybercafe_params *params ) +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; params->_ret = iface->BIsCybercafe( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsVACBanned( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsVACBanned_params *params ) +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; params->_ret = iface->BIsVACBanned( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentGameLanguage( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentGameLanguage_params *params ) +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; params->_ret = iface->GetCurrentGameLanguage( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAvailableGameLanguages( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAvailableGameLanguages_params *params ) +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; params->_ret = iface->GetAvailableGameLanguages( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedApp( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedApp_params *params ) +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; params->_ret = iface->BIsSubscribedApp( params->appID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsDlcInstalled( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsDlcInstalled_params *params ) +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; params->_ret = iface->BIsDlcInstalled( params->appID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetEarliestPurchaseUnixTime( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetEarliestPurchaseUnixTime_params *params ) +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; params->_ret = iface->GetEarliestPurchaseUnixTime( params->nAppID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedFromFreeWeekend( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedFromFreeWeekend_params *params ) +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; params->_ret = iface->BIsSubscribedFromFreeWeekend( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDLCCount( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDLCCount_params *params ) +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; params->_ret = iface->GetDLCCount( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BGetDLCDataByIndex( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BGetDLCDataByIndex_params *params ) +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; params->_ret = iface->BGetDLCDataByIndex( params->iDLC, params->pAppID, params->pbAvailable, params->pchName, params->cchNameBufferSize ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_InstallDLC( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_InstallDLC_params *params ) +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; iface->InstallDLC( params->nAppID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_UninstallDLC( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_UninstallDLC_params *params ) +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; iface->UninstallDLC( params->nAppID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_RequestAppProofOfPurchaseKey( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_RequestAppProofOfPurchaseKey_params *params ) +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; iface->RequestAppProofOfPurchaseKey( params->nAppID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName_params *params ) +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; params->_ret = iface->GetCurrentBetaName( params->pchName, params->cchNameBufferSize ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_MarkContentCorrupt( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_MarkContentCorrupt_params *params ) +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; params->_ret = iface->MarkContentCorrupt( params->bMissingFilesOnly ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetInstalledDepots( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetInstalledDepots_params *params ) +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; params->_ret = iface->GetInstalledDepots( params->appID, params->pvecDepots, params->cMaxDepots ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppInstallDir( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppInstallDir_params *params ) +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; params->_ret = iface->GetAppInstallDir( params->appID, params->pchFolder, params->cchFolderBufferSize ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsAppInstalled( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsAppInstalled_params *params ) +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; params->_ret = iface->BIsAppInstalled( params->appID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppOwner( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppOwner_params *params ) +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; *params->_ret = iface->GetAppOwner( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetLaunchQueryParam( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetLaunchQueryParam_params *params ) +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; params->_ret = iface->GetLaunchQueryParam( params->pchKey ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress_params *params ) +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; params->_ret = iface->GetDlcDownloadProgress( params->nAppID, params->punBytesDownloaded, params->punBytesTotal ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppBuildId( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppBuildId_params *params ) +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; params->_ret = iface->GetAppBuildId( ); + return 0; } diff --git a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION007.h b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION007.h deleted file mode 100644 index 3dd49c1e..00000000 --- a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION007.h +++ /dev/null @@ -1,202 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribed_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribed( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribed_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsLowViolence_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsLowViolence( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsLowViolence_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsCybercafe_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsCybercafe( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsCybercafe_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsVACBanned_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsVACBanned( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsVACBanned_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentGameLanguage_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentGameLanguage( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentGameLanguage_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAvailableGameLanguages_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAvailableGameLanguages( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAvailableGameLanguages_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedApp_params -{ - void *linux_side; - bool _ret; - uint32_t appID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedApp( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedApp_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsDlcInstalled_params -{ - void *linux_side; - bool _ret; - uint32_t appID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsDlcInstalled( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsDlcInstalled_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetEarliestPurchaseUnixTime_params -{ - void *linux_side; - uint32_t _ret; - uint32_t nAppID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetEarliestPurchaseUnixTime( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetEarliestPurchaseUnixTime_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedFromFreeWeekend_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedFromFreeWeekend( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedFromFreeWeekend_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDLCCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDLCCount( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDLCCount_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BGetDLCDataByIndex_params -{ - void *linux_side; - bool _ret; - int32_t iDLC; - uint32_t *pAppID; - bool *pbAvailable; - char *pchName; - int32_t cchNameBufferSize; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BGetDLCDataByIndex( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BGetDLCDataByIndex_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_InstallDLC_params -{ - void *linux_side; - uint32_t nAppID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_InstallDLC( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_InstallDLC_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_UninstallDLC_params -{ - void *linux_side; - uint32_t nAppID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_UninstallDLC( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_UninstallDLC_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_RequestAppProofOfPurchaseKey_params -{ - void *linux_side; - uint32_t nAppID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_RequestAppProofOfPurchaseKey( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_RequestAppProofOfPurchaseKey_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName_params -{ - void *linux_side; - bool _ret; - char *pchName; - int32_t cchNameBufferSize; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_MarkContentCorrupt_params -{ - void *linux_side; - bool _ret; - bool bMissingFilesOnly; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_MarkContentCorrupt( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_MarkContentCorrupt_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetInstalledDepots_params -{ - void *linux_side; - uint32_t _ret; - uint32_t appID; - uint32_t *pvecDepots; - uint32_t cMaxDepots; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetInstalledDepots( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetInstalledDepots_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppInstallDir_params -{ - void *linux_side; - uint32_t _ret; - uint32_t appID; - char *pchFolder; - uint32_t cchFolderBufferSize; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppInstallDir( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppInstallDir_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsAppInstalled_params -{ - void *linux_side; - bool _ret; - uint32_t appID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsAppInstalled( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsAppInstalled_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppOwner_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppOwner( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppOwner_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetLaunchQueryParam_params -{ - void *linux_side; - const char *_ret; - const char *pchKey; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetLaunchQueryParam( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetLaunchQueryParam_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress_params -{ - void *linux_side; - bool _ret; - uint32_t nAppID; - uint64_t *punBytesDownloaded; - uint64_t *punBytesTotal; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppBuildId_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppBuildId( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppBuildId_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION008.cpp b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION008.cpp index 3f142276..e8147dd5 100644 --- a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION008.cpp +++ b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION008.cpp @@ -1,184 +1,243 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamApps_STEAMAPPS_INTERFACE_VERSION008.h" -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribed( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribed_params *params ) +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; params->_ret = iface->BIsSubscribed( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsLowViolence( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsLowViolence_params *params ) +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; params->_ret = iface->BIsLowViolence( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsCybercafe( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsCybercafe_params *params ) +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; params->_ret = iface->BIsCybercafe( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsVACBanned( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsVACBanned_params *params ) +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; params->_ret = iface->BIsVACBanned( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentGameLanguage( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentGameLanguage_params *params ) +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; params->_ret = iface->GetCurrentGameLanguage( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAvailableGameLanguages( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAvailableGameLanguages_params *params ) +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; params->_ret = iface->GetAvailableGameLanguages( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedApp( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedApp_params *params ) +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; params->_ret = iface->BIsSubscribedApp( params->appID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsDlcInstalled( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsDlcInstalled_params *params ) +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; params->_ret = iface->BIsDlcInstalled( params->appID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetEarliestPurchaseUnixTime( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetEarliestPurchaseUnixTime_params *params ) +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; params->_ret = iface->GetEarliestPurchaseUnixTime( params->nAppID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFreeWeekend( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFreeWeekend_params *params ) +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; params->_ret = iface->BIsSubscribedFromFreeWeekend( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDLCCount( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDLCCount_params *params ) +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; params->_ret = iface->GetDLCCount( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BGetDLCDataByIndex( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BGetDLCDataByIndex_params *params ) +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; params->_ret = iface->BGetDLCDataByIndex( params->iDLC, params->pAppID, params->pbAvailable, params->pchName, params->cchNameBufferSize ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_InstallDLC( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_InstallDLC_params *params ) +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; iface->InstallDLC( params->nAppID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_UninstallDLC( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_UninstallDLC_params *params ) +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; iface->UninstallDLC( params->nAppID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAppProofOfPurchaseKey( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAppProofOfPurchaseKey_params *params ) +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; iface->RequestAppProofOfPurchaseKey( params->nAppID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaName( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaName_params *params ) +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; params->_ret = iface->GetCurrentBetaName( params->pchName, params->cchNameBufferSize ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_MarkContentCorrupt( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_MarkContentCorrupt_params *params ) +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; params->_ret = iface->MarkContentCorrupt( params->bMissingFilesOnly ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetInstalledDepots( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetInstalledDepots_params *params ) +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; params->_ret = iface->GetInstalledDepots( params->appID, params->pvecDepots, params->cMaxDepots ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppInstallDir( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppInstallDir_params *params ) +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; params->_ret = iface->GetAppInstallDir( params->appID, params->pchFolder, params->cchFolderBufferSize ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsAppInstalled( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsAppInstalled_params *params ) +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; params->_ret = iface->BIsAppInstalled( params->appID ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppOwner( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppOwner_params *params ) +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; *params->_ret = iface->GetAppOwner( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchQueryParam( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchQueryParam_params *params ) +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; params->_ret = iface->GetLaunchQueryParam( params->pchKey ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDlcDownloadProgress( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDlcDownloadProgress_params *params ) +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; params->_ret = iface->GetDlcDownloadProgress( params->nAppID, params->punBytesDownloaded, params->punBytesTotal ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppBuildId( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppBuildId_params *params ) +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; params->_ret = iface->GetAppBuildId( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAllProofOfPurchaseKeys( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAllProofOfPurchaseKeys_params *params ) +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; iface->RequestAllProofOfPurchaseKeys( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetFileDetails( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetFileDetails_params *params ) +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; params->_ret = iface->GetFileDetails( params->pszFileName ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchCommandLine( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchCommandLine_params *params ) +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; params->_ret = iface->GetLaunchCommandLine( params->pszCommandLine, params->cubCommandLine ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFamilySharing( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFamilySharing_params *params ) +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; params->_ret = iface->BIsSubscribedFromFamilySharing( ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial_params *params ) +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; params->_ret = iface->BIsTimedTrial( params->punSecondsAllowed, params->punSecondsPlayed ); + return 0; } -void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetDlcContext( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetDlcContext_params *params ) +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; params->_ret = iface->SetDlcContext( params->nAppID ); + return 0; } diff --git a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION008.h b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION008.h deleted file mode 100644 index 99b271ec..00000000 --- a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION008.h +++ /dev/null @@ -1,249 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribed_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribed( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribed_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsLowViolence_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsLowViolence( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsLowViolence_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsCybercafe_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsCybercafe( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsCybercafe_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsVACBanned_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsVACBanned( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsVACBanned_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentGameLanguage_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentGameLanguage( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentGameLanguage_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAvailableGameLanguages_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAvailableGameLanguages( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAvailableGameLanguages_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedApp_params -{ - void *linux_side; - bool _ret; - uint32_t appID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedApp( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedApp_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsDlcInstalled_params -{ - void *linux_side; - bool _ret; - uint32_t appID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsDlcInstalled( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsDlcInstalled_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetEarliestPurchaseUnixTime_params -{ - void *linux_side; - uint32_t _ret; - uint32_t nAppID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetEarliestPurchaseUnixTime( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetEarliestPurchaseUnixTime_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFreeWeekend_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFreeWeekend( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFreeWeekend_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDLCCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDLCCount( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDLCCount_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BGetDLCDataByIndex_params -{ - void *linux_side; - bool _ret; - int32_t iDLC; - uint32_t *pAppID; - bool *pbAvailable; - char *pchName; - int32_t cchNameBufferSize; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BGetDLCDataByIndex( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BGetDLCDataByIndex_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_InstallDLC_params -{ - void *linux_side; - uint32_t nAppID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_InstallDLC( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_InstallDLC_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_UninstallDLC_params -{ - void *linux_side; - uint32_t nAppID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_UninstallDLC( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_UninstallDLC_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAppProofOfPurchaseKey_params -{ - void *linux_side; - uint32_t nAppID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAppProofOfPurchaseKey( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAppProofOfPurchaseKey_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaName_params -{ - void *linux_side; - bool _ret; - char *pchName; - int32_t cchNameBufferSize; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaName( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaName_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_MarkContentCorrupt_params -{ - void *linux_side; - bool _ret; - bool bMissingFilesOnly; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_MarkContentCorrupt( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_MarkContentCorrupt_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetInstalledDepots_params -{ - void *linux_side; - uint32_t _ret; - uint32_t appID; - uint32_t *pvecDepots; - uint32_t cMaxDepots; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetInstalledDepots( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetInstalledDepots_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppInstallDir_params -{ - void *linux_side; - uint32_t _ret; - uint32_t appID; - char *pchFolder; - uint32_t cchFolderBufferSize; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppInstallDir( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppInstallDir_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsAppInstalled_params -{ - void *linux_side; - bool _ret; - uint32_t appID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsAppInstalled( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsAppInstalled_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppOwner_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppOwner( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppOwner_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchQueryParam_params -{ - void *linux_side; - const char *_ret; - const char *pchKey; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchQueryParam( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchQueryParam_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDlcDownloadProgress_params -{ - void *linux_side; - bool _ret; - uint32_t nAppID; - uint64_t *punBytesDownloaded; - uint64_t *punBytesTotal; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDlcDownloadProgress( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDlcDownloadProgress_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppBuildId_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppBuildId( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppBuildId_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAllProofOfPurchaseKeys_params -{ - void *linux_side; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAllProofOfPurchaseKeys( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAllProofOfPurchaseKeys_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetFileDetails_params -{ - void *linux_side; - uint64_t _ret; - const char *pszFileName; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetFileDetails( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetFileDetails_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchCommandLine_params -{ - void *linux_side; - int32_t _ret; - char *pszCommandLine; - int32_t cubCommandLine; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchCommandLine( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchCommandLine_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFamilySharing_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFamilySharing( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFamilySharing_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial_params -{ - void *linux_side; - bool _ret; - uint32_t *punSecondsAllowed; - uint32_t *punSecondsPlayed; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial_params *params ); - -struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetDlcContext_params -{ - void *linux_side; - bool _ret; - uint32_t nAppID; -}; -extern void cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetDlcContext( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetDlcContext_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamClient_SteamClient006.cpp b/lsteamclient/cppISteamClient_SteamClient006.cpp index 749d8242..a2b11594 100644 --- a/lsteamclient/cppISteamClient_SteamClient006.cpp +++ b/lsteamclient/cppISteamClient_SteamClient006.cpp @@ -1,130 +1,171 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamClient_SteamClient006.h" -void cppISteamClient_SteamClient006_CreateSteamPipe( struct cppISteamClient_SteamClient006_CreateSteamPipe_params *params ) +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; params->_ret = iface->CreateSteamPipe( ); + return 0; } -void cppISteamClient_SteamClient006_BReleaseSteamPipe( struct cppISteamClient_SteamClient006_BReleaseSteamPipe_params *params ) +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; params->_ret = iface->BReleaseSteamPipe( params->hSteamPipe ); + return 0; } -void cppISteamClient_SteamClient006_CreateGlobalUser( struct cppISteamClient_SteamClient006_CreateGlobalUser_params *params ) +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; params->_ret = iface->CreateGlobalUser( params->phSteamPipe ); + return 0; } -void cppISteamClient_SteamClient006_ConnectToGlobalUser( struct cppISteamClient_SteamClient006_ConnectToGlobalUser_params *params ) +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; params->_ret = iface->ConnectToGlobalUser( params->hSteamPipe ); + return 0; } -void cppISteamClient_SteamClient006_CreateLocalUser( struct cppISteamClient_SteamClient006_CreateLocalUser_params *params ) +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; params->_ret = iface->CreateLocalUser( params->phSteamPipe ); + return 0; } -void cppISteamClient_SteamClient006_ReleaseUser( struct cppISteamClient_SteamClient006_ReleaseUser_params *params ) +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; iface->ReleaseUser( params->hSteamPipe, params->hUser ); + return 0; } -void cppISteamClient_SteamClient006_GetISteamUser( struct cppISteamClient_SteamClient006_GetISteamUser_params *params ) +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; params->_ret = iface->GetISteamUser( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient006_GetIVAC( struct cppISteamClient_SteamClient006_GetIVAC_params *params ) +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; params->_ret = iface->GetIVAC( params->hSteamUser ); + return 0; } -void cppISteamClient_SteamClient006_GetISteamGameServer( struct cppISteamClient_SteamClient006_GetISteamGameServer_params *params ) +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; params->_ret = iface->GetISteamGameServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient006_SetLocalIPBinding( struct cppISteamClient_SteamClient006_SetLocalIPBinding_params *params ) +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; iface->SetLocalIPBinding( params->unIP, params->usPort ); + return 0; } -void cppISteamClient_SteamClient006_GetUniverseName( struct cppISteamClient_SteamClient006_GetUniverseName_params *params ) +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; params->_ret = iface->GetUniverseName( params->eUniverse ); + return 0; } -void cppISteamClient_SteamClient006_GetISteamFriends( struct cppISteamClient_SteamClient006_GetISteamFriends_params *params ) +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; params->_ret = iface->GetISteamFriends( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient006_GetISteamUtils( struct cppISteamClient_SteamClient006_GetISteamUtils_params *params ) +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; params->_ret = iface->GetISteamUtils( params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient006_GetISteamBilling( struct cppISteamClient_SteamClient006_GetISteamBilling_params *params ) +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; params->_ret = iface->GetISteamBilling( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient006_GetISteamMatchmaking( struct cppISteamClient_SteamClient006_GetISteamMatchmaking_params *params ) +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; params->_ret = iface->GetISteamMatchmaking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient006_GetISteamApps( struct cppISteamClient_SteamClient006_GetISteamApps_params *params ) +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; params->_ret = iface->GetISteamApps( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient006_GetISteamContentServer( struct cppISteamClient_SteamClient006_GetISteamContentServer_params *params ) +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; params->_ret = iface->GetISteamContentServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient006_GetISteamMasterServerUpdater( struct cppISteamClient_SteamClient006_GetISteamMasterServerUpdater_params *params ) +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; params->_ret = iface->GetISteamMasterServerUpdater( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient006_GetISteamMatchmakingServers( struct cppISteamClient_SteamClient006_GetISteamMatchmakingServers_params *params ) +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; params->_ret = iface->GetISteamMatchmakingServers( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient006_RunFrame( struct cppISteamClient_SteamClient006_RunFrame_params *params ) +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; iface->RunFrame( ); + return 0; } -void cppISteamClient_SteamClient006_GetIPCCallCount( struct cppISteamClient_SteamClient006_GetIPCCallCount_params *params ) +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; params->_ret = iface->GetIPCCallCount( ); + return 0; } diff --git a/lsteamclient/cppISteamClient_SteamClient006.h b/lsteamclient/cppISteamClient_SteamClient006.h deleted file mode 100644 index 6ed412c2..00000000 --- a/lsteamclient/cppISteamClient_SteamClient006.h +++ /dev/null @@ -1,195 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamClient_SteamClient006_CreateSteamPipe_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamClient_SteamClient006_CreateSteamPipe( struct cppISteamClient_SteamClient006_CreateSteamPipe_params *params ); - -struct cppISteamClient_SteamClient006_BReleaseSteamPipe_params -{ - void *linux_side; - bool _ret; - int32_t hSteamPipe; -}; -extern void cppISteamClient_SteamClient006_BReleaseSteamPipe( struct cppISteamClient_SteamClient006_BReleaseSteamPipe_params *params ); - -struct cppISteamClient_SteamClient006_CreateGlobalUser_params -{ - void *linux_side; - int32_t _ret; - int32_t *phSteamPipe; -}; -extern void cppISteamClient_SteamClient006_CreateGlobalUser( struct cppISteamClient_SteamClient006_CreateGlobalUser_params *params ); - -struct cppISteamClient_SteamClient006_ConnectToGlobalUser_params -{ - void *linux_side; - int32_t _ret; - int32_t hSteamPipe; -}; -extern void cppISteamClient_SteamClient006_ConnectToGlobalUser( struct cppISteamClient_SteamClient006_ConnectToGlobalUser_params *params ); - -struct cppISteamClient_SteamClient006_CreateLocalUser_params -{ - void *linux_side; - int32_t _ret; - int32_t *phSteamPipe; -}; -extern void cppISteamClient_SteamClient006_CreateLocalUser( struct cppISteamClient_SteamClient006_CreateLocalUser_params *params ); - -struct cppISteamClient_SteamClient006_ReleaseUser_params -{ - void *linux_side; - int32_t hSteamPipe; - int32_t hUser; -}; -extern void cppISteamClient_SteamClient006_ReleaseUser( struct cppISteamClient_SteamClient006_ReleaseUser_params *params ); - -struct cppISteamClient_SteamClient006_GetISteamUser_params -{ - void *linux_side; - void /*ISteamUser*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient006_GetISteamUser( struct cppISteamClient_SteamClient006_GetISteamUser_params *params ); - -struct cppISteamClient_SteamClient006_GetIVAC_params -{ - void *linux_side; - void *_ret; - int32_t hSteamUser; -}; -extern void cppISteamClient_SteamClient006_GetIVAC( struct cppISteamClient_SteamClient006_GetIVAC_params *params ); - -struct cppISteamClient_SteamClient006_GetISteamGameServer_params -{ - void *linux_side; - void /*ISteamGameServer*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient006_GetISteamGameServer( struct cppISteamClient_SteamClient006_GetISteamGameServer_params *params ); - -struct cppISteamClient_SteamClient006_SetLocalIPBinding_params -{ - void *linux_side; - uint32_t unIP; - uint16_t usPort; -}; -extern void cppISteamClient_SteamClient006_SetLocalIPBinding( struct cppISteamClient_SteamClient006_SetLocalIPBinding_params *params ); - -struct cppISteamClient_SteamClient006_GetUniverseName_params -{ - void *linux_side; - const char *_ret; - uint32_t eUniverse; -}; -extern void cppISteamClient_SteamClient006_GetUniverseName( struct cppISteamClient_SteamClient006_GetUniverseName_params *params ); - -struct cppISteamClient_SteamClient006_GetISteamFriends_params -{ - void *linux_side; - void /*ISteamFriends*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient006_GetISteamFriends( struct cppISteamClient_SteamClient006_GetISteamFriends_params *params ); - -struct cppISteamClient_SteamClient006_GetISteamUtils_params -{ - void *linux_side; - void /*ISteamUtils*/ *_ret; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient006_GetISteamUtils( struct cppISteamClient_SteamClient006_GetISteamUtils_params *params ); - -struct cppISteamClient_SteamClient006_GetISteamBilling_params -{ - void *linux_side; - void *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient006_GetISteamBilling( struct cppISteamClient_SteamClient006_GetISteamBilling_params *params ); - -struct cppISteamClient_SteamClient006_GetISteamMatchmaking_params -{ - void *linux_side; - void /*ISteamMatchmaking*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient006_GetISteamMatchmaking( struct cppISteamClient_SteamClient006_GetISteamMatchmaking_params *params ); - -struct cppISteamClient_SteamClient006_GetISteamApps_params -{ - void *linux_side; - void /*ISteamApps*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient006_GetISteamApps( struct cppISteamClient_SteamClient006_GetISteamApps_params *params ); - -struct cppISteamClient_SteamClient006_GetISteamContentServer_params -{ - void *linux_side; - void /*ISteamContentServer*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient006_GetISteamContentServer( struct cppISteamClient_SteamClient006_GetISteamContentServer_params *params ); - -struct cppISteamClient_SteamClient006_GetISteamMasterServerUpdater_params -{ - void *linux_side; - void /*ISteamMasterServerUpdater*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient006_GetISteamMasterServerUpdater( struct cppISteamClient_SteamClient006_GetISteamMasterServerUpdater_params *params ); - -struct cppISteamClient_SteamClient006_GetISteamMatchmakingServers_params -{ - void *linux_side; - void /*ISteamMatchmakingServers*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient006_GetISteamMatchmakingServers( struct cppISteamClient_SteamClient006_GetISteamMatchmakingServers_params *params ); - -struct cppISteamClient_SteamClient006_RunFrame_params -{ - void *linux_side; -}; -extern void cppISteamClient_SteamClient006_RunFrame( struct cppISteamClient_SteamClient006_RunFrame_params *params ); - -struct cppISteamClient_SteamClient006_GetIPCCallCount_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamClient_SteamClient006_GetIPCCallCount( struct cppISteamClient_SteamClient006_GetIPCCallCount_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamClient_SteamClient007.cpp b/lsteamclient/cppISteamClient_SteamClient007.cpp index 11c82f4e..c87b6a3f 100644 --- a/lsteamclient/cppISteamClient_SteamClient007.cpp +++ b/lsteamclient/cppISteamClient_SteamClient007.cpp @@ -1,137 +1,180 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamClient_SteamClient007.h" -void cppISteamClient_SteamClient007_CreateSteamPipe( struct cppISteamClient_SteamClient007_CreateSteamPipe_params *params ) +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; params->_ret = iface->CreateSteamPipe( ); + return 0; } -void cppISteamClient_SteamClient007_BReleaseSteamPipe( struct cppISteamClient_SteamClient007_BReleaseSteamPipe_params *params ) +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; params->_ret = iface->BReleaseSteamPipe( params->hSteamPipe ); + return 0; } -void cppISteamClient_SteamClient007_ConnectToGlobalUser( struct cppISteamClient_SteamClient007_ConnectToGlobalUser_params *params ) +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; params->_ret = iface->ConnectToGlobalUser( params->hSteamPipe ); + return 0; } -void cppISteamClient_SteamClient007_CreateLocalUser( struct cppISteamClient_SteamClient007_CreateLocalUser_params *params ) +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; params->_ret = iface->CreateLocalUser( params->phSteamPipe ); + return 0; } -void cppISteamClient_SteamClient007_ReleaseUser( struct cppISteamClient_SteamClient007_ReleaseUser_params *params ) +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; iface->ReleaseUser( params->hSteamPipe, params->hUser ); + return 0; } -void cppISteamClient_SteamClient007_GetISteamUser( struct cppISteamClient_SteamClient007_GetISteamUser_params *params ) +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; params->_ret = iface->GetISteamUser( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient007_GetISteamGameServer( struct cppISteamClient_SteamClient007_GetISteamGameServer_params *params ) +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; params->_ret = iface->GetISteamGameServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient007_SetLocalIPBinding( struct cppISteamClient_SteamClient007_SetLocalIPBinding_params *params ) +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; iface->SetLocalIPBinding( params->unIP, params->usPort ); + return 0; } -void cppISteamClient_SteamClient007_GetISteamFriends( struct cppISteamClient_SteamClient007_GetISteamFriends_params *params ) +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; params->_ret = iface->GetISteamFriends( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient007_GetISteamUtils( struct cppISteamClient_SteamClient007_GetISteamUtils_params *params ) +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; params->_ret = iface->GetISteamUtils( params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient007_GetISteamMatchmaking( struct cppISteamClient_SteamClient007_GetISteamMatchmaking_params *params ) +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; params->_ret = iface->GetISteamMatchmaking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient007_GetISteamContentServer( struct cppISteamClient_SteamClient007_GetISteamContentServer_params *params ) +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; params->_ret = iface->GetISteamContentServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient007_GetISteamMasterServerUpdater( struct cppISteamClient_SteamClient007_GetISteamMasterServerUpdater_params *params ) +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; params->_ret = iface->GetISteamMasterServerUpdater( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient007_GetISteamMatchmakingServers( struct cppISteamClient_SteamClient007_GetISteamMatchmakingServers_params *params ) +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; params->_ret = iface->GetISteamMatchmakingServers( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient007_GetISteamGenericInterface( struct cppISteamClient_SteamClient007_GetISteamGenericInterface_params *params ) +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; params->_ret = iface->GetISteamGenericInterface( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient007_RunFrame( struct cppISteamClient_SteamClient007_RunFrame_params *params ) +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; iface->RunFrame( ); + return 0; } -void cppISteamClient_SteamClient007_GetIPCCallCount( struct cppISteamClient_SteamClient007_GetIPCCallCount_params *params ) +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; params->_ret = iface->GetIPCCallCount( ); + return 0; } -void cppISteamClient_SteamClient007_GetISteamUserStats( struct cppISteamClient_SteamClient007_GetISteamUserStats_params *params ) +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; params->_ret = iface->GetISteamUserStats( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient007_GetISteamApps( struct cppISteamClient_SteamClient007_GetISteamApps_params *params ) +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; params->_ret = iface->GetISteamApps( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient007_GetISteamNetworking( struct cppISteamClient_SteamClient007_GetISteamNetworking_params *params ) +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; params->_ret = iface->GetISteamNetworking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient007_SetWarningMessageHook( struct cppISteamClient_SteamClient007_SetWarningMessageHook_params *params ) +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; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); + return 0; } -void cppISteamClient_SteamClient007_GetISteamRemoteStorage( struct cppISteamClient_SteamClient007_GetISteamRemoteStorage_params *params ) +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; params->_ret = iface->GetISteamRemoteStorage( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } diff --git a/lsteamclient/cppISteamClient_SteamClient007.h b/lsteamclient/cppISteamClient_SteamClient007.h deleted file mode 100644 index 466f6259..00000000 --- a/lsteamclient/cppISteamClient_SteamClient007.h +++ /dev/null @@ -1,208 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamClient_SteamClient007_CreateSteamPipe_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamClient_SteamClient007_CreateSteamPipe( struct cppISteamClient_SteamClient007_CreateSteamPipe_params *params ); - -struct cppISteamClient_SteamClient007_BReleaseSteamPipe_params -{ - void *linux_side; - bool _ret; - int32_t hSteamPipe; -}; -extern void cppISteamClient_SteamClient007_BReleaseSteamPipe( struct cppISteamClient_SteamClient007_BReleaseSteamPipe_params *params ); - -struct cppISteamClient_SteamClient007_ConnectToGlobalUser_params -{ - void *linux_side; - int32_t _ret; - int32_t hSteamPipe; -}; -extern void cppISteamClient_SteamClient007_ConnectToGlobalUser( struct cppISteamClient_SteamClient007_ConnectToGlobalUser_params *params ); - -struct cppISteamClient_SteamClient007_CreateLocalUser_params -{ - void *linux_side; - int32_t _ret; - int32_t *phSteamPipe; -}; -extern void cppISteamClient_SteamClient007_CreateLocalUser( struct cppISteamClient_SteamClient007_CreateLocalUser_params *params ); - -struct cppISteamClient_SteamClient007_ReleaseUser_params -{ - void *linux_side; - int32_t hSteamPipe; - int32_t hUser; -}; -extern void cppISteamClient_SteamClient007_ReleaseUser( struct cppISteamClient_SteamClient007_ReleaseUser_params *params ); - -struct cppISteamClient_SteamClient007_GetISteamUser_params -{ - void *linux_side; - void /*ISteamUser*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient007_GetISteamUser( struct cppISteamClient_SteamClient007_GetISteamUser_params *params ); - -struct cppISteamClient_SteamClient007_GetISteamGameServer_params -{ - void *linux_side; - void /*ISteamGameServer*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient007_GetISteamGameServer( struct cppISteamClient_SteamClient007_GetISteamGameServer_params *params ); - -struct cppISteamClient_SteamClient007_SetLocalIPBinding_params -{ - void *linux_side; - uint32_t unIP; - uint16_t usPort; -}; -extern void cppISteamClient_SteamClient007_SetLocalIPBinding( struct cppISteamClient_SteamClient007_SetLocalIPBinding_params *params ); - -struct cppISteamClient_SteamClient007_GetISteamFriends_params -{ - void *linux_side; - void /*ISteamFriends*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient007_GetISteamFriends( struct cppISteamClient_SteamClient007_GetISteamFriends_params *params ); - -struct cppISteamClient_SteamClient007_GetISteamUtils_params -{ - void *linux_side; - void /*ISteamUtils*/ *_ret; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient007_GetISteamUtils( struct cppISteamClient_SteamClient007_GetISteamUtils_params *params ); - -struct cppISteamClient_SteamClient007_GetISteamMatchmaking_params -{ - void *linux_side; - void /*ISteamMatchmaking*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient007_GetISteamMatchmaking( struct cppISteamClient_SteamClient007_GetISteamMatchmaking_params *params ); - -struct cppISteamClient_SteamClient007_GetISteamContentServer_params -{ - void *linux_side; - void /*ISteamContentServer*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient007_GetISteamContentServer( struct cppISteamClient_SteamClient007_GetISteamContentServer_params *params ); - -struct cppISteamClient_SteamClient007_GetISteamMasterServerUpdater_params -{ - void *linux_side; - void /*ISteamMasterServerUpdater*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient007_GetISteamMasterServerUpdater( struct cppISteamClient_SteamClient007_GetISteamMasterServerUpdater_params *params ); - -struct cppISteamClient_SteamClient007_GetISteamMatchmakingServers_params -{ - void *linux_side; - void /*ISteamMatchmakingServers*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient007_GetISteamMatchmakingServers( struct cppISteamClient_SteamClient007_GetISteamMatchmakingServers_params *params ); - -struct cppISteamClient_SteamClient007_GetISteamGenericInterface_params -{ - void *linux_side; - void *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient007_GetISteamGenericInterface( struct cppISteamClient_SteamClient007_GetISteamGenericInterface_params *params ); - -struct cppISteamClient_SteamClient007_RunFrame_params -{ - void *linux_side; -}; -extern void cppISteamClient_SteamClient007_RunFrame( struct cppISteamClient_SteamClient007_RunFrame_params *params ); - -struct cppISteamClient_SteamClient007_GetIPCCallCount_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamClient_SteamClient007_GetIPCCallCount( struct cppISteamClient_SteamClient007_GetIPCCallCount_params *params ); - -struct cppISteamClient_SteamClient007_GetISteamUserStats_params -{ - void *linux_side; - void /*ISteamUserStats*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient007_GetISteamUserStats( struct cppISteamClient_SteamClient007_GetISteamUserStats_params *params ); - -struct cppISteamClient_SteamClient007_GetISteamApps_params -{ - void *linux_side; - void /*ISteamApps*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient007_GetISteamApps( struct cppISteamClient_SteamClient007_GetISteamApps_params *params ); - -struct cppISteamClient_SteamClient007_GetISteamNetworking_params -{ - void *linux_side; - void /*ISteamNetworking*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient007_GetISteamNetworking( struct cppISteamClient_SteamClient007_GetISteamNetworking_params *params ); - -struct cppISteamClient_SteamClient007_SetWarningMessageHook_params -{ - void *linux_side; - void (*W_CDECL pFunction)(int32_t, const char *); -}; -extern void cppISteamClient_SteamClient007_SetWarningMessageHook( struct cppISteamClient_SteamClient007_SetWarningMessageHook_params *params ); - -struct cppISteamClient_SteamClient007_GetISteamRemoteStorage_params -{ - void *linux_side; - void /*ISteamRemoteStorage*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient007_GetISteamRemoteStorage( struct cppISteamClient_SteamClient007_GetISteamRemoteStorage_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamClient_SteamClient008.cpp b/lsteamclient/cppISteamClient_SteamClient008.cpp index d578a874..87f944a0 100644 --- a/lsteamclient/cppISteamClient_SteamClient008.cpp +++ b/lsteamclient/cppISteamClient_SteamClient008.cpp @@ -1,131 +1,172 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamClient_SteamClient008.h" -void cppISteamClient_SteamClient008_CreateSteamPipe( struct cppISteamClient_SteamClient008_CreateSteamPipe_params *params ) +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; params->_ret = iface->CreateSteamPipe( ); + return 0; } -void cppISteamClient_SteamClient008_BReleaseSteamPipe( struct cppISteamClient_SteamClient008_BReleaseSteamPipe_params *params ) +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; params->_ret = iface->BReleaseSteamPipe( params->hSteamPipe ); + return 0; } -void cppISteamClient_SteamClient008_ConnectToGlobalUser( struct cppISteamClient_SteamClient008_ConnectToGlobalUser_params *params ) +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; params->_ret = iface->ConnectToGlobalUser( params->hSteamPipe ); + return 0; } -void cppISteamClient_SteamClient008_CreateLocalUser( struct cppISteamClient_SteamClient008_CreateLocalUser_params *params ) +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; params->_ret = iface->CreateLocalUser( params->phSteamPipe, params->eAccountType ); + return 0; } -void cppISteamClient_SteamClient008_ReleaseUser( struct cppISteamClient_SteamClient008_ReleaseUser_params *params ) +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; iface->ReleaseUser( params->hSteamPipe, params->hUser ); + return 0; } -void cppISteamClient_SteamClient008_GetISteamUser( struct cppISteamClient_SteamClient008_GetISteamUser_params *params ) +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; params->_ret = iface->GetISteamUser( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient008_GetISteamGameServer( struct cppISteamClient_SteamClient008_GetISteamGameServer_params *params ) +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; params->_ret = iface->GetISteamGameServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient008_SetLocalIPBinding( struct cppISteamClient_SteamClient008_SetLocalIPBinding_params *params ) +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; iface->SetLocalIPBinding( params->unIP, params->usPort ); + return 0; } -void cppISteamClient_SteamClient008_GetISteamFriends( struct cppISteamClient_SteamClient008_GetISteamFriends_params *params ) +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; params->_ret = iface->GetISteamFriends( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient008_GetISteamUtils( struct cppISteamClient_SteamClient008_GetISteamUtils_params *params ) +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; params->_ret = iface->GetISteamUtils( params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient008_GetISteamMatchmaking( struct cppISteamClient_SteamClient008_GetISteamMatchmaking_params *params ) +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; params->_ret = iface->GetISteamMatchmaking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient008_GetISteamMasterServerUpdater( struct cppISteamClient_SteamClient008_GetISteamMasterServerUpdater_params *params ) +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; params->_ret = iface->GetISteamMasterServerUpdater( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient008_GetISteamMatchmakingServers( struct cppISteamClient_SteamClient008_GetISteamMatchmakingServers_params *params ) +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; params->_ret = iface->GetISteamMatchmakingServers( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient008_GetISteamGenericInterface( struct cppISteamClient_SteamClient008_GetISteamGenericInterface_params *params ) +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; params->_ret = iface->GetISteamGenericInterface( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient008_GetISteamUserStats( struct cppISteamClient_SteamClient008_GetISteamUserStats_params *params ) +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; params->_ret = iface->GetISteamUserStats( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient008_GetISteamApps( struct cppISteamClient_SteamClient008_GetISteamApps_params *params ) +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; params->_ret = iface->GetISteamApps( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient008_GetISteamNetworking( struct cppISteamClient_SteamClient008_GetISteamNetworking_params *params ) +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; params->_ret = iface->GetISteamNetworking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient008_GetISteamRemoteStorage( struct cppISteamClient_SteamClient008_GetISteamRemoteStorage_params *params ) +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; params->_ret = iface->GetISteamRemoteStorage( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient008_RunFrame( struct cppISteamClient_SteamClient008_RunFrame_params *params ) +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; iface->RunFrame( ); + return 0; } -void cppISteamClient_SteamClient008_GetIPCCallCount( struct cppISteamClient_SteamClient008_GetIPCCallCount_params *params ) +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; params->_ret = iface->GetIPCCallCount( ); + return 0; } -void cppISteamClient_SteamClient008_SetWarningMessageHook( struct cppISteamClient_SteamClient008_SetWarningMessageHook_params *params ) +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; 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_SteamClient008.h b/lsteamclient/cppISteamClient_SteamClient008.h deleted file mode 100644 index 729b96eb..00000000 --- a/lsteamclient/cppISteamClient_SteamClient008.h +++ /dev/null @@ -1,199 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamClient_SteamClient008_CreateSteamPipe_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamClient_SteamClient008_CreateSteamPipe( struct cppISteamClient_SteamClient008_CreateSteamPipe_params *params ); - -struct cppISteamClient_SteamClient008_BReleaseSteamPipe_params -{ - void *linux_side; - bool _ret; - int32_t hSteamPipe; -}; -extern void cppISteamClient_SteamClient008_BReleaseSteamPipe( struct cppISteamClient_SteamClient008_BReleaseSteamPipe_params *params ); - -struct cppISteamClient_SteamClient008_ConnectToGlobalUser_params -{ - void *linux_side; - int32_t _ret; - int32_t hSteamPipe; -}; -extern void cppISteamClient_SteamClient008_ConnectToGlobalUser( struct cppISteamClient_SteamClient008_ConnectToGlobalUser_params *params ); - -struct cppISteamClient_SteamClient008_CreateLocalUser_params -{ - void *linux_side; - int32_t _ret; - int32_t *phSteamPipe; - uint32_t eAccountType; -}; -extern void cppISteamClient_SteamClient008_CreateLocalUser( struct cppISteamClient_SteamClient008_CreateLocalUser_params *params ); - -struct cppISteamClient_SteamClient008_ReleaseUser_params -{ - void *linux_side; - int32_t hSteamPipe; - int32_t hUser; -}; -extern void cppISteamClient_SteamClient008_ReleaseUser( struct cppISteamClient_SteamClient008_ReleaseUser_params *params ); - -struct cppISteamClient_SteamClient008_GetISteamUser_params -{ - void *linux_side; - void /*ISteamUser*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient008_GetISteamUser( struct cppISteamClient_SteamClient008_GetISteamUser_params *params ); - -struct cppISteamClient_SteamClient008_GetISteamGameServer_params -{ - void *linux_side; - void /*ISteamGameServer*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient008_GetISteamGameServer( struct cppISteamClient_SteamClient008_GetISteamGameServer_params *params ); - -struct cppISteamClient_SteamClient008_SetLocalIPBinding_params -{ - void *linux_side; - uint32_t unIP; - uint16_t usPort; -}; -extern void cppISteamClient_SteamClient008_SetLocalIPBinding( struct cppISteamClient_SteamClient008_SetLocalIPBinding_params *params ); - -struct cppISteamClient_SteamClient008_GetISteamFriends_params -{ - void *linux_side; - void /*ISteamFriends*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient008_GetISteamFriends( struct cppISteamClient_SteamClient008_GetISteamFriends_params *params ); - -struct cppISteamClient_SteamClient008_GetISteamUtils_params -{ - void *linux_side; - void /*ISteamUtils*/ *_ret; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient008_GetISteamUtils( struct cppISteamClient_SteamClient008_GetISteamUtils_params *params ); - -struct cppISteamClient_SteamClient008_GetISteamMatchmaking_params -{ - void *linux_side; - void /*ISteamMatchmaking*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient008_GetISteamMatchmaking( struct cppISteamClient_SteamClient008_GetISteamMatchmaking_params *params ); - -struct cppISteamClient_SteamClient008_GetISteamMasterServerUpdater_params -{ - void *linux_side; - void /*ISteamMasterServerUpdater*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient008_GetISteamMasterServerUpdater( struct cppISteamClient_SteamClient008_GetISteamMasterServerUpdater_params *params ); - -struct cppISteamClient_SteamClient008_GetISteamMatchmakingServers_params -{ - void *linux_side; - void /*ISteamMatchmakingServers*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient008_GetISteamMatchmakingServers( struct cppISteamClient_SteamClient008_GetISteamMatchmakingServers_params *params ); - -struct cppISteamClient_SteamClient008_GetISteamGenericInterface_params -{ - void *linux_side; - void *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient008_GetISteamGenericInterface( struct cppISteamClient_SteamClient008_GetISteamGenericInterface_params *params ); - -struct cppISteamClient_SteamClient008_GetISteamUserStats_params -{ - void *linux_side; - void /*ISteamUserStats*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient008_GetISteamUserStats( struct cppISteamClient_SteamClient008_GetISteamUserStats_params *params ); - -struct cppISteamClient_SteamClient008_GetISteamApps_params -{ - void *linux_side; - void /*ISteamApps*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient008_GetISteamApps( struct cppISteamClient_SteamClient008_GetISteamApps_params *params ); - -struct cppISteamClient_SteamClient008_GetISteamNetworking_params -{ - void *linux_side; - void /*ISteamNetworking*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient008_GetISteamNetworking( struct cppISteamClient_SteamClient008_GetISteamNetworking_params *params ); - -struct cppISteamClient_SteamClient008_GetISteamRemoteStorage_params -{ - void *linux_side; - void /*ISteamRemoteStorage*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient008_GetISteamRemoteStorage( struct cppISteamClient_SteamClient008_GetISteamRemoteStorage_params *params ); - -struct cppISteamClient_SteamClient008_RunFrame_params -{ - void *linux_side; -}; -extern void cppISteamClient_SteamClient008_RunFrame( struct cppISteamClient_SteamClient008_RunFrame_params *params ); - -struct cppISteamClient_SteamClient008_GetIPCCallCount_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamClient_SteamClient008_GetIPCCallCount( struct cppISteamClient_SteamClient008_GetIPCCallCount_params *params ); - -struct cppISteamClient_SteamClient008_SetWarningMessageHook_params -{ - void *linux_side; - void (*W_CDECL pFunction)(int32_t, const char *); -}; -extern void cppISteamClient_SteamClient008_SetWarningMessageHook( struct cppISteamClient_SteamClient008_SetWarningMessageHook_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamClient_SteamClient009.cpp b/lsteamclient/cppISteamClient_SteamClient009.cpp index f7e67eac..a342c553 100644 --- a/lsteamclient/cppISteamClient_SteamClient009.cpp +++ b/lsteamclient/cppISteamClient_SteamClient009.cpp @@ -1,137 +1,180 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamClient_SteamClient009.h" -void cppISteamClient_SteamClient009_CreateSteamPipe( struct cppISteamClient_SteamClient009_CreateSteamPipe_params *params ) +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; params->_ret = iface->CreateSteamPipe( ); + return 0; } -void cppISteamClient_SteamClient009_BReleaseSteamPipe( struct cppISteamClient_SteamClient009_BReleaseSteamPipe_params *params ) +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; params->_ret = iface->BReleaseSteamPipe( params->hSteamPipe ); + return 0; } -void cppISteamClient_SteamClient009_ConnectToGlobalUser( struct cppISteamClient_SteamClient009_ConnectToGlobalUser_params *params ) +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; params->_ret = iface->ConnectToGlobalUser( params->hSteamPipe ); + return 0; } -void cppISteamClient_SteamClient009_CreateLocalUser( struct cppISteamClient_SteamClient009_CreateLocalUser_params *params ) +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; params->_ret = iface->CreateLocalUser( params->phSteamPipe, params->eAccountType ); + return 0; } -void cppISteamClient_SteamClient009_ReleaseUser( struct cppISteamClient_SteamClient009_ReleaseUser_params *params ) +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; iface->ReleaseUser( params->hSteamPipe, params->hUser ); + return 0; } -void cppISteamClient_SteamClient009_GetISteamUser( struct cppISteamClient_SteamClient009_GetISteamUser_params *params ) +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; params->_ret = iface->GetISteamUser( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient009_GetISteamGameServer( struct cppISteamClient_SteamClient009_GetISteamGameServer_params *params ) +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; params->_ret = iface->GetISteamGameServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient009_SetLocalIPBinding( struct cppISteamClient_SteamClient009_SetLocalIPBinding_params *params ) +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; iface->SetLocalIPBinding( params->unIP, params->usPort ); + return 0; } -void cppISteamClient_SteamClient009_GetISteamFriends( struct cppISteamClient_SteamClient009_GetISteamFriends_params *params ) +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; params->_ret = iface->GetISteamFriends( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient009_GetISteamUtils( struct cppISteamClient_SteamClient009_GetISteamUtils_params *params ) +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; params->_ret = iface->GetISteamUtils( params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient009_GetISteamMatchmaking( struct cppISteamClient_SteamClient009_GetISteamMatchmaking_params *params ) +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; params->_ret = iface->GetISteamMatchmaking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient009_GetISteamMasterServerUpdater( struct cppISteamClient_SteamClient009_GetISteamMasterServerUpdater_params *params ) +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; params->_ret = iface->GetISteamMasterServerUpdater( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient009_GetISteamMatchmakingServers( struct cppISteamClient_SteamClient009_GetISteamMatchmakingServers_params *params ) +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; params->_ret = iface->GetISteamMatchmakingServers( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient009_GetISteamGenericInterface( struct cppISteamClient_SteamClient009_GetISteamGenericInterface_params *params ) +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; params->_ret = iface->GetISteamGenericInterface( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient009_GetISteamUserStats( struct cppISteamClient_SteamClient009_GetISteamUserStats_params *params ) +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; params->_ret = iface->GetISteamUserStats( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient009_GetISteamGameServerStats( struct cppISteamClient_SteamClient009_GetISteamGameServerStats_params *params ) +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; params->_ret = iface->GetISteamGameServerStats( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient009_GetISteamApps( struct cppISteamClient_SteamClient009_GetISteamApps_params *params ) +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; params->_ret = iface->GetISteamApps( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient009_GetISteamNetworking( struct cppISteamClient_SteamClient009_GetISteamNetworking_params *params ) +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; params->_ret = iface->GetISteamNetworking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient009_GetISteamRemoteStorage( struct cppISteamClient_SteamClient009_GetISteamRemoteStorage_params *params ) +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; params->_ret = iface->GetISteamRemoteStorage( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient009_RunFrame( struct cppISteamClient_SteamClient009_RunFrame_params *params ) +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; iface->RunFrame( ); + return 0; } -void cppISteamClient_SteamClient009_GetIPCCallCount( struct cppISteamClient_SteamClient009_GetIPCCallCount_params *params ) +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; params->_ret = iface->GetIPCCallCount( ); + return 0; } -void cppISteamClient_SteamClient009_SetWarningMessageHook( struct cppISteamClient_SteamClient009_SetWarningMessageHook_params *params ) +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; 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.h b/lsteamclient/cppISteamClient_SteamClient009.h deleted file mode 100644 index 2e29d07e..00000000 --- a/lsteamclient/cppISteamClient_SteamClient009.h +++ /dev/null @@ -1,209 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamClient_SteamClient009_CreateSteamPipe_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamClient_SteamClient009_CreateSteamPipe( struct cppISteamClient_SteamClient009_CreateSteamPipe_params *params ); - -struct cppISteamClient_SteamClient009_BReleaseSteamPipe_params -{ - void *linux_side; - bool _ret; - int32_t hSteamPipe; -}; -extern void cppISteamClient_SteamClient009_BReleaseSteamPipe( struct cppISteamClient_SteamClient009_BReleaseSteamPipe_params *params ); - -struct cppISteamClient_SteamClient009_ConnectToGlobalUser_params -{ - void *linux_side; - int32_t _ret; - int32_t hSteamPipe; -}; -extern void cppISteamClient_SteamClient009_ConnectToGlobalUser( struct cppISteamClient_SteamClient009_ConnectToGlobalUser_params *params ); - -struct cppISteamClient_SteamClient009_CreateLocalUser_params -{ - void *linux_side; - int32_t _ret; - int32_t *phSteamPipe; - uint32_t eAccountType; -}; -extern void cppISteamClient_SteamClient009_CreateLocalUser( struct cppISteamClient_SteamClient009_CreateLocalUser_params *params ); - -struct cppISteamClient_SteamClient009_ReleaseUser_params -{ - void *linux_side; - int32_t hSteamPipe; - int32_t hUser; -}; -extern void cppISteamClient_SteamClient009_ReleaseUser( struct cppISteamClient_SteamClient009_ReleaseUser_params *params ); - -struct cppISteamClient_SteamClient009_GetISteamUser_params -{ - void *linux_side; - void /*ISteamUser*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient009_GetISteamUser( struct cppISteamClient_SteamClient009_GetISteamUser_params *params ); - -struct cppISteamClient_SteamClient009_GetISteamGameServer_params -{ - void *linux_side; - void /*ISteamGameServer*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient009_GetISteamGameServer( struct cppISteamClient_SteamClient009_GetISteamGameServer_params *params ); - -struct cppISteamClient_SteamClient009_SetLocalIPBinding_params -{ - void *linux_side; - uint32_t unIP; - uint16_t usPort; -}; -extern void cppISteamClient_SteamClient009_SetLocalIPBinding( struct cppISteamClient_SteamClient009_SetLocalIPBinding_params *params ); - -struct cppISteamClient_SteamClient009_GetISteamFriends_params -{ - void *linux_side; - void /*ISteamFriends*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient009_GetISteamFriends( struct cppISteamClient_SteamClient009_GetISteamFriends_params *params ); - -struct cppISteamClient_SteamClient009_GetISteamUtils_params -{ - void *linux_side; - void /*ISteamUtils*/ *_ret; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient009_GetISteamUtils( struct cppISteamClient_SteamClient009_GetISteamUtils_params *params ); - -struct cppISteamClient_SteamClient009_GetISteamMatchmaking_params -{ - void *linux_side; - void /*ISteamMatchmaking*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient009_GetISteamMatchmaking( struct cppISteamClient_SteamClient009_GetISteamMatchmaking_params *params ); - -struct cppISteamClient_SteamClient009_GetISteamMasterServerUpdater_params -{ - void *linux_side; - void /*ISteamMasterServerUpdater*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient009_GetISteamMasterServerUpdater( struct cppISteamClient_SteamClient009_GetISteamMasterServerUpdater_params *params ); - -struct cppISteamClient_SteamClient009_GetISteamMatchmakingServers_params -{ - void *linux_side; - void /*ISteamMatchmakingServers*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient009_GetISteamMatchmakingServers( struct cppISteamClient_SteamClient009_GetISteamMatchmakingServers_params *params ); - -struct cppISteamClient_SteamClient009_GetISteamGenericInterface_params -{ - void *linux_side; - void *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient009_GetISteamGenericInterface( struct cppISteamClient_SteamClient009_GetISteamGenericInterface_params *params ); - -struct cppISteamClient_SteamClient009_GetISteamUserStats_params -{ - void *linux_side; - void /*ISteamUserStats*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient009_GetISteamUserStats( struct cppISteamClient_SteamClient009_GetISteamUserStats_params *params ); - -struct cppISteamClient_SteamClient009_GetISteamGameServerStats_params -{ - void *linux_side; - void /*ISteamGameServerStats*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient009_GetISteamGameServerStats( struct cppISteamClient_SteamClient009_GetISteamGameServerStats_params *params ); - -struct cppISteamClient_SteamClient009_GetISteamApps_params -{ - void *linux_side; - void /*ISteamApps*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient009_GetISteamApps( struct cppISteamClient_SteamClient009_GetISteamApps_params *params ); - -struct cppISteamClient_SteamClient009_GetISteamNetworking_params -{ - void *linux_side; - void /*ISteamNetworking*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient009_GetISteamNetworking( struct cppISteamClient_SteamClient009_GetISteamNetworking_params *params ); - -struct cppISteamClient_SteamClient009_GetISteamRemoteStorage_params -{ - void *linux_side; - void /*ISteamRemoteStorage*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient009_GetISteamRemoteStorage( struct cppISteamClient_SteamClient009_GetISteamRemoteStorage_params *params ); - -struct cppISteamClient_SteamClient009_RunFrame_params -{ - void *linux_side; -}; -extern void cppISteamClient_SteamClient009_RunFrame( struct cppISteamClient_SteamClient009_RunFrame_params *params ); - -struct cppISteamClient_SteamClient009_GetIPCCallCount_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamClient_SteamClient009_GetIPCCallCount( struct cppISteamClient_SteamClient009_GetIPCCallCount_params *params ); - -struct cppISteamClient_SteamClient009_SetWarningMessageHook_params -{ - void *linux_side; - void (*W_CDECL pFunction)(int32_t, const char *); -}; -extern void cppISteamClient_SteamClient009_SetWarningMessageHook( struct cppISteamClient_SteamClient009_SetWarningMessageHook_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamClient_SteamClient010.cpp b/lsteamclient/cppISteamClient_SteamClient010.cpp index 433f79f8..729c2687 100644 --- a/lsteamclient/cppISteamClient_SteamClient010.cpp +++ b/lsteamclient/cppISteamClient_SteamClient010.cpp @@ -1,149 +1,196 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamClient_SteamClient010.h" -void cppISteamClient_SteamClient010_CreateSteamPipe( struct cppISteamClient_SteamClient010_CreateSteamPipe_params *params ) +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; params->_ret = iface->CreateSteamPipe( ); + return 0; } -void cppISteamClient_SteamClient010_BReleaseSteamPipe( struct cppISteamClient_SteamClient010_BReleaseSteamPipe_params *params ) +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; params->_ret = iface->BReleaseSteamPipe( params->hSteamPipe ); + return 0; } -void cppISteamClient_SteamClient010_ConnectToGlobalUser( struct cppISteamClient_SteamClient010_ConnectToGlobalUser_params *params ) +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; params->_ret = iface->ConnectToGlobalUser( params->hSteamPipe ); + return 0; } -void cppISteamClient_SteamClient010_CreateLocalUser( struct cppISteamClient_SteamClient010_CreateLocalUser_params *params ) +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; params->_ret = iface->CreateLocalUser( params->phSteamPipe, params->eAccountType ); + return 0; } -void cppISteamClient_SteamClient010_ReleaseUser( struct cppISteamClient_SteamClient010_ReleaseUser_params *params ) +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; iface->ReleaseUser( params->hSteamPipe, params->hUser ); + return 0; } -void cppISteamClient_SteamClient010_GetISteamUser( struct cppISteamClient_SteamClient010_GetISteamUser_params *params ) +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; params->_ret = iface->GetISteamUser( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient010_GetISteamGameServer( struct cppISteamClient_SteamClient010_GetISteamGameServer_params *params ) +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; params->_ret = iface->GetISteamGameServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient010_SetLocalIPBinding( struct cppISteamClient_SteamClient010_SetLocalIPBinding_params *params ) +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; iface->SetLocalIPBinding( params->unIP, params->usPort ); + return 0; } -void cppISteamClient_SteamClient010_GetISteamFriends( struct cppISteamClient_SteamClient010_GetISteamFriends_params *params ) +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; params->_ret = iface->GetISteamFriends( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient010_GetISteamUtils( struct cppISteamClient_SteamClient010_GetISteamUtils_params *params ) +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; params->_ret = iface->GetISteamUtils( params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient010_GetISteamMatchmaking( struct cppISteamClient_SteamClient010_GetISteamMatchmaking_params *params ) +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; params->_ret = iface->GetISteamMatchmaking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient010_GetISteamMasterServerUpdater( struct cppISteamClient_SteamClient010_GetISteamMasterServerUpdater_params *params ) +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; params->_ret = iface->GetISteamMasterServerUpdater( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient010_GetISteamMatchmakingServers( struct cppISteamClient_SteamClient010_GetISteamMatchmakingServers_params *params ) +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; params->_ret = iface->GetISteamMatchmakingServers( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient010_GetISteamGenericInterface( struct cppISteamClient_SteamClient010_GetISteamGenericInterface_params *params ) +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; params->_ret = iface->GetISteamGenericInterface( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient010_GetISteamUserStats( struct cppISteamClient_SteamClient010_GetISteamUserStats_params *params ) +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; params->_ret = iface->GetISteamUserStats( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient010_GetISteamGameServerStats( struct cppISteamClient_SteamClient010_GetISteamGameServerStats_params *params ) +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; params->_ret = iface->GetISteamGameServerStats( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient010_GetISteamApps( struct cppISteamClient_SteamClient010_GetISteamApps_params *params ) +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; params->_ret = iface->GetISteamApps( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient010_GetISteamNetworking( struct cppISteamClient_SteamClient010_GetISteamNetworking_params *params ) +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; params->_ret = iface->GetISteamNetworking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient010_GetISteamRemoteStorage( struct cppISteamClient_SteamClient010_GetISteamRemoteStorage_params *params ) +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; params->_ret = iface->GetISteamRemoteStorage( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient010_RunFrame( struct cppISteamClient_SteamClient010_RunFrame_params *params ) +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; iface->RunFrame( ); + return 0; } -void cppISteamClient_SteamClient010_GetIPCCallCount( struct cppISteamClient_SteamClient010_GetIPCCallCount_params *params ) +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; params->_ret = iface->GetIPCCallCount( ); + return 0; } -void cppISteamClient_SteamClient010_SetWarningMessageHook( struct cppISteamClient_SteamClient010_SetWarningMessageHook_params *params ) +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; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); + return 0; } -void cppISteamClient_SteamClient010_BShutdownIfAllPipesClosed( struct cppISteamClient_SteamClient010_BShutdownIfAllPipesClosed_params *params ) +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; params->_ret = iface->BShutdownIfAllPipesClosed( ); + return 0; } -void cppISteamClient_SteamClient010_GetISteamHTTP( struct cppISteamClient_SteamClient010_GetISteamHTTP_params *params ) +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; params->_ret = iface->GetISteamHTTP( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } diff --git a/lsteamclient/cppISteamClient_SteamClient010.h b/lsteamclient/cppISteamClient_SteamClient010.h deleted file mode 100644 index ceb3d44a..00000000 --- a/lsteamclient/cppISteamClient_SteamClient010.h +++ /dev/null @@ -1,226 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamClient_SteamClient010_CreateSteamPipe_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamClient_SteamClient010_CreateSteamPipe( struct cppISteamClient_SteamClient010_CreateSteamPipe_params *params ); - -struct cppISteamClient_SteamClient010_BReleaseSteamPipe_params -{ - void *linux_side; - bool _ret; - int32_t hSteamPipe; -}; -extern void cppISteamClient_SteamClient010_BReleaseSteamPipe( struct cppISteamClient_SteamClient010_BReleaseSteamPipe_params *params ); - -struct cppISteamClient_SteamClient010_ConnectToGlobalUser_params -{ - void *linux_side; - int32_t _ret; - int32_t hSteamPipe; -}; -extern void cppISteamClient_SteamClient010_ConnectToGlobalUser( struct cppISteamClient_SteamClient010_ConnectToGlobalUser_params *params ); - -struct cppISteamClient_SteamClient010_CreateLocalUser_params -{ - void *linux_side; - int32_t _ret; - int32_t *phSteamPipe; - uint32_t eAccountType; -}; -extern void cppISteamClient_SteamClient010_CreateLocalUser( struct cppISteamClient_SteamClient010_CreateLocalUser_params *params ); - -struct cppISteamClient_SteamClient010_ReleaseUser_params -{ - void *linux_side; - int32_t hSteamPipe; - int32_t hUser; -}; -extern void cppISteamClient_SteamClient010_ReleaseUser( struct cppISteamClient_SteamClient010_ReleaseUser_params *params ); - -struct cppISteamClient_SteamClient010_GetISteamUser_params -{ - void *linux_side; - void /*ISteamUser*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient010_GetISteamUser( struct cppISteamClient_SteamClient010_GetISteamUser_params *params ); - -struct cppISteamClient_SteamClient010_GetISteamGameServer_params -{ - void *linux_side; - void /*ISteamGameServer*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient010_GetISteamGameServer( struct cppISteamClient_SteamClient010_GetISteamGameServer_params *params ); - -struct cppISteamClient_SteamClient010_SetLocalIPBinding_params -{ - void *linux_side; - uint32_t unIP; - uint16_t usPort; -}; -extern void cppISteamClient_SteamClient010_SetLocalIPBinding( struct cppISteamClient_SteamClient010_SetLocalIPBinding_params *params ); - -struct cppISteamClient_SteamClient010_GetISteamFriends_params -{ - void *linux_side; - void /*ISteamFriends*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient010_GetISteamFriends( struct cppISteamClient_SteamClient010_GetISteamFriends_params *params ); - -struct cppISteamClient_SteamClient010_GetISteamUtils_params -{ - void *linux_side; - void /*ISteamUtils*/ *_ret; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient010_GetISteamUtils( struct cppISteamClient_SteamClient010_GetISteamUtils_params *params ); - -struct cppISteamClient_SteamClient010_GetISteamMatchmaking_params -{ - void *linux_side; - void /*ISteamMatchmaking*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient010_GetISteamMatchmaking( struct cppISteamClient_SteamClient010_GetISteamMatchmaking_params *params ); - -struct cppISteamClient_SteamClient010_GetISteamMasterServerUpdater_params -{ - void *linux_side; - void /*ISteamMasterServerUpdater*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient010_GetISteamMasterServerUpdater( struct cppISteamClient_SteamClient010_GetISteamMasterServerUpdater_params *params ); - -struct cppISteamClient_SteamClient010_GetISteamMatchmakingServers_params -{ - void *linux_side; - void /*ISteamMatchmakingServers*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient010_GetISteamMatchmakingServers( struct cppISteamClient_SteamClient010_GetISteamMatchmakingServers_params *params ); - -struct cppISteamClient_SteamClient010_GetISteamGenericInterface_params -{ - void *linux_side; - void *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient010_GetISteamGenericInterface( struct cppISteamClient_SteamClient010_GetISteamGenericInterface_params *params ); - -struct cppISteamClient_SteamClient010_GetISteamUserStats_params -{ - void *linux_side; - void /*ISteamUserStats*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient010_GetISteamUserStats( struct cppISteamClient_SteamClient010_GetISteamUserStats_params *params ); - -struct cppISteamClient_SteamClient010_GetISteamGameServerStats_params -{ - void *linux_side; - void /*ISteamGameServerStats*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient010_GetISteamGameServerStats( struct cppISteamClient_SteamClient010_GetISteamGameServerStats_params *params ); - -struct cppISteamClient_SteamClient010_GetISteamApps_params -{ - void *linux_side; - void /*ISteamApps*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient010_GetISteamApps( struct cppISteamClient_SteamClient010_GetISteamApps_params *params ); - -struct cppISteamClient_SteamClient010_GetISteamNetworking_params -{ - void *linux_side; - void /*ISteamNetworking*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient010_GetISteamNetworking( struct cppISteamClient_SteamClient010_GetISteamNetworking_params *params ); - -struct cppISteamClient_SteamClient010_GetISteamRemoteStorage_params -{ - void *linux_side; - void /*ISteamRemoteStorage*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient010_GetISteamRemoteStorage( struct cppISteamClient_SteamClient010_GetISteamRemoteStorage_params *params ); - -struct cppISteamClient_SteamClient010_RunFrame_params -{ - void *linux_side; -}; -extern void cppISteamClient_SteamClient010_RunFrame( struct cppISteamClient_SteamClient010_RunFrame_params *params ); - -struct cppISteamClient_SteamClient010_GetIPCCallCount_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamClient_SteamClient010_GetIPCCallCount( struct cppISteamClient_SteamClient010_GetIPCCallCount_params *params ); - -struct cppISteamClient_SteamClient010_SetWarningMessageHook_params -{ - void *linux_side; - void (*W_CDECL pFunction)(int32_t, const char *); -}; -extern void cppISteamClient_SteamClient010_SetWarningMessageHook( struct cppISteamClient_SteamClient010_SetWarningMessageHook_params *params ); - -struct cppISteamClient_SteamClient010_BShutdownIfAllPipesClosed_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamClient_SteamClient010_BShutdownIfAllPipesClosed( struct cppISteamClient_SteamClient010_BShutdownIfAllPipesClosed_params *params ); - -struct cppISteamClient_SteamClient010_GetISteamHTTP_params -{ - void *linux_side; - void /*ISteamHTTP*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient010_GetISteamHTTP( struct cppISteamClient_SteamClient010_GetISteamHTTP_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamClient_SteamClient011.cpp b/lsteamclient/cppISteamClient_SteamClient011.cpp index af0244e1..a455b8e0 100644 --- a/lsteamclient/cppISteamClient_SteamClient011.cpp +++ b/lsteamclient/cppISteamClient_SteamClient011.cpp @@ -1,155 +1,204 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamClient_SteamClient011.h" -void cppISteamClient_SteamClient011_CreateSteamPipe( struct cppISteamClient_SteamClient011_CreateSteamPipe_params *params ) +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; params->_ret = iface->CreateSteamPipe( ); + return 0; } -void cppISteamClient_SteamClient011_BReleaseSteamPipe( struct cppISteamClient_SteamClient011_BReleaseSteamPipe_params *params ) +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; params->_ret = iface->BReleaseSteamPipe( params->hSteamPipe ); + return 0; } -void cppISteamClient_SteamClient011_ConnectToGlobalUser( struct cppISteamClient_SteamClient011_ConnectToGlobalUser_params *params ) +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; params->_ret = iface->ConnectToGlobalUser( params->hSteamPipe ); + return 0; } -void cppISteamClient_SteamClient011_CreateLocalUser( struct cppISteamClient_SteamClient011_CreateLocalUser_params *params ) +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; params->_ret = iface->CreateLocalUser( params->phSteamPipe, params->eAccountType ); + return 0; } -void cppISteamClient_SteamClient011_ReleaseUser( struct cppISteamClient_SteamClient011_ReleaseUser_params *params ) +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; iface->ReleaseUser( params->hSteamPipe, params->hUser ); + return 0; } -void cppISteamClient_SteamClient011_GetISteamUser( struct cppISteamClient_SteamClient011_GetISteamUser_params *params ) +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; params->_ret = iface->GetISteamUser( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient011_GetISteamGameServer( struct cppISteamClient_SteamClient011_GetISteamGameServer_params *params ) +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; params->_ret = iface->GetISteamGameServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient011_SetLocalIPBinding( struct cppISteamClient_SteamClient011_SetLocalIPBinding_params *params ) +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; iface->SetLocalIPBinding( params->unIP, params->usPort ); + return 0; } -void cppISteamClient_SteamClient011_GetISteamFriends( struct cppISteamClient_SteamClient011_GetISteamFriends_params *params ) +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; params->_ret = iface->GetISteamFriends( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient011_GetISteamUtils( struct cppISteamClient_SteamClient011_GetISteamUtils_params *params ) +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; params->_ret = iface->GetISteamUtils( params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient011_GetISteamMatchmaking( struct cppISteamClient_SteamClient011_GetISteamMatchmaking_params *params ) +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; params->_ret = iface->GetISteamMatchmaking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient011_GetISteamMasterServerUpdater( struct cppISteamClient_SteamClient011_GetISteamMasterServerUpdater_params *params ) +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; params->_ret = iface->GetISteamMasterServerUpdater( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient011_GetISteamMatchmakingServers( struct cppISteamClient_SteamClient011_GetISteamMatchmakingServers_params *params ) +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; params->_ret = iface->GetISteamMatchmakingServers( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient011_GetISteamGenericInterface( struct cppISteamClient_SteamClient011_GetISteamGenericInterface_params *params ) +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; params->_ret = iface->GetISteamGenericInterface( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient011_GetISteamUserStats( struct cppISteamClient_SteamClient011_GetISteamUserStats_params *params ) +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; params->_ret = iface->GetISteamUserStats( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient011_GetISteamGameServerStats( struct cppISteamClient_SteamClient011_GetISteamGameServerStats_params *params ) +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; params->_ret = iface->GetISteamGameServerStats( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient011_GetISteamApps( struct cppISteamClient_SteamClient011_GetISteamApps_params *params ) +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; params->_ret = iface->GetISteamApps( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient011_GetISteamNetworking( struct cppISteamClient_SteamClient011_GetISteamNetworking_params *params ) +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; params->_ret = iface->GetISteamNetworking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient011_GetISteamRemoteStorage( struct cppISteamClient_SteamClient011_GetISteamRemoteStorage_params *params ) +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; params->_ret = iface->GetISteamRemoteStorage( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient011_GetISteamScreenshots( struct cppISteamClient_SteamClient011_GetISteamScreenshots_params *params ) +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; params->_ret = iface->GetISteamScreenshots( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient011_RunFrame( struct cppISteamClient_SteamClient011_RunFrame_params *params ) +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; iface->RunFrame( ); + return 0; } -void cppISteamClient_SteamClient011_GetIPCCallCount( struct cppISteamClient_SteamClient011_GetIPCCallCount_params *params ) +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; params->_ret = iface->GetIPCCallCount( ); + return 0; } -void cppISteamClient_SteamClient011_SetWarningMessageHook( struct cppISteamClient_SteamClient011_SetWarningMessageHook_params *params ) +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; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); + return 0; } -void cppISteamClient_SteamClient011_BShutdownIfAllPipesClosed( struct cppISteamClient_SteamClient011_BShutdownIfAllPipesClosed_params *params ) +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; params->_ret = iface->BShutdownIfAllPipesClosed( ); + return 0; } -void cppISteamClient_SteamClient011_GetISteamHTTP( struct cppISteamClient_SteamClient011_GetISteamHTTP_params *params ) +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; params->_ret = iface->GetISteamHTTP( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } diff --git a/lsteamclient/cppISteamClient_SteamClient011.h b/lsteamclient/cppISteamClient_SteamClient011.h deleted file mode 100644 index 2ee073af..00000000 --- a/lsteamclient/cppISteamClient_SteamClient011.h +++ /dev/null @@ -1,236 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamClient_SteamClient011_CreateSteamPipe_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamClient_SteamClient011_CreateSteamPipe( struct cppISteamClient_SteamClient011_CreateSteamPipe_params *params ); - -struct cppISteamClient_SteamClient011_BReleaseSteamPipe_params -{ - void *linux_side; - bool _ret; - int32_t hSteamPipe; -}; -extern void cppISteamClient_SteamClient011_BReleaseSteamPipe( struct cppISteamClient_SteamClient011_BReleaseSteamPipe_params *params ); - -struct cppISteamClient_SteamClient011_ConnectToGlobalUser_params -{ - void *linux_side; - int32_t _ret; - int32_t hSteamPipe; -}; -extern void cppISteamClient_SteamClient011_ConnectToGlobalUser( struct cppISteamClient_SteamClient011_ConnectToGlobalUser_params *params ); - -struct cppISteamClient_SteamClient011_CreateLocalUser_params -{ - void *linux_side; - int32_t _ret; - int32_t *phSteamPipe; - uint32_t eAccountType; -}; -extern void cppISteamClient_SteamClient011_CreateLocalUser( struct cppISteamClient_SteamClient011_CreateLocalUser_params *params ); - -struct cppISteamClient_SteamClient011_ReleaseUser_params -{ - void *linux_side; - int32_t hSteamPipe; - int32_t hUser; -}; -extern void cppISteamClient_SteamClient011_ReleaseUser( struct cppISteamClient_SteamClient011_ReleaseUser_params *params ); - -struct cppISteamClient_SteamClient011_GetISteamUser_params -{ - void *linux_side; - void /*ISteamUser*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient011_GetISteamUser( struct cppISteamClient_SteamClient011_GetISteamUser_params *params ); - -struct cppISteamClient_SteamClient011_GetISteamGameServer_params -{ - void *linux_side; - void /*ISteamGameServer*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient011_GetISteamGameServer( struct cppISteamClient_SteamClient011_GetISteamGameServer_params *params ); - -struct cppISteamClient_SteamClient011_SetLocalIPBinding_params -{ - void *linux_side; - uint32_t unIP; - uint16_t usPort; -}; -extern void cppISteamClient_SteamClient011_SetLocalIPBinding( struct cppISteamClient_SteamClient011_SetLocalIPBinding_params *params ); - -struct cppISteamClient_SteamClient011_GetISteamFriends_params -{ - void *linux_side; - void /*ISteamFriends*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient011_GetISteamFriends( struct cppISteamClient_SteamClient011_GetISteamFriends_params *params ); - -struct cppISteamClient_SteamClient011_GetISteamUtils_params -{ - void *linux_side; - void /*ISteamUtils*/ *_ret; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient011_GetISteamUtils( struct cppISteamClient_SteamClient011_GetISteamUtils_params *params ); - -struct cppISteamClient_SteamClient011_GetISteamMatchmaking_params -{ - void *linux_side; - void /*ISteamMatchmaking*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient011_GetISteamMatchmaking( struct cppISteamClient_SteamClient011_GetISteamMatchmaking_params *params ); - -struct cppISteamClient_SteamClient011_GetISteamMasterServerUpdater_params -{ - void *linux_side; - void /*ISteamMasterServerUpdater*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient011_GetISteamMasterServerUpdater( struct cppISteamClient_SteamClient011_GetISteamMasterServerUpdater_params *params ); - -struct cppISteamClient_SteamClient011_GetISteamMatchmakingServers_params -{ - void *linux_side; - void /*ISteamMatchmakingServers*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient011_GetISteamMatchmakingServers( struct cppISteamClient_SteamClient011_GetISteamMatchmakingServers_params *params ); - -struct cppISteamClient_SteamClient011_GetISteamGenericInterface_params -{ - void *linux_side; - void *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient011_GetISteamGenericInterface( struct cppISteamClient_SteamClient011_GetISteamGenericInterface_params *params ); - -struct cppISteamClient_SteamClient011_GetISteamUserStats_params -{ - void *linux_side; - void /*ISteamUserStats*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient011_GetISteamUserStats( struct cppISteamClient_SteamClient011_GetISteamUserStats_params *params ); - -struct cppISteamClient_SteamClient011_GetISteamGameServerStats_params -{ - void *linux_side; - void /*ISteamGameServerStats*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient011_GetISteamGameServerStats( struct cppISteamClient_SteamClient011_GetISteamGameServerStats_params *params ); - -struct cppISteamClient_SteamClient011_GetISteamApps_params -{ - void *linux_side; - void /*ISteamApps*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient011_GetISteamApps( struct cppISteamClient_SteamClient011_GetISteamApps_params *params ); - -struct cppISteamClient_SteamClient011_GetISteamNetworking_params -{ - void *linux_side; - void /*ISteamNetworking*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient011_GetISteamNetworking( struct cppISteamClient_SteamClient011_GetISteamNetworking_params *params ); - -struct cppISteamClient_SteamClient011_GetISteamRemoteStorage_params -{ - void *linux_side; - void /*ISteamRemoteStorage*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient011_GetISteamRemoteStorage( struct cppISteamClient_SteamClient011_GetISteamRemoteStorage_params *params ); - -struct cppISteamClient_SteamClient011_GetISteamScreenshots_params -{ - void *linux_side; - void /*ISteamScreenshots*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient011_GetISteamScreenshots( struct cppISteamClient_SteamClient011_GetISteamScreenshots_params *params ); - -struct cppISteamClient_SteamClient011_RunFrame_params -{ - void *linux_side; -}; -extern void cppISteamClient_SteamClient011_RunFrame( struct cppISteamClient_SteamClient011_RunFrame_params *params ); - -struct cppISteamClient_SteamClient011_GetIPCCallCount_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamClient_SteamClient011_GetIPCCallCount( struct cppISteamClient_SteamClient011_GetIPCCallCount_params *params ); - -struct cppISteamClient_SteamClient011_SetWarningMessageHook_params -{ - void *linux_side; - void (*W_CDECL pFunction)(int32_t, const char *); -}; -extern void cppISteamClient_SteamClient011_SetWarningMessageHook( struct cppISteamClient_SteamClient011_SetWarningMessageHook_params *params ); - -struct cppISteamClient_SteamClient011_BShutdownIfAllPipesClosed_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamClient_SteamClient011_BShutdownIfAllPipesClosed( struct cppISteamClient_SteamClient011_BShutdownIfAllPipesClosed_params *params ); - -struct cppISteamClient_SteamClient011_GetISteamHTTP_params -{ - void *linux_side; - void /*ISteamHTTP*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient011_GetISteamHTTP( struct cppISteamClient_SteamClient011_GetISteamHTTP_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamClient_SteamClient012.cpp b/lsteamclient/cppISteamClient_SteamClient012.cpp index 05685f75..f9beb85b 100644 --- a/lsteamclient/cppISteamClient_SteamClient012.cpp +++ b/lsteamclient/cppISteamClient_SteamClient012.cpp @@ -1,167 +1,220 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamClient_SteamClient012.h" -void cppISteamClient_SteamClient012_CreateSteamPipe( struct cppISteamClient_SteamClient012_CreateSteamPipe_params *params ) +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; params->_ret = iface->CreateSteamPipe( ); + return 0; } -void cppISteamClient_SteamClient012_BReleaseSteamPipe( struct cppISteamClient_SteamClient012_BReleaseSteamPipe_params *params ) +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; params->_ret = iface->BReleaseSteamPipe( params->hSteamPipe ); + return 0; } -void cppISteamClient_SteamClient012_ConnectToGlobalUser( struct cppISteamClient_SteamClient012_ConnectToGlobalUser_params *params ) +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; params->_ret = iface->ConnectToGlobalUser( params->hSteamPipe ); + return 0; } -void cppISteamClient_SteamClient012_CreateLocalUser( struct cppISteamClient_SteamClient012_CreateLocalUser_params *params ) +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; params->_ret = iface->CreateLocalUser( params->phSteamPipe, params->eAccountType ); + return 0; } -void cppISteamClient_SteamClient012_ReleaseUser( struct cppISteamClient_SteamClient012_ReleaseUser_params *params ) +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; iface->ReleaseUser( params->hSteamPipe, params->hUser ); + return 0; } -void cppISteamClient_SteamClient012_GetISteamUser( struct cppISteamClient_SteamClient012_GetISteamUser_params *params ) +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; params->_ret = iface->GetISteamUser( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient012_GetISteamGameServer( struct cppISteamClient_SteamClient012_GetISteamGameServer_params *params ) +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; params->_ret = iface->GetISteamGameServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient012_SetLocalIPBinding( struct cppISteamClient_SteamClient012_SetLocalIPBinding_params *params ) +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; iface->SetLocalIPBinding( params->unIP, params->usPort ); + return 0; } -void cppISteamClient_SteamClient012_GetISteamFriends( struct cppISteamClient_SteamClient012_GetISteamFriends_params *params ) +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; params->_ret = iface->GetISteamFriends( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient012_GetISteamUtils( struct cppISteamClient_SteamClient012_GetISteamUtils_params *params ) +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; params->_ret = iface->GetISteamUtils( params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient012_GetISteamMatchmaking( struct cppISteamClient_SteamClient012_GetISteamMatchmaking_params *params ) +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; params->_ret = iface->GetISteamMatchmaking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient012_GetISteamMatchmakingServers( struct cppISteamClient_SteamClient012_GetISteamMatchmakingServers_params *params ) +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; params->_ret = iface->GetISteamMatchmakingServers( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient012_GetISteamGenericInterface( struct cppISteamClient_SteamClient012_GetISteamGenericInterface_params *params ) +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; params->_ret = iface->GetISteamGenericInterface( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient012_GetISteamUserStats( struct cppISteamClient_SteamClient012_GetISteamUserStats_params *params ) +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; params->_ret = iface->GetISteamUserStats( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient012_GetISteamGameServerStats( struct cppISteamClient_SteamClient012_GetISteamGameServerStats_params *params ) +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; params->_ret = iface->GetISteamGameServerStats( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient012_GetISteamApps( struct cppISteamClient_SteamClient012_GetISteamApps_params *params ) +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; params->_ret = iface->GetISteamApps( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient012_GetISteamNetworking( struct cppISteamClient_SteamClient012_GetISteamNetworking_params *params ) +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; params->_ret = iface->GetISteamNetworking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient012_GetISteamRemoteStorage( struct cppISteamClient_SteamClient012_GetISteamRemoteStorage_params *params ) +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; params->_ret = iface->GetISteamRemoteStorage( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient012_GetISteamScreenshots( struct cppISteamClient_SteamClient012_GetISteamScreenshots_params *params ) +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; params->_ret = iface->GetISteamScreenshots( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient012_RunFrame( struct cppISteamClient_SteamClient012_RunFrame_params *params ) +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; iface->RunFrame( ); + return 0; } -void cppISteamClient_SteamClient012_GetIPCCallCount( struct cppISteamClient_SteamClient012_GetIPCCallCount_params *params ) +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; params->_ret = iface->GetIPCCallCount( ); + return 0; } -void cppISteamClient_SteamClient012_SetWarningMessageHook( struct cppISteamClient_SteamClient012_SetWarningMessageHook_params *params ) +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; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); + return 0; } -void cppISteamClient_SteamClient012_BShutdownIfAllPipesClosed( struct cppISteamClient_SteamClient012_BShutdownIfAllPipesClosed_params *params ) +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; params->_ret = iface->BShutdownIfAllPipesClosed( ); + return 0; } -void cppISteamClient_SteamClient012_GetISteamHTTP( struct cppISteamClient_SteamClient012_GetISteamHTTP_params *params ) +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; params->_ret = iface->GetISteamHTTP( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient012_GetISteamUnifiedMessages( struct cppISteamClient_SteamClient012_GetISteamUnifiedMessages_params *params ) +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; params->_ret = iface->GetISteamUnifiedMessages( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient012_GetISteamController( struct cppISteamClient_SteamClient012_GetISteamController_params *params ) +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; params->_ret = iface->GetISteamController( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient012_GetISteamUGC( struct cppISteamClient_SteamClient012_GetISteamUGC_params *params ) +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; params->_ret = iface->GetISteamUGC( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } diff --git a/lsteamclient/cppISteamClient_SteamClient012.h b/lsteamclient/cppISteamClient_SteamClient012.h deleted file mode 100644 index e70d06b7..00000000 --- a/lsteamclient/cppISteamClient_SteamClient012.h +++ /dev/null @@ -1,256 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamClient_SteamClient012_CreateSteamPipe_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamClient_SteamClient012_CreateSteamPipe( struct cppISteamClient_SteamClient012_CreateSteamPipe_params *params ); - -struct cppISteamClient_SteamClient012_BReleaseSteamPipe_params -{ - void *linux_side; - bool _ret; - int32_t hSteamPipe; -}; -extern void cppISteamClient_SteamClient012_BReleaseSteamPipe( struct cppISteamClient_SteamClient012_BReleaseSteamPipe_params *params ); - -struct cppISteamClient_SteamClient012_ConnectToGlobalUser_params -{ - void *linux_side; - int32_t _ret; - int32_t hSteamPipe; -}; -extern void cppISteamClient_SteamClient012_ConnectToGlobalUser( struct cppISteamClient_SteamClient012_ConnectToGlobalUser_params *params ); - -struct cppISteamClient_SteamClient012_CreateLocalUser_params -{ - void *linux_side; - int32_t _ret; - int32_t *phSteamPipe; - uint32_t eAccountType; -}; -extern void cppISteamClient_SteamClient012_CreateLocalUser( struct cppISteamClient_SteamClient012_CreateLocalUser_params *params ); - -struct cppISteamClient_SteamClient012_ReleaseUser_params -{ - void *linux_side; - int32_t hSteamPipe; - int32_t hUser; -}; -extern void cppISteamClient_SteamClient012_ReleaseUser( struct cppISteamClient_SteamClient012_ReleaseUser_params *params ); - -struct cppISteamClient_SteamClient012_GetISteamUser_params -{ - void *linux_side; - void /*ISteamUser*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient012_GetISteamUser( struct cppISteamClient_SteamClient012_GetISteamUser_params *params ); - -struct cppISteamClient_SteamClient012_GetISteamGameServer_params -{ - void *linux_side; - void /*ISteamGameServer*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient012_GetISteamGameServer( struct cppISteamClient_SteamClient012_GetISteamGameServer_params *params ); - -struct cppISteamClient_SteamClient012_SetLocalIPBinding_params -{ - void *linux_side; - uint32_t unIP; - uint16_t usPort; -}; -extern void cppISteamClient_SteamClient012_SetLocalIPBinding( struct cppISteamClient_SteamClient012_SetLocalIPBinding_params *params ); - -struct cppISteamClient_SteamClient012_GetISteamFriends_params -{ - void *linux_side; - void /*ISteamFriends*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient012_GetISteamFriends( struct cppISteamClient_SteamClient012_GetISteamFriends_params *params ); - -struct cppISteamClient_SteamClient012_GetISteamUtils_params -{ - void *linux_side; - void /*ISteamUtils*/ *_ret; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient012_GetISteamUtils( struct cppISteamClient_SteamClient012_GetISteamUtils_params *params ); - -struct cppISteamClient_SteamClient012_GetISteamMatchmaking_params -{ - void *linux_side; - void /*ISteamMatchmaking*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient012_GetISteamMatchmaking( struct cppISteamClient_SteamClient012_GetISteamMatchmaking_params *params ); - -struct cppISteamClient_SteamClient012_GetISteamMatchmakingServers_params -{ - void *linux_side; - void /*ISteamMatchmakingServers*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient012_GetISteamMatchmakingServers( struct cppISteamClient_SteamClient012_GetISteamMatchmakingServers_params *params ); - -struct cppISteamClient_SteamClient012_GetISteamGenericInterface_params -{ - void *linux_side; - void *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient012_GetISteamGenericInterface( struct cppISteamClient_SteamClient012_GetISteamGenericInterface_params *params ); - -struct cppISteamClient_SteamClient012_GetISteamUserStats_params -{ - void *linux_side; - void /*ISteamUserStats*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient012_GetISteamUserStats( struct cppISteamClient_SteamClient012_GetISteamUserStats_params *params ); - -struct cppISteamClient_SteamClient012_GetISteamGameServerStats_params -{ - void *linux_side; - void /*ISteamGameServerStats*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient012_GetISteamGameServerStats( struct cppISteamClient_SteamClient012_GetISteamGameServerStats_params *params ); - -struct cppISteamClient_SteamClient012_GetISteamApps_params -{ - void *linux_side; - void /*ISteamApps*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient012_GetISteamApps( struct cppISteamClient_SteamClient012_GetISteamApps_params *params ); - -struct cppISteamClient_SteamClient012_GetISteamNetworking_params -{ - void *linux_side; - void /*ISteamNetworking*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient012_GetISteamNetworking( struct cppISteamClient_SteamClient012_GetISteamNetworking_params *params ); - -struct cppISteamClient_SteamClient012_GetISteamRemoteStorage_params -{ - void *linux_side; - void /*ISteamRemoteStorage*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient012_GetISteamRemoteStorage( struct cppISteamClient_SteamClient012_GetISteamRemoteStorage_params *params ); - -struct cppISteamClient_SteamClient012_GetISteamScreenshots_params -{ - void *linux_side; - void /*ISteamScreenshots*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient012_GetISteamScreenshots( struct cppISteamClient_SteamClient012_GetISteamScreenshots_params *params ); - -struct cppISteamClient_SteamClient012_RunFrame_params -{ - void *linux_side; -}; -extern void cppISteamClient_SteamClient012_RunFrame( struct cppISteamClient_SteamClient012_RunFrame_params *params ); - -struct cppISteamClient_SteamClient012_GetIPCCallCount_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamClient_SteamClient012_GetIPCCallCount( struct cppISteamClient_SteamClient012_GetIPCCallCount_params *params ); - -struct cppISteamClient_SteamClient012_SetWarningMessageHook_params -{ - void *linux_side; - void (*W_CDECL pFunction)(int32_t, const char *); -}; -extern void cppISteamClient_SteamClient012_SetWarningMessageHook( struct cppISteamClient_SteamClient012_SetWarningMessageHook_params *params ); - -struct cppISteamClient_SteamClient012_BShutdownIfAllPipesClosed_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamClient_SteamClient012_BShutdownIfAllPipesClosed( struct cppISteamClient_SteamClient012_BShutdownIfAllPipesClosed_params *params ); - -struct cppISteamClient_SteamClient012_GetISteamHTTP_params -{ - void *linux_side; - void /*ISteamHTTP*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient012_GetISteamHTTP( struct cppISteamClient_SteamClient012_GetISteamHTTP_params *params ); - -struct cppISteamClient_SteamClient012_GetISteamUnifiedMessages_params -{ - void *linux_side; - void /*ISteamUnifiedMessages*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient012_GetISteamUnifiedMessages( struct cppISteamClient_SteamClient012_GetISteamUnifiedMessages_params *params ); - -struct cppISteamClient_SteamClient012_GetISteamController_params -{ - void *linux_side; - void /*ISteamController*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient012_GetISteamController( struct cppISteamClient_SteamClient012_GetISteamController_params *params ); - -struct cppISteamClient_SteamClient012_GetISteamUGC_params -{ - void *linux_side; - void /*ISteamUGC*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient012_GetISteamUGC( struct cppISteamClient_SteamClient012_GetISteamUGC_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamClient_SteamClient013.cpp b/lsteamclient/cppISteamClient_SteamClient013.cpp index aa392730..1ba44b5d 100644 --- a/lsteamclient/cppISteamClient_SteamClient013.cpp +++ b/lsteamclient/cppISteamClient_SteamClient013.cpp @@ -1,185 +1,244 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamClient_SteamClient013.h" -void cppISteamClient_SteamClient013_CreateSteamPipe( struct cppISteamClient_SteamClient013_CreateSteamPipe_params *params ) +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; params->_ret = iface->CreateSteamPipe( ); + return 0; } -void cppISteamClient_SteamClient013_BReleaseSteamPipe( struct cppISteamClient_SteamClient013_BReleaseSteamPipe_params *params ) +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; params->_ret = iface->BReleaseSteamPipe( params->hSteamPipe ); + return 0; } -void cppISteamClient_SteamClient013_ConnectToGlobalUser( struct cppISteamClient_SteamClient013_ConnectToGlobalUser_params *params ) +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; params->_ret = iface->ConnectToGlobalUser( params->hSteamPipe ); + return 0; } -void cppISteamClient_SteamClient013_CreateLocalUser( struct cppISteamClient_SteamClient013_CreateLocalUser_params *params ) +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; params->_ret = iface->CreateLocalUser( params->phSteamPipe, params->eAccountType ); + return 0; } -void cppISteamClient_SteamClient013_ReleaseUser( struct cppISteamClient_SteamClient013_ReleaseUser_params *params ) +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; iface->ReleaseUser( params->hSteamPipe, params->hUser ); + return 0; } -void cppISteamClient_SteamClient013_GetISteamUser( struct cppISteamClient_SteamClient013_GetISteamUser_params *params ) +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; params->_ret = iface->GetISteamUser( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient013_GetISteamGameServer( struct cppISteamClient_SteamClient013_GetISteamGameServer_params *params ) +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; params->_ret = iface->GetISteamGameServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient013_SetLocalIPBinding( struct cppISteamClient_SteamClient013_SetLocalIPBinding_params *params ) +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; iface->SetLocalIPBinding( params->unIP, params->usPort ); + return 0; } -void cppISteamClient_SteamClient013_GetISteamFriends( struct cppISteamClient_SteamClient013_GetISteamFriends_params *params ) +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; params->_ret = iface->GetISteamFriends( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient013_GetISteamUtils( struct cppISteamClient_SteamClient013_GetISteamUtils_params *params ) +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; params->_ret = iface->GetISteamUtils( params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient013_GetISteamMatchmaking( struct cppISteamClient_SteamClient013_GetISteamMatchmaking_params *params ) +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; params->_ret = iface->GetISteamMatchmaking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient013_GetISteamMatchmakingServers( struct cppISteamClient_SteamClient013_GetISteamMatchmakingServers_params *params ) +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; params->_ret = iface->GetISteamMatchmakingServers( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient013_GetISteamGenericInterface( struct cppISteamClient_SteamClient013_GetISteamGenericInterface_params *params ) +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; params->_ret = iface->GetISteamGenericInterface( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient013_GetISteamUserStats( struct cppISteamClient_SteamClient013_GetISteamUserStats_params *params ) +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; params->_ret = iface->GetISteamUserStats( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient013_GetISteamGameServerStats( struct cppISteamClient_SteamClient013_GetISteamGameServerStats_params *params ) +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; params->_ret = iface->GetISteamGameServerStats( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient013_GetISteamApps( struct cppISteamClient_SteamClient013_GetISteamApps_params *params ) +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; params->_ret = iface->GetISteamApps( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient013_GetISteamNetworking( struct cppISteamClient_SteamClient013_GetISteamNetworking_params *params ) +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; params->_ret = iface->GetISteamNetworking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient013_GetISteamRemoteStorage( struct cppISteamClient_SteamClient013_GetISteamRemoteStorage_params *params ) +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; params->_ret = iface->GetISteamRemoteStorage( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient013_GetISteamScreenshots( struct cppISteamClient_SteamClient013_GetISteamScreenshots_params *params ) +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; params->_ret = iface->GetISteamScreenshots( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient013_RunFrame( struct cppISteamClient_SteamClient013_RunFrame_params *params ) +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; iface->RunFrame( ); + return 0; } -void cppISteamClient_SteamClient013_GetIPCCallCount( struct cppISteamClient_SteamClient013_GetIPCCallCount_params *params ) +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; params->_ret = iface->GetIPCCallCount( ); + return 0; } -void cppISteamClient_SteamClient013_SetWarningMessageHook( struct cppISteamClient_SteamClient013_SetWarningMessageHook_params *params ) +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; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); + return 0; } -void cppISteamClient_SteamClient013_BShutdownIfAllPipesClosed( struct cppISteamClient_SteamClient013_BShutdownIfAllPipesClosed_params *params ) +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; params->_ret = iface->BShutdownIfAllPipesClosed( ); + return 0; } -void cppISteamClient_SteamClient013_GetISteamHTTP( struct cppISteamClient_SteamClient013_GetISteamHTTP_params *params ) +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; params->_ret = iface->GetISteamHTTP( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient013_GetISteamUnifiedMessages( struct cppISteamClient_SteamClient013_GetISteamUnifiedMessages_params *params ) +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; params->_ret = iface->GetISteamUnifiedMessages( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient013_GetISteamController( struct cppISteamClient_SteamClient013_GetISteamController_params *params ) +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; params->_ret = iface->GetISteamController( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient013_GetISteamUGC( struct cppISteamClient_SteamClient013_GetISteamUGC_params *params ) +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; params->_ret = iface->GetISteamUGC( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient013_GetISteamInventory( struct cppISteamClient_SteamClient013_GetISteamInventory_params *params ) +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; params->_ret = iface->GetISteamInventory( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient013_GetISteamVideo( struct cppISteamClient_SteamClient013_GetISteamVideo_params *params ) +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; params->_ret = iface->GetISteamVideo( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient013_GetISteamAppList( struct cppISteamClient_SteamClient013_GetISteamAppList_params *params ) +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; params->_ret = iface->GetISteamAppList( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } diff --git a/lsteamclient/cppISteamClient_SteamClient013.h b/lsteamclient/cppISteamClient_SteamClient013.h deleted file mode 100644 index b93c2449..00000000 --- a/lsteamclient/cppISteamClient_SteamClient013.h +++ /dev/null @@ -1,286 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamClient_SteamClient013_CreateSteamPipe_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamClient_SteamClient013_CreateSteamPipe( struct cppISteamClient_SteamClient013_CreateSteamPipe_params *params ); - -struct cppISteamClient_SteamClient013_BReleaseSteamPipe_params -{ - void *linux_side; - bool _ret; - int32_t hSteamPipe; -}; -extern void cppISteamClient_SteamClient013_BReleaseSteamPipe( struct cppISteamClient_SteamClient013_BReleaseSteamPipe_params *params ); - -struct cppISteamClient_SteamClient013_ConnectToGlobalUser_params -{ - void *linux_side; - int32_t _ret; - int32_t hSteamPipe; -}; -extern void cppISteamClient_SteamClient013_ConnectToGlobalUser( struct cppISteamClient_SteamClient013_ConnectToGlobalUser_params *params ); - -struct cppISteamClient_SteamClient013_CreateLocalUser_params -{ - void *linux_side; - int32_t _ret; - int32_t *phSteamPipe; - uint32_t eAccountType; -}; -extern void cppISteamClient_SteamClient013_CreateLocalUser( struct cppISteamClient_SteamClient013_CreateLocalUser_params *params ); - -struct cppISteamClient_SteamClient013_ReleaseUser_params -{ - void *linux_side; - int32_t hSteamPipe; - int32_t hUser; -}; -extern void cppISteamClient_SteamClient013_ReleaseUser( struct cppISteamClient_SteamClient013_ReleaseUser_params *params ); - -struct cppISteamClient_SteamClient013_GetISteamUser_params -{ - void *linux_side; - void /*ISteamUser*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient013_GetISteamUser( struct cppISteamClient_SteamClient013_GetISteamUser_params *params ); - -struct cppISteamClient_SteamClient013_GetISteamGameServer_params -{ - void *linux_side; - void /*ISteamGameServer*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient013_GetISteamGameServer( struct cppISteamClient_SteamClient013_GetISteamGameServer_params *params ); - -struct cppISteamClient_SteamClient013_SetLocalIPBinding_params -{ - void *linux_side; - uint32_t unIP; - uint16_t usPort; -}; -extern void cppISteamClient_SteamClient013_SetLocalIPBinding( struct cppISteamClient_SteamClient013_SetLocalIPBinding_params *params ); - -struct cppISteamClient_SteamClient013_GetISteamFriends_params -{ - void *linux_side; - void /*ISteamFriends*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient013_GetISteamFriends( struct cppISteamClient_SteamClient013_GetISteamFriends_params *params ); - -struct cppISteamClient_SteamClient013_GetISteamUtils_params -{ - void *linux_side; - void /*ISteamUtils*/ *_ret; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient013_GetISteamUtils( struct cppISteamClient_SteamClient013_GetISteamUtils_params *params ); - -struct cppISteamClient_SteamClient013_GetISteamMatchmaking_params -{ - void *linux_side; - void /*ISteamMatchmaking*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient013_GetISteamMatchmaking( struct cppISteamClient_SteamClient013_GetISteamMatchmaking_params *params ); - -struct cppISteamClient_SteamClient013_GetISteamMatchmakingServers_params -{ - void *linux_side; - void /*ISteamMatchmakingServers*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient013_GetISteamMatchmakingServers( struct cppISteamClient_SteamClient013_GetISteamMatchmakingServers_params *params ); - -struct cppISteamClient_SteamClient013_GetISteamGenericInterface_params -{ - void *linux_side; - void *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient013_GetISteamGenericInterface( struct cppISteamClient_SteamClient013_GetISteamGenericInterface_params *params ); - -struct cppISteamClient_SteamClient013_GetISteamUserStats_params -{ - void *linux_side; - void /*ISteamUserStats*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient013_GetISteamUserStats( struct cppISteamClient_SteamClient013_GetISteamUserStats_params *params ); - -struct cppISteamClient_SteamClient013_GetISteamGameServerStats_params -{ - void *linux_side; - void /*ISteamGameServerStats*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient013_GetISteamGameServerStats( struct cppISteamClient_SteamClient013_GetISteamGameServerStats_params *params ); - -struct cppISteamClient_SteamClient013_GetISteamApps_params -{ - void *linux_side; - void /*ISteamApps*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient013_GetISteamApps( struct cppISteamClient_SteamClient013_GetISteamApps_params *params ); - -struct cppISteamClient_SteamClient013_GetISteamNetworking_params -{ - void *linux_side; - void /*ISteamNetworking*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient013_GetISteamNetworking( struct cppISteamClient_SteamClient013_GetISteamNetworking_params *params ); - -struct cppISteamClient_SteamClient013_GetISteamRemoteStorage_params -{ - void *linux_side; - void /*ISteamRemoteStorage*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient013_GetISteamRemoteStorage( struct cppISteamClient_SteamClient013_GetISteamRemoteStorage_params *params ); - -struct cppISteamClient_SteamClient013_GetISteamScreenshots_params -{ - void *linux_side; - void /*ISteamScreenshots*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient013_GetISteamScreenshots( struct cppISteamClient_SteamClient013_GetISteamScreenshots_params *params ); - -struct cppISteamClient_SteamClient013_RunFrame_params -{ - void *linux_side; -}; -extern void cppISteamClient_SteamClient013_RunFrame( struct cppISteamClient_SteamClient013_RunFrame_params *params ); - -struct cppISteamClient_SteamClient013_GetIPCCallCount_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamClient_SteamClient013_GetIPCCallCount( struct cppISteamClient_SteamClient013_GetIPCCallCount_params *params ); - -struct cppISteamClient_SteamClient013_SetWarningMessageHook_params -{ - void *linux_side; - void (*W_CDECL pFunction)(int32_t, const char *); -}; -extern void cppISteamClient_SteamClient013_SetWarningMessageHook( struct cppISteamClient_SteamClient013_SetWarningMessageHook_params *params ); - -struct cppISteamClient_SteamClient013_BShutdownIfAllPipesClosed_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamClient_SteamClient013_BShutdownIfAllPipesClosed( struct cppISteamClient_SteamClient013_BShutdownIfAllPipesClosed_params *params ); - -struct cppISteamClient_SteamClient013_GetISteamHTTP_params -{ - void *linux_side; - void /*ISteamHTTP*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient013_GetISteamHTTP( struct cppISteamClient_SteamClient013_GetISteamHTTP_params *params ); - -struct cppISteamClient_SteamClient013_GetISteamUnifiedMessages_params -{ - void *linux_side; - void /*ISteamUnifiedMessages*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient013_GetISteamUnifiedMessages( struct cppISteamClient_SteamClient013_GetISteamUnifiedMessages_params *params ); - -struct cppISteamClient_SteamClient013_GetISteamController_params -{ - void *linux_side; - void /*ISteamController*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient013_GetISteamController( struct cppISteamClient_SteamClient013_GetISteamController_params *params ); - -struct cppISteamClient_SteamClient013_GetISteamUGC_params -{ - void *linux_side; - void /*ISteamUGC*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient013_GetISteamUGC( struct cppISteamClient_SteamClient013_GetISteamUGC_params *params ); - -struct cppISteamClient_SteamClient013_GetISteamInventory_params -{ - void *linux_side; - void *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient013_GetISteamInventory( struct cppISteamClient_SteamClient013_GetISteamInventory_params *params ); - -struct cppISteamClient_SteamClient013_GetISteamVideo_params -{ - void *linux_side; - void *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient013_GetISteamVideo( struct cppISteamClient_SteamClient013_GetISteamVideo_params *params ); - -struct cppISteamClient_SteamClient013_GetISteamAppList_params -{ - void *linux_side; - void /*ISteamAppList*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient013_GetISteamAppList( struct cppISteamClient_SteamClient013_GetISteamAppList_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamClient_SteamClient014.cpp b/lsteamclient/cppISteamClient_SteamClient014.cpp index 8a2e2de9..1d04f39a 100644 --- a/lsteamclient/cppISteamClient_SteamClient014.cpp +++ b/lsteamclient/cppISteamClient_SteamClient014.cpp @@ -1,179 +1,236 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamClient_SteamClient014.h" -void cppISteamClient_SteamClient014_CreateSteamPipe( struct cppISteamClient_SteamClient014_CreateSteamPipe_params *params ) +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; params->_ret = iface->CreateSteamPipe( ); + return 0; } -void cppISteamClient_SteamClient014_BReleaseSteamPipe( struct cppISteamClient_SteamClient014_BReleaseSteamPipe_params *params ) +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; params->_ret = iface->BReleaseSteamPipe( params->hSteamPipe ); + return 0; } -void cppISteamClient_SteamClient014_ConnectToGlobalUser( struct cppISteamClient_SteamClient014_ConnectToGlobalUser_params *params ) +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; params->_ret = iface->ConnectToGlobalUser( params->hSteamPipe ); + return 0; } -void cppISteamClient_SteamClient014_CreateLocalUser( struct cppISteamClient_SteamClient014_CreateLocalUser_params *params ) +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; params->_ret = iface->CreateLocalUser( params->phSteamPipe, params->eAccountType ); + return 0; } -void cppISteamClient_SteamClient014_ReleaseUser( struct cppISteamClient_SteamClient014_ReleaseUser_params *params ) +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; iface->ReleaseUser( params->hSteamPipe, params->hUser ); + return 0; } -void cppISteamClient_SteamClient014_GetISteamUser( struct cppISteamClient_SteamClient014_GetISteamUser_params *params ) +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; params->_ret = iface->GetISteamUser( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient014_GetISteamGameServer( struct cppISteamClient_SteamClient014_GetISteamGameServer_params *params ) +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; params->_ret = iface->GetISteamGameServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient014_SetLocalIPBinding( struct cppISteamClient_SteamClient014_SetLocalIPBinding_params *params ) +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; iface->SetLocalIPBinding( params->unIP, params->usPort ); + return 0; } -void cppISteamClient_SteamClient014_GetISteamFriends( struct cppISteamClient_SteamClient014_GetISteamFriends_params *params ) +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; params->_ret = iface->GetISteamFriends( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient014_GetISteamUtils( struct cppISteamClient_SteamClient014_GetISteamUtils_params *params ) +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; params->_ret = iface->GetISteamUtils( params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient014_GetISteamMatchmaking( struct cppISteamClient_SteamClient014_GetISteamMatchmaking_params *params ) +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; params->_ret = iface->GetISteamMatchmaking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient014_GetISteamMatchmakingServers( struct cppISteamClient_SteamClient014_GetISteamMatchmakingServers_params *params ) +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; params->_ret = iface->GetISteamMatchmakingServers( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient014_GetISteamGenericInterface( struct cppISteamClient_SteamClient014_GetISteamGenericInterface_params *params ) +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; params->_ret = iface->GetISteamGenericInterface( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient014_GetISteamUserStats( struct cppISteamClient_SteamClient014_GetISteamUserStats_params *params ) +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; params->_ret = iface->GetISteamUserStats( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient014_GetISteamGameServerStats( struct cppISteamClient_SteamClient014_GetISteamGameServerStats_params *params ) +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; params->_ret = iface->GetISteamGameServerStats( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient014_GetISteamApps( struct cppISteamClient_SteamClient014_GetISteamApps_params *params ) +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; params->_ret = iface->GetISteamApps( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient014_GetISteamNetworking( struct cppISteamClient_SteamClient014_GetISteamNetworking_params *params ) +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; params->_ret = iface->GetISteamNetworking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient014_GetISteamRemoteStorage( struct cppISteamClient_SteamClient014_GetISteamRemoteStorage_params *params ) +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; params->_ret = iface->GetISteamRemoteStorage( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient014_GetISteamScreenshots( struct cppISteamClient_SteamClient014_GetISteamScreenshots_params *params ) +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; params->_ret = iface->GetISteamScreenshots( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient014_RunFrame( struct cppISteamClient_SteamClient014_RunFrame_params *params ) +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; iface->RunFrame( ); + return 0; } -void cppISteamClient_SteamClient014_GetIPCCallCount( struct cppISteamClient_SteamClient014_GetIPCCallCount_params *params ) +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; params->_ret = iface->GetIPCCallCount( ); + return 0; } -void cppISteamClient_SteamClient014_SetWarningMessageHook( struct cppISteamClient_SteamClient014_SetWarningMessageHook_params *params ) +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; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); + return 0; } -void cppISteamClient_SteamClient014_BShutdownIfAllPipesClosed( struct cppISteamClient_SteamClient014_BShutdownIfAllPipesClosed_params *params ) +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; params->_ret = iface->BShutdownIfAllPipesClosed( ); + return 0; } -void cppISteamClient_SteamClient014_GetISteamHTTP( struct cppISteamClient_SteamClient014_GetISteamHTTP_params *params ) +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; params->_ret = iface->GetISteamHTTP( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient014_GetISteamUnifiedMessages( struct cppISteamClient_SteamClient014_GetISteamUnifiedMessages_params *params ) +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; params->_ret = iface->GetISteamUnifiedMessages( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient014_GetISteamController( struct cppISteamClient_SteamClient014_GetISteamController_params *params ) +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; params->_ret = iface->GetISteamController( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient014_GetISteamUGC( struct cppISteamClient_SteamClient014_GetISteamUGC_params *params ) +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; params->_ret = iface->GetISteamUGC( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient014_GetISteamAppList( struct cppISteamClient_SteamClient014_GetISteamAppList_params *params ) +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; params->_ret = iface->GetISteamAppList( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient014_GetISteamMusic( struct cppISteamClient_SteamClient014_GetISteamMusic_params *params ) +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; params->_ret = iface->GetISteamMusic( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } diff --git a/lsteamclient/cppISteamClient_SteamClient014.h b/lsteamclient/cppISteamClient_SteamClient014.h deleted file mode 100644 index a58551a0..00000000 --- a/lsteamclient/cppISteamClient_SteamClient014.h +++ /dev/null @@ -1,276 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamClient_SteamClient014_CreateSteamPipe_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamClient_SteamClient014_CreateSteamPipe( struct cppISteamClient_SteamClient014_CreateSteamPipe_params *params ); - -struct cppISteamClient_SteamClient014_BReleaseSteamPipe_params -{ - void *linux_side; - bool _ret; - int32_t hSteamPipe; -}; -extern void cppISteamClient_SteamClient014_BReleaseSteamPipe( struct cppISteamClient_SteamClient014_BReleaseSteamPipe_params *params ); - -struct cppISteamClient_SteamClient014_ConnectToGlobalUser_params -{ - void *linux_side; - int32_t _ret; - int32_t hSteamPipe; -}; -extern void cppISteamClient_SteamClient014_ConnectToGlobalUser( struct cppISteamClient_SteamClient014_ConnectToGlobalUser_params *params ); - -struct cppISteamClient_SteamClient014_CreateLocalUser_params -{ - void *linux_side; - int32_t _ret; - int32_t *phSteamPipe; - uint32_t eAccountType; -}; -extern void cppISteamClient_SteamClient014_CreateLocalUser( struct cppISteamClient_SteamClient014_CreateLocalUser_params *params ); - -struct cppISteamClient_SteamClient014_ReleaseUser_params -{ - void *linux_side; - int32_t hSteamPipe; - int32_t hUser; -}; -extern void cppISteamClient_SteamClient014_ReleaseUser( struct cppISteamClient_SteamClient014_ReleaseUser_params *params ); - -struct cppISteamClient_SteamClient014_GetISteamUser_params -{ - void *linux_side; - void /*ISteamUser*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient014_GetISteamUser( struct cppISteamClient_SteamClient014_GetISteamUser_params *params ); - -struct cppISteamClient_SteamClient014_GetISteamGameServer_params -{ - void *linux_side; - void /*ISteamGameServer*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient014_GetISteamGameServer( struct cppISteamClient_SteamClient014_GetISteamGameServer_params *params ); - -struct cppISteamClient_SteamClient014_SetLocalIPBinding_params -{ - void *linux_side; - uint32_t unIP; - uint16_t usPort; -}; -extern void cppISteamClient_SteamClient014_SetLocalIPBinding( struct cppISteamClient_SteamClient014_SetLocalIPBinding_params *params ); - -struct cppISteamClient_SteamClient014_GetISteamFriends_params -{ - void *linux_side; - void /*ISteamFriends*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient014_GetISteamFriends( struct cppISteamClient_SteamClient014_GetISteamFriends_params *params ); - -struct cppISteamClient_SteamClient014_GetISteamUtils_params -{ - void *linux_side; - void /*ISteamUtils*/ *_ret; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient014_GetISteamUtils( struct cppISteamClient_SteamClient014_GetISteamUtils_params *params ); - -struct cppISteamClient_SteamClient014_GetISteamMatchmaking_params -{ - void *linux_side; - void /*ISteamMatchmaking*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient014_GetISteamMatchmaking( struct cppISteamClient_SteamClient014_GetISteamMatchmaking_params *params ); - -struct cppISteamClient_SteamClient014_GetISteamMatchmakingServers_params -{ - void *linux_side; - void /*ISteamMatchmakingServers*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient014_GetISteamMatchmakingServers( struct cppISteamClient_SteamClient014_GetISteamMatchmakingServers_params *params ); - -struct cppISteamClient_SteamClient014_GetISteamGenericInterface_params -{ - void *linux_side; - void *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient014_GetISteamGenericInterface( struct cppISteamClient_SteamClient014_GetISteamGenericInterface_params *params ); - -struct cppISteamClient_SteamClient014_GetISteamUserStats_params -{ - void *linux_side; - void /*ISteamUserStats*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient014_GetISteamUserStats( struct cppISteamClient_SteamClient014_GetISteamUserStats_params *params ); - -struct cppISteamClient_SteamClient014_GetISteamGameServerStats_params -{ - void *linux_side; - void /*ISteamGameServerStats*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient014_GetISteamGameServerStats( struct cppISteamClient_SteamClient014_GetISteamGameServerStats_params *params ); - -struct cppISteamClient_SteamClient014_GetISteamApps_params -{ - void *linux_side; - void /*ISteamApps*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient014_GetISteamApps( struct cppISteamClient_SteamClient014_GetISteamApps_params *params ); - -struct cppISteamClient_SteamClient014_GetISteamNetworking_params -{ - void *linux_side; - void /*ISteamNetworking*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient014_GetISteamNetworking( struct cppISteamClient_SteamClient014_GetISteamNetworking_params *params ); - -struct cppISteamClient_SteamClient014_GetISteamRemoteStorage_params -{ - void *linux_side; - void /*ISteamRemoteStorage*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient014_GetISteamRemoteStorage( struct cppISteamClient_SteamClient014_GetISteamRemoteStorage_params *params ); - -struct cppISteamClient_SteamClient014_GetISteamScreenshots_params -{ - void *linux_side; - void /*ISteamScreenshots*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient014_GetISteamScreenshots( struct cppISteamClient_SteamClient014_GetISteamScreenshots_params *params ); - -struct cppISteamClient_SteamClient014_RunFrame_params -{ - void *linux_side; -}; -extern void cppISteamClient_SteamClient014_RunFrame( struct cppISteamClient_SteamClient014_RunFrame_params *params ); - -struct cppISteamClient_SteamClient014_GetIPCCallCount_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamClient_SteamClient014_GetIPCCallCount( struct cppISteamClient_SteamClient014_GetIPCCallCount_params *params ); - -struct cppISteamClient_SteamClient014_SetWarningMessageHook_params -{ - void *linux_side; - void (*W_CDECL pFunction)(int32_t, const char *); -}; -extern void cppISteamClient_SteamClient014_SetWarningMessageHook( struct cppISteamClient_SteamClient014_SetWarningMessageHook_params *params ); - -struct cppISteamClient_SteamClient014_BShutdownIfAllPipesClosed_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamClient_SteamClient014_BShutdownIfAllPipesClosed( struct cppISteamClient_SteamClient014_BShutdownIfAllPipesClosed_params *params ); - -struct cppISteamClient_SteamClient014_GetISteamHTTP_params -{ - void *linux_side; - void /*ISteamHTTP*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient014_GetISteamHTTP( struct cppISteamClient_SteamClient014_GetISteamHTTP_params *params ); - -struct cppISteamClient_SteamClient014_GetISteamUnifiedMessages_params -{ - void *linux_side; - void /*ISteamUnifiedMessages*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient014_GetISteamUnifiedMessages( struct cppISteamClient_SteamClient014_GetISteamUnifiedMessages_params *params ); - -struct cppISteamClient_SteamClient014_GetISteamController_params -{ - void *linux_side; - void /*ISteamController*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient014_GetISteamController( struct cppISteamClient_SteamClient014_GetISteamController_params *params ); - -struct cppISteamClient_SteamClient014_GetISteamUGC_params -{ - void *linux_side; - void /*ISteamUGC*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient014_GetISteamUGC( struct cppISteamClient_SteamClient014_GetISteamUGC_params *params ); - -struct cppISteamClient_SteamClient014_GetISteamAppList_params -{ - void *linux_side; - void /*ISteamAppList*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient014_GetISteamAppList( struct cppISteamClient_SteamClient014_GetISteamAppList_params *params ); - -struct cppISteamClient_SteamClient014_GetISteamMusic_params -{ - void *linux_side; - void /*ISteamMusic*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient014_GetISteamMusic( struct cppISteamClient_SteamClient014_GetISteamMusic_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamClient_SteamClient015.cpp b/lsteamclient/cppISteamClient_SteamClient015.cpp index 910c1230..943e6cd2 100644 --- a/lsteamclient/cppISteamClient_SteamClient015.cpp +++ b/lsteamclient/cppISteamClient_SteamClient015.cpp @@ -1,185 +1,244 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamClient_SteamClient015.h" -void cppISteamClient_SteamClient015_CreateSteamPipe( struct cppISteamClient_SteamClient015_CreateSteamPipe_params *params ) +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; params->_ret = iface->CreateSteamPipe( ); + return 0; } -void cppISteamClient_SteamClient015_BReleaseSteamPipe( struct cppISteamClient_SteamClient015_BReleaseSteamPipe_params *params ) +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; params->_ret = iface->BReleaseSteamPipe( params->hSteamPipe ); + return 0; } -void cppISteamClient_SteamClient015_ConnectToGlobalUser( struct cppISteamClient_SteamClient015_ConnectToGlobalUser_params *params ) +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; params->_ret = iface->ConnectToGlobalUser( params->hSteamPipe ); + return 0; } -void cppISteamClient_SteamClient015_CreateLocalUser( struct cppISteamClient_SteamClient015_CreateLocalUser_params *params ) +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; params->_ret = iface->CreateLocalUser( params->phSteamPipe, params->eAccountType ); + return 0; } -void cppISteamClient_SteamClient015_ReleaseUser( struct cppISteamClient_SteamClient015_ReleaseUser_params *params ) +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; iface->ReleaseUser( params->hSteamPipe, params->hUser ); + return 0; } -void cppISteamClient_SteamClient015_GetISteamUser( struct cppISteamClient_SteamClient015_GetISteamUser_params *params ) +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; params->_ret = iface->GetISteamUser( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient015_GetISteamGameServer( struct cppISteamClient_SteamClient015_GetISteamGameServer_params *params ) +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; params->_ret = iface->GetISteamGameServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient015_SetLocalIPBinding( struct cppISteamClient_SteamClient015_SetLocalIPBinding_params *params ) +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; iface->SetLocalIPBinding( params->unIP, params->usPort ); + return 0; } -void cppISteamClient_SteamClient015_GetISteamFriends( struct cppISteamClient_SteamClient015_GetISteamFriends_params *params ) +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; params->_ret = iface->GetISteamFriends( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient015_GetISteamUtils( struct cppISteamClient_SteamClient015_GetISteamUtils_params *params ) +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; params->_ret = iface->GetISteamUtils( params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient015_GetISteamMatchmaking( struct cppISteamClient_SteamClient015_GetISteamMatchmaking_params *params ) +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; params->_ret = iface->GetISteamMatchmaking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient015_GetISteamMatchmakingServers( struct cppISteamClient_SteamClient015_GetISteamMatchmakingServers_params *params ) +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; params->_ret = iface->GetISteamMatchmakingServers( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient015_GetISteamGenericInterface( struct cppISteamClient_SteamClient015_GetISteamGenericInterface_params *params ) +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; params->_ret = iface->GetISteamGenericInterface( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient015_GetISteamUserStats( struct cppISteamClient_SteamClient015_GetISteamUserStats_params *params ) +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; params->_ret = iface->GetISteamUserStats( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient015_GetISteamGameServerStats( struct cppISteamClient_SteamClient015_GetISteamGameServerStats_params *params ) +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; params->_ret = iface->GetISteamGameServerStats( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient015_GetISteamApps( struct cppISteamClient_SteamClient015_GetISteamApps_params *params ) +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; params->_ret = iface->GetISteamApps( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient015_GetISteamNetworking( struct cppISteamClient_SteamClient015_GetISteamNetworking_params *params ) +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; params->_ret = iface->GetISteamNetworking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient015_GetISteamRemoteStorage( struct cppISteamClient_SteamClient015_GetISteamRemoteStorage_params *params ) +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; params->_ret = iface->GetISteamRemoteStorage( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient015_GetISteamScreenshots( struct cppISteamClient_SteamClient015_GetISteamScreenshots_params *params ) +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; params->_ret = iface->GetISteamScreenshots( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient015_RunFrame( struct cppISteamClient_SteamClient015_RunFrame_params *params ) +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; iface->RunFrame( ); + return 0; } -void cppISteamClient_SteamClient015_GetIPCCallCount( struct cppISteamClient_SteamClient015_GetIPCCallCount_params *params ) +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; params->_ret = iface->GetIPCCallCount( ); + return 0; } -void cppISteamClient_SteamClient015_SetWarningMessageHook( struct cppISteamClient_SteamClient015_SetWarningMessageHook_params *params ) +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; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); + return 0; } -void cppISteamClient_SteamClient015_BShutdownIfAllPipesClosed( struct cppISteamClient_SteamClient015_BShutdownIfAllPipesClosed_params *params ) +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; params->_ret = iface->BShutdownIfAllPipesClosed( ); + return 0; } -void cppISteamClient_SteamClient015_GetISteamHTTP( struct cppISteamClient_SteamClient015_GetISteamHTTP_params *params ) +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; params->_ret = iface->GetISteamHTTP( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient015_GetISteamUnifiedMessages( struct cppISteamClient_SteamClient015_GetISteamUnifiedMessages_params *params ) +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; params->_ret = iface->GetISteamUnifiedMessages( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient015_GetISteamController( struct cppISteamClient_SteamClient015_GetISteamController_params *params ) +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; params->_ret = iface->GetISteamController( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient015_GetISteamUGC( struct cppISteamClient_SteamClient015_GetISteamUGC_params *params ) +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; params->_ret = iface->GetISteamUGC( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient015_GetISteamAppList( struct cppISteamClient_SteamClient015_GetISteamAppList_params *params ) +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; params->_ret = iface->GetISteamAppList( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient015_GetISteamMusic( struct cppISteamClient_SteamClient015_GetISteamMusic_params *params ) +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; params->_ret = iface->GetISteamMusic( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient015_GetISteamMusicRemote( struct cppISteamClient_SteamClient015_GetISteamMusicRemote_params *params ) +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; params->_ret = iface->GetISteamMusicRemote( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } diff --git a/lsteamclient/cppISteamClient_SteamClient015.h b/lsteamclient/cppISteamClient_SteamClient015.h deleted file mode 100644 index 4df60dc7..00000000 --- a/lsteamclient/cppISteamClient_SteamClient015.h +++ /dev/null @@ -1,286 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamClient_SteamClient015_CreateSteamPipe_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamClient_SteamClient015_CreateSteamPipe( struct cppISteamClient_SteamClient015_CreateSteamPipe_params *params ); - -struct cppISteamClient_SteamClient015_BReleaseSteamPipe_params -{ - void *linux_side; - bool _ret; - int32_t hSteamPipe; -}; -extern void cppISteamClient_SteamClient015_BReleaseSteamPipe( struct cppISteamClient_SteamClient015_BReleaseSteamPipe_params *params ); - -struct cppISteamClient_SteamClient015_ConnectToGlobalUser_params -{ - void *linux_side; - int32_t _ret; - int32_t hSteamPipe; -}; -extern void cppISteamClient_SteamClient015_ConnectToGlobalUser( struct cppISteamClient_SteamClient015_ConnectToGlobalUser_params *params ); - -struct cppISteamClient_SteamClient015_CreateLocalUser_params -{ - void *linux_side; - int32_t _ret; - int32_t *phSteamPipe; - uint32_t eAccountType; -}; -extern void cppISteamClient_SteamClient015_CreateLocalUser( struct cppISteamClient_SteamClient015_CreateLocalUser_params *params ); - -struct cppISteamClient_SteamClient015_ReleaseUser_params -{ - void *linux_side; - int32_t hSteamPipe; - int32_t hUser; -}; -extern void cppISteamClient_SteamClient015_ReleaseUser( struct cppISteamClient_SteamClient015_ReleaseUser_params *params ); - -struct cppISteamClient_SteamClient015_GetISteamUser_params -{ - void *linux_side; - void /*ISteamUser*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient015_GetISteamUser( struct cppISteamClient_SteamClient015_GetISteamUser_params *params ); - -struct cppISteamClient_SteamClient015_GetISteamGameServer_params -{ - void *linux_side; - void /*ISteamGameServer*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient015_GetISteamGameServer( struct cppISteamClient_SteamClient015_GetISteamGameServer_params *params ); - -struct cppISteamClient_SteamClient015_SetLocalIPBinding_params -{ - void *linux_side; - uint32_t unIP; - uint16_t usPort; -}; -extern void cppISteamClient_SteamClient015_SetLocalIPBinding( struct cppISteamClient_SteamClient015_SetLocalIPBinding_params *params ); - -struct cppISteamClient_SteamClient015_GetISteamFriends_params -{ - void *linux_side; - void /*ISteamFriends*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient015_GetISteamFriends( struct cppISteamClient_SteamClient015_GetISteamFriends_params *params ); - -struct cppISteamClient_SteamClient015_GetISteamUtils_params -{ - void *linux_side; - void /*ISteamUtils*/ *_ret; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient015_GetISteamUtils( struct cppISteamClient_SteamClient015_GetISteamUtils_params *params ); - -struct cppISteamClient_SteamClient015_GetISteamMatchmaking_params -{ - void *linux_side; - void /*ISteamMatchmaking*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient015_GetISteamMatchmaking( struct cppISteamClient_SteamClient015_GetISteamMatchmaking_params *params ); - -struct cppISteamClient_SteamClient015_GetISteamMatchmakingServers_params -{ - void *linux_side; - void /*ISteamMatchmakingServers*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient015_GetISteamMatchmakingServers( struct cppISteamClient_SteamClient015_GetISteamMatchmakingServers_params *params ); - -struct cppISteamClient_SteamClient015_GetISteamGenericInterface_params -{ - void *linux_side; - void *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient015_GetISteamGenericInterface( struct cppISteamClient_SteamClient015_GetISteamGenericInterface_params *params ); - -struct cppISteamClient_SteamClient015_GetISteamUserStats_params -{ - void *linux_side; - void /*ISteamUserStats*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient015_GetISteamUserStats( struct cppISteamClient_SteamClient015_GetISteamUserStats_params *params ); - -struct cppISteamClient_SteamClient015_GetISteamGameServerStats_params -{ - void *linux_side; - void /*ISteamGameServerStats*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient015_GetISteamGameServerStats( struct cppISteamClient_SteamClient015_GetISteamGameServerStats_params *params ); - -struct cppISteamClient_SteamClient015_GetISteamApps_params -{ - void *linux_side; - void /*ISteamApps*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient015_GetISteamApps( struct cppISteamClient_SteamClient015_GetISteamApps_params *params ); - -struct cppISteamClient_SteamClient015_GetISteamNetworking_params -{ - void *linux_side; - void /*ISteamNetworking*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient015_GetISteamNetworking( struct cppISteamClient_SteamClient015_GetISteamNetworking_params *params ); - -struct cppISteamClient_SteamClient015_GetISteamRemoteStorage_params -{ - void *linux_side; - void /*ISteamRemoteStorage*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient015_GetISteamRemoteStorage( struct cppISteamClient_SteamClient015_GetISteamRemoteStorage_params *params ); - -struct cppISteamClient_SteamClient015_GetISteamScreenshots_params -{ - void *linux_side; - void /*ISteamScreenshots*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient015_GetISteamScreenshots( struct cppISteamClient_SteamClient015_GetISteamScreenshots_params *params ); - -struct cppISteamClient_SteamClient015_RunFrame_params -{ - void *linux_side; -}; -extern void cppISteamClient_SteamClient015_RunFrame( struct cppISteamClient_SteamClient015_RunFrame_params *params ); - -struct cppISteamClient_SteamClient015_GetIPCCallCount_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamClient_SteamClient015_GetIPCCallCount( struct cppISteamClient_SteamClient015_GetIPCCallCount_params *params ); - -struct cppISteamClient_SteamClient015_SetWarningMessageHook_params -{ - void *linux_side; - void (*W_CDECL pFunction)(int32_t, const char *); -}; -extern void cppISteamClient_SteamClient015_SetWarningMessageHook( struct cppISteamClient_SteamClient015_SetWarningMessageHook_params *params ); - -struct cppISteamClient_SteamClient015_BShutdownIfAllPipesClosed_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamClient_SteamClient015_BShutdownIfAllPipesClosed( struct cppISteamClient_SteamClient015_BShutdownIfAllPipesClosed_params *params ); - -struct cppISteamClient_SteamClient015_GetISteamHTTP_params -{ - void *linux_side; - void /*ISteamHTTP*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient015_GetISteamHTTP( struct cppISteamClient_SteamClient015_GetISteamHTTP_params *params ); - -struct cppISteamClient_SteamClient015_GetISteamUnifiedMessages_params -{ - void *linux_side; - void /*ISteamUnifiedMessages*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient015_GetISteamUnifiedMessages( struct cppISteamClient_SteamClient015_GetISteamUnifiedMessages_params *params ); - -struct cppISteamClient_SteamClient015_GetISteamController_params -{ - void *linux_side; - void /*ISteamController*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient015_GetISteamController( struct cppISteamClient_SteamClient015_GetISteamController_params *params ); - -struct cppISteamClient_SteamClient015_GetISteamUGC_params -{ - void *linux_side; - void /*ISteamUGC*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient015_GetISteamUGC( struct cppISteamClient_SteamClient015_GetISteamUGC_params *params ); - -struct cppISteamClient_SteamClient015_GetISteamAppList_params -{ - void *linux_side; - void /*ISteamAppList*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient015_GetISteamAppList( struct cppISteamClient_SteamClient015_GetISteamAppList_params *params ); - -struct cppISteamClient_SteamClient015_GetISteamMusic_params -{ - void *linux_side; - void /*ISteamMusic*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient015_GetISteamMusic( struct cppISteamClient_SteamClient015_GetISteamMusic_params *params ); - -struct cppISteamClient_SteamClient015_GetISteamMusicRemote_params -{ - void *linux_side; - void /*ISteamMusicRemote*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient015_GetISteamMusicRemote( struct cppISteamClient_SteamClient015_GetISteamMusicRemote_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamClient_SteamClient016.cpp b/lsteamclient/cppISteamClient_SteamClient016.cpp index 644cca8c..835d9df3 100644 --- a/lsteamclient/cppISteamClient_SteamClient016.cpp +++ b/lsteamclient/cppISteamClient_SteamClient016.cpp @@ -1,212 +1,279 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamClient_SteamClient016.h" -void cppISteamClient_SteamClient016_CreateSteamPipe( struct cppISteamClient_SteamClient016_CreateSteamPipe_params *params ) +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; params->_ret = iface->CreateSteamPipe( ); + return 0; } -void cppISteamClient_SteamClient016_BReleaseSteamPipe( struct cppISteamClient_SteamClient016_BReleaseSteamPipe_params *params ) +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; params->_ret = iface->BReleaseSteamPipe( params->hSteamPipe ); + return 0; } -void cppISteamClient_SteamClient016_ConnectToGlobalUser( struct cppISteamClient_SteamClient016_ConnectToGlobalUser_params *params ) +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; params->_ret = iface->ConnectToGlobalUser( params->hSteamPipe ); + return 0; } -void cppISteamClient_SteamClient016_CreateLocalUser( struct cppISteamClient_SteamClient016_CreateLocalUser_params *params ) +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; params->_ret = iface->CreateLocalUser( params->phSteamPipe, params->eAccountType ); + return 0; } -void cppISteamClient_SteamClient016_ReleaseUser( struct cppISteamClient_SteamClient016_ReleaseUser_params *params ) +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; iface->ReleaseUser( params->hSteamPipe, params->hUser ); + return 0; } -void cppISteamClient_SteamClient016_GetISteamUser( struct cppISteamClient_SteamClient016_GetISteamUser_params *params ) +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; params->_ret = iface->GetISteamUser( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient016_GetISteamGameServer( struct cppISteamClient_SteamClient016_GetISteamGameServer_params *params ) +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; params->_ret = iface->GetISteamGameServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient016_SetLocalIPBinding( struct cppISteamClient_SteamClient016_SetLocalIPBinding_params *params ) +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; iface->SetLocalIPBinding( params->unIP, params->usPort ); + return 0; } -void cppISteamClient_SteamClient016_GetISteamFriends( struct cppISteamClient_SteamClient016_GetISteamFriends_params *params ) +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; params->_ret = iface->GetISteamFriends( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient016_GetISteamUtils( struct cppISteamClient_SteamClient016_GetISteamUtils_params *params ) +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; params->_ret = iface->GetISteamUtils( params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient016_GetISteamMatchmaking( struct cppISteamClient_SteamClient016_GetISteamMatchmaking_params *params ) +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; params->_ret = iface->GetISteamMatchmaking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient016_GetISteamMatchmakingServers( struct cppISteamClient_SteamClient016_GetISteamMatchmakingServers_params *params ) +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; params->_ret = iface->GetISteamMatchmakingServers( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient016_GetISteamGenericInterface( struct cppISteamClient_SteamClient016_GetISteamGenericInterface_params *params ) +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; params->_ret = iface->GetISteamGenericInterface( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient016_GetISteamUserStats( struct cppISteamClient_SteamClient016_GetISteamUserStats_params *params ) +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; params->_ret = iface->GetISteamUserStats( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient016_GetISteamGameServerStats( struct cppISteamClient_SteamClient016_GetISteamGameServerStats_params *params ) +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; params->_ret = iface->GetISteamGameServerStats( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient016_GetISteamApps( struct cppISteamClient_SteamClient016_GetISteamApps_params *params ) +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; params->_ret = iface->GetISteamApps( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient016_GetISteamNetworking( struct cppISteamClient_SteamClient016_GetISteamNetworking_params *params ) +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; params->_ret = iface->GetISteamNetworking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient016_GetISteamRemoteStorage( struct cppISteamClient_SteamClient016_GetISteamRemoteStorage_params *params ) +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; params->_ret = iface->GetISteamRemoteStorage( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient016_GetISteamScreenshots( struct cppISteamClient_SteamClient016_GetISteamScreenshots_params *params ) +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; params->_ret = iface->GetISteamScreenshots( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient016_RunFrame( struct cppISteamClient_SteamClient016_RunFrame_params *params ) +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; iface->RunFrame( ); + return 0; } -void cppISteamClient_SteamClient016_GetIPCCallCount( struct cppISteamClient_SteamClient016_GetIPCCallCount_params *params ) +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; params->_ret = iface->GetIPCCallCount( ); + return 0; } -void cppISteamClient_SteamClient016_SetWarningMessageHook( struct cppISteamClient_SteamClient016_SetWarningMessageHook_params *params ) +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; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); + return 0; } -void cppISteamClient_SteamClient016_BShutdownIfAllPipesClosed( struct cppISteamClient_SteamClient016_BShutdownIfAllPipesClosed_params *params ) +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; params->_ret = iface->BShutdownIfAllPipesClosed( ); + return 0; } -void cppISteamClient_SteamClient016_GetISteamHTTP( struct cppISteamClient_SteamClient016_GetISteamHTTP_params *params ) +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; params->_ret = iface->GetISteamHTTP( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient016_GetISteamUnifiedMessages( struct cppISteamClient_SteamClient016_GetISteamUnifiedMessages_params *params ) +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; params->_ret = iface->GetISteamUnifiedMessages( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient016_GetISteamController( struct cppISteamClient_SteamClient016_GetISteamController_params *params ) +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; params->_ret = iface->GetISteamController( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient016_GetISteamUGC( struct cppISteamClient_SteamClient016_GetISteamUGC_params *params ) +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; params->_ret = iface->GetISteamUGC( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient016_GetISteamAppList( struct cppISteamClient_SteamClient016_GetISteamAppList_params *params ) +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; params->_ret = iface->GetISteamAppList( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient016_GetISteamMusic( struct cppISteamClient_SteamClient016_GetISteamMusic_params *params ) +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; params->_ret = iface->GetISteamMusic( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient016_GetISteamMusicRemote( struct cppISteamClient_SteamClient016_GetISteamMusicRemote_params *params ) +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; params->_ret = iface->GetISteamMusicRemote( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient016_GetISteamHTMLSurface( struct cppISteamClient_SteamClient016_GetISteamHTMLSurface_params *params ) +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; params->_ret = iface->GetISteamHTMLSurface( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient016_Set_SteamAPI_CPostAPIResultInProcess( struct cppISteamClient_SteamClient016_Set_SteamAPI_CPostAPIResultInProcess_params *params ) +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; void (*U_STDCALL 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; } -void cppISteamClient_SteamClient016_Remove_SteamAPI_CPostAPIResultInProcess( struct cppISteamClient_SteamClient016_Remove_SteamAPI_CPostAPIResultInProcess_params *params ) +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; void (*U_STDCALL 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; } -void cppISteamClient_SteamClient016_Set_SteamAPI_CCheckCallbackRegisteredInProcess( struct cppISteamClient_SteamClient016_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params *params ) +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; uint32_t (*U_STDCALL 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_SteamClient016.h b/lsteamclient/cppISteamClient_SteamClient016.h deleted file mode 100644 index 3e4cc1f8..00000000 --- a/lsteamclient/cppISteamClient_SteamClient016.h +++ /dev/null @@ -1,317 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamClient_SteamClient016_CreateSteamPipe_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamClient_SteamClient016_CreateSteamPipe( struct cppISteamClient_SteamClient016_CreateSteamPipe_params *params ); - -struct cppISteamClient_SteamClient016_BReleaseSteamPipe_params -{ - void *linux_side; - bool _ret; - int32_t hSteamPipe; -}; -extern void cppISteamClient_SteamClient016_BReleaseSteamPipe( struct cppISteamClient_SteamClient016_BReleaseSteamPipe_params *params ); - -struct cppISteamClient_SteamClient016_ConnectToGlobalUser_params -{ - void *linux_side; - int32_t _ret; - int32_t hSteamPipe; -}; -extern void cppISteamClient_SteamClient016_ConnectToGlobalUser( struct cppISteamClient_SteamClient016_ConnectToGlobalUser_params *params ); - -struct cppISteamClient_SteamClient016_CreateLocalUser_params -{ - void *linux_side; - int32_t _ret; - int32_t *phSteamPipe; - uint32_t eAccountType; -}; -extern void cppISteamClient_SteamClient016_CreateLocalUser( struct cppISteamClient_SteamClient016_CreateLocalUser_params *params ); - -struct cppISteamClient_SteamClient016_ReleaseUser_params -{ - void *linux_side; - int32_t hSteamPipe; - int32_t hUser; -}; -extern void cppISteamClient_SteamClient016_ReleaseUser( struct cppISteamClient_SteamClient016_ReleaseUser_params *params ); - -struct cppISteamClient_SteamClient016_GetISteamUser_params -{ - void *linux_side; - void /*ISteamUser*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient016_GetISteamUser( struct cppISteamClient_SteamClient016_GetISteamUser_params *params ); - -struct cppISteamClient_SteamClient016_GetISteamGameServer_params -{ - void *linux_side; - void /*ISteamGameServer*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient016_GetISteamGameServer( struct cppISteamClient_SteamClient016_GetISteamGameServer_params *params ); - -struct cppISteamClient_SteamClient016_SetLocalIPBinding_params -{ - void *linux_side; - uint32_t unIP; - uint16_t usPort; -}; -extern void cppISteamClient_SteamClient016_SetLocalIPBinding( struct cppISteamClient_SteamClient016_SetLocalIPBinding_params *params ); - -struct cppISteamClient_SteamClient016_GetISteamFriends_params -{ - void *linux_side; - void /*ISteamFriends*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient016_GetISteamFriends( struct cppISteamClient_SteamClient016_GetISteamFriends_params *params ); - -struct cppISteamClient_SteamClient016_GetISteamUtils_params -{ - void *linux_side; - void /*ISteamUtils*/ *_ret; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient016_GetISteamUtils( struct cppISteamClient_SteamClient016_GetISteamUtils_params *params ); - -struct cppISteamClient_SteamClient016_GetISteamMatchmaking_params -{ - void *linux_side; - void /*ISteamMatchmaking*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient016_GetISteamMatchmaking( struct cppISteamClient_SteamClient016_GetISteamMatchmaking_params *params ); - -struct cppISteamClient_SteamClient016_GetISteamMatchmakingServers_params -{ - void *linux_side; - void /*ISteamMatchmakingServers*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient016_GetISteamMatchmakingServers( struct cppISteamClient_SteamClient016_GetISteamMatchmakingServers_params *params ); - -struct cppISteamClient_SteamClient016_GetISteamGenericInterface_params -{ - void *linux_side; - void *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient016_GetISteamGenericInterface( struct cppISteamClient_SteamClient016_GetISteamGenericInterface_params *params ); - -struct cppISteamClient_SteamClient016_GetISteamUserStats_params -{ - void *linux_side; - void /*ISteamUserStats*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient016_GetISteamUserStats( struct cppISteamClient_SteamClient016_GetISteamUserStats_params *params ); - -struct cppISteamClient_SteamClient016_GetISteamGameServerStats_params -{ - void *linux_side; - void /*ISteamGameServerStats*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient016_GetISteamGameServerStats( struct cppISteamClient_SteamClient016_GetISteamGameServerStats_params *params ); - -struct cppISteamClient_SteamClient016_GetISteamApps_params -{ - void *linux_side; - void /*ISteamApps*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient016_GetISteamApps( struct cppISteamClient_SteamClient016_GetISteamApps_params *params ); - -struct cppISteamClient_SteamClient016_GetISteamNetworking_params -{ - void *linux_side; - void /*ISteamNetworking*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient016_GetISteamNetworking( struct cppISteamClient_SteamClient016_GetISteamNetworking_params *params ); - -struct cppISteamClient_SteamClient016_GetISteamRemoteStorage_params -{ - void *linux_side; - void /*ISteamRemoteStorage*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient016_GetISteamRemoteStorage( struct cppISteamClient_SteamClient016_GetISteamRemoteStorage_params *params ); - -struct cppISteamClient_SteamClient016_GetISteamScreenshots_params -{ - void *linux_side; - void /*ISteamScreenshots*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient016_GetISteamScreenshots( struct cppISteamClient_SteamClient016_GetISteamScreenshots_params *params ); - -struct cppISteamClient_SteamClient016_RunFrame_params -{ - void *linux_side; -}; -extern void cppISteamClient_SteamClient016_RunFrame( struct cppISteamClient_SteamClient016_RunFrame_params *params ); - -struct cppISteamClient_SteamClient016_GetIPCCallCount_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamClient_SteamClient016_GetIPCCallCount( struct cppISteamClient_SteamClient016_GetIPCCallCount_params *params ); - -struct cppISteamClient_SteamClient016_SetWarningMessageHook_params -{ - void *linux_side; - void (*W_CDECL pFunction)(int32_t, const char *); -}; -extern void cppISteamClient_SteamClient016_SetWarningMessageHook( struct cppISteamClient_SteamClient016_SetWarningMessageHook_params *params ); - -struct cppISteamClient_SteamClient016_BShutdownIfAllPipesClosed_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamClient_SteamClient016_BShutdownIfAllPipesClosed( struct cppISteamClient_SteamClient016_BShutdownIfAllPipesClosed_params *params ); - -struct cppISteamClient_SteamClient016_GetISteamHTTP_params -{ - void *linux_side; - void /*ISteamHTTP*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient016_GetISteamHTTP( struct cppISteamClient_SteamClient016_GetISteamHTTP_params *params ); - -struct cppISteamClient_SteamClient016_GetISteamUnifiedMessages_params -{ - void *linux_side; - void /*ISteamUnifiedMessages*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient016_GetISteamUnifiedMessages( struct cppISteamClient_SteamClient016_GetISteamUnifiedMessages_params *params ); - -struct cppISteamClient_SteamClient016_GetISteamController_params -{ - void *linux_side; - void /*ISteamController*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient016_GetISteamController( struct cppISteamClient_SteamClient016_GetISteamController_params *params ); - -struct cppISteamClient_SteamClient016_GetISteamUGC_params -{ - void *linux_side; - void /*ISteamUGC*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient016_GetISteamUGC( struct cppISteamClient_SteamClient016_GetISteamUGC_params *params ); - -struct cppISteamClient_SteamClient016_GetISteamAppList_params -{ - void *linux_side; - void /*ISteamAppList*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient016_GetISteamAppList( struct cppISteamClient_SteamClient016_GetISteamAppList_params *params ); - -struct cppISteamClient_SteamClient016_GetISteamMusic_params -{ - void *linux_side; - void /*ISteamMusic*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient016_GetISteamMusic( struct cppISteamClient_SteamClient016_GetISteamMusic_params *params ); - -struct cppISteamClient_SteamClient016_GetISteamMusicRemote_params -{ - void *linux_side; - void /*ISteamMusicRemote*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient016_GetISteamMusicRemote( struct cppISteamClient_SteamClient016_GetISteamMusicRemote_params *params ); - -struct cppISteamClient_SteamClient016_GetISteamHTMLSurface_params -{ - void *linux_side; - void /*ISteamHTMLSurface*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient016_GetISteamHTMLSurface( struct cppISteamClient_SteamClient016_GetISteamHTMLSurface_params *params ); - -struct cppISteamClient_SteamClient016_Set_SteamAPI_CPostAPIResultInProcess_params -{ - void *linux_side; - void (*W_STDCALL func)(uint64_t, void *, uint32_t, int32_t); -}; -extern void cppISteamClient_SteamClient016_Set_SteamAPI_CPostAPIResultInProcess( struct cppISteamClient_SteamClient016_Set_SteamAPI_CPostAPIResultInProcess_params *params ); - -struct cppISteamClient_SteamClient016_Remove_SteamAPI_CPostAPIResultInProcess_params -{ - void *linux_side; - void (*W_STDCALL func)(uint64_t, void *, uint32_t, int32_t); -}; -extern void cppISteamClient_SteamClient016_Remove_SteamAPI_CPostAPIResultInProcess( struct cppISteamClient_SteamClient016_Remove_SteamAPI_CPostAPIResultInProcess_params *params ); - -struct cppISteamClient_SteamClient016_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params -{ - void *linux_side; - uint32_t (*W_STDCALL func)(int32_t); -}; -extern void cppISteamClient_SteamClient016_Set_SteamAPI_CCheckCallbackRegisteredInProcess( struct cppISteamClient_SteamClient016_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamClient_SteamClient017.cpp b/lsteamclient/cppISteamClient_SteamClient017.cpp index ab6ebe9e..c133eb57 100644 --- a/lsteamclient/cppISteamClient_SteamClient017.cpp +++ b/lsteamclient/cppISteamClient_SteamClient017.cpp @@ -1,230 +1,303 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamClient_SteamClient017.h" -void cppISteamClient_SteamClient017_CreateSteamPipe( struct cppISteamClient_SteamClient017_CreateSteamPipe_params *params ) +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; params->_ret = iface->CreateSteamPipe( ); + return 0; } -void cppISteamClient_SteamClient017_BReleaseSteamPipe( struct cppISteamClient_SteamClient017_BReleaseSteamPipe_params *params ) +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; params->_ret = iface->BReleaseSteamPipe( params->hSteamPipe ); + return 0; } -void cppISteamClient_SteamClient017_ConnectToGlobalUser( struct cppISteamClient_SteamClient017_ConnectToGlobalUser_params *params ) +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; params->_ret = iface->ConnectToGlobalUser( params->hSteamPipe ); + return 0; } -void cppISteamClient_SteamClient017_CreateLocalUser( struct cppISteamClient_SteamClient017_CreateLocalUser_params *params ) +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; params->_ret = iface->CreateLocalUser( params->phSteamPipe, params->eAccountType ); + return 0; } -void cppISteamClient_SteamClient017_ReleaseUser( struct cppISteamClient_SteamClient017_ReleaseUser_params *params ) +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; iface->ReleaseUser( params->hSteamPipe, params->hUser ); + return 0; } -void cppISteamClient_SteamClient017_GetISteamUser( struct cppISteamClient_SteamClient017_GetISteamUser_params *params ) +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; params->_ret = iface->GetISteamUser( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient017_GetISteamGameServer( struct cppISteamClient_SteamClient017_GetISteamGameServer_params *params ) +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; params->_ret = iface->GetISteamGameServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient017_SetLocalIPBinding( struct cppISteamClient_SteamClient017_SetLocalIPBinding_params *params ) +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; iface->SetLocalIPBinding( params->unIP, params->usPort ); + return 0; } -void cppISteamClient_SteamClient017_GetISteamFriends( struct cppISteamClient_SteamClient017_GetISteamFriends_params *params ) +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; params->_ret = iface->GetISteamFriends( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient017_GetISteamUtils( struct cppISteamClient_SteamClient017_GetISteamUtils_params *params ) +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; params->_ret = iface->GetISteamUtils( params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient017_GetISteamMatchmaking( struct cppISteamClient_SteamClient017_GetISteamMatchmaking_params *params ) +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; params->_ret = iface->GetISteamMatchmaking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient017_GetISteamMatchmakingServers( struct cppISteamClient_SteamClient017_GetISteamMatchmakingServers_params *params ) +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; params->_ret = iface->GetISteamMatchmakingServers( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient017_GetISteamGenericInterface( struct cppISteamClient_SteamClient017_GetISteamGenericInterface_params *params ) +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; params->_ret = iface->GetISteamGenericInterface( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient017_GetISteamUserStats( struct cppISteamClient_SteamClient017_GetISteamUserStats_params *params ) +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; params->_ret = iface->GetISteamUserStats( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient017_GetISteamGameServerStats( struct cppISteamClient_SteamClient017_GetISteamGameServerStats_params *params ) +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; params->_ret = iface->GetISteamGameServerStats( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient017_GetISteamApps( struct cppISteamClient_SteamClient017_GetISteamApps_params *params ) +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; params->_ret = iface->GetISteamApps( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient017_GetISteamNetworking( struct cppISteamClient_SteamClient017_GetISteamNetworking_params *params ) +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; params->_ret = iface->GetISteamNetworking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient017_GetISteamRemoteStorage( struct cppISteamClient_SteamClient017_GetISteamRemoteStorage_params *params ) +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; params->_ret = iface->GetISteamRemoteStorage( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient017_GetISteamScreenshots( struct cppISteamClient_SteamClient017_GetISteamScreenshots_params *params ) +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; params->_ret = iface->GetISteamScreenshots( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient017_RunFrame( struct cppISteamClient_SteamClient017_RunFrame_params *params ) +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; iface->RunFrame( ); + return 0; } -void cppISteamClient_SteamClient017_GetIPCCallCount( struct cppISteamClient_SteamClient017_GetIPCCallCount_params *params ) +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; params->_ret = iface->GetIPCCallCount( ); + return 0; } -void cppISteamClient_SteamClient017_SetWarningMessageHook( struct cppISteamClient_SteamClient017_SetWarningMessageHook_params *params ) +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; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); + return 0; } -void cppISteamClient_SteamClient017_BShutdownIfAllPipesClosed( struct cppISteamClient_SteamClient017_BShutdownIfAllPipesClosed_params *params ) +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; params->_ret = iface->BShutdownIfAllPipesClosed( ); + return 0; } -void cppISteamClient_SteamClient017_GetISteamHTTP( struct cppISteamClient_SteamClient017_GetISteamHTTP_params *params ) +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; params->_ret = iface->GetISteamHTTP( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient017_DEPRECATED_GetISteamUnifiedMessages( struct cppISteamClient_SteamClient017_DEPRECATED_GetISteamUnifiedMessages_params *params ) +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; params->_ret = iface->DEPRECATED_GetISteamUnifiedMessages( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient017_GetISteamController( struct cppISteamClient_SteamClient017_GetISteamController_params *params ) +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; params->_ret = iface->GetISteamController( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient017_GetISteamUGC( struct cppISteamClient_SteamClient017_GetISteamUGC_params *params ) +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; params->_ret = iface->GetISteamUGC( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient017_GetISteamAppList( struct cppISteamClient_SteamClient017_GetISteamAppList_params *params ) +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; params->_ret = iface->GetISteamAppList( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient017_GetISteamMusic( struct cppISteamClient_SteamClient017_GetISteamMusic_params *params ) +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; params->_ret = iface->GetISteamMusic( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient017_GetISteamMusicRemote( struct cppISteamClient_SteamClient017_GetISteamMusicRemote_params *params ) +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; params->_ret = iface->GetISteamMusicRemote( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient017_GetISteamHTMLSurface( struct cppISteamClient_SteamClient017_GetISteamHTMLSurface_params *params ) +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; params->_ret = iface->GetISteamHTMLSurface( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient017_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess( struct cppISteamClient_SteamClient017_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params *params ) +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; void (*U_STDCALL u__a)(void) = manual_convert_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess__a( params->_a ); iface->DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess( u__a ); + return 0; } -void cppISteamClient_SteamClient017_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess( struct cppISteamClient_SteamClient017_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params *params ) +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; void (*U_STDCALL u__a)(void) = manual_convert_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess__a( params->_a ); iface->DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess( u__a ); + return 0; } -void cppISteamClient_SteamClient017_Set_SteamAPI_CCheckCallbackRegisteredInProcess( struct cppISteamClient_SteamClient017_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params *params ) +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; uint32_t (*U_STDCALL u_func)(int32_t) = manual_convert_Set_SteamAPI_CCheckCallbackRegisteredInProcess_func( params->func ); iface->Set_SteamAPI_CCheckCallbackRegisteredInProcess( u_func ); + return 0; } -void cppISteamClient_SteamClient017_GetISteamInventory( struct cppISteamClient_SteamClient017_GetISteamInventory_params *params ) +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; params->_ret = iface->GetISteamInventory( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient017_GetISteamVideo( struct cppISteamClient_SteamClient017_GetISteamVideo_params *params ) +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; params->_ret = iface->GetISteamVideo( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient017_GetISteamParentalSettings( struct cppISteamClient_SteamClient017_GetISteamParentalSettings_params *params ) +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; params->_ret = iface->GetISteamParentalSettings( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } diff --git a/lsteamclient/cppISteamClient_SteamClient017.h b/lsteamclient/cppISteamClient_SteamClient017.h deleted file mode 100644 index d869f587..00000000 --- a/lsteamclient/cppISteamClient_SteamClient017.h +++ /dev/null @@ -1,347 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamClient_SteamClient017_CreateSteamPipe_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamClient_SteamClient017_CreateSteamPipe( struct cppISteamClient_SteamClient017_CreateSteamPipe_params *params ); - -struct cppISteamClient_SteamClient017_BReleaseSteamPipe_params -{ - void *linux_side; - bool _ret; - int32_t hSteamPipe; -}; -extern void cppISteamClient_SteamClient017_BReleaseSteamPipe( struct cppISteamClient_SteamClient017_BReleaseSteamPipe_params *params ); - -struct cppISteamClient_SteamClient017_ConnectToGlobalUser_params -{ - void *linux_side; - int32_t _ret; - int32_t hSteamPipe; -}; -extern void cppISteamClient_SteamClient017_ConnectToGlobalUser( struct cppISteamClient_SteamClient017_ConnectToGlobalUser_params *params ); - -struct cppISteamClient_SteamClient017_CreateLocalUser_params -{ - void *linux_side; - int32_t _ret; - int32_t *phSteamPipe; - uint32_t eAccountType; -}; -extern void cppISteamClient_SteamClient017_CreateLocalUser( struct cppISteamClient_SteamClient017_CreateLocalUser_params *params ); - -struct cppISteamClient_SteamClient017_ReleaseUser_params -{ - void *linux_side; - int32_t hSteamPipe; - int32_t hUser; -}; -extern void cppISteamClient_SteamClient017_ReleaseUser( struct cppISteamClient_SteamClient017_ReleaseUser_params *params ); - -struct cppISteamClient_SteamClient017_GetISteamUser_params -{ - void *linux_side; - void /*ISteamUser*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient017_GetISteamUser( struct cppISteamClient_SteamClient017_GetISteamUser_params *params ); - -struct cppISteamClient_SteamClient017_GetISteamGameServer_params -{ - void *linux_side; - void /*ISteamGameServer*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient017_GetISteamGameServer( struct cppISteamClient_SteamClient017_GetISteamGameServer_params *params ); - -struct cppISteamClient_SteamClient017_SetLocalIPBinding_params -{ - void *linux_side; - uint32_t unIP; - uint16_t usPort; -}; -extern void cppISteamClient_SteamClient017_SetLocalIPBinding( struct cppISteamClient_SteamClient017_SetLocalIPBinding_params *params ); - -struct cppISteamClient_SteamClient017_GetISteamFriends_params -{ - void *linux_side; - void /*ISteamFriends*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient017_GetISteamFriends( struct cppISteamClient_SteamClient017_GetISteamFriends_params *params ); - -struct cppISteamClient_SteamClient017_GetISteamUtils_params -{ - void *linux_side; - void /*ISteamUtils*/ *_ret; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient017_GetISteamUtils( struct cppISteamClient_SteamClient017_GetISteamUtils_params *params ); - -struct cppISteamClient_SteamClient017_GetISteamMatchmaking_params -{ - void *linux_side; - void /*ISteamMatchmaking*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient017_GetISteamMatchmaking( struct cppISteamClient_SteamClient017_GetISteamMatchmaking_params *params ); - -struct cppISteamClient_SteamClient017_GetISteamMatchmakingServers_params -{ - void *linux_side; - void /*ISteamMatchmakingServers*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient017_GetISteamMatchmakingServers( struct cppISteamClient_SteamClient017_GetISteamMatchmakingServers_params *params ); - -struct cppISteamClient_SteamClient017_GetISteamGenericInterface_params -{ - void *linux_side; - void *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient017_GetISteamGenericInterface( struct cppISteamClient_SteamClient017_GetISteamGenericInterface_params *params ); - -struct cppISteamClient_SteamClient017_GetISteamUserStats_params -{ - void *linux_side; - void /*ISteamUserStats*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient017_GetISteamUserStats( struct cppISteamClient_SteamClient017_GetISteamUserStats_params *params ); - -struct cppISteamClient_SteamClient017_GetISteamGameServerStats_params -{ - void *linux_side; - void /*ISteamGameServerStats*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient017_GetISteamGameServerStats( struct cppISteamClient_SteamClient017_GetISteamGameServerStats_params *params ); - -struct cppISteamClient_SteamClient017_GetISteamApps_params -{ - void *linux_side; - void /*ISteamApps*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient017_GetISteamApps( struct cppISteamClient_SteamClient017_GetISteamApps_params *params ); - -struct cppISteamClient_SteamClient017_GetISteamNetworking_params -{ - void *linux_side; - void /*ISteamNetworking*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient017_GetISteamNetworking( struct cppISteamClient_SteamClient017_GetISteamNetworking_params *params ); - -struct cppISteamClient_SteamClient017_GetISteamRemoteStorage_params -{ - void *linux_side; - void /*ISteamRemoteStorage*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient017_GetISteamRemoteStorage( struct cppISteamClient_SteamClient017_GetISteamRemoteStorage_params *params ); - -struct cppISteamClient_SteamClient017_GetISteamScreenshots_params -{ - void *linux_side; - void /*ISteamScreenshots*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient017_GetISteamScreenshots( struct cppISteamClient_SteamClient017_GetISteamScreenshots_params *params ); - -struct cppISteamClient_SteamClient017_RunFrame_params -{ - void *linux_side; -}; -extern void cppISteamClient_SteamClient017_RunFrame( struct cppISteamClient_SteamClient017_RunFrame_params *params ); - -struct cppISteamClient_SteamClient017_GetIPCCallCount_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamClient_SteamClient017_GetIPCCallCount( struct cppISteamClient_SteamClient017_GetIPCCallCount_params *params ); - -struct cppISteamClient_SteamClient017_SetWarningMessageHook_params -{ - void *linux_side; - void (*W_CDECL pFunction)(int32_t, const char *); -}; -extern void cppISteamClient_SteamClient017_SetWarningMessageHook( struct cppISteamClient_SteamClient017_SetWarningMessageHook_params *params ); - -struct cppISteamClient_SteamClient017_BShutdownIfAllPipesClosed_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamClient_SteamClient017_BShutdownIfAllPipesClosed( struct cppISteamClient_SteamClient017_BShutdownIfAllPipesClosed_params *params ); - -struct cppISteamClient_SteamClient017_GetISteamHTTP_params -{ - void *linux_side; - void /*ISteamHTTP*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient017_GetISteamHTTP( struct cppISteamClient_SteamClient017_GetISteamHTTP_params *params ); - -struct cppISteamClient_SteamClient017_DEPRECATED_GetISteamUnifiedMessages_params -{ - void *linux_side; - void *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient017_DEPRECATED_GetISteamUnifiedMessages( struct cppISteamClient_SteamClient017_DEPRECATED_GetISteamUnifiedMessages_params *params ); - -struct cppISteamClient_SteamClient017_GetISteamController_params -{ - void *linux_side; - void /*ISteamController*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient017_GetISteamController( struct cppISteamClient_SteamClient017_GetISteamController_params *params ); - -struct cppISteamClient_SteamClient017_GetISteamUGC_params -{ - void *linux_side; - void /*ISteamUGC*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient017_GetISteamUGC( struct cppISteamClient_SteamClient017_GetISteamUGC_params *params ); - -struct cppISteamClient_SteamClient017_GetISteamAppList_params -{ - void *linux_side; - void /*ISteamAppList*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient017_GetISteamAppList( struct cppISteamClient_SteamClient017_GetISteamAppList_params *params ); - -struct cppISteamClient_SteamClient017_GetISteamMusic_params -{ - void *linux_side; - void /*ISteamMusic*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient017_GetISteamMusic( struct cppISteamClient_SteamClient017_GetISteamMusic_params *params ); - -struct cppISteamClient_SteamClient017_GetISteamMusicRemote_params -{ - void *linux_side; - void /*ISteamMusicRemote*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient017_GetISteamMusicRemote( struct cppISteamClient_SteamClient017_GetISteamMusicRemote_params *params ); - -struct cppISteamClient_SteamClient017_GetISteamHTMLSurface_params -{ - void *linux_side; - void /*ISteamHTMLSurface*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient017_GetISteamHTMLSurface( struct cppISteamClient_SteamClient017_GetISteamHTMLSurface_params *params ); - -struct cppISteamClient_SteamClient017_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params -{ - void *linux_side; - void (*W_STDCALL _a)(void); -}; -extern void cppISteamClient_SteamClient017_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess( struct cppISteamClient_SteamClient017_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params *params ); - -struct cppISteamClient_SteamClient017_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params -{ - void *linux_side; - void (*W_STDCALL _a)(void); -}; -extern void cppISteamClient_SteamClient017_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess( struct cppISteamClient_SteamClient017_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params *params ); - -struct cppISteamClient_SteamClient017_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params -{ - void *linux_side; - uint32_t (*W_STDCALL func)(int32_t); -}; -extern void cppISteamClient_SteamClient017_Set_SteamAPI_CCheckCallbackRegisteredInProcess( struct cppISteamClient_SteamClient017_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params *params ); - -struct cppISteamClient_SteamClient017_GetISteamInventory_params -{ - void *linux_side; - void /*ISteamInventory*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient017_GetISteamInventory( struct cppISteamClient_SteamClient017_GetISteamInventory_params *params ); - -struct cppISteamClient_SteamClient017_GetISteamVideo_params -{ - void *linux_side; - void /*ISteamVideo*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient017_GetISteamVideo( struct cppISteamClient_SteamClient017_GetISteamVideo_params *params ); - -struct cppISteamClient_SteamClient017_GetISteamParentalSettings_params -{ - void *linux_side; - void /*ISteamParentalSettings*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient017_GetISteamParentalSettings( struct cppISteamClient_SteamClient017_GetISteamParentalSettings_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamClient_SteamClient018.cpp b/lsteamclient/cppISteamClient_SteamClient018.cpp index 7b131735..cbaa823a 100644 --- a/lsteamclient/cppISteamClient_SteamClient018.cpp +++ b/lsteamclient/cppISteamClient_SteamClient018.cpp @@ -1,248 +1,327 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamClient_SteamClient018.h" -void cppISteamClient_SteamClient018_CreateSteamPipe( struct cppISteamClient_SteamClient018_CreateSteamPipe_params *params ) +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; params->_ret = iface->CreateSteamPipe( ); + return 0; } -void cppISteamClient_SteamClient018_BReleaseSteamPipe( struct cppISteamClient_SteamClient018_BReleaseSteamPipe_params *params ) +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; params->_ret = iface->BReleaseSteamPipe( params->hSteamPipe ); + return 0; } -void cppISteamClient_SteamClient018_ConnectToGlobalUser( struct cppISteamClient_SteamClient018_ConnectToGlobalUser_params *params ) +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; params->_ret = iface->ConnectToGlobalUser( params->hSteamPipe ); + return 0; } -void cppISteamClient_SteamClient018_CreateLocalUser( struct cppISteamClient_SteamClient018_CreateLocalUser_params *params ) +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; params->_ret = iface->CreateLocalUser( params->phSteamPipe, params->eAccountType ); + return 0; } -void cppISteamClient_SteamClient018_ReleaseUser( struct cppISteamClient_SteamClient018_ReleaseUser_params *params ) +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; iface->ReleaseUser( params->hSteamPipe, params->hUser ); + return 0; } -void cppISteamClient_SteamClient018_GetISteamUser( struct cppISteamClient_SteamClient018_GetISteamUser_params *params ) +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; params->_ret = iface->GetISteamUser( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient018_GetISteamGameServer( struct cppISteamClient_SteamClient018_GetISteamGameServer_params *params ) +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; params->_ret = iface->GetISteamGameServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient018_SetLocalIPBinding( struct cppISteamClient_SteamClient018_SetLocalIPBinding_params *params ) +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; iface->SetLocalIPBinding( params->unIP, params->usPort ); + return 0; } -void cppISteamClient_SteamClient018_GetISteamFriends( struct cppISteamClient_SteamClient018_GetISteamFriends_params *params ) +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; params->_ret = iface->GetISteamFriends( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient018_GetISteamUtils( struct cppISteamClient_SteamClient018_GetISteamUtils_params *params ) +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; params->_ret = iface->GetISteamUtils( params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient018_GetISteamMatchmaking( struct cppISteamClient_SteamClient018_GetISteamMatchmaking_params *params ) +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; params->_ret = iface->GetISteamMatchmaking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient018_GetISteamMatchmakingServers( struct cppISteamClient_SteamClient018_GetISteamMatchmakingServers_params *params ) +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; params->_ret = iface->GetISteamMatchmakingServers( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient018_GetISteamGenericInterface( struct cppISteamClient_SteamClient018_GetISteamGenericInterface_params *params ) +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; params->_ret = iface->GetISteamGenericInterface( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient018_GetISteamUserStats( struct cppISteamClient_SteamClient018_GetISteamUserStats_params *params ) +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; params->_ret = iface->GetISteamUserStats( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient018_GetISteamGameServerStats( struct cppISteamClient_SteamClient018_GetISteamGameServerStats_params *params ) +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; params->_ret = iface->GetISteamGameServerStats( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient018_GetISteamApps( struct cppISteamClient_SteamClient018_GetISteamApps_params *params ) +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; params->_ret = iface->GetISteamApps( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient018_GetISteamNetworking( struct cppISteamClient_SteamClient018_GetISteamNetworking_params *params ) +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; params->_ret = iface->GetISteamNetworking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient018_GetISteamRemoteStorage( struct cppISteamClient_SteamClient018_GetISteamRemoteStorage_params *params ) +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; params->_ret = iface->GetISteamRemoteStorage( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient018_GetISteamScreenshots( struct cppISteamClient_SteamClient018_GetISteamScreenshots_params *params ) +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; params->_ret = iface->GetISteamScreenshots( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient018_GetISteamGameSearch( struct cppISteamClient_SteamClient018_GetISteamGameSearch_params *params ) +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; params->_ret = iface->GetISteamGameSearch( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient018_RunFrame( struct cppISteamClient_SteamClient018_RunFrame_params *params ) +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; iface->RunFrame( ); + return 0; } -void cppISteamClient_SteamClient018_GetIPCCallCount( struct cppISteamClient_SteamClient018_GetIPCCallCount_params *params ) +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; params->_ret = iface->GetIPCCallCount( ); + return 0; } -void cppISteamClient_SteamClient018_SetWarningMessageHook( struct cppISteamClient_SteamClient018_SetWarningMessageHook_params *params ) +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; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); + return 0; } -void cppISteamClient_SteamClient018_BShutdownIfAllPipesClosed( struct cppISteamClient_SteamClient018_BShutdownIfAllPipesClosed_params *params ) +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; params->_ret = iface->BShutdownIfAllPipesClosed( ); + return 0; } -void cppISteamClient_SteamClient018_GetISteamHTTP( struct cppISteamClient_SteamClient018_GetISteamHTTP_params *params ) +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; params->_ret = iface->GetISteamHTTP( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient018_DEPRECATED_GetISteamUnifiedMessages( struct cppISteamClient_SteamClient018_DEPRECATED_GetISteamUnifiedMessages_params *params ) +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; params->_ret = iface->DEPRECATED_GetISteamUnifiedMessages( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient018_GetISteamController( struct cppISteamClient_SteamClient018_GetISteamController_params *params ) +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; params->_ret = iface->GetISteamController( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient018_GetISteamUGC( struct cppISteamClient_SteamClient018_GetISteamUGC_params *params ) +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; params->_ret = iface->GetISteamUGC( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient018_GetISteamAppList( struct cppISteamClient_SteamClient018_GetISteamAppList_params *params ) +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; params->_ret = iface->GetISteamAppList( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient018_GetISteamMusic( struct cppISteamClient_SteamClient018_GetISteamMusic_params *params ) +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; params->_ret = iface->GetISteamMusic( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient018_GetISteamMusicRemote( struct cppISteamClient_SteamClient018_GetISteamMusicRemote_params *params ) +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; params->_ret = iface->GetISteamMusicRemote( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient018_GetISteamHTMLSurface( struct cppISteamClient_SteamClient018_GetISteamHTMLSurface_params *params ) +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; params->_ret = iface->GetISteamHTMLSurface( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient018_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess( struct cppISteamClient_SteamClient018_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params *params ) +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; void (*U_STDCALL u__a)(void) = manual_convert_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess__a( params->_a ); iface->DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess( u__a ); + return 0; } -void cppISteamClient_SteamClient018_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess( struct cppISteamClient_SteamClient018_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params *params ) +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; void (*U_STDCALL u__a)(void) = manual_convert_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess__a( params->_a ); iface->DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess( u__a ); + return 0; } -void cppISteamClient_SteamClient018_Set_SteamAPI_CCheckCallbackRegisteredInProcess( struct cppISteamClient_SteamClient018_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params *params ) +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; uint32_t (*U_STDCALL u_func)(int32_t) = manual_convert_Set_SteamAPI_CCheckCallbackRegisteredInProcess_func( params->func ); iface->Set_SteamAPI_CCheckCallbackRegisteredInProcess( u_func ); + return 0; } -void cppISteamClient_SteamClient018_GetISteamInventory( struct cppISteamClient_SteamClient018_GetISteamInventory_params *params ) +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; params->_ret = iface->GetISteamInventory( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient018_GetISteamVideo( struct cppISteamClient_SteamClient018_GetISteamVideo_params *params ) +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; params->_ret = iface->GetISteamVideo( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient018_GetISteamParentalSettings( struct cppISteamClient_SteamClient018_GetISteamParentalSettings_params *params ) +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; params->_ret = iface->GetISteamParentalSettings( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient018_GetISteamInput( struct cppISteamClient_SteamClient018_GetISteamInput_params *params ) +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; params->_ret = iface->GetISteamInput( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient018_GetISteamParties( struct cppISteamClient_SteamClient018_GetISteamParties_params *params ) +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; params->_ret = iface->GetISteamParties( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } diff --git a/lsteamclient/cppISteamClient_SteamClient018.h b/lsteamclient/cppISteamClient_SteamClient018.h deleted file mode 100644 index 62aeb2b9..00000000 --- a/lsteamclient/cppISteamClient_SteamClient018.h +++ /dev/null @@ -1,377 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamClient_SteamClient018_CreateSteamPipe_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamClient_SteamClient018_CreateSteamPipe( struct cppISteamClient_SteamClient018_CreateSteamPipe_params *params ); - -struct cppISteamClient_SteamClient018_BReleaseSteamPipe_params -{ - void *linux_side; - bool _ret; - int32_t hSteamPipe; -}; -extern void cppISteamClient_SteamClient018_BReleaseSteamPipe( struct cppISteamClient_SteamClient018_BReleaseSteamPipe_params *params ); - -struct cppISteamClient_SteamClient018_ConnectToGlobalUser_params -{ - void *linux_side; - int32_t _ret; - int32_t hSteamPipe; -}; -extern void cppISteamClient_SteamClient018_ConnectToGlobalUser( struct cppISteamClient_SteamClient018_ConnectToGlobalUser_params *params ); - -struct cppISteamClient_SteamClient018_CreateLocalUser_params -{ - void *linux_side; - int32_t _ret; - int32_t *phSteamPipe; - uint32_t eAccountType; -}; -extern void cppISteamClient_SteamClient018_CreateLocalUser( struct cppISteamClient_SteamClient018_CreateLocalUser_params *params ); - -struct cppISteamClient_SteamClient018_ReleaseUser_params -{ - void *linux_side; - int32_t hSteamPipe; - int32_t hUser; -}; -extern void cppISteamClient_SteamClient018_ReleaseUser( struct cppISteamClient_SteamClient018_ReleaseUser_params *params ); - -struct cppISteamClient_SteamClient018_GetISteamUser_params -{ - void *linux_side; - void /*ISteamUser*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient018_GetISteamUser( struct cppISteamClient_SteamClient018_GetISteamUser_params *params ); - -struct cppISteamClient_SteamClient018_GetISteamGameServer_params -{ - void *linux_side; - void /*ISteamGameServer*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient018_GetISteamGameServer( struct cppISteamClient_SteamClient018_GetISteamGameServer_params *params ); - -struct cppISteamClient_SteamClient018_SetLocalIPBinding_params -{ - void *linux_side; - uint32_t unIP; - uint16_t usPort; -}; -extern void cppISteamClient_SteamClient018_SetLocalIPBinding( struct cppISteamClient_SteamClient018_SetLocalIPBinding_params *params ); - -struct cppISteamClient_SteamClient018_GetISteamFriends_params -{ - void *linux_side; - void /*ISteamFriends*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient018_GetISteamFriends( struct cppISteamClient_SteamClient018_GetISteamFriends_params *params ); - -struct cppISteamClient_SteamClient018_GetISteamUtils_params -{ - void *linux_side; - void /*ISteamUtils*/ *_ret; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient018_GetISteamUtils( struct cppISteamClient_SteamClient018_GetISteamUtils_params *params ); - -struct cppISteamClient_SteamClient018_GetISteamMatchmaking_params -{ - void *linux_side; - void /*ISteamMatchmaking*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient018_GetISteamMatchmaking( struct cppISteamClient_SteamClient018_GetISteamMatchmaking_params *params ); - -struct cppISteamClient_SteamClient018_GetISteamMatchmakingServers_params -{ - void *linux_side; - void /*ISteamMatchmakingServers*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient018_GetISteamMatchmakingServers( struct cppISteamClient_SteamClient018_GetISteamMatchmakingServers_params *params ); - -struct cppISteamClient_SteamClient018_GetISteamGenericInterface_params -{ - void *linux_side; - void *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient018_GetISteamGenericInterface( struct cppISteamClient_SteamClient018_GetISteamGenericInterface_params *params ); - -struct cppISteamClient_SteamClient018_GetISteamUserStats_params -{ - void *linux_side; - void /*ISteamUserStats*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient018_GetISteamUserStats( struct cppISteamClient_SteamClient018_GetISteamUserStats_params *params ); - -struct cppISteamClient_SteamClient018_GetISteamGameServerStats_params -{ - void *linux_side; - void /*ISteamGameServerStats*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient018_GetISteamGameServerStats( struct cppISteamClient_SteamClient018_GetISteamGameServerStats_params *params ); - -struct cppISteamClient_SteamClient018_GetISteamApps_params -{ - void *linux_side; - void /*ISteamApps*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient018_GetISteamApps( struct cppISteamClient_SteamClient018_GetISteamApps_params *params ); - -struct cppISteamClient_SteamClient018_GetISteamNetworking_params -{ - void *linux_side; - void /*ISteamNetworking*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient018_GetISteamNetworking( struct cppISteamClient_SteamClient018_GetISteamNetworking_params *params ); - -struct cppISteamClient_SteamClient018_GetISteamRemoteStorage_params -{ - void *linux_side; - void /*ISteamRemoteStorage*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient018_GetISteamRemoteStorage( struct cppISteamClient_SteamClient018_GetISteamRemoteStorage_params *params ); - -struct cppISteamClient_SteamClient018_GetISteamScreenshots_params -{ - void *linux_side; - void /*ISteamScreenshots*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient018_GetISteamScreenshots( struct cppISteamClient_SteamClient018_GetISteamScreenshots_params *params ); - -struct cppISteamClient_SteamClient018_GetISteamGameSearch_params -{ - void *linux_side; - void /*ISteamGameSearch*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient018_GetISteamGameSearch( struct cppISteamClient_SteamClient018_GetISteamGameSearch_params *params ); - -struct cppISteamClient_SteamClient018_RunFrame_params -{ - void *linux_side; -}; -extern void cppISteamClient_SteamClient018_RunFrame( struct cppISteamClient_SteamClient018_RunFrame_params *params ); - -struct cppISteamClient_SteamClient018_GetIPCCallCount_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamClient_SteamClient018_GetIPCCallCount( struct cppISteamClient_SteamClient018_GetIPCCallCount_params *params ); - -struct cppISteamClient_SteamClient018_SetWarningMessageHook_params -{ - void *linux_side; - void (*W_CDECL pFunction)(int32_t, const char *); -}; -extern void cppISteamClient_SteamClient018_SetWarningMessageHook( struct cppISteamClient_SteamClient018_SetWarningMessageHook_params *params ); - -struct cppISteamClient_SteamClient018_BShutdownIfAllPipesClosed_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamClient_SteamClient018_BShutdownIfAllPipesClosed( struct cppISteamClient_SteamClient018_BShutdownIfAllPipesClosed_params *params ); - -struct cppISteamClient_SteamClient018_GetISteamHTTP_params -{ - void *linux_side; - void /*ISteamHTTP*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient018_GetISteamHTTP( struct cppISteamClient_SteamClient018_GetISteamHTTP_params *params ); - -struct cppISteamClient_SteamClient018_DEPRECATED_GetISteamUnifiedMessages_params -{ - void *linux_side; - void *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient018_DEPRECATED_GetISteamUnifiedMessages( struct cppISteamClient_SteamClient018_DEPRECATED_GetISteamUnifiedMessages_params *params ); - -struct cppISteamClient_SteamClient018_GetISteamController_params -{ - void *linux_side; - void /*ISteamController*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient018_GetISteamController( struct cppISteamClient_SteamClient018_GetISteamController_params *params ); - -struct cppISteamClient_SteamClient018_GetISteamUGC_params -{ - void *linux_side; - void /*ISteamUGC*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient018_GetISteamUGC( struct cppISteamClient_SteamClient018_GetISteamUGC_params *params ); - -struct cppISteamClient_SteamClient018_GetISteamAppList_params -{ - void *linux_side; - void /*ISteamAppList*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient018_GetISteamAppList( struct cppISteamClient_SteamClient018_GetISteamAppList_params *params ); - -struct cppISteamClient_SteamClient018_GetISteamMusic_params -{ - void *linux_side; - void /*ISteamMusic*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient018_GetISteamMusic( struct cppISteamClient_SteamClient018_GetISteamMusic_params *params ); - -struct cppISteamClient_SteamClient018_GetISteamMusicRemote_params -{ - void *linux_side; - void /*ISteamMusicRemote*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient018_GetISteamMusicRemote( struct cppISteamClient_SteamClient018_GetISteamMusicRemote_params *params ); - -struct cppISteamClient_SteamClient018_GetISteamHTMLSurface_params -{ - void *linux_side; - void /*ISteamHTMLSurface*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient018_GetISteamHTMLSurface( struct cppISteamClient_SteamClient018_GetISteamHTMLSurface_params *params ); - -struct cppISteamClient_SteamClient018_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params -{ - void *linux_side; - void (*W_STDCALL _a)(void); -}; -extern void cppISteamClient_SteamClient018_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess( struct cppISteamClient_SteamClient018_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params *params ); - -struct cppISteamClient_SteamClient018_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params -{ - void *linux_side; - void (*W_STDCALL _a)(void); -}; -extern void cppISteamClient_SteamClient018_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess( struct cppISteamClient_SteamClient018_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params *params ); - -struct cppISteamClient_SteamClient018_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params -{ - void *linux_side; - uint32_t (*W_STDCALL func)(int32_t); -}; -extern void cppISteamClient_SteamClient018_Set_SteamAPI_CCheckCallbackRegisteredInProcess( struct cppISteamClient_SteamClient018_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params *params ); - -struct cppISteamClient_SteamClient018_GetISteamInventory_params -{ - void *linux_side; - void /*ISteamInventory*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient018_GetISteamInventory( struct cppISteamClient_SteamClient018_GetISteamInventory_params *params ); - -struct cppISteamClient_SteamClient018_GetISteamVideo_params -{ - void *linux_side; - void /*ISteamVideo*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient018_GetISteamVideo( struct cppISteamClient_SteamClient018_GetISteamVideo_params *params ); - -struct cppISteamClient_SteamClient018_GetISteamParentalSettings_params -{ - void *linux_side; - void /*ISteamParentalSettings*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient018_GetISteamParentalSettings( struct cppISteamClient_SteamClient018_GetISteamParentalSettings_params *params ); - -struct cppISteamClient_SteamClient018_GetISteamInput_params -{ - void *linux_side; - void /*ISteamInput*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient018_GetISteamInput( struct cppISteamClient_SteamClient018_GetISteamInput_params *params ); - -struct cppISteamClient_SteamClient018_GetISteamParties_params -{ - void *linux_side; - void /*ISteamParties*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient018_GetISteamParties( struct cppISteamClient_SteamClient018_GetISteamParties_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamClient_SteamClient019.cpp b/lsteamclient/cppISteamClient_SteamClient019.cpp index de6b4921..01d7de97 100644 --- a/lsteamclient/cppISteamClient_SteamClient019.cpp +++ b/lsteamclient/cppISteamClient_SteamClient019.cpp @@ -1,254 +1,335 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamClient_SteamClient019.h" -void cppISteamClient_SteamClient019_CreateSteamPipe( struct cppISteamClient_SteamClient019_CreateSteamPipe_params *params ) +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; params->_ret = iface->CreateSteamPipe( ); + return 0; } -void cppISteamClient_SteamClient019_BReleaseSteamPipe( struct cppISteamClient_SteamClient019_BReleaseSteamPipe_params *params ) +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; params->_ret = iface->BReleaseSteamPipe( params->hSteamPipe ); + return 0; } -void cppISteamClient_SteamClient019_ConnectToGlobalUser( struct cppISteamClient_SteamClient019_ConnectToGlobalUser_params *params ) +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; params->_ret = iface->ConnectToGlobalUser( params->hSteamPipe ); + return 0; } -void cppISteamClient_SteamClient019_CreateLocalUser( struct cppISteamClient_SteamClient019_CreateLocalUser_params *params ) +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; params->_ret = iface->CreateLocalUser( params->phSteamPipe, params->eAccountType ); + return 0; } -void cppISteamClient_SteamClient019_ReleaseUser( struct cppISteamClient_SteamClient019_ReleaseUser_params *params ) +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; iface->ReleaseUser( params->hSteamPipe, params->hUser ); + return 0; } -void cppISteamClient_SteamClient019_GetISteamUser( struct cppISteamClient_SteamClient019_GetISteamUser_params *params ) +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; params->_ret = iface->GetISteamUser( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient019_GetISteamGameServer( struct cppISteamClient_SteamClient019_GetISteamGameServer_params *params ) +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; params->_ret = iface->GetISteamGameServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient019_SetLocalIPBinding( struct cppISteamClient_SteamClient019_SetLocalIPBinding_params *params ) +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; iface->SetLocalIPBinding( params->unIP, params->usPort ); + return 0; } -void cppISteamClient_SteamClient019_GetISteamFriends( struct cppISteamClient_SteamClient019_GetISteamFriends_params *params ) +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; params->_ret = iface->GetISteamFriends( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient019_GetISteamUtils( struct cppISteamClient_SteamClient019_GetISteamUtils_params *params ) +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; params->_ret = iface->GetISteamUtils( params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient019_GetISteamMatchmaking( struct cppISteamClient_SteamClient019_GetISteamMatchmaking_params *params ) +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; params->_ret = iface->GetISteamMatchmaking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient019_GetISteamMatchmakingServers( struct cppISteamClient_SteamClient019_GetISteamMatchmakingServers_params *params ) +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; params->_ret = iface->GetISteamMatchmakingServers( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient019_GetISteamGenericInterface( struct cppISteamClient_SteamClient019_GetISteamGenericInterface_params *params ) +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; params->_ret = iface->GetISteamGenericInterface( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient019_GetISteamUserStats( struct cppISteamClient_SteamClient019_GetISteamUserStats_params *params ) +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; params->_ret = iface->GetISteamUserStats( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient019_GetISteamGameServerStats( struct cppISteamClient_SteamClient019_GetISteamGameServerStats_params *params ) +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; params->_ret = iface->GetISteamGameServerStats( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient019_GetISteamApps( struct cppISteamClient_SteamClient019_GetISteamApps_params *params ) +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; params->_ret = iface->GetISteamApps( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient019_GetISteamNetworking( struct cppISteamClient_SteamClient019_GetISteamNetworking_params *params ) +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; params->_ret = iface->GetISteamNetworking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient019_GetISteamRemoteStorage( struct cppISteamClient_SteamClient019_GetISteamRemoteStorage_params *params ) +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; params->_ret = iface->GetISteamRemoteStorage( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient019_GetISteamScreenshots( struct cppISteamClient_SteamClient019_GetISteamScreenshots_params *params ) +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; params->_ret = iface->GetISteamScreenshots( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient019_GetISteamGameSearch( struct cppISteamClient_SteamClient019_GetISteamGameSearch_params *params ) +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; params->_ret = iface->GetISteamGameSearch( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient019_RunFrame( struct cppISteamClient_SteamClient019_RunFrame_params *params ) +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; iface->RunFrame( ); + return 0; } -void cppISteamClient_SteamClient019_GetIPCCallCount( struct cppISteamClient_SteamClient019_GetIPCCallCount_params *params ) +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; params->_ret = iface->GetIPCCallCount( ); + return 0; } -void cppISteamClient_SteamClient019_SetWarningMessageHook( struct cppISteamClient_SteamClient019_SetWarningMessageHook_params *params ) +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; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); + return 0; } -void cppISteamClient_SteamClient019_BShutdownIfAllPipesClosed( struct cppISteamClient_SteamClient019_BShutdownIfAllPipesClosed_params *params ) +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; params->_ret = iface->BShutdownIfAllPipesClosed( ); + return 0; } -void cppISteamClient_SteamClient019_GetISteamHTTP( struct cppISteamClient_SteamClient019_GetISteamHTTP_params *params ) +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; params->_ret = iface->GetISteamHTTP( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient019_DEPRECATED_GetISteamUnifiedMessages( struct cppISteamClient_SteamClient019_DEPRECATED_GetISteamUnifiedMessages_params *params ) +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; params->_ret = iface->DEPRECATED_GetISteamUnifiedMessages( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient019_GetISteamController( struct cppISteamClient_SteamClient019_GetISteamController_params *params ) +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; params->_ret = iface->GetISteamController( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient019_GetISteamUGC( struct cppISteamClient_SteamClient019_GetISteamUGC_params *params ) +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; params->_ret = iface->GetISteamUGC( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient019_GetISteamAppList( struct cppISteamClient_SteamClient019_GetISteamAppList_params *params ) +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; params->_ret = iface->GetISteamAppList( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient019_GetISteamMusic( struct cppISteamClient_SteamClient019_GetISteamMusic_params *params ) +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; params->_ret = iface->GetISteamMusic( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient019_GetISteamMusicRemote( struct cppISteamClient_SteamClient019_GetISteamMusicRemote_params *params ) +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; params->_ret = iface->GetISteamMusicRemote( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient019_GetISteamHTMLSurface( struct cppISteamClient_SteamClient019_GetISteamHTMLSurface_params *params ) +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; params->_ret = iface->GetISteamHTMLSurface( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient019_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess( struct cppISteamClient_SteamClient019_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params *params ) +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; void (*U_STDCALL u__a)(void) = manual_convert_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess__a( params->_a ); iface->DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess( u__a ); + return 0; } -void cppISteamClient_SteamClient019_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess( struct cppISteamClient_SteamClient019_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params *params ) +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; void (*U_STDCALL u__a)(void) = manual_convert_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess__a( params->_a ); iface->DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess( u__a ); + return 0; } -void cppISteamClient_SteamClient019_Set_SteamAPI_CCheckCallbackRegisteredInProcess( struct cppISteamClient_SteamClient019_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params *params ) +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; uint32_t (*U_STDCALL u_func)(int32_t) = manual_convert_Set_SteamAPI_CCheckCallbackRegisteredInProcess_func( params->func ); iface->Set_SteamAPI_CCheckCallbackRegisteredInProcess( u_func ); + return 0; } -void cppISteamClient_SteamClient019_GetISteamInventory( struct cppISteamClient_SteamClient019_GetISteamInventory_params *params ) +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; params->_ret = iface->GetISteamInventory( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient019_GetISteamVideo( struct cppISteamClient_SteamClient019_GetISteamVideo_params *params ) +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; params->_ret = iface->GetISteamVideo( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient019_GetISteamParentalSettings( struct cppISteamClient_SteamClient019_GetISteamParentalSettings_params *params ) +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; params->_ret = iface->GetISteamParentalSettings( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient019_GetISteamInput( struct cppISteamClient_SteamClient019_GetISteamInput_params *params ) +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; params->_ret = iface->GetISteamInput( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient019_GetISteamParties( struct cppISteamClient_SteamClient019_GetISteamParties_params *params ) +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; params->_ret = iface->GetISteamParties( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient019_GetISteamRemotePlay( struct cppISteamClient_SteamClient019_GetISteamRemotePlay_params *params ) +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; params->_ret = iface->GetISteamRemotePlay( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } diff --git a/lsteamclient/cppISteamClient_SteamClient019.h b/lsteamclient/cppISteamClient_SteamClient019.h deleted file mode 100644 index fb8fb198..00000000 --- a/lsteamclient/cppISteamClient_SteamClient019.h +++ /dev/null @@ -1,387 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamClient_SteamClient019_CreateSteamPipe_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamClient_SteamClient019_CreateSteamPipe( struct cppISteamClient_SteamClient019_CreateSteamPipe_params *params ); - -struct cppISteamClient_SteamClient019_BReleaseSteamPipe_params -{ - void *linux_side; - bool _ret; - int32_t hSteamPipe; -}; -extern void cppISteamClient_SteamClient019_BReleaseSteamPipe( struct cppISteamClient_SteamClient019_BReleaseSteamPipe_params *params ); - -struct cppISteamClient_SteamClient019_ConnectToGlobalUser_params -{ - void *linux_side; - int32_t _ret; - int32_t hSteamPipe; -}; -extern void cppISteamClient_SteamClient019_ConnectToGlobalUser( struct cppISteamClient_SteamClient019_ConnectToGlobalUser_params *params ); - -struct cppISteamClient_SteamClient019_CreateLocalUser_params -{ - void *linux_side; - int32_t _ret; - int32_t *phSteamPipe; - uint32_t eAccountType; -}; -extern void cppISteamClient_SteamClient019_CreateLocalUser( struct cppISteamClient_SteamClient019_CreateLocalUser_params *params ); - -struct cppISteamClient_SteamClient019_ReleaseUser_params -{ - void *linux_side; - int32_t hSteamPipe; - int32_t hUser; -}; -extern void cppISteamClient_SteamClient019_ReleaseUser( struct cppISteamClient_SteamClient019_ReleaseUser_params *params ); - -struct cppISteamClient_SteamClient019_GetISteamUser_params -{ - void *linux_side; - void /*ISteamUser*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient019_GetISteamUser( struct cppISteamClient_SteamClient019_GetISteamUser_params *params ); - -struct cppISteamClient_SteamClient019_GetISteamGameServer_params -{ - void *linux_side; - void /*ISteamGameServer*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient019_GetISteamGameServer( struct cppISteamClient_SteamClient019_GetISteamGameServer_params *params ); - -struct cppISteamClient_SteamClient019_SetLocalIPBinding_params -{ - void *linux_side; - uint32_t unIP; - uint16_t usPort; -}; -extern void cppISteamClient_SteamClient019_SetLocalIPBinding( struct cppISteamClient_SteamClient019_SetLocalIPBinding_params *params ); - -struct cppISteamClient_SteamClient019_GetISteamFriends_params -{ - void *linux_side; - void /*ISteamFriends*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient019_GetISteamFriends( struct cppISteamClient_SteamClient019_GetISteamFriends_params *params ); - -struct cppISteamClient_SteamClient019_GetISteamUtils_params -{ - void *linux_side; - void /*ISteamUtils*/ *_ret; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient019_GetISteamUtils( struct cppISteamClient_SteamClient019_GetISteamUtils_params *params ); - -struct cppISteamClient_SteamClient019_GetISteamMatchmaking_params -{ - void *linux_side; - void /*ISteamMatchmaking*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient019_GetISteamMatchmaking( struct cppISteamClient_SteamClient019_GetISteamMatchmaking_params *params ); - -struct cppISteamClient_SteamClient019_GetISteamMatchmakingServers_params -{ - void *linux_side; - void /*ISteamMatchmakingServers*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient019_GetISteamMatchmakingServers( struct cppISteamClient_SteamClient019_GetISteamMatchmakingServers_params *params ); - -struct cppISteamClient_SteamClient019_GetISteamGenericInterface_params -{ - void *linux_side; - void *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient019_GetISteamGenericInterface( struct cppISteamClient_SteamClient019_GetISteamGenericInterface_params *params ); - -struct cppISteamClient_SteamClient019_GetISteamUserStats_params -{ - void *linux_side; - void /*ISteamUserStats*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient019_GetISteamUserStats( struct cppISteamClient_SteamClient019_GetISteamUserStats_params *params ); - -struct cppISteamClient_SteamClient019_GetISteamGameServerStats_params -{ - void *linux_side; - void /*ISteamGameServerStats*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient019_GetISteamGameServerStats( struct cppISteamClient_SteamClient019_GetISteamGameServerStats_params *params ); - -struct cppISteamClient_SteamClient019_GetISteamApps_params -{ - void *linux_side; - void /*ISteamApps*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient019_GetISteamApps( struct cppISteamClient_SteamClient019_GetISteamApps_params *params ); - -struct cppISteamClient_SteamClient019_GetISteamNetworking_params -{ - void *linux_side; - void /*ISteamNetworking*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient019_GetISteamNetworking( struct cppISteamClient_SteamClient019_GetISteamNetworking_params *params ); - -struct cppISteamClient_SteamClient019_GetISteamRemoteStorage_params -{ - void *linux_side; - void /*ISteamRemoteStorage*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient019_GetISteamRemoteStorage( struct cppISteamClient_SteamClient019_GetISteamRemoteStorage_params *params ); - -struct cppISteamClient_SteamClient019_GetISteamScreenshots_params -{ - void *linux_side; - void /*ISteamScreenshots*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient019_GetISteamScreenshots( struct cppISteamClient_SteamClient019_GetISteamScreenshots_params *params ); - -struct cppISteamClient_SteamClient019_GetISteamGameSearch_params -{ - void *linux_side; - void /*ISteamGameSearch*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient019_GetISteamGameSearch( struct cppISteamClient_SteamClient019_GetISteamGameSearch_params *params ); - -struct cppISteamClient_SteamClient019_RunFrame_params -{ - void *linux_side; -}; -extern void cppISteamClient_SteamClient019_RunFrame( struct cppISteamClient_SteamClient019_RunFrame_params *params ); - -struct cppISteamClient_SteamClient019_GetIPCCallCount_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamClient_SteamClient019_GetIPCCallCount( struct cppISteamClient_SteamClient019_GetIPCCallCount_params *params ); - -struct cppISteamClient_SteamClient019_SetWarningMessageHook_params -{ - void *linux_side; - void (*W_CDECL pFunction)(int32_t, const char *); -}; -extern void cppISteamClient_SteamClient019_SetWarningMessageHook( struct cppISteamClient_SteamClient019_SetWarningMessageHook_params *params ); - -struct cppISteamClient_SteamClient019_BShutdownIfAllPipesClosed_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamClient_SteamClient019_BShutdownIfAllPipesClosed( struct cppISteamClient_SteamClient019_BShutdownIfAllPipesClosed_params *params ); - -struct cppISteamClient_SteamClient019_GetISteamHTTP_params -{ - void *linux_side; - void /*ISteamHTTP*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient019_GetISteamHTTP( struct cppISteamClient_SteamClient019_GetISteamHTTP_params *params ); - -struct cppISteamClient_SteamClient019_DEPRECATED_GetISteamUnifiedMessages_params -{ - void *linux_side; - void *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient019_DEPRECATED_GetISteamUnifiedMessages( struct cppISteamClient_SteamClient019_DEPRECATED_GetISteamUnifiedMessages_params *params ); - -struct cppISteamClient_SteamClient019_GetISteamController_params -{ - void *linux_side; - void /*ISteamController*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient019_GetISteamController( struct cppISteamClient_SteamClient019_GetISteamController_params *params ); - -struct cppISteamClient_SteamClient019_GetISteamUGC_params -{ - void *linux_side; - void /*ISteamUGC*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient019_GetISteamUGC( struct cppISteamClient_SteamClient019_GetISteamUGC_params *params ); - -struct cppISteamClient_SteamClient019_GetISteamAppList_params -{ - void *linux_side; - void /*ISteamAppList*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient019_GetISteamAppList( struct cppISteamClient_SteamClient019_GetISteamAppList_params *params ); - -struct cppISteamClient_SteamClient019_GetISteamMusic_params -{ - void *linux_side; - void /*ISteamMusic*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient019_GetISteamMusic( struct cppISteamClient_SteamClient019_GetISteamMusic_params *params ); - -struct cppISteamClient_SteamClient019_GetISteamMusicRemote_params -{ - void *linux_side; - void /*ISteamMusicRemote*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient019_GetISteamMusicRemote( struct cppISteamClient_SteamClient019_GetISteamMusicRemote_params *params ); - -struct cppISteamClient_SteamClient019_GetISteamHTMLSurface_params -{ - void *linux_side; - void /*ISteamHTMLSurface*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient019_GetISteamHTMLSurface( struct cppISteamClient_SteamClient019_GetISteamHTMLSurface_params *params ); - -struct cppISteamClient_SteamClient019_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params -{ - void *linux_side; - void (*W_STDCALL _a)(void); -}; -extern void cppISteamClient_SteamClient019_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess( struct cppISteamClient_SteamClient019_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params *params ); - -struct cppISteamClient_SteamClient019_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params -{ - void *linux_side; - void (*W_STDCALL _a)(void); -}; -extern void cppISteamClient_SteamClient019_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess( struct cppISteamClient_SteamClient019_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params *params ); - -struct cppISteamClient_SteamClient019_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params -{ - void *linux_side; - uint32_t (*W_STDCALL func)(int32_t); -}; -extern void cppISteamClient_SteamClient019_Set_SteamAPI_CCheckCallbackRegisteredInProcess( struct cppISteamClient_SteamClient019_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params *params ); - -struct cppISteamClient_SteamClient019_GetISteamInventory_params -{ - void *linux_side; - void /*ISteamInventory*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient019_GetISteamInventory( struct cppISteamClient_SteamClient019_GetISteamInventory_params *params ); - -struct cppISteamClient_SteamClient019_GetISteamVideo_params -{ - void *linux_side; - void /*ISteamVideo*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient019_GetISteamVideo( struct cppISteamClient_SteamClient019_GetISteamVideo_params *params ); - -struct cppISteamClient_SteamClient019_GetISteamParentalSettings_params -{ - void *linux_side; - void /*ISteamParentalSettings*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient019_GetISteamParentalSettings( struct cppISteamClient_SteamClient019_GetISteamParentalSettings_params *params ); - -struct cppISteamClient_SteamClient019_GetISteamInput_params -{ - void *linux_side; - void /*ISteamInput*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient019_GetISteamInput( struct cppISteamClient_SteamClient019_GetISteamInput_params *params ); - -struct cppISteamClient_SteamClient019_GetISteamParties_params -{ - void *linux_side; - void /*ISteamParties*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient019_GetISteamParties( struct cppISteamClient_SteamClient019_GetISteamParties_params *params ); - -struct cppISteamClient_SteamClient019_GetISteamRemotePlay_params -{ - void *linux_side; - void /*ISteamRemotePlay*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient019_GetISteamRemotePlay( struct cppISteamClient_SteamClient019_GetISteamRemotePlay_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamClient_SteamClient020.cpp b/lsteamclient/cppISteamClient_SteamClient020.cpp index 33eab134..43cd597d 100644 --- a/lsteamclient/cppISteamClient_SteamClient020.cpp +++ b/lsteamclient/cppISteamClient_SteamClient020.cpp @@ -1,253 +1,334 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamClient_SteamClient020.h" -void cppISteamClient_SteamClient020_CreateSteamPipe( struct cppISteamClient_SteamClient020_CreateSteamPipe_params *params ) +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; params->_ret = iface->CreateSteamPipe( ); + return 0; } -void cppISteamClient_SteamClient020_BReleaseSteamPipe( struct cppISteamClient_SteamClient020_BReleaseSteamPipe_params *params ) +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; params->_ret = iface->BReleaseSteamPipe( params->hSteamPipe ); + return 0; } -void cppISteamClient_SteamClient020_ConnectToGlobalUser( struct cppISteamClient_SteamClient020_ConnectToGlobalUser_params *params ) +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; params->_ret = iface->ConnectToGlobalUser( params->hSteamPipe ); + return 0; } -void cppISteamClient_SteamClient020_CreateLocalUser( struct cppISteamClient_SteamClient020_CreateLocalUser_params *params ) +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; params->_ret = iface->CreateLocalUser( params->phSteamPipe, params->eAccountType ); + return 0; } -void cppISteamClient_SteamClient020_ReleaseUser( struct cppISteamClient_SteamClient020_ReleaseUser_params *params ) +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; iface->ReleaseUser( params->hSteamPipe, params->hUser ); + return 0; } -void cppISteamClient_SteamClient020_GetISteamUser( struct cppISteamClient_SteamClient020_GetISteamUser_params *params ) +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; params->_ret = iface->GetISteamUser( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient020_GetISteamGameServer( struct cppISteamClient_SteamClient020_GetISteamGameServer_params *params ) +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; params->_ret = iface->GetISteamGameServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient020_SetLocalIPBinding( struct cppISteamClient_SteamClient020_SetLocalIPBinding_params *params ) +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; iface->SetLocalIPBinding( params->unIP, params->usPort ); + return 0; } -void cppISteamClient_SteamClient020_GetISteamFriends( struct cppISteamClient_SteamClient020_GetISteamFriends_params *params ) +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; params->_ret = iface->GetISteamFriends( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient020_GetISteamUtils( struct cppISteamClient_SteamClient020_GetISteamUtils_params *params ) +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; params->_ret = iface->GetISteamUtils( params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient020_GetISteamMatchmaking( struct cppISteamClient_SteamClient020_GetISteamMatchmaking_params *params ) +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; params->_ret = iface->GetISteamMatchmaking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient020_GetISteamMatchmakingServers( struct cppISteamClient_SteamClient020_GetISteamMatchmakingServers_params *params ) +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; params->_ret = iface->GetISteamMatchmakingServers( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient020_GetISteamGenericInterface( struct cppISteamClient_SteamClient020_GetISteamGenericInterface_params *params ) +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; params->_ret = iface->GetISteamGenericInterface( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient020_GetISteamUserStats( struct cppISteamClient_SteamClient020_GetISteamUserStats_params *params ) +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; params->_ret = iface->GetISteamUserStats( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient020_GetISteamGameServerStats( struct cppISteamClient_SteamClient020_GetISteamGameServerStats_params *params ) +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; params->_ret = iface->GetISteamGameServerStats( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient020_GetISteamApps( struct cppISteamClient_SteamClient020_GetISteamApps_params *params ) +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; params->_ret = iface->GetISteamApps( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient020_GetISteamNetworking( struct cppISteamClient_SteamClient020_GetISteamNetworking_params *params ) +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; params->_ret = iface->GetISteamNetworking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient020_GetISteamRemoteStorage( struct cppISteamClient_SteamClient020_GetISteamRemoteStorage_params *params ) +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; params->_ret = iface->GetISteamRemoteStorage( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient020_GetISteamScreenshots( struct cppISteamClient_SteamClient020_GetISteamScreenshots_params *params ) +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; params->_ret = iface->GetISteamScreenshots( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient020_GetISteamGameSearch( struct cppISteamClient_SteamClient020_GetISteamGameSearch_params *params ) +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; params->_ret = iface->GetISteamGameSearch( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient020_RunFrame( struct cppISteamClient_SteamClient020_RunFrame_params *params ) +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; iface->RunFrame( ); + return 0; } -void cppISteamClient_SteamClient020_GetIPCCallCount( struct cppISteamClient_SteamClient020_GetIPCCallCount_params *params ) +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; params->_ret = iface->GetIPCCallCount( ); + return 0; } -void cppISteamClient_SteamClient020_SetWarningMessageHook( struct cppISteamClient_SteamClient020_SetWarningMessageHook_params *params ) +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; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); + return 0; } -void cppISteamClient_SteamClient020_BShutdownIfAllPipesClosed( struct cppISteamClient_SteamClient020_BShutdownIfAllPipesClosed_params *params ) +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; params->_ret = iface->BShutdownIfAllPipesClosed( ); + return 0; } -void cppISteamClient_SteamClient020_GetISteamHTTP( struct cppISteamClient_SteamClient020_GetISteamHTTP_params *params ) +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; params->_ret = iface->GetISteamHTTP( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient020_DEPRECATED_GetISteamUnifiedMessages( struct cppISteamClient_SteamClient020_DEPRECATED_GetISteamUnifiedMessages_params *params ) +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; params->_ret = iface->DEPRECATED_GetISteamUnifiedMessages( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient020_GetISteamController( struct cppISteamClient_SteamClient020_GetISteamController_params *params ) +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; params->_ret = iface->GetISteamController( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient020_GetISteamUGC( struct cppISteamClient_SteamClient020_GetISteamUGC_params *params ) +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; params->_ret = iface->GetISteamUGC( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient020_GetISteamAppList( struct cppISteamClient_SteamClient020_GetISteamAppList_params *params ) +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; params->_ret = iface->GetISteamAppList( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient020_GetISteamMusic( struct cppISteamClient_SteamClient020_GetISteamMusic_params *params ) +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; params->_ret = iface->GetISteamMusic( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient020_GetISteamMusicRemote( struct cppISteamClient_SteamClient020_GetISteamMusicRemote_params *params ) +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; params->_ret = iface->GetISteamMusicRemote( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient020_GetISteamHTMLSurface( struct cppISteamClient_SteamClient020_GetISteamHTMLSurface_params *params ) +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; params->_ret = iface->GetISteamHTMLSurface( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient020_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess( struct cppISteamClient_SteamClient020_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params *params ) +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; void (*U_STDCALL u__a)(void) = manual_convert_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess__a( params->_a ); iface->DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess( u__a ); + return 0; } -void cppISteamClient_SteamClient020_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess( struct cppISteamClient_SteamClient020_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params *params ) +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; void (*U_STDCALL u__a)(void) = manual_convert_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess__a( params->_a ); iface->DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess( u__a ); + return 0; } -void cppISteamClient_SteamClient020_GetISteamInventory( struct cppISteamClient_SteamClient020_GetISteamInventory_params *params ) +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; params->_ret = iface->GetISteamInventory( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient020_GetISteamVideo( struct cppISteamClient_SteamClient020_GetISteamVideo_params *params ) +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; params->_ret = iface->GetISteamVideo( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient020_GetISteamParentalSettings( struct cppISteamClient_SteamClient020_GetISteamParentalSettings_params *params ) +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; params->_ret = iface->GetISteamParentalSettings( params->hSteamuser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient020_GetISteamInput( struct cppISteamClient_SteamClient020_GetISteamInput_params *params ) +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; params->_ret = iface->GetISteamInput( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient020_GetISteamParties( struct cppISteamClient_SteamClient020_GetISteamParties_params *params ) +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; params->_ret = iface->GetISteamParties( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient020_GetISteamRemotePlay( struct cppISteamClient_SteamClient020_GetISteamRemotePlay_params *params ) +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; params->_ret = iface->GetISteamRemotePlay( params->hSteamUser, params->hSteamPipe, params->pchVersion ); + return 0; } -void cppISteamClient_SteamClient020_DestroyAllInterfaces( struct cppISteamClient_SteamClient020_DestroyAllInterfaces_params *params ) +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; iface->DestroyAllInterfaces( ); + return 0; } diff --git a/lsteamclient/cppISteamClient_SteamClient020.h b/lsteamclient/cppISteamClient_SteamClient020.h deleted file mode 100644 index 234ab8d9..00000000 --- a/lsteamclient/cppISteamClient_SteamClient020.h +++ /dev/null @@ -1,393 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamClient_SteamClient020_CreateSteamPipe_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamClient_SteamClient020_CreateSteamPipe( struct cppISteamClient_SteamClient020_CreateSteamPipe_params *params ); - -struct cppISteamClient_SteamClient020_BReleaseSteamPipe_params -{ - void *linux_side; - bool _ret; - int32_t hSteamPipe; -}; -extern void cppISteamClient_SteamClient020_BReleaseSteamPipe( struct cppISteamClient_SteamClient020_BReleaseSteamPipe_params *params ); - -struct cppISteamClient_SteamClient020_ConnectToGlobalUser_params -{ - void *linux_side; - int32_t _ret; - int32_t hSteamPipe; -}; -extern void cppISteamClient_SteamClient020_ConnectToGlobalUser( struct cppISteamClient_SteamClient020_ConnectToGlobalUser_params *params ); - -struct cppISteamClient_SteamClient020_CreateLocalUser_params -{ - void *linux_side; - int32_t _ret; - int32_t *phSteamPipe; - uint32_t eAccountType; -}; -extern void cppISteamClient_SteamClient020_CreateLocalUser( struct cppISteamClient_SteamClient020_CreateLocalUser_params *params ); - -struct cppISteamClient_SteamClient020_ReleaseUser_params -{ - void *linux_side; - int32_t hSteamPipe; - int32_t hUser; -}; -extern void cppISteamClient_SteamClient020_ReleaseUser( struct cppISteamClient_SteamClient020_ReleaseUser_params *params ); - -struct cppISteamClient_SteamClient020_GetISteamUser_params -{ - void *linux_side; - void /*ISteamUser*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient020_GetISteamUser( struct cppISteamClient_SteamClient020_GetISteamUser_params *params ); - -struct cppISteamClient_SteamClient020_GetISteamGameServer_params -{ - void *linux_side; - void /*ISteamGameServer*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient020_GetISteamGameServer( struct cppISteamClient_SteamClient020_GetISteamGameServer_params *params ); - -struct cppISteamClient_SteamClient020_SetLocalIPBinding_params -{ - void *linux_side; - const SteamIPAddress_t *unIP; - uint16_t usPort; -}; -extern void cppISteamClient_SteamClient020_SetLocalIPBinding( struct cppISteamClient_SteamClient020_SetLocalIPBinding_params *params ); - -struct cppISteamClient_SteamClient020_GetISteamFriends_params -{ - void *linux_side; - void /*ISteamFriends*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient020_GetISteamFriends( struct cppISteamClient_SteamClient020_GetISteamFriends_params *params ); - -struct cppISteamClient_SteamClient020_GetISteamUtils_params -{ - void *linux_side; - void /*ISteamUtils*/ *_ret; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient020_GetISteamUtils( struct cppISteamClient_SteamClient020_GetISteamUtils_params *params ); - -struct cppISteamClient_SteamClient020_GetISteamMatchmaking_params -{ - void *linux_side; - void /*ISteamMatchmaking*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient020_GetISteamMatchmaking( struct cppISteamClient_SteamClient020_GetISteamMatchmaking_params *params ); - -struct cppISteamClient_SteamClient020_GetISteamMatchmakingServers_params -{ - void *linux_side; - void /*ISteamMatchmakingServers*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient020_GetISteamMatchmakingServers( struct cppISteamClient_SteamClient020_GetISteamMatchmakingServers_params *params ); - -struct cppISteamClient_SteamClient020_GetISteamGenericInterface_params -{ - void *linux_side; - void *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient020_GetISteamGenericInterface( struct cppISteamClient_SteamClient020_GetISteamGenericInterface_params *params ); - -struct cppISteamClient_SteamClient020_GetISteamUserStats_params -{ - void *linux_side; - void /*ISteamUserStats*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient020_GetISteamUserStats( struct cppISteamClient_SteamClient020_GetISteamUserStats_params *params ); - -struct cppISteamClient_SteamClient020_GetISteamGameServerStats_params -{ - void *linux_side; - void /*ISteamGameServerStats*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient020_GetISteamGameServerStats( struct cppISteamClient_SteamClient020_GetISteamGameServerStats_params *params ); - -struct cppISteamClient_SteamClient020_GetISteamApps_params -{ - void *linux_side; - void /*ISteamApps*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient020_GetISteamApps( struct cppISteamClient_SteamClient020_GetISteamApps_params *params ); - -struct cppISteamClient_SteamClient020_GetISteamNetworking_params -{ - void *linux_side; - void /*ISteamNetworking*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient020_GetISteamNetworking( struct cppISteamClient_SteamClient020_GetISteamNetworking_params *params ); - -struct cppISteamClient_SteamClient020_GetISteamRemoteStorage_params -{ - void *linux_side; - void /*ISteamRemoteStorage*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient020_GetISteamRemoteStorage( struct cppISteamClient_SteamClient020_GetISteamRemoteStorage_params *params ); - -struct cppISteamClient_SteamClient020_GetISteamScreenshots_params -{ - void *linux_side; - void /*ISteamScreenshots*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient020_GetISteamScreenshots( struct cppISteamClient_SteamClient020_GetISteamScreenshots_params *params ); - -struct cppISteamClient_SteamClient020_GetISteamGameSearch_params -{ - void *linux_side; - void /*ISteamGameSearch*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient020_GetISteamGameSearch( struct cppISteamClient_SteamClient020_GetISteamGameSearch_params *params ); - -struct cppISteamClient_SteamClient020_RunFrame_params -{ - void *linux_side; -}; -extern void cppISteamClient_SteamClient020_RunFrame( struct cppISteamClient_SteamClient020_RunFrame_params *params ); - -struct cppISteamClient_SteamClient020_GetIPCCallCount_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamClient_SteamClient020_GetIPCCallCount( struct cppISteamClient_SteamClient020_GetIPCCallCount_params *params ); - -struct cppISteamClient_SteamClient020_SetWarningMessageHook_params -{ - void *linux_side; - void (*W_CDECL pFunction)(int32_t, const char *); -}; -extern void cppISteamClient_SteamClient020_SetWarningMessageHook( struct cppISteamClient_SteamClient020_SetWarningMessageHook_params *params ); - -struct cppISteamClient_SteamClient020_BShutdownIfAllPipesClosed_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamClient_SteamClient020_BShutdownIfAllPipesClosed( struct cppISteamClient_SteamClient020_BShutdownIfAllPipesClosed_params *params ); - -struct cppISteamClient_SteamClient020_GetISteamHTTP_params -{ - void *linux_side; - void /*ISteamHTTP*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient020_GetISteamHTTP( struct cppISteamClient_SteamClient020_GetISteamHTTP_params *params ); - -struct cppISteamClient_SteamClient020_DEPRECATED_GetISteamUnifiedMessages_params -{ - void *linux_side; - void *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient020_DEPRECATED_GetISteamUnifiedMessages( struct cppISteamClient_SteamClient020_DEPRECATED_GetISteamUnifiedMessages_params *params ); - -struct cppISteamClient_SteamClient020_GetISteamController_params -{ - void *linux_side; - void /*ISteamController*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient020_GetISteamController( struct cppISteamClient_SteamClient020_GetISteamController_params *params ); - -struct cppISteamClient_SteamClient020_GetISteamUGC_params -{ - void *linux_side; - void /*ISteamUGC*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient020_GetISteamUGC( struct cppISteamClient_SteamClient020_GetISteamUGC_params *params ); - -struct cppISteamClient_SteamClient020_GetISteamAppList_params -{ - void *linux_side; - void /*ISteamAppList*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient020_GetISteamAppList( struct cppISteamClient_SteamClient020_GetISteamAppList_params *params ); - -struct cppISteamClient_SteamClient020_GetISteamMusic_params -{ - void *linux_side; - void /*ISteamMusic*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient020_GetISteamMusic( struct cppISteamClient_SteamClient020_GetISteamMusic_params *params ); - -struct cppISteamClient_SteamClient020_GetISteamMusicRemote_params -{ - void *linux_side; - void /*ISteamMusicRemote*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient020_GetISteamMusicRemote( struct cppISteamClient_SteamClient020_GetISteamMusicRemote_params *params ); - -struct cppISteamClient_SteamClient020_GetISteamHTMLSurface_params -{ - void *linux_side; - void /*ISteamHTMLSurface*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient020_GetISteamHTMLSurface( struct cppISteamClient_SteamClient020_GetISteamHTMLSurface_params *params ); - -struct cppISteamClient_SteamClient020_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params -{ - void *linux_side; - void (*W_STDCALL _a)(void); -}; -extern void cppISteamClient_SteamClient020_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess( struct cppISteamClient_SteamClient020_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params *params ); - -struct cppISteamClient_SteamClient020_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params -{ - void *linux_side; - void (*W_STDCALL _a)(void); -}; -extern void cppISteamClient_SteamClient020_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess( struct cppISteamClient_SteamClient020_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params *params ); - -struct cppISteamClient_SteamClient020_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params -{ - void *linux_side; - uint32_t (*W_CDECL func)(int32_t); -}; -extern void cppISteamClient_SteamClient020_Set_SteamAPI_CCheckCallbackRegisteredInProcess( struct cppISteamClient_SteamClient020_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params *params ); - -struct cppISteamClient_SteamClient020_GetISteamInventory_params -{ - void *linux_side; - void /*ISteamInventory*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient020_GetISteamInventory( struct cppISteamClient_SteamClient020_GetISteamInventory_params *params ); - -struct cppISteamClient_SteamClient020_GetISteamVideo_params -{ - void *linux_side; - void /*ISteamVideo*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient020_GetISteamVideo( struct cppISteamClient_SteamClient020_GetISteamVideo_params *params ); - -struct cppISteamClient_SteamClient020_GetISteamParentalSettings_params -{ - void *linux_side; - void /*ISteamParentalSettings*/ *_ret; - int32_t hSteamuser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient020_GetISteamParentalSettings( struct cppISteamClient_SteamClient020_GetISteamParentalSettings_params *params ); - -struct cppISteamClient_SteamClient020_GetISteamInput_params -{ - void *linux_side; - void /*ISteamInput*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient020_GetISteamInput( struct cppISteamClient_SteamClient020_GetISteamInput_params *params ); - -struct cppISteamClient_SteamClient020_GetISteamParties_params -{ - void *linux_side; - void /*ISteamParties*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient020_GetISteamParties( struct cppISteamClient_SteamClient020_GetISteamParties_params *params ); - -struct cppISteamClient_SteamClient020_GetISteamRemotePlay_params -{ - void *linux_side; - void /*ISteamRemotePlay*/ *_ret; - int32_t hSteamUser; - int32_t hSteamPipe; - const char *pchVersion; -}; -extern void cppISteamClient_SteamClient020_GetISteamRemotePlay( struct cppISteamClient_SteamClient020_GetISteamRemotePlay_params *params ); - -struct cppISteamClient_SteamClient020_DestroyAllInterfaces_params -{ - void *linux_side; -}; -extern void cppISteamClient_SteamClient020_DestroyAllInterfaces( struct cppISteamClient_SteamClient020_DestroyAllInterfaces_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION.cpp b/lsteamclient/cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION.cpp index 42883983..6a4abe91 100644 --- a/lsteamclient/cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION.cpp +++ b/lsteamclient/cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION.cpp @@ -1,40 +1,51 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION.h" -void cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Init( struct cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Init_params *params ) +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; params->_ret = iface->Init( params->pchAbsolutePathToControllerConfigVDF ); + return 0; } -void cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Shutdown( struct cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Shutdown_params *params ) +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; params->_ret = iface->Shutdown( ); + return 0; } -void cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_RunFrame( struct cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_RunFrame_params *params ) +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; iface->RunFrame( ); + return 0; } -void cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_GetControllerState( struct cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_GetControllerState_params *params ) +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; params->_ret = iface->GetControllerState( params->unControllerIndex, params->pState ); + return 0; } -void cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_TriggerHapticPulse( struct cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_TriggerHapticPulse_params *params ) +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; iface->TriggerHapticPulse( params->unControllerIndex, params->eTargetPad, params->usDurationMicroSec ); + return 0; } -void cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_SetOverrideMode( struct cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_SetOverrideMode_params *params ) +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; iface->SetOverrideMode( params->pchMode ); + return 0; } diff --git a/lsteamclient/cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION.h b/lsteamclient/cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION.h deleted file mode 100644 index cc43fcf0..00000000 --- a/lsteamclient/cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION.h +++ /dev/null @@ -1,58 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Init_params -{ - void *linux_side; - bool _ret; - const char *pchAbsolutePathToControllerConfigVDF; -}; -extern void cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Init( struct cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Init_params *params ); - -struct cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Shutdown_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Shutdown( struct cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Shutdown_params *params ); - -struct cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_RunFrame_params -{ - void *linux_side; -}; -extern void cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_RunFrame( struct cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_RunFrame_params *params ); - -struct cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_GetControllerState_params -{ - void *linux_side; - bool _ret; - uint32_t unControllerIndex; - SteamControllerState001_t *pState; -}; -extern void cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_GetControllerState( struct cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_GetControllerState_params *params ); - -struct cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_TriggerHapticPulse_params -{ - void *linux_side; - uint32_t unControllerIndex; - uint32_t eTargetPad; - uint16_t usDurationMicroSec; -}; -extern void cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_TriggerHapticPulse( struct cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_TriggerHapticPulse_params *params ); - -struct cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_SetOverrideMode_params -{ - void *linux_side; - const char *pchMode; -}; -extern void cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_SetOverrideMode( struct cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_SetOverrideMode_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamController_SteamController003.cpp b/lsteamclient/cppISteamController_SteamController003.cpp index 3f9cd4f2..318e0ce9 100644 --- a/lsteamclient/cppISteamController_SteamController003.cpp +++ b/lsteamclient/cppISteamController_SteamController003.cpp @@ -1,106 +1,139 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamController_SteamController003.h" -void cppISteamController_SteamController003_Init( struct cppISteamController_SteamController003_Init_params *params ) +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; params->_ret = iface->Init( ); + return 0; } -void cppISteamController_SteamController003_Shutdown( struct cppISteamController_SteamController003_Shutdown_params *params ) +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; params->_ret = iface->Shutdown( ); + return 0; } -void cppISteamController_SteamController003_RunFrame( struct cppISteamController_SteamController003_RunFrame_params *params ) +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; iface->RunFrame( ); + return 0; } -void cppISteamController_SteamController003_GetConnectedControllers( struct cppISteamController_SteamController003_GetConnectedControllers_params *params ) +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; params->_ret = iface->GetConnectedControllers( params->handlesOut ); + return 0; } -void cppISteamController_SteamController003_ShowBindingPanel( struct cppISteamController_SteamController003_ShowBindingPanel_params *params ) +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; params->_ret = iface->ShowBindingPanel( params->controllerHandle ); + return 0; } -void cppISteamController_SteamController003_GetActionSetHandle( struct cppISteamController_SteamController003_GetActionSetHandle_params *params ) +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; params->_ret = iface->GetActionSetHandle( params->pszActionSetName ); + return 0; } -void cppISteamController_SteamController003_ActivateActionSet( struct cppISteamController_SteamController003_ActivateActionSet_params *params ) +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; iface->ActivateActionSet( params->controllerHandle, params->actionSetHandle ); + return 0; } -void cppISteamController_SteamController003_GetCurrentActionSet( struct cppISteamController_SteamController003_GetCurrentActionSet_params *params ) +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; params->_ret = iface->GetCurrentActionSet( params->controllerHandle ); + return 0; } -void cppISteamController_SteamController003_GetDigitalActionHandle( struct cppISteamController_SteamController003_GetDigitalActionHandle_params *params ) +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; params->_ret = iface->GetDigitalActionHandle( params->pszActionName ); + return 0; } -void cppISteamController_SteamController003_GetDigitalActionData( struct cppISteamController_SteamController003_GetDigitalActionData_params *params ) +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; *params->_ret = iface->GetDigitalActionData( params->controllerHandle, params->digitalActionHandle ); + return 0; } -void cppISteamController_SteamController003_GetDigitalActionOrigins( struct cppISteamController_SteamController003_GetDigitalActionOrigins_params *params ) +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; params->_ret = iface->GetDigitalActionOrigins( params->controllerHandle, params->actionSetHandle, params->digitalActionHandle, params->originsOut ); + return 0; } -void cppISteamController_SteamController003_GetAnalogActionHandle( struct cppISteamController_SteamController003_GetAnalogActionHandle_params *params ) +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; params->_ret = iface->GetAnalogActionHandle( params->pszActionName ); + return 0; } -void cppISteamController_SteamController003_GetAnalogActionData( struct cppISteamController_SteamController003_GetAnalogActionData_params *params ) +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; *params->_ret = iface->GetAnalogActionData( params->controllerHandle, params->analogActionHandle ); + return 0; } -void cppISteamController_SteamController003_GetAnalogActionOrigins( struct cppISteamController_SteamController003_GetAnalogActionOrigins_params *params ) +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; params->_ret = iface->GetAnalogActionOrigins( params->controllerHandle, params->actionSetHandle, params->analogActionHandle, params->originsOut ); + return 0; } -void cppISteamController_SteamController003_StopAnalogActionMomentum( struct cppISteamController_SteamController003_StopAnalogActionMomentum_params *params ) +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; iface->StopAnalogActionMomentum( params->controllerHandle, params->eAction ); + return 0; } -void cppISteamController_SteamController003_TriggerHapticPulse( struct cppISteamController_SteamController003_TriggerHapticPulse_params *params ) +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; iface->TriggerHapticPulse( params->controllerHandle, params->eTargetPad, params->usDurationMicroSec ); + return 0; } -void cppISteamController_SteamController003_TriggerRepeatedHapticPulse( struct cppISteamController_SteamController003_TriggerRepeatedHapticPulse_params *params ) +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; iface->TriggerRepeatedHapticPulse( params->controllerHandle, params->eTargetPad, params->usDurationMicroSec, params->usOffMicroSec, params->unRepeat, params->nFlags ); + return 0; } diff --git a/lsteamclient/cppISteamController_SteamController003.h b/lsteamclient/cppISteamController_SteamController003.h deleted file mode 100644 index 5830a3d8..00000000 --- a/lsteamclient/cppISteamController_SteamController003.h +++ /dev/null @@ -1,157 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamController_SteamController003_Init_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamController_SteamController003_Init( struct cppISteamController_SteamController003_Init_params *params ); - -struct cppISteamController_SteamController003_Shutdown_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamController_SteamController003_Shutdown( struct cppISteamController_SteamController003_Shutdown_params *params ); - -struct cppISteamController_SteamController003_RunFrame_params -{ - void *linux_side; -}; -extern void cppISteamController_SteamController003_RunFrame( struct cppISteamController_SteamController003_RunFrame_params *params ); - -struct cppISteamController_SteamController003_GetConnectedControllers_params -{ - void *linux_side; - int32_t _ret; - uint64_t *handlesOut; -}; -extern void cppISteamController_SteamController003_GetConnectedControllers( struct cppISteamController_SteamController003_GetConnectedControllers_params *params ); - -struct cppISteamController_SteamController003_ShowBindingPanel_params -{ - void *linux_side; - bool _ret; - uint64_t controllerHandle; -}; -extern void cppISteamController_SteamController003_ShowBindingPanel( struct cppISteamController_SteamController003_ShowBindingPanel_params *params ); - -struct cppISteamController_SteamController003_GetActionSetHandle_params -{ - void *linux_side; - uint64_t _ret; - const char *pszActionSetName; -}; -extern void cppISteamController_SteamController003_GetActionSetHandle( struct cppISteamController_SteamController003_GetActionSetHandle_params *params ); - -struct cppISteamController_SteamController003_ActivateActionSet_params -{ - void *linux_side; - uint64_t controllerHandle; - uint64_t actionSetHandle; -}; -extern void cppISteamController_SteamController003_ActivateActionSet( struct cppISteamController_SteamController003_ActivateActionSet_params *params ); - -struct cppISteamController_SteamController003_GetCurrentActionSet_params -{ - void *linux_side; - uint64_t _ret; - uint64_t controllerHandle; -}; -extern void cppISteamController_SteamController003_GetCurrentActionSet( struct cppISteamController_SteamController003_GetCurrentActionSet_params *params ); - -struct cppISteamController_SteamController003_GetDigitalActionHandle_params -{ - void *linux_side; - uint64_t _ret; - const char *pszActionName; -}; -extern void cppISteamController_SteamController003_GetDigitalActionHandle( struct cppISteamController_SteamController003_GetDigitalActionHandle_params *params ); - -struct cppISteamController_SteamController003_GetDigitalActionData_params -{ - void *linux_side; - ControllerDigitalActionData_t *_ret; - uint64_t controllerHandle; - uint64_t digitalActionHandle; -}; -extern void cppISteamController_SteamController003_GetDigitalActionData( struct cppISteamController_SteamController003_GetDigitalActionData_params *params ); - -struct cppISteamController_SteamController003_GetDigitalActionOrigins_params -{ - void *linux_side; - int32_t _ret; - uint64_t controllerHandle; - uint64_t actionSetHandle; - uint64_t digitalActionHandle; - uint32_t *originsOut; -}; -extern void cppISteamController_SteamController003_GetDigitalActionOrigins( struct cppISteamController_SteamController003_GetDigitalActionOrigins_params *params ); - -struct cppISteamController_SteamController003_GetAnalogActionHandle_params -{ - void *linux_side; - uint64_t _ret; - const char *pszActionName; -}; -extern void cppISteamController_SteamController003_GetAnalogActionHandle( struct cppISteamController_SteamController003_GetAnalogActionHandle_params *params ); - -struct cppISteamController_SteamController003_GetAnalogActionData_params -{ - void *linux_side; - ControllerAnalogActionData_t *_ret; - uint64_t controllerHandle; - uint64_t analogActionHandle; -}; -extern void cppISteamController_SteamController003_GetAnalogActionData( struct cppISteamController_SteamController003_GetAnalogActionData_params *params ); - -struct cppISteamController_SteamController003_GetAnalogActionOrigins_params -{ - void *linux_side; - int32_t _ret; - uint64_t controllerHandle; - uint64_t actionSetHandle; - uint64_t analogActionHandle; - uint32_t *originsOut; -}; -extern void cppISteamController_SteamController003_GetAnalogActionOrigins( struct cppISteamController_SteamController003_GetAnalogActionOrigins_params *params ); - -struct cppISteamController_SteamController003_StopAnalogActionMomentum_params -{ - void *linux_side; - uint64_t controllerHandle; - uint64_t eAction; -}; -extern void cppISteamController_SteamController003_StopAnalogActionMomentum( struct cppISteamController_SteamController003_StopAnalogActionMomentum_params *params ); - -struct cppISteamController_SteamController003_TriggerHapticPulse_params -{ - void *linux_side; - uint64_t controllerHandle; - uint32_t eTargetPad; - uint16_t usDurationMicroSec; -}; -extern void cppISteamController_SteamController003_TriggerHapticPulse( struct cppISteamController_SteamController003_TriggerHapticPulse_params *params ); - -struct cppISteamController_SteamController003_TriggerRepeatedHapticPulse_params -{ - void *linux_side; - uint64_t controllerHandle; - uint32_t eTargetPad; - uint16_t usDurationMicroSec; - uint16_t usOffMicroSec; - uint16_t unRepeat; - uint32_t nFlags; -}; -extern void cppISteamController_SteamController003_TriggerRepeatedHapticPulse( struct cppISteamController_SteamController003_TriggerRepeatedHapticPulse_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamController_SteamController004.cpp b/lsteamclient/cppISteamController_SteamController004.cpp index 349d2d2c..d6e3cfb4 100644 --- a/lsteamclient/cppISteamController_SteamController004.cpp +++ b/lsteamclient/cppISteamController_SteamController004.cpp @@ -1,136 +1,179 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamController_SteamController004.h" -void cppISteamController_SteamController004_Init( struct cppISteamController_SteamController004_Init_params *params ) +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; params->_ret = iface->Init( ); + return 0; } -void cppISteamController_SteamController004_Shutdown( struct cppISteamController_SteamController004_Shutdown_params *params ) +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; params->_ret = iface->Shutdown( ); + return 0; } -void cppISteamController_SteamController004_RunFrame( struct cppISteamController_SteamController004_RunFrame_params *params ) +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; iface->RunFrame( ); + return 0; } -void cppISteamController_SteamController004_GetConnectedControllers( struct cppISteamController_SteamController004_GetConnectedControllers_params *params ) +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; params->_ret = iface->GetConnectedControllers( params->handlesOut ); + return 0; } -void cppISteamController_SteamController004_ShowBindingPanel( struct cppISteamController_SteamController004_ShowBindingPanel_params *params ) +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; params->_ret = iface->ShowBindingPanel( params->controllerHandle ); + return 0; } -void cppISteamController_SteamController004_GetActionSetHandle( struct cppISteamController_SteamController004_GetActionSetHandle_params *params ) +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; params->_ret = iface->GetActionSetHandle( params->pszActionSetName ); + return 0; } -void cppISteamController_SteamController004_ActivateActionSet( struct cppISteamController_SteamController004_ActivateActionSet_params *params ) +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; iface->ActivateActionSet( params->controllerHandle, params->actionSetHandle ); + return 0; } -void cppISteamController_SteamController004_GetCurrentActionSet( struct cppISteamController_SteamController004_GetCurrentActionSet_params *params ) +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; params->_ret = iface->GetCurrentActionSet( params->controllerHandle ); + return 0; } -void cppISteamController_SteamController004_GetDigitalActionHandle( struct cppISteamController_SteamController004_GetDigitalActionHandle_params *params ) +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; params->_ret = iface->GetDigitalActionHandle( params->pszActionName ); + return 0; } -void cppISteamController_SteamController004_GetDigitalActionData( struct cppISteamController_SteamController004_GetDigitalActionData_params *params ) +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; *params->_ret = iface->GetDigitalActionData( params->controllerHandle, params->digitalActionHandle ); + return 0; } -void cppISteamController_SteamController004_GetDigitalActionOrigins( struct cppISteamController_SteamController004_GetDigitalActionOrigins_params *params ) +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; params->_ret = iface->GetDigitalActionOrigins( params->controllerHandle, params->actionSetHandle, params->digitalActionHandle, params->originsOut ); + return 0; } -void cppISteamController_SteamController004_GetAnalogActionHandle( struct cppISteamController_SteamController004_GetAnalogActionHandle_params *params ) +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; params->_ret = iface->GetAnalogActionHandle( params->pszActionName ); + return 0; } -void cppISteamController_SteamController004_GetAnalogActionData( struct cppISteamController_SteamController004_GetAnalogActionData_params *params ) +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; *params->_ret = iface->GetAnalogActionData( params->controllerHandle, params->analogActionHandle ); + return 0; } -void cppISteamController_SteamController004_GetAnalogActionOrigins( struct cppISteamController_SteamController004_GetAnalogActionOrigins_params *params ) +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; params->_ret = iface->GetAnalogActionOrigins( params->controllerHandle, params->actionSetHandle, params->analogActionHandle, params->originsOut ); + return 0; } -void cppISteamController_SteamController004_StopAnalogActionMomentum( struct cppISteamController_SteamController004_StopAnalogActionMomentum_params *params ) +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; iface->StopAnalogActionMomentum( params->controllerHandle, params->eAction ); + return 0; } -void cppISteamController_SteamController004_TriggerHapticPulse( struct cppISteamController_SteamController004_TriggerHapticPulse_params *params ) +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; iface->TriggerHapticPulse( params->controllerHandle, params->eTargetPad, params->usDurationMicroSec ); + return 0; } -void cppISteamController_SteamController004_TriggerRepeatedHapticPulse( struct cppISteamController_SteamController004_TriggerRepeatedHapticPulse_params *params ) +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; iface->TriggerRepeatedHapticPulse( params->controllerHandle, params->eTargetPad, params->usDurationMicroSec, params->usOffMicroSec, params->unRepeat, params->nFlags ); + return 0; } -void cppISteamController_SteamController004_GetGamepadIndexForController( struct cppISteamController_SteamController004_GetGamepadIndexForController_params *params ) +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; params->_ret = iface->GetGamepadIndexForController( params->ulControllerHandle ); + return 0; } -void cppISteamController_SteamController004_GetControllerForGamepadIndex( struct cppISteamController_SteamController004_GetControllerForGamepadIndex_params *params ) +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; params->_ret = iface->GetControllerForGamepadIndex( params->nIndex ); + return 0; } -void cppISteamController_SteamController004_GetMotionData( struct cppISteamController_SteamController004_GetMotionData_params *params ) +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; *params->_ret = iface->GetMotionData( params->controllerHandle ); + return 0; } -void cppISteamController_SteamController004_ShowDigitalActionOrigins( struct cppISteamController_SteamController004_ShowDigitalActionOrigins_params *params ) +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; params->_ret = iface->ShowDigitalActionOrigins( params->controllerHandle, params->digitalActionHandle, params->flScale, params->flXPosition, params->flYPosition ); + return 0; } -void cppISteamController_SteamController004_ShowAnalogActionOrigins( struct cppISteamController_SteamController004_ShowAnalogActionOrigins_params *params ) +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; params->_ret = iface->ShowAnalogActionOrigins( params->controllerHandle, params->analogActionHandle, params->flScale, params->flXPosition, params->flYPosition ); + return 0; } diff --git a/lsteamclient/cppISteamController_SteamController004.h b/lsteamclient/cppISteamController_SteamController004.h deleted file mode 100644 index 974f0961..00000000 --- a/lsteamclient/cppISteamController_SteamController004.h +++ /dev/null @@ -1,205 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamController_SteamController004_Init_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamController_SteamController004_Init( struct cppISteamController_SteamController004_Init_params *params ); - -struct cppISteamController_SteamController004_Shutdown_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamController_SteamController004_Shutdown( struct cppISteamController_SteamController004_Shutdown_params *params ); - -struct cppISteamController_SteamController004_RunFrame_params -{ - void *linux_side; -}; -extern void cppISteamController_SteamController004_RunFrame( struct cppISteamController_SteamController004_RunFrame_params *params ); - -struct cppISteamController_SteamController004_GetConnectedControllers_params -{ - void *linux_side; - int32_t _ret; - uint64_t *handlesOut; -}; -extern void cppISteamController_SteamController004_GetConnectedControllers( struct cppISteamController_SteamController004_GetConnectedControllers_params *params ); - -struct cppISteamController_SteamController004_ShowBindingPanel_params -{ - void *linux_side; - bool _ret; - uint64_t controllerHandle; -}; -extern void cppISteamController_SteamController004_ShowBindingPanel( struct cppISteamController_SteamController004_ShowBindingPanel_params *params ); - -struct cppISteamController_SteamController004_GetActionSetHandle_params -{ - void *linux_side; - uint64_t _ret; - const char *pszActionSetName; -}; -extern void cppISteamController_SteamController004_GetActionSetHandle( struct cppISteamController_SteamController004_GetActionSetHandle_params *params ); - -struct cppISteamController_SteamController004_ActivateActionSet_params -{ - void *linux_side; - uint64_t controllerHandle; - uint64_t actionSetHandle; -}; -extern void cppISteamController_SteamController004_ActivateActionSet( struct cppISteamController_SteamController004_ActivateActionSet_params *params ); - -struct cppISteamController_SteamController004_GetCurrentActionSet_params -{ - void *linux_side; - uint64_t _ret; - uint64_t controllerHandle; -}; -extern void cppISteamController_SteamController004_GetCurrentActionSet( struct cppISteamController_SteamController004_GetCurrentActionSet_params *params ); - -struct cppISteamController_SteamController004_GetDigitalActionHandle_params -{ - void *linux_side; - uint64_t _ret; - const char *pszActionName; -}; -extern void cppISteamController_SteamController004_GetDigitalActionHandle( struct cppISteamController_SteamController004_GetDigitalActionHandle_params *params ); - -struct cppISteamController_SteamController004_GetDigitalActionData_params -{ - void *linux_side; - ControllerDigitalActionData_t *_ret; - uint64_t controllerHandle; - uint64_t digitalActionHandle; -}; -extern void cppISteamController_SteamController004_GetDigitalActionData( struct cppISteamController_SteamController004_GetDigitalActionData_params *params ); - -struct cppISteamController_SteamController004_GetDigitalActionOrigins_params -{ - void *linux_side; - int32_t _ret; - uint64_t controllerHandle; - uint64_t actionSetHandle; - uint64_t digitalActionHandle; - uint32_t *originsOut; -}; -extern void cppISteamController_SteamController004_GetDigitalActionOrigins( struct cppISteamController_SteamController004_GetDigitalActionOrigins_params *params ); - -struct cppISteamController_SteamController004_GetAnalogActionHandle_params -{ - void *linux_side; - uint64_t _ret; - const char *pszActionName; -}; -extern void cppISteamController_SteamController004_GetAnalogActionHandle( struct cppISteamController_SteamController004_GetAnalogActionHandle_params *params ); - -struct cppISteamController_SteamController004_GetAnalogActionData_params -{ - void *linux_side; - ControllerAnalogActionData_t *_ret; - uint64_t controllerHandle; - uint64_t analogActionHandle; -}; -extern void cppISteamController_SteamController004_GetAnalogActionData( struct cppISteamController_SteamController004_GetAnalogActionData_params *params ); - -struct cppISteamController_SteamController004_GetAnalogActionOrigins_params -{ - void *linux_side; - int32_t _ret; - uint64_t controllerHandle; - uint64_t actionSetHandle; - uint64_t analogActionHandle; - uint32_t *originsOut; -}; -extern void cppISteamController_SteamController004_GetAnalogActionOrigins( struct cppISteamController_SteamController004_GetAnalogActionOrigins_params *params ); - -struct cppISteamController_SteamController004_StopAnalogActionMomentum_params -{ - void *linux_side; - uint64_t controllerHandle; - uint64_t eAction; -}; -extern void cppISteamController_SteamController004_StopAnalogActionMomentum( struct cppISteamController_SteamController004_StopAnalogActionMomentum_params *params ); - -struct cppISteamController_SteamController004_TriggerHapticPulse_params -{ - void *linux_side; - uint64_t controllerHandle; - uint32_t eTargetPad; - uint16_t usDurationMicroSec; -}; -extern void cppISteamController_SteamController004_TriggerHapticPulse( struct cppISteamController_SteamController004_TriggerHapticPulse_params *params ); - -struct cppISteamController_SteamController004_TriggerRepeatedHapticPulse_params -{ - void *linux_side; - uint64_t controllerHandle; - uint32_t eTargetPad; - uint16_t usDurationMicroSec; - uint16_t usOffMicroSec; - uint16_t unRepeat; - uint32_t nFlags; -}; -extern void cppISteamController_SteamController004_TriggerRepeatedHapticPulse( struct cppISteamController_SteamController004_TriggerRepeatedHapticPulse_params *params ); - -struct cppISteamController_SteamController004_GetGamepadIndexForController_params -{ - void *linux_side; - int32_t _ret; - uint64_t ulControllerHandle; -}; -extern void cppISteamController_SteamController004_GetGamepadIndexForController( struct cppISteamController_SteamController004_GetGamepadIndexForController_params *params ); - -struct cppISteamController_SteamController004_GetControllerForGamepadIndex_params -{ - void *linux_side; - uint64_t _ret; - int32_t nIndex; -}; -extern void cppISteamController_SteamController004_GetControllerForGamepadIndex( struct cppISteamController_SteamController004_GetControllerForGamepadIndex_params *params ); - -struct cppISteamController_SteamController004_GetMotionData_params -{ - void *linux_side; - ControllerMotionData_t *_ret; - uint64_t controllerHandle; -}; -extern void cppISteamController_SteamController004_GetMotionData( struct cppISteamController_SteamController004_GetMotionData_params *params ); - -struct cppISteamController_SteamController004_ShowDigitalActionOrigins_params -{ - void *linux_side; - bool _ret; - uint64_t controllerHandle; - uint64_t digitalActionHandle; - float flScale; - float flXPosition; - float flYPosition; -}; -extern void cppISteamController_SteamController004_ShowDigitalActionOrigins( struct cppISteamController_SteamController004_ShowDigitalActionOrigins_params *params ); - -struct cppISteamController_SteamController004_ShowAnalogActionOrigins_params -{ - void *linux_side; - bool _ret; - uint64_t controllerHandle; - uint64_t analogActionHandle; - float flScale; - float flXPosition; - float flYPosition; -}; -extern void cppISteamController_SteamController004_ShowAnalogActionOrigins( struct cppISteamController_SteamController004_ShowAnalogActionOrigins_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamController_SteamController005.cpp b/lsteamclient/cppISteamController_SteamController005.cpp index 2dd4f96a..cf1a417b 100644 --- a/lsteamclient/cppISteamController_SteamController005.cpp +++ b/lsteamclient/cppISteamController_SteamController005.cpp @@ -1,154 +1,203 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamController_SteamController005.h" -void cppISteamController_SteamController005_Init( struct cppISteamController_SteamController005_Init_params *params ) +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; params->_ret = iface->Init( ); + return 0; } -void cppISteamController_SteamController005_Shutdown( struct cppISteamController_SteamController005_Shutdown_params *params ) +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; params->_ret = iface->Shutdown( ); + return 0; } -void cppISteamController_SteamController005_RunFrame( struct cppISteamController_SteamController005_RunFrame_params *params ) +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; iface->RunFrame( ); + return 0; } -void cppISteamController_SteamController005_GetConnectedControllers( struct cppISteamController_SteamController005_GetConnectedControllers_params *params ) +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; params->_ret = iface->GetConnectedControllers( params->handlesOut ); + return 0; } -void cppISteamController_SteamController005_ShowBindingPanel( struct cppISteamController_SteamController005_ShowBindingPanel_params *params ) +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; params->_ret = iface->ShowBindingPanel( params->controllerHandle ); + return 0; } -void cppISteamController_SteamController005_GetActionSetHandle( struct cppISteamController_SteamController005_GetActionSetHandle_params *params ) +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; params->_ret = iface->GetActionSetHandle( params->pszActionSetName ); + return 0; } -void cppISteamController_SteamController005_ActivateActionSet( struct cppISteamController_SteamController005_ActivateActionSet_params *params ) +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; iface->ActivateActionSet( params->controllerHandle, params->actionSetHandle ); + return 0; } -void cppISteamController_SteamController005_GetCurrentActionSet( struct cppISteamController_SteamController005_GetCurrentActionSet_params *params ) +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; params->_ret = iface->GetCurrentActionSet( params->controllerHandle ); + return 0; } -void cppISteamController_SteamController005_GetDigitalActionHandle( struct cppISteamController_SteamController005_GetDigitalActionHandle_params *params ) +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; params->_ret = iface->GetDigitalActionHandle( params->pszActionName ); + return 0; } -void cppISteamController_SteamController005_GetDigitalActionData( struct cppISteamController_SteamController005_GetDigitalActionData_params *params ) +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; *params->_ret = iface->GetDigitalActionData( params->controllerHandle, params->digitalActionHandle ); + return 0; } -void cppISteamController_SteamController005_GetDigitalActionOrigins( struct cppISteamController_SteamController005_GetDigitalActionOrigins_params *params ) +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; params->_ret = iface->GetDigitalActionOrigins( params->controllerHandle, params->actionSetHandle, params->digitalActionHandle, params->originsOut ); + return 0; } -void cppISteamController_SteamController005_GetAnalogActionHandle( struct cppISteamController_SteamController005_GetAnalogActionHandle_params *params ) +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; params->_ret = iface->GetAnalogActionHandle( params->pszActionName ); + return 0; } -void cppISteamController_SteamController005_GetAnalogActionData( struct cppISteamController_SteamController005_GetAnalogActionData_params *params ) +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; *params->_ret = iface->GetAnalogActionData( params->controllerHandle, params->analogActionHandle ); + return 0; } -void cppISteamController_SteamController005_GetAnalogActionOrigins( struct cppISteamController_SteamController005_GetAnalogActionOrigins_params *params ) +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; params->_ret = iface->GetAnalogActionOrigins( params->controllerHandle, params->actionSetHandle, params->analogActionHandle, params->originsOut ); + return 0; } -void cppISteamController_SteamController005_StopAnalogActionMomentum( struct cppISteamController_SteamController005_StopAnalogActionMomentum_params *params ) +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; iface->StopAnalogActionMomentum( params->controllerHandle, params->eAction ); + return 0; } -void cppISteamController_SteamController005_TriggerHapticPulse( struct cppISteamController_SteamController005_TriggerHapticPulse_params *params ) +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; iface->TriggerHapticPulse( params->controllerHandle, params->eTargetPad, params->usDurationMicroSec ); + return 0; } -void cppISteamController_SteamController005_TriggerRepeatedHapticPulse( struct cppISteamController_SteamController005_TriggerRepeatedHapticPulse_params *params ) +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; iface->TriggerRepeatedHapticPulse( params->controllerHandle, params->eTargetPad, params->usDurationMicroSec, params->usOffMicroSec, params->unRepeat, params->nFlags ); + return 0; } -void cppISteamController_SteamController005_TriggerVibration( struct cppISteamController_SteamController005_TriggerVibration_params *params ) +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; iface->TriggerVibration( params->controllerHandle, params->usLeftSpeed, params->usRightSpeed ); + return 0; } -void cppISteamController_SteamController005_SetLEDColor( struct cppISteamController_SteamController005_SetLEDColor_params *params ) +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; iface->SetLEDColor( params->controllerHandle, params->nColorR, params->nColorG, params->nColorB, params->nFlags ); + return 0; } -void cppISteamController_SteamController005_GetGamepadIndexForController( struct cppISteamController_SteamController005_GetGamepadIndexForController_params *params ) +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; params->_ret = iface->GetGamepadIndexForController( params->ulControllerHandle ); + return 0; } -void cppISteamController_SteamController005_GetControllerForGamepadIndex( struct cppISteamController_SteamController005_GetControllerForGamepadIndex_params *params ) +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; params->_ret = iface->GetControllerForGamepadIndex( params->nIndex ); + return 0; } -void cppISteamController_SteamController005_GetMotionData( struct cppISteamController_SteamController005_GetMotionData_params *params ) +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; *params->_ret = iface->GetMotionData( params->controllerHandle ); + return 0; } -void cppISteamController_SteamController005_ShowDigitalActionOrigins( struct cppISteamController_SteamController005_ShowDigitalActionOrigins_params *params ) +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; params->_ret = iface->ShowDigitalActionOrigins( params->controllerHandle, params->digitalActionHandle, params->flScale, params->flXPosition, params->flYPosition ); + return 0; } -void cppISteamController_SteamController005_ShowAnalogActionOrigins( struct cppISteamController_SteamController005_ShowAnalogActionOrigins_params *params ) +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; params->_ret = iface->ShowAnalogActionOrigins( params->controllerHandle, params->analogActionHandle, params->flScale, params->flXPosition, params->flYPosition ); + return 0; } -void cppISteamController_SteamController005_GetStringForActionOrigin( struct cppISteamController_SteamController005_GetStringForActionOrigin_params *params ) +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; params->_ret = iface->GetStringForActionOrigin( params->eOrigin ); + return 0; } diff --git a/lsteamclient/cppISteamController_SteamController005.h b/lsteamclient/cppISteamController_SteamController005.h deleted file mode 100644 index 5637df06..00000000 --- a/lsteamclient/cppISteamController_SteamController005.h +++ /dev/null @@ -1,241 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamController_SteamController005_Init_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamController_SteamController005_Init( struct cppISteamController_SteamController005_Init_params *params ); - -struct cppISteamController_SteamController005_Shutdown_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamController_SteamController005_Shutdown( struct cppISteamController_SteamController005_Shutdown_params *params ); - -struct cppISteamController_SteamController005_RunFrame_params -{ - void *linux_side; -}; -extern void cppISteamController_SteamController005_RunFrame( struct cppISteamController_SteamController005_RunFrame_params *params ); - -struct cppISteamController_SteamController005_GetConnectedControllers_params -{ - void *linux_side; - int32_t _ret; - uint64_t *handlesOut; -}; -extern void cppISteamController_SteamController005_GetConnectedControllers( struct cppISteamController_SteamController005_GetConnectedControllers_params *params ); - -struct cppISteamController_SteamController005_ShowBindingPanel_params -{ - void *linux_side; - bool _ret; - uint64_t controllerHandle; -}; -extern void cppISteamController_SteamController005_ShowBindingPanel( struct cppISteamController_SteamController005_ShowBindingPanel_params *params ); - -struct cppISteamController_SteamController005_GetActionSetHandle_params -{ - void *linux_side; - uint64_t _ret; - const char *pszActionSetName; -}; -extern void cppISteamController_SteamController005_GetActionSetHandle( struct cppISteamController_SteamController005_GetActionSetHandle_params *params ); - -struct cppISteamController_SteamController005_ActivateActionSet_params -{ - void *linux_side; - uint64_t controllerHandle; - uint64_t actionSetHandle; -}; -extern void cppISteamController_SteamController005_ActivateActionSet( struct cppISteamController_SteamController005_ActivateActionSet_params *params ); - -struct cppISteamController_SteamController005_GetCurrentActionSet_params -{ - void *linux_side; - uint64_t _ret; - uint64_t controllerHandle; -}; -extern void cppISteamController_SteamController005_GetCurrentActionSet( struct cppISteamController_SteamController005_GetCurrentActionSet_params *params ); - -struct cppISteamController_SteamController005_GetDigitalActionHandle_params -{ - void *linux_side; - uint64_t _ret; - const char *pszActionName; -}; -extern void cppISteamController_SteamController005_GetDigitalActionHandle( struct cppISteamController_SteamController005_GetDigitalActionHandle_params *params ); - -struct cppISteamController_SteamController005_GetDigitalActionData_params -{ - void *linux_side; - ControllerDigitalActionData_t *_ret; - uint64_t controllerHandle; - uint64_t digitalActionHandle; -}; -extern void cppISteamController_SteamController005_GetDigitalActionData( struct cppISteamController_SteamController005_GetDigitalActionData_params *params ); - -struct cppISteamController_SteamController005_GetDigitalActionOrigins_params -{ - void *linux_side; - int32_t _ret; - uint64_t controllerHandle; - uint64_t actionSetHandle; - uint64_t digitalActionHandle; - uint32_t *originsOut; -}; -extern void cppISteamController_SteamController005_GetDigitalActionOrigins( struct cppISteamController_SteamController005_GetDigitalActionOrigins_params *params ); - -struct cppISteamController_SteamController005_GetAnalogActionHandle_params -{ - void *linux_side; - uint64_t _ret; - const char *pszActionName; -}; -extern void cppISteamController_SteamController005_GetAnalogActionHandle( struct cppISteamController_SteamController005_GetAnalogActionHandle_params *params ); - -struct cppISteamController_SteamController005_GetAnalogActionData_params -{ - void *linux_side; - ControllerAnalogActionData_t *_ret; - uint64_t controllerHandle; - uint64_t analogActionHandle; -}; -extern void cppISteamController_SteamController005_GetAnalogActionData( struct cppISteamController_SteamController005_GetAnalogActionData_params *params ); - -struct cppISteamController_SteamController005_GetAnalogActionOrigins_params -{ - void *linux_side; - int32_t _ret; - uint64_t controllerHandle; - uint64_t actionSetHandle; - uint64_t analogActionHandle; - uint32_t *originsOut; -}; -extern void cppISteamController_SteamController005_GetAnalogActionOrigins( struct cppISteamController_SteamController005_GetAnalogActionOrigins_params *params ); - -struct cppISteamController_SteamController005_StopAnalogActionMomentum_params -{ - void *linux_side; - uint64_t controllerHandle; - uint64_t eAction; -}; -extern void cppISteamController_SteamController005_StopAnalogActionMomentum( struct cppISteamController_SteamController005_StopAnalogActionMomentum_params *params ); - -struct cppISteamController_SteamController005_TriggerHapticPulse_params -{ - void *linux_side; - uint64_t controllerHandle; - uint32_t eTargetPad; - uint16_t usDurationMicroSec; -}; -extern void cppISteamController_SteamController005_TriggerHapticPulse( struct cppISteamController_SteamController005_TriggerHapticPulse_params *params ); - -struct cppISteamController_SteamController005_TriggerRepeatedHapticPulse_params -{ - void *linux_side; - uint64_t controllerHandle; - uint32_t eTargetPad; - uint16_t usDurationMicroSec; - uint16_t usOffMicroSec; - uint16_t unRepeat; - uint32_t nFlags; -}; -extern void cppISteamController_SteamController005_TriggerRepeatedHapticPulse( struct cppISteamController_SteamController005_TriggerRepeatedHapticPulse_params *params ); - -struct cppISteamController_SteamController005_TriggerVibration_params -{ - void *linux_side; - uint64_t controllerHandle; - uint16_t usLeftSpeed; - uint16_t usRightSpeed; -}; -extern void cppISteamController_SteamController005_TriggerVibration( struct cppISteamController_SteamController005_TriggerVibration_params *params ); - -struct cppISteamController_SteamController005_SetLEDColor_params -{ - void *linux_side; - uint64_t controllerHandle; - uint8_t nColorR; - uint8_t nColorG; - uint8_t nColorB; - uint32_t nFlags; -}; -extern void cppISteamController_SteamController005_SetLEDColor( struct cppISteamController_SteamController005_SetLEDColor_params *params ); - -struct cppISteamController_SteamController005_GetGamepadIndexForController_params -{ - void *linux_side; - int32_t _ret; - uint64_t ulControllerHandle; -}; -extern void cppISteamController_SteamController005_GetGamepadIndexForController( struct cppISteamController_SteamController005_GetGamepadIndexForController_params *params ); - -struct cppISteamController_SteamController005_GetControllerForGamepadIndex_params -{ - void *linux_side; - uint64_t _ret; - int32_t nIndex; -}; -extern void cppISteamController_SteamController005_GetControllerForGamepadIndex( struct cppISteamController_SteamController005_GetControllerForGamepadIndex_params *params ); - -struct cppISteamController_SteamController005_GetMotionData_params -{ - void *linux_side; - ControllerMotionData_t *_ret; - uint64_t controllerHandle; -}; -extern void cppISteamController_SteamController005_GetMotionData( struct cppISteamController_SteamController005_GetMotionData_params *params ); - -struct cppISteamController_SteamController005_ShowDigitalActionOrigins_params -{ - void *linux_side; - bool _ret; - uint64_t controllerHandle; - uint64_t digitalActionHandle; - float flScale; - float flXPosition; - float flYPosition; -}; -extern void cppISteamController_SteamController005_ShowDigitalActionOrigins( struct cppISteamController_SteamController005_ShowDigitalActionOrigins_params *params ); - -struct cppISteamController_SteamController005_ShowAnalogActionOrigins_params -{ - void *linux_side; - bool _ret; - uint64_t controllerHandle; - uint64_t analogActionHandle; - float flScale; - float flXPosition; - float flYPosition; -}; -extern void cppISteamController_SteamController005_ShowAnalogActionOrigins( struct cppISteamController_SteamController005_ShowAnalogActionOrigins_params *params ); - -struct cppISteamController_SteamController005_GetStringForActionOrigin_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; -}; -extern void cppISteamController_SteamController005_GetStringForActionOrigin( struct cppISteamController_SteamController005_GetStringForActionOrigin_params *params ); - -struct cppISteamController_SteamController005_GetGlyphForActionOrigin_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; -}; -extern void cppISteamController_SteamController005_GetGlyphForActionOrigin( struct cppISteamController_SteamController005_GetGlyphForActionOrigin_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamController_SteamController006.cpp b/lsteamclient/cppISteamController_SteamController006.cpp index 05f6762e..62ae48e7 100644 --- a/lsteamclient/cppISteamController_SteamController006.cpp +++ b/lsteamclient/cppISteamController_SteamController006.cpp @@ -1,184 +1,243 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamController_SteamController006.h" -void cppISteamController_SteamController006_Init( struct cppISteamController_SteamController006_Init_params *params ) +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; params->_ret = iface->Init( ); + return 0; } -void cppISteamController_SteamController006_Shutdown( struct cppISteamController_SteamController006_Shutdown_params *params ) +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; params->_ret = iface->Shutdown( ); + return 0; } -void cppISteamController_SteamController006_RunFrame( struct cppISteamController_SteamController006_RunFrame_params *params ) +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; iface->RunFrame( ); + return 0; } -void cppISteamController_SteamController006_GetConnectedControllers( struct cppISteamController_SteamController006_GetConnectedControllers_params *params ) +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; params->_ret = iface->GetConnectedControllers( params->handlesOut ); + return 0; } -void cppISteamController_SteamController006_ShowBindingPanel( struct cppISteamController_SteamController006_ShowBindingPanel_params *params ) +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; params->_ret = iface->ShowBindingPanel( params->controllerHandle ); + return 0; } -void cppISteamController_SteamController006_GetActionSetHandle( struct cppISteamController_SteamController006_GetActionSetHandle_params *params ) +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; params->_ret = iface->GetActionSetHandle( params->pszActionSetName ); + return 0; } -void cppISteamController_SteamController006_ActivateActionSet( struct cppISteamController_SteamController006_ActivateActionSet_params *params ) +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; iface->ActivateActionSet( params->controllerHandle, params->actionSetHandle ); + return 0; } -void cppISteamController_SteamController006_GetCurrentActionSet( struct cppISteamController_SteamController006_GetCurrentActionSet_params *params ) +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; params->_ret = iface->GetCurrentActionSet( params->controllerHandle ); + return 0; } -void cppISteamController_SteamController006_ActivateActionSetLayer( struct cppISteamController_SteamController006_ActivateActionSetLayer_params *params ) +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; iface->ActivateActionSetLayer( params->controllerHandle, params->actionSetLayerHandle ); + return 0; } -void cppISteamController_SteamController006_DeactivateActionSetLayer( struct cppISteamController_SteamController006_DeactivateActionSetLayer_params *params ) +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; iface->DeactivateActionSetLayer( params->controllerHandle, params->actionSetLayerHandle ); + return 0; } -void cppISteamController_SteamController006_DeactivateAllActionSetLayers( struct cppISteamController_SteamController006_DeactivateAllActionSetLayers_params *params ) +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; iface->DeactivateAllActionSetLayers( params->controllerHandle ); + return 0; } -void cppISteamController_SteamController006_GetActiveActionSetLayers( struct cppISteamController_SteamController006_GetActiveActionSetLayers_params *params ) +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; params->_ret = iface->GetActiveActionSetLayers( params->controllerHandle, params->handlesOut ); + return 0; } -void cppISteamController_SteamController006_GetDigitalActionHandle( struct cppISteamController_SteamController006_GetDigitalActionHandle_params *params ) +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; params->_ret = iface->GetDigitalActionHandle( params->pszActionName ); + return 0; } -void cppISteamController_SteamController006_GetDigitalActionData( struct cppISteamController_SteamController006_GetDigitalActionData_params *params ) +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; *params->_ret = iface->GetDigitalActionData( params->controllerHandle, params->digitalActionHandle ); + return 0; } -void cppISteamController_SteamController006_GetDigitalActionOrigins( struct cppISteamController_SteamController006_GetDigitalActionOrigins_params *params ) +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; params->_ret = iface->GetDigitalActionOrigins( params->controllerHandle, params->actionSetHandle, params->digitalActionHandle, params->originsOut ); + return 0; } -void cppISteamController_SteamController006_GetAnalogActionHandle( struct cppISteamController_SteamController006_GetAnalogActionHandle_params *params ) +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; params->_ret = iface->GetAnalogActionHandle( params->pszActionName ); + return 0; } -void cppISteamController_SteamController006_GetAnalogActionData( struct cppISteamController_SteamController006_GetAnalogActionData_params *params ) +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; *params->_ret = iface->GetAnalogActionData( params->controllerHandle, params->analogActionHandle ); + return 0; } -void cppISteamController_SteamController006_GetAnalogActionOrigins( struct cppISteamController_SteamController006_GetAnalogActionOrigins_params *params ) +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; params->_ret = iface->GetAnalogActionOrigins( params->controllerHandle, params->actionSetHandle, params->analogActionHandle, params->originsOut ); + return 0; } -void cppISteamController_SteamController006_StopAnalogActionMomentum( struct cppISteamController_SteamController006_StopAnalogActionMomentum_params *params ) +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; iface->StopAnalogActionMomentum( params->controllerHandle, params->eAction ); + return 0; } -void cppISteamController_SteamController006_TriggerHapticPulse( struct cppISteamController_SteamController006_TriggerHapticPulse_params *params ) +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; iface->TriggerHapticPulse( params->controllerHandle, params->eTargetPad, params->usDurationMicroSec ); + return 0; } -void cppISteamController_SteamController006_TriggerRepeatedHapticPulse( struct cppISteamController_SteamController006_TriggerRepeatedHapticPulse_params *params ) +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; iface->TriggerRepeatedHapticPulse( params->controllerHandle, params->eTargetPad, params->usDurationMicroSec, params->usOffMicroSec, params->unRepeat, params->nFlags ); + return 0; } -void cppISteamController_SteamController006_TriggerVibration( struct cppISteamController_SteamController006_TriggerVibration_params *params ) +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; iface->TriggerVibration( params->controllerHandle, params->usLeftSpeed, params->usRightSpeed ); + return 0; } -void cppISteamController_SteamController006_SetLEDColor( struct cppISteamController_SteamController006_SetLEDColor_params *params ) +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; iface->SetLEDColor( params->controllerHandle, params->nColorR, params->nColorG, params->nColorB, params->nFlags ); + return 0; } -void cppISteamController_SteamController006_GetGamepadIndexForController( struct cppISteamController_SteamController006_GetGamepadIndexForController_params *params ) +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; params->_ret = iface->GetGamepadIndexForController( params->ulControllerHandle ); + return 0; } -void cppISteamController_SteamController006_GetControllerForGamepadIndex( struct cppISteamController_SteamController006_GetControllerForGamepadIndex_params *params ) +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; params->_ret = iface->GetControllerForGamepadIndex( params->nIndex ); + return 0; } -void cppISteamController_SteamController006_GetMotionData( struct cppISteamController_SteamController006_GetMotionData_params *params ) +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; *params->_ret = iface->GetMotionData( params->controllerHandle ); + return 0; } -void cppISteamController_SteamController006_ShowDigitalActionOrigins( struct cppISteamController_SteamController006_ShowDigitalActionOrigins_params *params ) +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; params->_ret = iface->ShowDigitalActionOrigins( params->controllerHandle, params->digitalActionHandle, params->flScale, params->flXPosition, params->flYPosition ); + return 0; } -void cppISteamController_SteamController006_ShowAnalogActionOrigins( struct cppISteamController_SteamController006_ShowAnalogActionOrigins_params *params ) +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; params->_ret = iface->ShowAnalogActionOrigins( params->controllerHandle, params->analogActionHandle, params->flScale, params->flXPosition, params->flYPosition ); + return 0; } -void cppISteamController_SteamController006_GetStringForActionOrigin( struct cppISteamController_SteamController006_GetStringForActionOrigin_params *params ) +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; params->_ret = iface->GetStringForActionOrigin( params->eOrigin ); + return 0; } -void cppISteamController_SteamController006_GetInputTypeForHandle( struct cppISteamController_SteamController006_GetInputTypeForHandle_params *params ) +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; params->_ret = iface->GetInputTypeForHandle( params->controllerHandle ); + return 0; } diff --git a/lsteamclient/cppISteamController_SteamController006.h b/lsteamclient/cppISteamController_SteamController006.h deleted file mode 100644 index 02cfe509..00000000 --- a/lsteamclient/cppISteamController_SteamController006.h +++ /dev/null @@ -1,281 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamController_SteamController006_Init_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamController_SteamController006_Init( struct cppISteamController_SteamController006_Init_params *params ); - -struct cppISteamController_SteamController006_Shutdown_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamController_SteamController006_Shutdown( struct cppISteamController_SteamController006_Shutdown_params *params ); - -struct cppISteamController_SteamController006_RunFrame_params -{ - void *linux_side; -}; -extern void cppISteamController_SteamController006_RunFrame( struct cppISteamController_SteamController006_RunFrame_params *params ); - -struct cppISteamController_SteamController006_GetConnectedControllers_params -{ - void *linux_side; - int32_t _ret; - uint64_t *handlesOut; -}; -extern void cppISteamController_SteamController006_GetConnectedControllers( struct cppISteamController_SteamController006_GetConnectedControllers_params *params ); - -struct cppISteamController_SteamController006_ShowBindingPanel_params -{ - void *linux_side; - bool _ret; - uint64_t controllerHandle; -}; -extern void cppISteamController_SteamController006_ShowBindingPanel( struct cppISteamController_SteamController006_ShowBindingPanel_params *params ); - -struct cppISteamController_SteamController006_GetActionSetHandle_params -{ - void *linux_side; - uint64_t _ret; - const char *pszActionSetName; -}; -extern void cppISteamController_SteamController006_GetActionSetHandle( struct cppISteamController_SteamController006_GetActionSetHandle_params *params ); - -struct cppISteamController_SteamController006_ActivateActionSet_params -{ - void *linux_side; - uint64_t controllerHandle; - uint64_t actionSetHandle; -}; -extern void cppISteamController_SteamController006_ActivateActionSet( struct cppISteamController_SteamController006_ActivateActionSet_params *params ); - -struct cppISteamController_SteamController006_GetCurrentActionSet_params -{ - void *linux_side; - uint64_t _ret; - uint64_t controllerHandle; -}; -extern void cppISteamController_SteamController006_GetCurrentActionSet( struct cppISteamController_SteamController006_GetCurrentActionSet_params *params ); - -struct cppISteamController_SteamController006_ActivateActionSetLayer_params -{ - void *linux_side; - uint64_t controllerHandle; - uint64_t actionSetLayerHandle; -}; -extern void cppISteamController_SteamController006_ActivateActionSetLayer( struct cppISteamController_SteamController006_ActivateActionSetLayer_params *params ); - -struct cppISteamController_SteamController006_DeactivateActionSetLayer_params -{ - void *linux_side; - uint64_t controllerHandle; - uint64_t actionSetLayerHandle; -}; -extern void cppISteamController_SteamController006_DeactivateActionSetLayer( struct cppISteamController_SteamController006_DeactivateActionSetLayer_params *params ); - -struct cppISteamController_SteamController006_DeactivateAllActionSetLayers_params -{ - void *linux_side; - uint64_t controllerHandle; -}; -extern void cppISteamController_SteamController006_DeactivateAllActionSetLayers( struct cppISteamController_SteamController006_DeactivateAllActionSetLayers_params *params ); - -struct cppISteamController_SteamController006_GetActiveActionSetLayers_params -{ - void *linux_side; - int32_t _ret; - uint64_t controllerHandle; - uint64_t *handlesOut; -}; -extern void cppISteamController_SteamController006_GetActiveActionSetLayers( struct cppISteamController_SteamController006_GetActiveActionSetLayers_params *params ); - -struct cppISteamController_SteamController006_GetDigitalActionHandle_params -{ - void *linux_side; - uint64_t _ret; - const char *pszActionName; -}; -extern void cppISteamController_SteamController006_GetDigitalActionHandle( struct cppISteamController_SteamController006_GetDigitalActionHandle_params *params ); - -struct cppISteamController_SteamController006_GetDigitalActionData_params -{ - void *linux_side; - ControllerDigitalActionData_t *_ret; - uint64_t controllerHandle; - uint64_t digitalActionHandle; -}; -extern void cppISteamController_SteamController006_GetDigitalActionData( struct cppISteamController_SteamController006_GetDigitalActionData_params *params ); - -struct cppISteamController_SteamController006_GetDigitalActionOrigins_params -{ - void *linux_side; - int32_t _ret; - uint64_t controllerHandle; - uint64_t actionSetHandle; - uint64_t digitalActionHandle; - uint32_t *originsOut; -}; -extern void cppISteamController_SteamController006_GetDigitalActionOrigins( struct cppISteamController_SteamController006_GetDigitalActionOrigins_params *params ); - -struct cppISteamController_SteamController006_GetAnalogActionHandle_params -{ - void *linux_side; - uint64_t _ret; - const char *pszActionName; -}; -extern void cppISteamController_SteamController006_GetAnalogActionHandle( struct cppISteamController_SteamController006_GetAnalogActionHandle_params *params ); - -struct cppISteamController_SteamController006_GetAnalogActionData_params -{ - void *linux_side; - ControllerAnalogActionData_t *_ret; - uint64_t controllerHandle; - uint64_t analogActionHandle; -}; -extern void cppISteamController_SteamController006_GetAnalogActionData( struct cppISteamController_SteamController006_GetAnalogActionData_params *params ); - -struct cppISteamController_SteamController006_GetAnalogActionOrigins_params -{ - void *linux_side; - int32_t _ret; - uint64_t controllerHandle; - uint64_t actionSetHandle; - uint64_t analogActionHandle; - uint32_t *originsOut; -}; -extern void cppISteamController_SteamController006_GetAnalogActionOrigins( struct cppISteamController_SteamController006_GetAnalogActionOrigins_params *params ); - -struct cppISteamController_SteamController006_StopAnalogActionMomentum_params -{ - void *linux_side; - uint64_t controllerHandle; - uint64_t eAction; -}; -extern void cppISteamController_SteamController006_StopAnalogActionMomentum( struct cppISteamController_SteamController006_StopAnalogActionMomentum_params *params ); - -struct cppISteamController_SteamController006_TriggerHapticPulse_params -{ - void *linux_side; - uint64_t controllerHandle; - uint32_t eTargetPad; - uint16_t usDurationMicroSec; -}; -extern void cppISteamController_SteamController006_TriggerHapticPulse( struct cppISteamController_SteamController006_TriggerHapticPulse_params *params ); - -struct cppISteamController_SteamController006_TriggerRepeatedHapticPulse_params -{ - void *linux_side; - uint64_t controllerHandle; - uint32_t eTargetPad; - uint16_t usDurationMicroSec; - uint16_t usOffMicroSec; - uint16_t unRepeat; - uint32_t nFlags; -}; -extern void cppISteamController_SteamController006_TriggerRepeatedHapticPulse( struct cppISteamController_SteamController006_TriggerRepeatedHapticPulse_params *params ); - -struct cppISteamController_SteamController006_TriggerVibration_params -{ - void *linux_side; - uint64_t controllerHandle; - uint16_t usLeftSpeed; - uint16_t usRightSpeed; -}; -extern void cppISteamController_SteamController006_TriggerVibration( struct cppISteamController_SteamController006_TriggerVibration_params *params ); - -struct cppISteamController_SteamController006_SetLEDColor_params -{ - void *linux_side; - uint64_t controllerHandle; - uint8_t nColorR; - uint8_t nColorG; - uint8_t nColorB; - uint32_t nFlags; -}; -extern void cppISteamController_SteamController006_SetLEDColor( struct cppISteamController_SteamController006_SetLEDColor_params *params ); - -struct cppISteamController_SteamController006_GetGamepadIndexForController_params -{ - void *linux_side; - int32_t _ret; - uint64_t ulControllerHandle; -}; -extern void cppISteamController_SteamController006_GetGamepadIndexForController( struct cppISteamController_SteamController006_GetGamepadIndexForController_params *params ); - -struct cppISteamController_SteamController006_GetControllerForGamepadIndex_params -{ - void *linux_side; - uint64_t _ret; - int32_t nIndex; -}; -extern void cppISteamController_SteamController006_GetControllerForGamepadIndex( struct cppISteamController_SteamController006_GetControllerForGamepadIndex_params *params ); - -struct cppISteamController_SteamController006_GetMotionData_params -{ - void *linux_side; - ControllerMotionData_t *_ret; - uint64_t controllerHandle; -}; -extern void cppISteamController_SteamController006_GetMotionData( struct cppISteamController_SteamController006_GetMotionData_params *params ); - -struct cppISteamController_SteamController006_ShowDigitalActionOrigins_params -{ - void *linux_side; - bool _ret; - uint64_t controllerHandle; - uint64_t digitalActionHandle; - float flScale; - float flXPosition; - float flYPosition; -}; -extern void cppISteamController_SteamController006_ShowDigitalActionOrigins( struct cppISteamController_SteamController006_ShowDigitalActionOrigins_params *params ); - -struct cppISteamController_SteamController006_ShowAnalogActionOrigins_params -{ - void *linux_side; - bool _ret; - uint64_t controllerHandle; - uint64_t analogActionHandle; - float flScale; - float flXPosition; - float flYPosition; -}; -extern void cppISteamController_SteamController006_ShowAnalogActionOrigins( struct cppISteamController_SteamController006_ShowAnalogActionOrigins_params *params ); - -struct cppISteamController_SteamController006_GetStringForActionOrigin_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; -}; -extern void cppISteamController_SteamController006_GetStringForActionOrigin( struct cppISteamController_SteamController006_GetStringForActionOrigin_params *params ); - -struct cppISteamController_SteamController006_GetGlyphForActionOrigin_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; -}; -extern void cppISteamController_SteamController006_GetGlyphForActionOrigin( struct cppISteamController_SteamController006_GetGlyphForActionOrigin_params *params ); - -struct cppISteamController_SteamController006_GetInputTypeForHandle_params -{ - void *linux_side; - uint32_t _ret; - uint64_t controllerHandle; -}; -extern void cppISteamController_SteamController006_GetInputTypeForHandle( struct cppISteamController_SteamController006_GetInputTypeForHandle_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamController_SteamController007.cpp b/lsteamclient/cppISteamController_SteamController007.cpp index 28d6d4ce..57269fd8 100644 --- a/lsteamclient/cppISteamController_SteamController007.cpp +++ b/lsteamclient/cppISteamController_SteamController007.cpp @@ -1,196 +1,259 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamController_SteamController007.h" -void cppISteamController_SteamController007_Init( struct cppISteamController_SteamController007_Init_params *params ) +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; params->_ret = iface->Init( ); + return 0; } -void cppISteamController_SteamController007_Shutdown( struct cppISteamController_SteamController007_Shutdown_params *params ) +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; params->_ret = iface->Shutdown( ); + return 0; } -void cppISteamController_SteamController007_RunFrame( struct cppISteamController_SteamController007_RunFrame_params *params ) +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; iface->RunFrame( ); + return 0; } -void cppISteamController_SteamController007_GetConnectedControllers( struct cppISteamController_SteamController007_GetConnectedControllers_params *params ) +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; params->_ret = iface->GetConnectedControllers( params->handlesOut ); + return 0; } -void cppISteamController_SteamController007_GetActionSetHandle( struct cppISteamController_SteamController007_GetActionSetHandle_params *params ) +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; params->_ret = iface->GetActionSetHandle( params->pszActionSetName ); + return 0; } -void cppISteamController_SteamController007_ActivateActionSet( struct cppISteamController_SteamController007_ActivateActionSet_params *params ) +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; iface->ActivateActionSet( params->controllerHandle, params->actionSetHandle ); + return 0; } -void cppISteamController_SteamController007_GetCurrentActionSet( struct cppISteamController_SteamController007_GetCurrentActionSet_params *params ) +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; params->_ret = iface->GetCurrentActionSet( params->controllerHandle ); + return 0; } -void cppISteamController_SteamController007_ActivateActionSetLayer( struct cppISteamController_SteamController007_ActivateActionSetLayer_params *params ) +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; iface->ActivateActionSetLayer( params->controllerHandle, params->actionSetLayerHandle ); + return 0; } -void cppISteamController_SteamController007_DeactivateActionSetLayer( struct cppISteamController_SteamController007_DeactivateActionSetLayer_params *params ) +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; iface->DeactivateActionSetLayer( params->controllerHandle, params->actionSetLayerHandle ); + return 0; } -void cppISteamController_SteamController007_DeactivateAllActionSetLayers( struct cppISteamController_SteamController007_DeactivateAllActionSetLayers_params *params ) +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; iface->DeactivateAllActionSetLayers( params->controllerHandle ); + return 0; } -void cppISteamController_SteamController007_GetActiveActionSetLayers( struct cppISteamController_SteamController007_GetActiveActionSetLayers_params *params ) +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; params->_ret = iface->GetActiveActionSetLayers( params->controllerHandle, params->handlesOut ); + return 0; } -void cppISteamController_SteamController007_GetDigitalActionHandle( struct cppISteamController_SteamController007_GetDigitalActionHandle_params *params ) +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; params->_ret = iface->GetDigitalActionHandle( params->pszActionName ); + return 0; } -void cppISteamController_SteamController007_GetDigitalActionData( struct cppISteamController_SteamController007_GetDigitalActionData_params *params ) +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; *params->_ret = iface->GetDigitalActionData( params->controllerHandle, params->digitalActionHandle ); + return 0; } -void cppISteamController_SteamController007_GetDigitalActionOrigins( struct cppISteamController_SteamController007_GetDigitalActionOrigins_params *params ) +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; params->_ret = iface->GetDigitalActionOrigins( params->controllerHandle, params->actionSetHandle, params->digitalActionHandle, params->originsOut ); + return 0; } -void cppISteamController_SteamController007_GetAnalogActionHandle( struct cppISteamController_SteamController007_GetAnalogActionHandle_params *params ) +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; params->_ret = iface->GetAnalogActionHandle( params->pszActionName ); + return 0; } -void cppISteamController_SteamController007_GetAnalogActionData( struct cppISteamController_SteamController007_GetAnalogActionData_params *params ) +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; *params->_ret = iface->GetAnalogActionData( params->controllerHandle, params->analogActionHandle ); + return 0; } -void cppISteamController_SteamController007_GetAnalogActionOrigins( struct cppISteamController_SteamController007_GetAnalogActionOrigins_params *params ) +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; params->_ret = iface->GetAnalogActionOrigins( params->controllerHandle, params->actionSetHandle, params->analogActionHandle, params->originsOut ); + return 0; } -void cppISteamController_SteamController007_GetStringForActionOrigin( struct cppISteamController_SteamController007_GetStringForActionOrigin_params *params ) +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; params->_ret = iface->GetStringForActionOrigin( params->eOrigin ); + return 0; } -void cppISteamController_SteamController007_StopAnalogActionMomentum( struct cppISteamController_SteamController007_StopAnalogActionMomentum_params *params ) +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; iface->StopAnalogActionMomentum( params->controllerHandle, params->eAction ); + return 0; } -void cppISteamController_SteamController007_GetMotionData( struct cppISteamController_SteamController007_GetMotionData_params *params ) +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; *params->_ret = iface->GetMotionData( params->controllerHandle ); + return 0; } -void cppISteamController_SteamController007_TriggerHapticPulse( struct cppISteamController_SteamController007_TriggerHapticPulse_params *params ) +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; iface->TriggerHapticPulse( params->controllerHandle, params->eTargetPad, params->usDurationMicroSec ); + return 0; } -void cppISteamController_SteamController007_TriggerRepeatedHapticPulse( struct cppISteamController_SteamController007_TriggerRepeatedHapticPulse_params *params ) +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; iface->TriggerRepeatedHapticPulse( params->controllerHandle, params->eTargetPad, params->usDurationMicroSec, params->usOffMicroSec, params->unRepeat, params->nFlags ); + return 0; } -void cppISteamController_SteamController007_TriggerVibration( struct cppISteamController_SteamController007_TriggerVibration_params *params ) +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; iface->TriggerVibration( params->controllerHandle, params->usLeftSpeed, params->usRightSpeed ); + return 0; } -void cppISteamController_SteamController007_SetLEDColor( struct cppISteamController_SteamController007_SetLEDColor_params *params ) +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; iface->SetLEDColor( params->controllerHandle, params->nColorR, params->nColorG, params->nColorB, params->nFlags ); + return 0; } -void cppISteamController_SteamController007_ShowBindingPanel( struct cppISteamController_SteamController007_ShowBindingPanel_params *params ) +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; params->_ret = iface->ShowBindingPanel( params->controllerHandle ); + return 0; } -void cppISteamController_SteamController007_GetInputTypeForHandle( struct cppISteamController_SteamController007_GetInputTypeForHandle_params *params ) +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; params->_ret = iface->GetInputTypeForHandle( params->controllerHandle ); + return 0; } -void cppISteamController_SteamController007_GetControllerForGamepadIndex( struct cppISteamController_SteamController007_GetControllerForGamepadIndex_params *params ) +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; params->_ret = iface->GetControllerForGamepadIndex( params->nIndex ); + return 0; } -void cppISteamController_SteamController007_GetGamepadIndexForController( struct cppISteamController_SteamController007_GetGamepadIndexForController_params *params ) +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; params->_ret = iface->GetGamepadIndexForController( params->ulControllerHandle ); + return 0; } -void cppISteamController_SteamController007_GetStringForXboxOrigin( struct cppISteamController_SteamController007_GetStringForXboxOrigin_params *params ) +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; params->_ret = iface->GetStringForXboxOrigin( params->eOrigin ); + return 0; } -void cppISteamController_SteamController007_GetActionOriginFromXboxOrigin( struct cppISteamController_SteamController007_GetActionOriginFromXboxOrigin_params *params ) +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; params->_ret = iface->GetActionOriginFromXboxOrigin( params->controllerHandle, params->eOrigin ); + return 0; } -void cppISteamController_SteamController007_TranslateActionOrigin( struct cppISteamController_SteamController007_TranslateActionOrigin_params *params ) +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; params->_ret = iface->TranslateActionOrigin( params->eDestinationInputType, params->eSourceOrigin ); + return 0; } -void cppISteamController_SteamController007_GetControllerBindingRevision( struct cppISteamController_SteamController007_GetControllerBindingRevision_params *params ) +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; params->_ret = iface->GetControllerBindingRevision( params->controllerHandle, params->pMajor, params->pMinor ); + return 0; } diff --git a/lsteamclient/cppISteamController_SteamController007.h b/lsteamclient/cppISteamController_SteamController007.h deleted file mode 100644 index e78dd79e..00000000 --- a/lsteamclient/cppISteamController_SteamController007.h +++ /dev/null @@ -1,301 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamController_SteamController007_Init_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamController_SteamController007_Init( struct cppISteamController_SteamController007_Init_params *params ); - -struct cppISteamController_SteamController007_Shutdown_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamController_SteamController007_Shutdown( struct cppISteamController_SteamController007_Shutdown_params *params ); - -struct cppISteamController_SteamController007_RunFrame_params -{ - void *linux_side; -}; -extern void cppISteamController_SteamController007_RunFrame( struct cppISteamController_SteamController007_RunFrame_params *params ); - -struct cppISteamController_SteamController007_GetConnectedControllers_params -{ - void *linux_side; - int32_t _ret; - uint64_t *handlesOut; -}; -extern void cppISteamController_SteamController007_GetConnectedControllers( struct cppISteamController_SteamController007_GetConnectedControllers_params *params ); - -struct cppISteamController_SteamController007_GetActionSetHandle_params -{ - void *linux_side; - uint64_t _ret; - const char *pszActionSetName; -}; -extern void cppISteamController_SteamController007_GetActionSetHandle( struct cppISteamController_SteamController007_GetActionSetHandle_params *params ); - -struct cppISteamController_SteamController007_ActivateActionSet_params -{ - void *linux_side; - uint64_t controllerHandle; - uint64_t actionSetHandle; -}; -extern void cppISteamController_SteamController007_ActivateActionSet( struct cppISteamController_SteamController007_ActivateActionSet_params *params ); - -struct cppISteamController_SteamController007_GetCurrentActionSet_params -{ - void *linux_side; - uint64_t _ret; - uint64_t controllerHandle; -}; -extern void cppISteamController_SteamController007_GetCurrentActionSet( struct cppISteamController_SteamController007_GetCurrentActionSet_params *params ); - -struct cppISteamController_SteamController007_ActivateActionSetLayer_params -{ - void *linux_side; - uint64_t controllerHandle; - uint64_t actionSetLayerHandle; -}; -extern void cppISteamController_SteamController007_ActivateActionSetLayer( struct cppISteamController_SteamController007_ActivateActionSetLayer_params *params ); - -struct cppISteamController_SteamController007_DeactivateActionSetLayer_params -{ - void *linux_side; - uint64_t controllerHandle; - uint64_t actionSetLayerHandle; -}; -extern void cppISteamController_SteamController007_DeactivateActionSetLayer( struct cppISteamController_SteamController007_DeactivateActionSetLayer_params *params ); - -struct cppISteamController_SteamController007_DeactivateAllActionSetLayers_params -{ - void *linux_side; - uint64_t controllerHandle; -}; -extern void cppISteamController_SteamController007_DeactivateAllActionSetLayers( struct cppISteamController_SteamController007_DeactivateAllActionSetLayers_params *params ); - -struct cppISteamController_SteamController007_GetActiveActionSetLayers_params -{ - void *linux_side; - int32_t _ret; - uint64_t controllerHandle; - uint64_t *handlesOut; -}; -extern void cppISteamController_SteamController007_GetActiveActionSetLayers( struct cppISteamController_SteamController007_GetActiveActionSetLayers_params *params ); - -struct cppISteamController_SteamController007_GetDigitalActionHandle_params -{ - void *linux_side; - uint64_t _ret; - const char *pszActionName; -}; -extern void cppISteamController_SteamController007_GetDigitalActionHandle( struct cppISteamController_SteamController007_GetDigitalActionHandle_params *params ); - -struct cppISteamController_SteamController007_GetDigitalActionData_params -{ - void *linux_side; - InputDigitalActionData_t *_ret; - uint64_t controllerHandle; - uint64_t digitalActionHandle; -}; -extern void cppISteamController_SteamController007_GetDigitalActionData( struct cppISteamController_SteamController007_GetDigitalActionData_params *params ); - -struct cppISteamController_SteamController007_GetDigitalActionOrigins_params -{ - void *linux_side; - int32_t _ret; - uint64_t controllerHandle; - uint64_t actionSetHandle; - uint64_t digitalActionHandle; - uint32_t *originsOut; -}; -extern void cppISteamController_SteamController007_GetDigitalActionOrigins( struct cppISteamController_SteamController007_GetDigitalActionOrigins_params *params ); - -struct cppISteamController_SteamController007_GetAnalogActionHandle_params -{ - void *linux_side; - uint64_t _ret; - const char *pszActionName; -}; -extern void cppISteamController_SteamController007_GetAnalogActionHandle( struct cppISteamController_SteamController007_GetAnalogActionHandle_params *params ); - -struct cppISteamController_SteamController007_GetAnalogActionData_params -{ - void *linux_side; - InputAnalogActionData_t *_ret; - uint64_t controllerHandle; - uint64_t analogActionHandle; -}; -extern void cppISteamController_SteamController007_GetAnalogActionData( struct cppISteamController_SteamController007_GetAnalogActionData_params *params ); - -struct cppISteamController_SteamController007_GetAnalogActionOrigins_params -{ - void *linux_side; - int32_t _ret; - uint64_t controllerHandle; - uint64_t actionSetHandle; - uint64_t analogActionHandle; - uint32_t *originsOut; -}; -extern void cppISteamController_SteamController007_GetAnalogActionOrigins( struct cppISteamController_SteamController007_GetAnalogActionOrigins_params *params ); - -struct cppISteamController_SteamController007_GetGlyphForActionOrigin_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; -}; -extern void cppISteamController_SteamController007_GetGlyphForActionOrigin( struct cppISteamController_SteamController007_GetGlyphForActionOrigin_params *params ); - -struct cppISteamController_SteamController007_GetStringForActionOrigin_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; -}; -extern void cppISteamController_SteamController007_GetStringForActionOrigin( struct cppISteamController_SteamController007_GetStringForActionOrigin_params *params ); - -struct cppISteamController_SteamController007_StopAnalogActionMomentum_params -{ - void *linux_side; - uint64_t controllerHandle; - uint64_t eAction; -}; -extern void cppISteamController_SteamController007_StopAnalogActionMomentum( struct cppISteamController_SteamController007_StopAnalogActionMomentum_params *params ); - -struct cppISteamController_SteamController007_GetMotionData_params -{ - void *linux_side; - InputMotionData_t *_ret; - uint64_t controllerHandle; -}; -extern void cppISteamController_SteamController007_GetMotionData( struct cppISteamController_SteamController007_GetMotionData_params *params ); - -struct cppISteamController_SteamController007_TriggerHapticPulse_params -{ - void *linux_side; - uint64_t controllerHandle; - uint32_t eTargetPad; - uint16_t usDurationMicroSec; -}; -extern void cppISteamController_SteamController007_TriggerHapticPulse( struct cppISteamController_SteamController007_TriggerHapticPulse_params *params ); - -struct cppISteamController_SteamController007_TriggerRepeatedHapticPulse_params -{ - void *linux_side; - uint64_t controllerHandle; - uint32_t eTargetPad; - uint16_t usDurationMicroSec; - uint16_t usOffMicroSec; - uint16_t unRepeat; - uint32_t nFlags; -}; -extern void cppISteamController_SteamController007_TriggerRepeatedHapticPulse( struct cppISteamController_SteamController007_TriggerRepeatedHapticPulse_params *params ); - -struct cppISteamController_SteamController007_TriggerVibration_params -{ - void *linux_side; - uint64_t controllerHandle; - uint16_t usLeftSpeed; - uint16_t usRightSpeed; -}; -extern void cppISteamController_SteamController007_TriggerVibration( struct cppISteamController_SteamController007_TriggerVibration_params *params ); - -struct cppISteamController_SteamController007_SetLEDColor_params -{ - void *linux_side; - uint64_t controllerHandle; - uint8_t nColorR; - uint8_t nColorG; - uint8_t nColorB; - uint32_t nFlags; -}; -extern void cppISteamController_SteamController007_SetLEDColor( struct cppISteamController_SteamController007_SetLEDColor_params *params ); - -struct cppISteamController_SteamController007_ShowBindingPanel_params -{ - void *linux_side; - bool _ret; - uint64_t controllerHandle; -}; -extern void cppISteamController_SteamController007_ShowBindingPanel( struct cppISteamController_SteamController007_ShowBindingPanel_params *params ); - -struct cppISteamController_SteamController007_GetInputTypeForHandle_params -{ - void *linux_side; - uint32_t _ret; - uint64_t controllerHandle; -}; -extern void cppISteamController_SteamController007_GetInputTypeForHandle( struct cppISteamController_SteamController007_GetInputTypeForHandle_params *params ); - -struct cppISteamController_SteamController007_GetControllerForGamepadIndex_params -{ - void *linux_side; - uint64_t _ret; - int32_t nIndex; -}; -extern void cppISteamController_SteamController007_GetControllerForGamepadIndex( struct cppISteamController_SteamController007_GetControllerForGamepadIndex_params *params ); - -struct cppISteamController_SteamController007_GetGamepadIndexForController_params -{ - void *linux_side; - int32_t _ret; - uint64_t ulControllerHandle; -}; -extern void cppISteamController_SteamController007_GetGamepadIndexForController( struct cppISteamController_SteamController007_GetGamepadIndexForController_params *params ); - -struct cppISteamController_SteamController007_GetStringForXboxOrigin_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; -}; -extern void cppISteamController_SteamController007_GetStringForXboxOrigin( struct cppISteamController_SteamController007_GetStringForXboxOrigin_params *params ); - -struct cppISteamController_SteamController007_GetGlyphForXboxOrigin_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; -}; -extern void cppISteamController_SteamController007_GetGlyphForXboxOrigin( struct cppISteamController_SteamController007_GetGlyphForXboxOrigin_params *params ); - -struct cppISteamController_SteamController007_GetActionOriginFromXboxOrigin_params -{ - void *linux_side; - uint32_t _ret; - uint64_t controllerHandle; - uint32_t eOrigin; -}; -extern void cppISteamController_SteamController007_GetActionOriginFromXboxOrigin( struct cppISteamController_SteamController007_GetActionOriginFromXboxOrigin_params *params ); - -struct cppISteamController_SteamController007_TranslateActionOrigin_params -{ - void *linux_side; - uint32_t _ret; - uint32_t eDestinationInputType; - uint32_t eSourceOrigin; -}; -extern void cppISteamController_SteamController007_TranslateActionOrigin( struct cppISteamController_SteamController007_TranslateActionOrigin_params *params ); - -struct cppISteamController_SteamController007_GetControllerBindingRevision_params -{ - void *linux_side; - bool _ret; - uint64_t controllerHandle; - int32_t *pMajor; - int32_t *pMinor; -}; -extern void cppISteamController_SteamController007_GetControllerBindingRevision( struct cppISteamController_SteamController007_GetControllerBindingRevision_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamController_SteamController008.cpp b/lsteamclient/cppISteamController_SteamController008.cpp index f729d363..f332bbde 100644 --- a/lsteamclient/cppISteamController_SteamController008.cpp +++ b/lsteamclient/cppISteamController_SteamController008.cpp @@ -1,196 +1,259 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamController_SteamController008.h" -void cppISteamController_SteamController008_Init( struct cppISteamController_SteamController008_Init_params *params ) +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; params->_ret = iface->Init( ); + return 0; } -void cppISteamController_SteamController008_Shutdown( struct cppISteamController_SteamController008_Shutdown_params *params ) +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; params->_ret = iface->Shutdown( ); + return 0; } -void cppISteamController_SteamController008_RunFrame( struct cppISteamController_SteamController008_RunFrame_params *params ) +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; iface->RunFrame( ); + return 0; } -void cppISteamController_SteamController008_GetConnectedControllers( struct cppISteamController_SteamController008_GetConnectedControllers_params *params ) +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; params->_ret = iface->GetConnectedControllers( params->handlesOut ); + return 0; } -void cppISteamController_SteamController008_GetActionSetHandle( struct cppISteamController_SteamController008_GetActionSetHandle_params *params ) +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; params->_ret = iface->GetActionSetHandle( params->pszActionSetName ); + return 0; } -void cppISteamController_SteamController008_ActivateActionSet( struct cppISteamController_SteamController008_ActivateActionSet_params *params ) +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; iface->ActivateActionSet( params->controllerHandle, params->actionSetHandle ); + return 0; } -void cppISteamController_SteamController008_GetCurrentActionSet( struct cppISteamController_SteamController008_GetCurrentActionSet_params *params ) +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; params->_ret = iface->GetCurrentActionSet( params->controllerHandle ); + return 0; } -void cppISteamController_SteamController008_ActivateActionSetLayer( struct cppISteamController_SteamController008_ActivateActionSetLayer_params *params ) +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; iface->ActivateActionSetLayer( params->controllerHandle, params->actionSetLayerHandle ); + return 0; } -void cppISteamController_SteamController008_DeactivateActionSetLayer( struct cppISteamController_SteamController008_DeactivateActionSetLayer_params *params ) +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; iface->DeactivateActionSetLayer( params->controllerHandle, params->actionSetLayerHandle ); + return 0; } -void cppISteamController_SteamController008_DeactivateAllActionSetLayers( struct cppISteamController_SteamController008_DeactivateAllActionSetLayers_params *params ) +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; iface->DeactivateAllActionSetLayers( params->controllerHandle ); + return 0; } -void cppISteamController_SteamController008_GetActiveActionSetLayers( struct cppISteamController_SteamController008_GetActiveActionSetLayers_params *params ) +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; params->_ret = iface->GetActiveActionSetLayers( params->controllerHandle, params->handlesOut ); + return 0; } -void cppISteamController_SteamController008_GetDigitalActionHandle( struct cppISteamController_SteamController008_GetDigitalActionHandle_params *params ) +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; params->_ret = iface->GetDigitalActionHandle( params->pszActionName ); + return 0; } -void cppISteamController_SteamController008_GetDigitalActionData( struct cppISteamController_SteamController008_GetDigitalActionData_params *params ) +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; *params->_ret = iface->GetDigitalActionData( params->controllerHandle, params->digitalActionHandle ); + return 0; } -void cppISteamController_SteamController008_GetDigitalActionOrigins( struct cppISteamController_SteamController008_GetDigitalActionOrigins_params *params ) +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; params->_ret = iface->GetDigitalActionOrigins( params->controllerHandle, params->actionSetHandle, params->digitalActionHandle, params->originsOut ); + return 0; } -void cppISteamController_SteamController008_GetAnalogActionHandle( struct cppISteamController_SteamController008_GetAnalogActionHandle_params *params ) +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; params->_ret = iface->GetAnalogActionHandle( params->pszActionName ); + return 0; } -void cppISteamController_SteamController008_GetAnalogActionData( struct cppISteamController_SteamController008_GetAnalogActionData_params *params ) +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; *params->_ret = iface->GetAnalogActionData( params->controllerHandle, params->analogActionHandle ); + return 0; } -void cppISteamController_SteamController008_GetAnalogActionOrigins( struct cppISteamController_SteamController008_GetAnalogActionOrigins_params *params ) +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; params->_ret = iface->GetAnalogActionOrigins( params->controllerHandle, params->actionSetHandle, params->analogActionHandle, params->originsOut ); + return 0; } -void cppISteamController_SteamController008_GetStringForActionOrigin( struct cppISteamController_SteamController008_GetStringForActionOrigin_params *params ) +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; params->_ret = iface->GetStringForActionOrigin( params->eOrigin ); + return 0; } -void cppISteamController_SteamController008_StopAnalogActionMomentum( struct cppISteamController_SteamController008_StopAnalogActionMomentum_params *params ) +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; iface->StopAnalogActionMomentum( params->controllerHandle, params->eAction ); + return 0; } -void cppISteamController_SteamController008_GetMotionData( struct cppISteamController_SteamController008_GetMotionData_params *params ) +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; *params->_ret = iface->GetMotionData( params->controllerHandle ); + return 0; } -void cppISteamController_SteamController008_TriggerHapticPulse( struct cppISteamController_SteamController008_TriggerHapticPulse_params *params ) +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; iface->TriggerHapticPulse( params->controllerHandle, params->eTargetPad, params->usDurationMicroSec ); + return 0; } -void cppISteamController_SteamController008_TriggerRepeatedHapticPulse( struct cppISteamController_SteamController008_TriggerRepeatedHapticPulse_params *params ) +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; iface->TriggerRepeatedHapticPulse( params->controllerHandle, params->eTargetPad, params->usDurationMicroSec, params->usOffMicroSec, params->unRepeat, params->nFlags ); + return 0; } -void cppISteamController_SteamController008_TriggerVibration( struct cppISteamController_SteamController008_TriggerVibration_params *params ) +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; iface->TriggerVibration( params->controllerHandle, params->usLeftSpeed, params->usRightSpeed ); + return 0; } -void cppISteamController_SteamController008_SetLEDColor( struct cppISteamController_SteamController008_SetLEDColor_params *params ) +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; iface->SetLEDColor( params->controllerHandle, params->nColorR, params->nColorG, params->nColorB, params->nFlags ); + return 0; } -void cppISteamController_SteamController008_ShowBindingPanel( struct cppISteamController_SteamController008_ShowBindingPanel_params *params ) +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; params->_ret = iface->ShowBindingPanel( params->controllerHandle ); + return 0; } -void cppISteamController_SteamController008_GetInputTypeForHandle( struct cppISteamController_SteamController008_GetInputTypeForHandle_params *params ) +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; params->_ret = iface->GetInputTypeForHandle( params->controllerHandle ); + return 0; } -void cppISteamController_SteamController008_GetControllerForGamepadIndex( struct cppISteamController_SteamController008_GetControllerForGamepadIndex_params *params ) +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; params->_ret = iface->GetControllerForGamepadIndex( params->nIndex ); + return 0; } -void cppISteamController_SteamController008_GetGamepadIndexForController( struct cppISteamController_SteamController008_GetGamepadIndexForController_params *params ) +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; params->_ret = iface->GetGamepadIndexForController( params->ulControllerHandle ); + return 0; } -void cppISteamController_SteamController008_GetStringForXboxOrigin( struct cppISteamController_SteamController008_GetStringForXboxOrigin_params *params ) +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; params->_ret = iface->GetStringForXboxOrigin( params->eOrigin ); + return 0; } -void cppISteamController_SteamController008_GetActionOriginFromXboxOrigin( struct cppISteamController_SteamController008_GetActionOriginFromXboxOrigin_params *params ) +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; params->_ret = iface->GetActionOriginFromXboxOrigin( params->controllerHandle, params->eOrigin ); + return 0; } -void cppISteamController_SteamController008_TranslateActionOrigin( struct cppISteamController_SteamController008_TranslateActionOrigin_params *params ) +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; params->_ret = iface->TranslateActionOrigin( params->eDestinationInputType, params->eSourceOrigin ); + return 0; } -void cppISteamController_SteamController008_GetControllerBindingRevision( struct cppISteamController_SteamController008_GetControllerBindingRevision_params *params ) +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; params->_ret = iface->GetControllerBindingRevision( params->controllerHandle, params->pMajor, params->pMinor ); + return 0; } diff --git a/lsteamclient/cppISteamController_SteamController008.h b/lsteamclient/cppISteamController_SteamController008.h deleted file mode 100644 index 10d1943f..00000000 --- a/lsteamclient/cppISteamController_SteamController008.h +++ /dev/null @@ -1,301 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamController_SteamController008_Init_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamController_SteamController008_Init( struct cppISteamController_SteamController008_Init_params *params ); - -struct cppISteamController_SteamController008_Shutdown_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamController_SteamController008_Shutdown( struct cppISteamController_SteamController008_Shutdown_params *params ); - -struct cppISteamController_SteamController008_RunFrame_params -{ - void *linux_side; -}; -extern void cppISteamController_SteamController008_RunFrame( struct cppISteamController_SteamController008_RunFrame_params *params ); - -struct cppISteamController_SteamController008_GetConnectedControllers_params -{ - void *linux_side; - int32_t _ret; - uint64_t *handlesOut; -}; -extern void cppISteamController_SteamController008_GetConnectedControllers( struct cppISteamController_SteamController008_GetConnectedControllers_params *params ); - -struct cppISteamController_SteamController008_GetActionSetHandle_params -{ - void *linux_side; - uint64_t _ret; - const char *pszActionSetName; -}; -extern void cppISteamController_SteamController008_GetActionSetHandle( struct cppISteamController_SteamController008_GetActionSetHandle_params *params ); - -struct cppISteamController_SteamController008_ActivateActionSet_params -{ - void *linux_side; - uint64_t controllerHandle; - uint64_t actionSetHandle; -}; -extern void cppISteamController_SteamController008_ActivateActionSet( struct cppISteamController_SteamController008_ActivateActionSet_params *params ); - -struct cppISteamController_SteamController008_GetCurrentActionSet_params -{ - void *linux_side; - uint64_t _ret; - uint64_t controllerHandle; -}; -extern void cppISteamController_SteamController008_GetCurrentActionSet( struct cppISteamController_SteamController008_GetCurrentActionSet_params *params ); - -struct cppISteamController_SteamController008_ActivateActionSetLayer_params -{ - void *linux_side; - uint64_t controllerHandle; - uint64_t actionSetLayerHandle; -}; -extern void cppISteamController_SteamController008_ActivateActionSetLayer( struct cppISteamController_SteamController008_ActivateActionSetLayer_params *params ); - -struct cppISteamController_SteamController008_DeactivateActionSetLayer_params -{ - void *linux_side; - uint64_t controllerHandle; - uint64_t actionSetLayerHandle; -}; -extern void cppISteamController_SteamController008_DeactivateActionSetLayer( struct cppISteamController_SteamController008_DeactivateActionSetLayer_params *params ); - -struct cppISteamController_SteamController008_DeactivateAllActionSetLayers_params -{ - void *linux_side; - uint64_t controllerHandle; -}; -extern void cppISteamController_SteamController008_DeactivateAllActionSetLayers( struct cppISteamController_SteamController008_DeactivateAllActionSetLayers_params *params ); - -struct cppISteamController_SteamController008_GetActiveActionSetLayers_params -{ - void *linux_side; - int32_t _ret; - uint64_t controllerHandle; - uint64_t *handlesOut; -}; -extern void cppISteamController_SteamController008_GetActiveActionSetLayers( struct cppISteamController_SteamController008_GetActiveActionSetLayers_params *params ); - -struct cppISteamController_SteamController008_GetDigitalActionHandle_params -{ - void *linux_side; - uint64_t _ret; - const char *pszActionName; -}; -extern void cppISteamController_SteamController008_GetDigitalActionHandle( struct cppISteamController_SteamController008_GetDigitalActionHandle_params *params ); - -struct cppISteamController_SteamController008_GetDigitalActionData_params -{ - void *linux_side; - InputDigitalActionData_t *_ret; - uint64_t controllerHandle; - uint64_t digitalActionHandle; -}; -extern void cppISteamController_SteamController008_GetDigitalActionData( struct cppISteamController_SteamController008_GetDigitalActionData_params *params ); - -struct cppISteamController_SteamController008_GetDigitalActionOrigins_params -{ - void *linux_side; - int32_t _ret; - uint64_t controllerHandle; - uint64_t actionSetHandle; - uint64_t digitalActionHandle; - uint32_t *originsOut; -}; -extern void cppISteamController_SteamController008_GetDigitalActionOrigins( struct cppISteamController_SteamController008_GetDigitalActionOrigins_params *params ); - -struct cppISteamController_SteamController008_GetAnalogActionHandle_params -{ - void *linux_side; - uint64_t _ret; - const char *pszActionName; -}; -extern void cppISteamController_SteamController008_GetAnalogActionHandle( struct cppISteamController_SteamController008_GetAnalogActionHandle_params *params ); - -struct cppISteamController_SteamController008_GetAnalogActionData_params -{ - void *linux_side; - InputAnalogActionData_t *_ret; - uint64_t controllerHandle; - uint64_t analogActionHandle; -}; -extern void cppISteamController_SteamController008_GetAnalogActionData( struct cppISteamController_SteamController008_GetAnalogActionData_params *params ); - -struct cppISteamController_SteamController008_GetAnalogActionOrigins_params -{ - void *linux_side; - int32_t _ret; - uint64_t controllerHandle; - uint64_t actionSetHandle; - uint64_t analogActionHandle; - uint32_t *originsOut; -}; -extern void cppISteamController_SteamController008_GetAnalogActionOrigins( struct cppISteamController_SteamController008_GetAnalogActionOrigins_params *params ); - -struct cppISteamController_SteamController008_GetGlyphForActionOrigin_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; -}; -extern void cppISteamController_SteamController008_GetGlyphForActionOrigin( struct cppISteamController_SteamController008_GetGlyphForActionOrigin_params *params ); - -struct cppISteamController_SteamController008_GetStringForActionOrigin_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; -}; -extern void cppISteamController_SteamController008_GetStringForActionOrigin( struct cppISteamController_SteamController008_GetStringForActionOrigin_params *params ); - -struct cppISteamController_SteamController008_StopAnalogActionMomentum_params -{ - void *linux_side; - uint64_t controllerHandle; - uint64_t eAction; -}; -extern void cppISteamController_SteamController008_StopAnalogActionMomentum( struct cppISteamController_SteamController008_StopAnalogActionMomentum_params *params ); - -struct cppISteamController_SteamController008_GetMotionData_params -{ - void *linux_side; - InputMotionData_t *_ret; - uint64_t controllerHandle; -}; -extern void cppISteamController_SteamController008_GetMotionData( struct cppISteamController_SteamController008_GetMotionData_params *params ); - -struct cppISteamController_SteamController008_TriggerHapticPulse_params -{ - void *linux_side; - uint64_t controllerHandle; - uint32_t eTargetPad; - uint16_t usDurationMicroSec; -}; -extern void cppISteamController_SteamController008_TriggerHapticPulse( struct cppISteamController_SteamController008_TriggerHapticPulse_params *params ); - -struct cppISteamController_SteamController008_TriggerRepeatedHapticPulse_params -{ - void *linux_side; - uint64_t controllerHandle; - uint32_t eTargetPad; - uint16_t usDurationMicroSec; - uint16_t usOffMicroSec; - uint16_t unRepeat; - uint32_t nFlags; -}; -extern void cppISteamController_SteamController008_TriggerRepeatedHapticPulse( struct cppISteamController_SteamController008_TriggerRepeatedHapticPulse_params *params ); - -struct cppISteamController_SteamController008_TriggerVibration_params -{ - void *linux_side; - uint64_t controllerHandle; - uint16_t usLeftSpeed; - uint16_t usRightSpeed; -}; -extern void cppISteamController_SteamController008_TriggerVibration( struct cppISteamController_SteamController008_TriggerVibration_params *params ); - -struct cppISteamController_SteamController008_SetLEDColor_params -{ - void *linux_side; - uint64_t controllerHandle; - uint8_t nColorR; - uint8_t nColorG; - uint8_t nColorB; - uint32_t nFlags; -}; -extern void cppISteamController_SteamController008_SetLEDColor( struct cppISteamController_SteamController008_SetLEDColor_params *params ); - -struct cppISteamController_SteamController008_ShowBindingPanel_params -{ - void *linux_side; - bool _ret; - uint64_t controllerHandle; -}; -extern void cppISteamController_SteamController008_ShowBindingPanel( struct cppISteamController_SteamController008_ShowBindingPanel_params *params ); - -struct cppISteamController_SteamController008_GetInputTypeForHandle_params -{ - void *linux_side; - uint32_t _ret; - uint64_t controllerHandle; -}; -extern void cppISteamController_SteamController008_GetInputTypeForHandle( struct cppISteamController_SteamController008_GetInputTypeForHandle_params *params ); - -struct cppISteamController_SteamController008_GetControllerForGamepadIndex_params -{ - void *linux_side; - uint64_t _ret; - int32_t nIndex; -}; -extern void cppISteamController_SteamController008_GetControllerForGamepadIndex( struct cppISteamController_SteamController008_GetControllerForGamepadIndex_params *params ); - -struct cppISteamController_SteamController008_GetGamepadIndexForController_params -{ - void *linux_side; - int32_t _ret; - uint64_t ulControllerHandle; -}; -extern void cppISteamController_SteamController008_GetGamepadIndexForController( struct cppISteamController_SteamController008_GetGamepadIndexForController_params *params ); - -struct cppISteamController_SteamController008_GetStringForXboxOrigin_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; -}; -extern void cppISteamController_SteamController008_GetStringForXboxOrigin( struct cppISteamController_SteamController008_GetStringForXboxOrigin_params *params ); - -struct cppISteamController_SteamController008_GetGlyphForXboxOrigin_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; -}; -extern void cppISteamController_SteamController008_GetGlyphForXboxOrigin( struct cppISteamController_SteamController008_GetGlyphForXboxOrigin_params *params ); - -struct cppISteamController_SteamController008_GetActionOriginFromXboxOrigin_params -{ - void *linux_side; - uint32_t _ret; - uint64_t controllerHandle; - uint32_t eOrigin; -}; -extern void cppISteamController_SteamController008_GetActionOriginFromXboxOrigin( struct cppISteamController_SteamController008_GetActionOriginFromXboxOrigin_params *params ); - -struct cppISteamController_SteamController008_TranslateActionOrigin_params -{ - void *linux_side; - uint32_t _ret; - uint32_t eDestinationInputType; - uint32_t eSourceOrigin; -}; -extern void cppISteamController_SteamController008_TranslateActionOrigin( struct cppISteamController_SteamController008_TranslateActionOrigin_params *params ); - -struct cppISteamController_SteamController008_GetControllerBindingRevision_params -{ - void *linux_side; - bool _ret; - uint64_t controllerHandle; - int32_t *pMajor; - int32_t *pMinor; -}; -extern void cppISteamController_SteamController008_GetControllerBindingRevision( struct cppISteamController_SteamController008_GetControllerBindingRevision_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamFriends_SteamFriends001.cpp b/lsteamclient/cppISteamFriends_SteamFriends001.cpp index 3a4f1e6d..96ccd754 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends001.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends001.cpp @@ -1,166 +1,219 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamFriends_SteamFriends001.h" -void cppISteamFriends_SteamFriends001_GetPersonaName( struct cppISteamFriends_SteamFriends001_GetPersonaName_params *params ) +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; params->_ret = iface->GetPersonaName( ); + return 0; } -void cppISteamFriends_SteamFriends001_SetPersonaName( struct cppISteamFriends_SteamFriends001_SetPersonaName_params *params ) +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; iface->SetPersonaName( params->pchPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends001_GetPersonaState( struct cppISteamFriends_SteamFriends001_GetPersonaState_params *params ) +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; params->_ret = iface->GetPersonaState( ); + return 0; } -void cppISteamFriends_SteamFriends001_SetPersonaState( struct cppISteamFriends_SteamFriends001_SetPersonaState_params *params ) +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; iface->SetPersonaState( params->ePersonaState ); + return 0; } -void cppISteamFriends_SteamFriends001_AddFriend( struct cppISteamFriends_SteamFriends001_AddFriend_params *params ) +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; params->_ret = iface->AddFriend( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends001_RemoveFriend( struct cppISteamFriends_SteamFriends001_RemoveFriend_params *params ) +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; params->_ret = iface->RemoveFriend( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends001_HasFriend( struct cppISteamFriends_SteamFriends001_HasFriend_params *params ) +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; params->_ret = iface->HasFriend( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends001_GetFriendRelationship( struct cppISteamFriends_SteamFriends001_GetFriendRelationship_params *params ) +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; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends001_GetFriendPersonaState( struct cppISteamFriends_SteamFriends001_GetFriendPersonaState_params *params ) +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; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlayed_params *params ) +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; params->_ret = iface->Deprecated_GetFriendGamePlayed( params->steamIDFriend, params->pnGameID, params->punGameIP, params->pusGamePort ); + return 0; } -void cppISteamFriends_SteamFriends001_GetFriendPersonaName( struct cppISteamFriends_SteamFriends001_GetFriendPersonaName_params *params ) +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; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends001_AddFriendByName( struct cppISteamFriends_SteamFriends001_AddFriendByName_params *params ) +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; params->_ret = iface->AddFriendByName( params->pchEmailOrAccountName ); + return 0; } -void cppISteamFriends_SteamFriends001_GetFriendCount( struct cppISteamFriends_SteamFriends001_GetFriendCount_params *params ) +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; params->_ret = iface->GetFriendCount( ); + return 0; } -void cppISteamFriends_SteamFriends001_GetFriendByIndex( struct cppISteamFriends_SteamFriends001_GetFriendByIndex_params *params ) +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; *params->_ret = iface->GetFriendByIndex( params->iFriend ); + return 0; } -void cppISteamFriends_SteamFriends001_SendMsgToFriend( struct cppISteamFriends_SteamFriends001_SendMsgToFriend_params *params ) +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; iface->SendMsgToFriend( params->steamIDFriend, params->eChatEntryType, params->pchMsgBody ); + return 0; } -void cppISteamFriends_SteamFriends001_SetFriendRegValue( struct cppISteamFriends_SteamFriends001_SetFriendRegValue_params *params ) +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; iface->SetFriendRegValue( params->steamIDFriend, params->pchKey, params->pchValue ); + return 0; } -void cppISteamFriends_SteamFriends001_GetFriendRegValue( struct cppISteamFriends_SteamFriends001_GetFriendRegValue_params *params ) +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; params->_ret = iface->GetFriendRegValue( params->steamIDFriend, params->pchKey ); + return 0; } -void cppISteamFriends_SteamFriends001_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends001_GetFriendPersonaNameHistory_params *params ) +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; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends001_GetChatMessage( struct cppISteamFriends_SteamFriends001_GetChatMessage_params *params ) +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; params->_ret = iface->GetChatMessage( params->steamIDFriend, params->iChatID, params->pvData, params->cubData, params->peChatEntryType ); + return 0; } -void cppISteamFriends_SteamFriends001_SendMsgToFriend_2( struct cppISteamFriends_SteamFriends001_SendMsgToFriend_2_params *params ) +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; params->_ret = iface->SendMsgToFriend( params->steamIDFriend, params->eChatEntryType, params->pvMsgBody, params->cubMsgBody ); + return 0; } -void cppISteamFriends_SteamFriends001_GetChatIDOfChatHistoryStart( struct cppISteamFriends_SteamFriends001_GetChatIDOfChatHistoryStart_params *params ) +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; params->_ret = iface->GetChatIDOfChatHistoryStart( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends001_SetChatHistoryStart( struct cppISteamFriends_SteamFriends001_SetChatHistoryStart_params *params ) +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; iface->SetChatHistoryStart( params->steamIDFriend, params->iChatID ); + return 0; } -void cppISteamFriends_SteamFriends001_ClearChatHistory( struct cppISteamFriends_SteamFriends001_ClearChatHistory_params *params ) +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; iface->ClearChatHistory( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends001_InviteFriendByEmail( struct cppISteamFriends_SteamFriends001_InviteFriendByEmail_params *params ) +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; params->_ret = iface->InviteFriendByEmail( params->pchEmailAccount ); + return 0; } -void cppISteamFriends_SteamFriends001_GetBlockedFriendCount( struct cppISteamFriends_SteamFriends001_GetBlockedFriendCount_params *params ) +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; params->_ret = iface->GetBlockedFriendCount( ); + return 0; } -void cppISteamFriends_SteamFriends001_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends001_GetFriendGamePlayed_params *params ) +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; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pulGameID, params->punGameIP, params->pusGamePort ); + return 0; } -void cppISteamFriends_SteamFriends001_GetFriendGamePlayed2( struct cppISteamFriends_SteamFriends001_GetFriendGamePlayed2_params *params ) +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; params->_ret = iface->GetFriendGamePlayed2( params->steamIDFriend, params->pulGameID, params->punGameIP, params->pusGamePort, params->pusQueryPort ); + return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends001.h b/lsteamclient/cppISteamFriends_SteamFriends001.h deleted file mode 100644 index 90cb2040..00000000 --- a/lsteamclient/cppISteamFriends_SteamFriends001.h +++ /dev/null @@ -1,242 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamFriends_SteamFriends001_GetPersonaName_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamFriends_SteamFriends001_GetPersonaName( struct cppISteamFriends_SteamFriends001_GetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends001_SetPersonaName_params -{ - void *linux_side; - const char *pchPersonaName; -}; -extern void cppISteamFriends_SteamFriends001_SetPersonaName( struct cppISteamFriends_SteamFriends001_SetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends001_GetPersonaState_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamFriends_SteamFriends001_GetPersonaState( struct cppISteamFriends_SteamFriends001_GetPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends001_SetPersonaState_params -{ - void *linux_side; - uint32_t ePersonaState; -}; -extern void cppISteamFriends_SteamFriends001_SetPersonaState( struct cppISteamFriends_SteamFriends001_SetPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends001_AddFriend_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends001_AddFriend( struct cppISteamFriends_SteamFriends001_AddFriend_params *params ); - -struct cppISteamFriends_SteamFriends001_RemoveFriend_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends001_RemoveFriend( struct cppISteamFriends_SteamFriends001_RemoveFriend_params *params ); - -struct cppISteamFriends_SteamFriends001_HasFriend_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends001_HasFriend( struct cppISteamFriends_SteamFriends001_HasFriend_params *params ); - -struct cppISteamFriends_SteamFriends001_GetFriendRelationship_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends001_GetFriendRelationship( struct cppISteamFriends_SteamFriends001_GetFriendRelationship_params *params ); - -struct cppISteamFriends_SteamFriends001_GetFriendPersonaState_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends001_GetFriendPersonaState( struct cppISteamFriends_SteamFriends001_GetFriendPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlayed_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - int32_t *pnGameID; - uint32_t *punGameIP; - uint16_t *pusGamePort; -}; -extern void cppISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlayed_params *params ); - -struct cppISteamFriends_SteamFriends001_GetFriendPersonaName_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends001_GetFriendPersonaName( struct cppISteamFriends_SteamFriends001_GetFriendPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends001_AddFriendByName_params -{ - void *linux_side; - int32_t _ret; - const char *pchEmailOrAccountName; -}; -extern void cppISteamFriends_SteamFriends001_AddFriendByName( struct cppISteamFriends_SteamFriends001_AddFriendByName_params *params ); - -struct cppISteamFriends_SteamFriends001_GetFriendCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamFriends_SteamFriends001_GetFriendCount( struct cppISteamFriends_SteamFriends001_GetFriendCount_params *params ); - -struct cppISteamFriends_SteamFriends001_GetFriendByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iFriend; -}; -extern void cppISteamFriends_SteamFriends001_GetFriendByIndex( struct cppISteamFriends_SteamFriends001_GetFriendByIndex_params *params ); - -struct cppISteamFriends_SteamFriends001_SendMsgToFriend_params -{ - void *linux_side; - CSteamID steamIDFriend; - uint32_t eChatEntryType; - const char *pchMsgBody; -}; -extern void cppISteamFriends_SteamFriends001_SendMsgToFriend( struct cppISteamFriends_SteamFriends001_SendMsgToFriend_params *params ); - -struct cppISteamFriends_SteamFriends001_SetFriendRegValue_params -{ - void *linux_side; - CSteamID steamIDFriend; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamFriends_SteamFriends001_SetFriendRegValue( struct cppISteamFriends_SteamFriends001_SetFriendRegValue_params *params ); - -struct cppISteamFriends_SteamFriends001_GetFriendRegValue_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - const char *pchKey; -}; -extern void cppISteamFriends_SteamFriends001_GetFriendRegValue( struct cppISteamFriends_SteamFriends001_GetFriendRegValue_params *params ); - -struct cppISteamFriends_SteamFriends001_GetFriendPersonaNameHistory_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - int32_t iPersonaName; -}; -extern void cppISteamFriends_SteamFriends001_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends001_GetFriendPersonaNameHistory_params *params ); - -struct cppISteamFriends_SteamFriends001_GetChatMessage_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; - int32_t iChatID; - void *pvData; - int32_t cubData; - uint32_t *peChatEntryType; -}; -extern void cppISteamFriends_SteamFriends001_GetChatMessage( struct cppISteamFriends_SteamFriends001_GetChatMessage_params *params ); - -struct cppISteamFriends_SteamFriends001_SendMsgToFriend_2_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - uint32_t eChatEntryType; - const void *pvMsgBody; - int32_t cubMsgBody; -}; -extern void cppISteamFriends_SteamFriends001_SendMsgToFriend_2( struct cppISteamFriends_SteamFriends001_SendMsgToFriend_2_params *params ); - -struct cppISteamFriends_SteamFriends001_GetChatIDOfChatHistoryStart_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends001_GetChatIDOfChatHistoryStart( struct cppISteamFriends_SteamFriends001_GetChatIDOfChatHistoryStart_params *params ); - -struct cppISteamFriends_SteamFriends001_SetChatHistoryStart_params -{ - void *linux_side; - CSteamID steamIDFriend; - int32_t iChatID; -}; -extern void cppISteamFriends_SteamFriends001_SetChatHistoryStart( struct cppISteamFriends_SteamFriends001_SetChatHistoryStart_params *params ); - -struct cppISteamFriends_SteamFriends001_ClearChatHistory_params -{ - void *linux_side; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends001_ClearChatHistory( struct cppISteamFriends_SteamFriends001_ClearChatHistory_params *params ); - -struct cppISteamFriends_SteamFriends001_InviteFriendByEmail_params -{ - void *linux_side; - bool _ret; - const char *pchEmailAccount; -}; -extern void cppISteamFriends_SteamFriends001_InviteFriendByEmail( struct cppISteamFriends_SteamFriends001_InviteFriendByEmail_params *params ); - -struct cppISteamFriends_SteamFriends001_GetBlockedFriendCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamFriends_SteamFriends001_GetBlockedFriendCount( struct cppISteamFriends_SteamFriends001_GetBlockedFriendCount_params *params ); - -struct cppISteamFriends_SteamFriends001_GetFriendGamePlayed_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - uint64_t *pulGameID; - uint32_t *punGameIP; - uint16_t *pusGamePort; -}; -extern void cppISteamFriends_SteamFriends001_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends001_GetFriendGamePlayed_params *params ); - -struct cppISteamFriends_SteamFriends001_GetFriendGamePlayed2_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - uint64_t *pulGameID; - uint32_t *punGameIP; - uint16_t *pusGamePort; - uint16_t *pusQueryPort; -}; -extern void cppISteamFriends_SteamFriends001_GetFriendGamePlayed2( struct cppISteamFriends_SteamFriends001_GetFriendGamePlayed2_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamFriends_SteamFriends002.cpp b/lsteamclient/cppISteamFriends_SteamFriends002.cpp index dfdcc1aa..637484fe 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends002.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends002.cpp @@ -1,184 +1,243 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamFriends_SteamFriends002.h" -void cppISteamFriends_SteamFriends002_GetPersonaName( struct cppISteamFriends_SteamFriends002_GetPersonaName_params *params ) +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; params->_ret = iface->GetPersonaName( ); + return 0; } -void cppISteamFriends_SteamFriends002_SetPersonaName( struct cppISteamFriends_SteamFriends002_SetPersonaName_params *params ) +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; iface->SetPersonaName( params->pchPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends002_GetPersonaState( struct cppISteamFriends_SteamFriends002_GetPersonaState_params *params ) +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; params->_ret = iface->GetPersonaState( ); + return 0; } -void cppISteamFriends_SteamFriends002_SetPersonaState( struct cppISteamFriends_SteamFriends002_SetPersonaState_params *params ) +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; iface->SetPersonaState( params->ePersonaState ); + return 0; } -void cppISteamFriends_SteamFriends002_GetFriendCount( struct cppISteamFriends_SteamFriends002_GetFriendCount_params *params ) +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; params->_ret = iface->GetFriendCount( params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends002_GetFriendByIndex( struct cppISteamFriends_SteamFriends002_GetFriendByIndex_params *params ) +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; *params->_ret = iface->GetFriendByIndex( params->iFriend, params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends002_GetFriendRelationship( struct cppISteamFriends_SteamFriends002_GetFriendRelationship_params *params ) +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; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends002_GetFriendPersonaState( struct cppISteamFriends_SteamFriends002_GetFriendPersonaState_params *params ) +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; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends002_GetFriendPersonaName( struct cppISteamFriends_SteamFriends002_GetFriendPersonaName_params *params ) +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; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends002_SetFriendRegValue( struct cppISteamFriends_SteamFriends002_SetFriendRegValue_params *params ) +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; iface->SetFriendRegValue( params->steamIDFriend, params->pchKey, params->pchValue ); + return 0; } -void cppISteamFriends_SteamFriends002_GetFriendRegValue( struct cppISteamFriends_SteamFriends002_GetFriendRegValue_params *params ) +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; params->_ret = iface->GetFriendRegValue( params->steamIDFriend, params->pchKey ); + return 0; } -void cppISteamFriends_SteamFriends002_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends002_GetFriendGamePlayed_params *params ) +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; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pulGameID, params->punGameIP, params->pusGamePort, params->pusQueryPort ); + return 0; } -void cppISteamFriends_SteamFriends002_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends002_GetFriendPersonaNameHistory_params *params ) +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; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends002_AddFriend( struct cppISteamFriends_SteamFriends002_AddFriend_params *params ) +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; params->_ret = iface->AddFriend( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends002_RemoveFriend( struct cppISteamFriends_SteamFriends002_RemoveFriend_params *params ) +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; params->_ret = iface->RemoveFriend( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends002_HasFriend( struct cppISteamFriends_SteamFriends002_HasFriend_params *params ) +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; params->_ret = iface->HasFriend( params->steamIDFriend, params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends002_AddFriendByName( struct cppISteamFriends_SteamFriends002_AddFriendByName_params *params ) +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; params->_ret = iface->AddFriendByName( params->pchEmailOrAccountName ); + return 0; } -void cppISteamFriends_SteamFriends002_InviteFriendByEmail( struct cppISteamFriends_SteamFriends002_InviteFriendByEmail_params *params ) +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; params->_ret = iface->InviteFriendByEmail( params->pchEmailAccount ); + return 0; } -void cppISteamFriends_SteamFriends002_GetChatMessage( struct cppISteamFriends_SteamFriends002_GetChatMessage_params *params ) +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; params->_ret = iface->GetChatMessage( params->steamIDFriend, params->iChatID, params->pvData, params->cubData, params->peChatEntryType ); + return 0; } -void cppISteamFriends_SteamFriends002_SendMsgToFriend( struct cppISteamFriends_SteamFriends002_SendMsgToFriend_params *params ) +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; params->_ret = iface->SendMsgToFriend( params->steamIDFriend, params->eChatEntryType, params->pvMsgBody, params->cubMsgBody ); + return 0; } -void cppISteamFriends_SteamFriends002_GetChatIDOfChatHistoryStart( struct cppISteamFriends_SteamFriends002_GetChatIDOfChatHistoryStart_params *params ) +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; params->_ret = iface->GetChatIDOfChatHistoryStart( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends002_SetChatHistoryStart( struct cppISteamFriends_SteamFriends002_SetChatHistoryStart_params *params ) +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; iface->SetChatHistoryStart( params->steamIDFriend, params->iChatID ); + return 0; } -void cppISteamFriends_SteamFriends002_ClearChatHistory( struct cppISteamFriends_SteamFriends002_ClearChatHistory_params *params ) +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; iface->ClearChatHistory( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends002_GetClanCount( struct cppISteamFriends_SteamFriends002_GetClanCount_params *params ) +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; params->_ret = iface->GetClanCount( ); + return 0; } -void cppISteamFriends_SteamFriends002_GetClanByIndex( struct cppISteamFriends_SteamFriends002_GetClanByIndex_params *params ) +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; *params->_ret = iface->GetClanByIndex( params->iClan ); + return 0; } -void cppISteamFriends_SteamFriends002_GetClanName( struct cppISteamFriends_SteamFriends002_GetClanName_params *params ) +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; params->_ret = iface->GetClanName( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends002_InviteFriendToClan( struct cppISteamFriends_SteamFriends002_InviteFriendToClan_params *params ) +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; params->_ret = iface->InviteFriendToClan( params->steamIDFriend, params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends002_AcknowledgeInviteToClan( struct cppISteamFriends_SteamFriends002_AcknowledgeInviteToClan_params *params ) +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; params->_ret = iface->AcknowledgeInviteToClan( params->steamIDClan, params->bAcceptOrDenyClanInvite ); + return 0; } -void cppISteamFriends_SteamFriends002_GetFriendCountFromSource( struct cppISteamFriends_SteamFriends002_GetFriendCountFromSource_params *params ) +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; params->_ret = iface->GetFriendCountFromSource( params->steamIDSource ); + return 0; } -void cppISteamFriends_SteamFriends002_GetFriendFromSourceByIndex( struct cppISteamFriends_SteamFriends002_GetFriendFromSourceByIndex_params *params ) +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; *params->_ret = iface->GetFriendFromSourceByIndex( params->steamIDSource, params->iFriend ); + return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends002.h b/lsteamclient/cppISteamFriends_SteamFriends002.h deleted file mode 100644 index 3d38c4b5..00000000 --- a/lsteamclient/cppISteamFriends_SteamFriends002.h +++ /dev/null @@ -1,265 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamFriends_SteamFriends002_GetPersonaName_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamFriends_SteamFriends002_GetPersonaName( struct cppISteamFriends_SteamFriends002_GetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends002_SetPersonaName_params -{ - void *linux_side; - const char *pchPersonaName; -}; -extern void cppISteamFriends_SteamFriends002_SetPersonaName( struct cppISteamFriends_SteamFriends002_SetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends002_GetPersonaState_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamFriends_SteamFriends002_GetPersonaState( struct cppISteamFriends_SteamFriends002_GetPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends002_SetPersonaState_params -{ - void *linux_side; - uint32_t ePersonaState; -}; -extern void cppISteamFriends_SteamFriends002_SetPersonaState( struct cppISteamFriends_SteamFriends002_SetPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends002_GetFriendCount_params -{ - void *linux_side; - int32_t _ret; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends002_GetFriendCount( struct cppISteamFriends_SteamFriends002_GetFriendCount_params *params ); - -struct cppISteamFriends_SteamFriends002_GetFriendByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iFriend; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends002_GetFriendByIndex( struct cppISteamFriends_SteamFriends002_GetFriendByIndex_params *params ); - -struct cppISteamFriends_SteamFriends002_GetFriendRelationship_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends002_GetFriendRelationship( struct cppISteamFriends_SteamFriends002_GetFriendRelationship_params *params ); - -struct cppISteamFriends_SteamFriends002_GetFriendPersonaState_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends002_GetFriendPersonaState( struct cppISteamFriends_SteamFriends002_GetFriendPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends002_GetFriendPersonaName_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends002_GetFriendPersonaName( struct cppISteamFriends_SteamFriends002_GetFriendPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends002_SetFriendRegValue_params -{ - void *linux_side; - CSteamID steamIDFriend; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamFriends_SteamFriends002_SetFriendRegValue( struct cppISteamFriends_SteamFriends002_SetFriendRegValue_params *params ); - -struct cppISteamFriends_SteamFriends002_GetFriendRegValue_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - const char *pchKey; -}; -extern void cppISteamFriends_SteamFriends002_GetFriendRegValue( struct cppISteamFriends_SteamFriends002_GetFriendRegValue_params *params ); - -struct cppISteamFriends_SteamFriends002_GetFriendGamePlayed_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - uint64_t *pulGameID; - uint32_t *punGameIP; - uint16_t *pusGamePort; - uint16_t *pusQueryPort; -}; -extern void cppISteamFriends_SteamFriends002_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends002_GetFriendGamePlayed_params *params ); - -struct cppISteamFriends_SteamFriends002_GetFriendPersonaNameHistory_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - int32_t iPersonaName; -}; -extern void cppISteamFriends_SteamFriends002_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends002_GetFriendPersonaNameHistory_params *params ); - -struct cppISteamFriends_SteamFriends002_AddFriend_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends002_AddFriend( struct cppISteamFriends_SteamFriends002_AddFriend_params *params ); - -struct cppISteamFriends_SteamFriends002_RemoveFriend_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends002_RemoveFriend( struct cppISteamFriends_SteamFriends002_RemoveFriend_params *params ); - -struct cppISteamFriends_SteamFriends002_HasFriend_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends002_HasFriend( struct cppISteamFriends_SteamFriends002_HasFriend_params *params ); - -struct cppISteamFriends_SteamFriends002_AddFriendByName_params -{ - void *linux_side; - int32_t _ret; - const char *pchEmailOrAccountName; -}; -extern void cppISteamFriends_SteamFriends002_AddFriendByName( struct cppISteamFriends_SteamFriends002_AddFriendByName_params *params ); - -struct cppISteamFriends_SteamFriends002_InviteFriendByEmail_params -{ - void *linux_side; - bool _ret; - const char *pchEmailAccount; -}; -extern void cppISteamFriends_SteamFriends002_InviteFriendByEmail( struct cppISteamFriends_SteamFriends002_InviteFriendByEmail_params *params ); - -struct cppISteamFriends_SteamFriends002_GetChatMessage_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; - int32_t iChatID; - void *pvData; - int32_t cubData; - uint32_t *peChatEntryType; -}; -extern void cppISteamFriends_SteamFriends002_GetChatMessage( struct cppISteamFriends_SteamFriends002_GetChatMessage_params *params ); - -struct cppISteamFriends_SteamFriends002_SendMsgToFriend_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - uint32_t eChatEntryType; - const void *pvMsgBody; - int32_t cubMsgBody; -}; -extern void cppISteamFriends_SteamFriends002_SendMsgToFriend( struct cppISteamFriends_SteamFriends002_SendMsgToFriend_params *params ); - -struct cppISteamFriends_SteamFriends002_GetChatIDOfChatHistoryStart_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends002_GetChatIDOfChatHistoryStart( struct cppISteamFriends_SteamFriends002_GetChatIDOfChatHistoryStart_params *params ); - -struct cppISteamFriends_SteamFriends002_SetChatHistoryStart_params -{ - void *linux_side; - CSteamID steamIDFriend; - int32_t iChatID; -}; -extern void cppISteamFriends_SteamFriends002_SetChatHistoryStart( struct cppISteamFriends_SteamFriends002_SetChatHistoryStart_params *params ); - -struct cppISteamFriends_SteamFriends002_ClearChatHistory_params -{ - void *linux_side; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends002_ClearChatHistory( struct cppISteamFriends_SteamFriends002_ClearChatHistory_params *params ); - -struct cppISteamFriends_SteamFriends002_GetClanCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamFriends_SteamFriends002_GetClanCount( struct cppISteamFriends_SteamFriends002_GetClanCount_params *params ); - -struct cppISteamFriends_SteamFriends002_GetClanByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iClan; -}; -extern void cppISteamFriends_SteamFriends002_GetClanByIndex( struct cppISteamFriends_SteamFriends002_GetClanByIndex_params *params ); - -struct cppISteamFriends_SteamFriends002_GetClanName_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends002_GetClanName( struct cppISteamFriends_SteamFriends002_GetClanName_params *params ); - -struct cppISteamFriends_SteamFriends002_InviteFriendToClan_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends002_InviteFriendToClan( struct cppISteamFriends_SteamFriends002_InviteFriendToClan_params *params ); - -struct cppISteamFriends_SteamFriends002_AcknowledgeInviteToClan_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClan; - bool bAcceptOrDenyClanInvite; -}; -extern void cppISteamFriends_SteamFriends002_AcknowledgeInviteToClan( struct cppISteamFriends_SteamFriends002_AcknowledgeInviteToClan_params *params ); - -struct cppISteamFriends_SteamFriends002_GetFriendCountFromSource_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDSource; -}; -extern void cppISteamFriends_SteamFriends002_GetFriendCountFromSource( struct cppISteamFriends_SteamFriends002_GetFriendCountFromSource_params *params ); - -struct cppISteamFriends_SteamFriends002_GetFriendFromSourceByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDSource; - int32_t iFriend; -}; -extern void cppISteamFriends_SteamFriends002_GetFriendFromSourceByIndex( struct cppISteamFriends_SteamFriends002_GetFriendFromSourceByIndex_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamFriends_SteamFriends003.cpp b/lsteamclient/cppISteamFriends_SteamFriends003.cpp index aa6df7f9..c764b982 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends003.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends003.cpp @@ -1,124 +1,163 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamFriends_SteamFriends003.h" -void cppISteamFriends_SteamFriends003_GetPersonaName( struct cppISteamFriends_SteamFriends003_GetPersonaName_params *params ) +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; params->_ret = iface->GetPersonaName( ); + return 0; } -void cppISteamFriends_SteamFriends003_SetPersonaName( struct cppISteamFriends_SteamFriends003_SetPersonaName_params *params ) +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; iface->SetPersonaName( params->pchPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends003_GetPersonaState( struct cppISteamFriends_SteamFriends003_GetPersonaState_params *params ) +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; params->_ret = iface->GetPersonaState( ); + return 0; } -void cppISteamFriends_SteamFriends003_GetFriendCount( struct cppISteamFriends_SteamFriends003_GetFriendCount_params *params ) +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; params->_ret = iface->GetFriendCount( params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends003_GetFriendByIndex( struct cppISteamFriends_SteamFriends003_GetFriendByIndex_params *params ) +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; *params->_ret = iface->GetFriendByIndex( params->iFriend, params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends003_GetFriendRelationship( struct cppISteamFriends_SteamFriends003_GetFriendRelationship_params *params ) +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; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends003_GetFriendPersonaState( struct cppISteamFriends_SteamFriends003_GetFriendPersonaState_params *params ) +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; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends003_GetFriendPersonaName( struct cppISteamFriends_SteamFriends003_GetFriendPersonaName_params *params ) +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; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends003_GetFriendAvatar( struct cppISteamFriends_SteamFriends003_GetFriendAvatar_params *params ) +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; params->_ret = iface->GetFriendAvatar( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends003_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends003_GetFriendGamePlayed_params *params ) +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; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pulGameID, params->punGameIP, params->pusGamePort, params->pusQueryPort ); + return 0; } -void cppISteamFriends_SteamFriends003_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends003_GetFriendPersonaNameHistory_params *params ) +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; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends003_HasFriend( struct cppISteamFriends_SteamFriends003_HasFriend_params *params ) +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; params->_ret = iface->HasFriend( params->steamIDFriend, params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends003_GetClanCount( struct cppISteamFriends_SteamFriends003_GetClanCount_params *params ) +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; params->_ret = iface->GetClanCount( ); + return 0; } -void cppISteamFriends_SteamFriends003_GetClanByIndex( struct cppISteamFriends_SteamFriends003_GetClanByIndex_params *params ) +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; *params->_ret = iface->GetClanByIndex( params->iClan ); + return 0; } -void cppISteamFriends_SteamFriends003_GetClanName( struct cppISteamFriends_SteamFriends003_GetClanName_params *params ) +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; params->_ret = iface->GetClanName( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends003_GetFriendCountFromSource( struct cppISteamFriends_SteamFriends003_GetFriendCountFromSource_params *params ) +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; params->_ret = iface->GetFriendCountFromSource( params->steamIDSource ); + return 0; } -void cppISteamFriends_SteamFriends003_GetFriendFromSourceByIndex( struct cppISteamFriends_SteamFriends003_GetFriendFromSourceByIndex_params *params ) +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; *params->_ret = iface->GetFriendFromSourceByIndex( params->steamIDSource, params->iFriend ); + return 0; } -void cppISteamFriends_SteamFriends003_IsUserInSource( struct cppISteamFriends_SteamFriends003_IsUserInSource_params *params ) +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; params->_ret = iface->IsUserInSource( params->steamIDUser, params->steamIDSource ); + return 0; } -void cppISteamFriends_SteamFriends003_SetInGameVoiceSpeaking( struct cppISteamFriends_SteamFriends003_SetInGameVoiceSpeaking_params *params ) +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; iface->SetInGameVoiceSpeaking( params->steamIDUser, params->bSpeaking ); + return 0; } -void cppISteamFriends_SteamFriends003_ActivateGameOverlay( struct cppISteamFriends_SteamFriends003_ActivateGameOverlay_params *params ) +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; iface->ActivateGameOverlay( params->pchDialog ); + return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends003.h b/lsteamclient/cppISteamFriends_SteamFriends003.h deleted file mode 100644 index b84fbc97..00000000 --- a/lsteamclient/cppISteamFriends_SteamFriends003.h +++ /dev/null @@ -1,176 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamFriends_SteamFriends003_GetPersonaName_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamFriends_SteamFriends003_GetPersonaName( struct cppISteamFriends_SteamFriends003_GetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends003_SetPersonaName_params -{ - void *linux_side; - const char *pchPersonaName; -}; -extern void cppISteamFriends_SteamFriends003_SetPersonaName( struct cppISteamFriends_SteamFriends003_SetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends003_GetPersonaState_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamFriends_SteamFriends003_GetPersonaState( struct cppISteamFriends_SteamFriends003_GetPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends003_GetFriendCount_params -{ - void *linux_side; - int32_t _ret; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends003_GetFriendCount( struct cppISteamFriends_SteamFriends003_GetFriendCount_params *params ); - -struct cppISteamFriends_SteamFriends003_GetFriendByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iFriend; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends003_GetFriendByIndex( struct cppISteamFriends_SteamFriends003_GetFriendByIndex_params *params ); - -struct cppISteamFriends_SteamFriends003_GetFriendRelationship_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends003_GetFriendRelationship( struct cppISteamFriends_SteamFriends003_GetFriendRelationship_params *params ); - -struct cppISteamFriends_SteamFriends003_GetFriendPersonaState_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends003_GetFriendPersonaState( struct cppISteamFriends_SteamFriends003_GetFriendPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends003_GetFriendPersonaName_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends003_GetFriendPersonaName( struct cppISteamFriends_SteamFriends003_GetFriendPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends003_GetFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends003_GetFriendAvatar( struct cppISteamFriends_SteamFriends003_GetFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends003_GetFriendGamePlayed_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - uint64_t *pulGameID; - uint32_t *punGameIP; - uint16_t *pusGamePort; - uint16_t *pusQueryPort; -}; -extern void cppISteamFriends_SteamFriends003_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends003_GetFriendGamePlayed_params *params ); - -struct cppISteamFriends_SteamFriends003_GetFriendPersonaNameHistory_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - int32_t iPersonaName; -}; -extern void cppISteamFriends_SteamFriends003_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends003_GetFriendPersonaNameHistory_params *params ); - -struct cppISteamFriends_SteamFriends003_HasFriend_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends003_HasFriend( struct cppISteamFriends_SteamFriends003_HasFriend_params *params ); - -struct cppISteamFriends_SteamFriends003_GetClanCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamFriends_SteamFriends003_GetClanCount( struct cppISteamFriends_SteamFriends003_GetClanCount_params *params ); - -struct cppISteamFriends_SteamFriends003_GetClanByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iClan; -}; -extern void cppISteamFriends_SteamFriends003_GetClanByIndex( struct cppISteamFriends_SteamFriends003_GetClanByIndex_params *params ); - -struct cppISteamFriends_SteamFriends003_GetClanName_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends003_GetClanName( struct cppISteamFriends_SteamFriends003_GetClanName_params *params ); - -struct cppISteamFriends_SteamFriends003_GetFriendCountFromSource_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDSource; -}; -extern void cppISteamFriends_SteamFriends003_GetFriendCountFromSource( struct cppISteamFriends_SteamFriends003_GetFriendCountFromSource_params *params ); - -struct cppISteamFriends_SteamFriends003_GetFriendFromSourceByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDSource; - int32_t iFriend; -}; -extern void cppISteamFriends_SteamFriends003_GetFriendFromSourceByIndex( struct cppISteamFriends_SteamFriends003_GetFriendFromSourceByIndex_params *params ); - -struct cppISteamFriends_SteamFriends003_IsUserInSource_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - CSteamID steamIDSource; -}; -extern void cppISteamFriends_SteamFriends003_IsUserInSource( struct cppISteamFriends_SteamFriends003_IsUserInSource_params *params ); - -struct cppISteamFriends_SteamFriends003_SetInGameVoiceSpeaking_params -{ - void *linux_side; - CSteamID steamIDUser; - bool bSpeaking; -}; -extern void cppISteamFriends_SteamFriends003_SetInGameVoiceSpeaking( struct cppISteamFriends_SteamFriends003_SetInGameVoiceSpeaking_params *params ); - -struct cppISteamFriends_SteamFriends003_ActivateGameOverlay_params -{ - void *linux_side; - const char *pchDialog; -}; -extern void cppISteamFriends_SteamFriends003_ActivateGameOverlay( struct cppISteamFriends_SteamFriends003_ActivateGameOverlay_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamFriends_SteamFriends004.cpp b/lsteamclient/cppISteamFriends_SteamFriends004.cpp index 9b98fca2..b6534949 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends004.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends004.cpp @@ -1,124 +1,163 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamFriends_SteamFriends004.h" -void cppISteamFriends_SteamFriends004_GetPersonaName( struct cppISteamFriends_SteamFriends004_GetPersonaName_params *params ) +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; params->_ret = iface->GetPersonaName( ); + return 0; } -void cppISteamFriends_SteamFriends004_SetPersonaName( struct cppISteamFriends_SteamFriends004_SetPersonaName_params *params ) +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; iface->SetPersonaName( params->pchPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends004_GetPersonaState( struct cppISteamFriends_SteamFriends004_GetPersonaState_params *params ) +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; params->_ret = iface->GetPersonaState( ); + return 0; } -void cppISteamFriends_SteamFriends004_GetFriendCount( struct cppISteamFriends_SteamFriends004_GetFriendCount_params *params ) +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; params->_ret = iface->GetFriendCount( params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends004_GetFriendByIndex( struct cppISteamFriends_SteamFriends004_GetFriendByIndex_params *params ) +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; *params->_ret = iface->GetFriendByIndex( params->iFriend, params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends004_GetFriendRelationship( struct cppISteamFriends_SteamFriends004_GetFriendRelationship_params *params ) +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; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends004_GetFriendPersonaState( struct cppISteamFriends_SteamFriends004_GetFriendPersonaState_params *params ) +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; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends004_GetFriendPersonaName( struct cppISteamFriends_SteamFriends004_GetFriendPersonaName_params *params ) +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; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends004_GetFriendAvatar( struct cppISteamFriends_SteamFriends004_GetFriendAvatar_params *params ) +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; params->_ret = iface->GetFriendAvatar( params->steamIDFriend, params->eAvatarSize ); + return 0; } -void cppISteamFriends_SteamFriends004_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends004_GetFriendGamePlayed_params *params ) +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; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pulGameID, params->punGameIP, params->pusGamePort, params->pusQueryPort ); + return 0; } -void cppISteamFriends_SteamFriends004_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends004_GetFriendPersonaNameHistory_params *params ) +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; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends004_HasFriend( struct cppISteamFriends_SteamFriends004_HasFriend_params *params ) +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; params->_ret = iface->HasFriend( params->steamIDFriend, params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends004_GetClanCount( struct cppISteamFriends_SteamFriends004_GetClanCount_params *params ) +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; params->_ret = iface->GetClanCount( ); + return 0; } -void cppISteamFriends_SteamFriends004_GetClanByIndex( struct cppISteamFriends_SteamFriends004_GetClanByIndex_params *params ) +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; *params->_ret = iface->GetClanByIndex( params->iClan ); + return 0; } -void cppISteamFriends_SteamFriends004_GetClanName( struct cppISteamFriends_SteamFriends004_GetClanName_params *params ) +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; params->_ret = iface->GetClanName( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends004_GetFriendCountFromSource( struct cppISteamFriends_SteamFriends004_GetFriendCountFromSource_params *params ) +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; params->_ret = iface->GetFriendCountFromSource( params->steamIDSource ); + return 0; } -void cppISteamFriends_SteamFriends004_GetFriendFromSourceByIndex( struct cppISteamFriends_SteamFriends004_GetFriendFromSourceByIndex_params *params ) +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; *params->_ret = iface->GetFriendFromSourceByIndex( params->steamIDSource, params->iFriend ); + return 0; } -void cppISteamFriends_SteamFriends004_IsUserInSource( struct cppISteamFriends_SteamFriends004_IsUserInSource_params *params ) +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; params->_ret = iface->IsUserInSource( params->steamIDUser, params->steamIDSource ); + return 0; } -void cppISteamFriends_SteamFriends004_SetInGameVoiceSpeaking( struct cppISteamFriends_SteamFriends004_SetInGameVoiceSpeaking_params *params ) +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; iface->SetInGameVoiceSpeaking( params->steamIDUser, params->bSpeaking ); + return 0; } -void cppISteamFriends_SteamFriends004_ActivateGameOverlay( struct cppISteamFriends_SteamFriends004_ActivateGameOverlay_params *params ) +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; iface->ActivateGameOverlay( params->pchDialog ); + return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends004.h b/lsteamclient/cppISteamFriends_SteamFriends004.h deleted file mode 100644 index 2e3ad0f3..00000000 --- a/lsteamclient/cppISteamFriends_SteamFriends004.h +++ /dev/null @@ -1,177 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamFriends_SteamFriends004_GetPersonaName_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamFriends_SteamFriends004_GetPersonaName( struct cppISteamFriends_SteamFriends004_GetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends004_SetPersonaName_params -{ - void *linux_side; - const char *pchPersonaName; -}; -extern void cppISteamFriends_SteamFriends004_SetPersonaName( struct cppISteamFriends_SteamFriends004_SetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends004_GetPersonaState_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamFriends_SteamFriends004_GetPersonaState( struct cppISteamFriends_SteamFriends004_GetPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends004_GetFriendCount_params -{ - void *linux_side; - int32_t _ret; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends004_GetFriendCount( struct cppISteamFriends_SteamFriends004_GetFriendCount_params *params ); - -struct cppISteamFriends_SteamFriends004_GetFriendByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iFriend; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends004_GetFriendByIndex( struct cppISteamFriends_SteamFriends004_GetFriendByIndex_params *params ); - -struct cppISteamFriends_SteamFriends004_GetFriendRelationship_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends004_GetFriendRelationship( struct cppISteamFriends_SteamFriends004_GetFriendRelationship_params *params ); - -struct cppISteamFriends_SteamFriends004_GetFriendPersonaState_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends004_GetFriendPersonaState( struct cppISteamFriends_SteamFriends004_GetFriendPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends004_GetFriendPersonaName_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends004_GetFriendPersonaName( struct cppISteamFriends_SteamFriends004_GetFriendPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends004_GetFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; - int32_t eAvatarSize; -}; -extern void cppISteamFriends_SteamFriends004_GetFriendAvatar( struct cppISteamFriends_SteamFriends004_GetFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends004_GetFriendGamePlayed_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - uint64_t *pulGameID; - uint32_t *punGameIP; - uint16_t *pusGamePort; - uint16_t *pusQueryPort; -}; -extern void cppISteamFriends_SteamFriends004_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends004_GetFriendGamePlayed_params *params ); - -struct cppISteamFriends_SteamFriends004_GetFriendPersonaNameHistory_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - int32_t iPersonaName; -}; -extern void cppISteamFriends_SteamFriends004_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends004_GetFriendPersonaNameHistory_params *params ); - -struct cppISteamFriends_SteamFriends004_HasFriend_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends004_HasFriend( struct cppISteamFriends_SteamFriends004_HasFriend_params *params ); - -struct cppISteamFriends_SteamFriends004_GetClanCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamFriends_SteamFriends004_GetClanCount( struct cppISteamFriends_SteamFriends004_GetClanCount_params *params ); - -struct cppISteamFriends_SteamFriends004_GetClanByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iClan; -}; -extern void cppISteamFriends_SteamFriends004_GetClanByIndex( struct cppISteamFriends_SteamFriends004_GetClanByIndex_params *params ); - -struct cppISteamFriends_SteamFriends004_GetClanName_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends004_GetClanName( struct cppISteamFriends_SteamFriends004_GetClanName_params *params ); - -struct cppISteamFriends_SteamFriends004_GetFriendCountFromSource_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDSource; -}; -extern void cppISteamFriends_SteamFriends004_GetFriendCountFromSource( struct cppISteamFriends_SteamFriends004_GetFriendCountFromSource_params *params ); - -struct cppISteamFriends_SteamFriends004_GetFriendFromSourceByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDSource; - int32_t iFriend; -}; -extern void cppISteamFriends_SteamFriends004_GetFriendFromSourceByIndex( struct cppISteamFriends_SteamFriends004_GetFriendFromSourceByIndex_params *params ); - -struct cppISteamFriends_SteamFriends004_IsUserInSource_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - CSteamID steamIDSource; -}; -extern void cppISteamFriends_SteamFriends004_IsUserInSource( struct cppISteamFriends_SteamFriends004_IsUserInSource_params *params ); - -struct cppISteamFriends_SteamFriends004_SetInGameVoiceSpeaking_params -{ - void *linux_side; - CSteamID steamIDUser; - bool bSpeaking; -}; -extern void cppISteamFriends_SteamFriends004_SetInGameVoiceSpeaking( struct cppISteamFriends_SteamFriends004_SetInGameVoiceSpeaking_params *params ); - -struct cppISteamFriends_SteamFriends004_ActivateGameOverlay_params -{ - void *linux_side; - const char *pchDialog; -}; -extern void cppISteamFriends_SteamFriends004_ActivateGameOverlay( struct cppISteamFriends_SteamFriends004_ActivateGameOverlay_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamFriends_SteamFriends005.cpp b/lsteamclient/cppISteamFriends_SteamFriends005.cpp index 00643863..132d52e4 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends005.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends005.cpp @@ -1,148 +1,195 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamFriends_SteamFriends005.h" -void cppISteamFriends_SteamFriends005_GetPersonaName( struct cppISteamFriends_SteamFriends005_GetPersonaName_params *params ) +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; params->_ret = iface->GetPersonaName( ); + return 0; } -void cppISteamFriends_SteamFriends005_SetPersonaName( struct cppISteamFriends_SteamFriends005_SetPersonaName_params *params ) +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; iface->SetPersonaName( params->pchPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends005_GetPersonaState( struct cppISteamFriends_SteamFriends005_GetPersonaState_params *params ) +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; params->_ret = iface->GetPersonaState( ); + return 0; } -void cppISteamFriends_SteamFriends005_GetFriendCount( struct cppISteamFriends_SteamFriends005_GetFriendCount_params *params ) +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; params->_ret = iface->GetFriendCount( params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends005_GetFriendByIndex( struct cppISteamFriends_SteamFriends005_GetFriendByIndex_params *params ) +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; *params->_ret = iface->GetFriendByIndex( params->iFriend, params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends005_GetFriendRelationship( struct cppISteamFriends_SteamFriends005_GetFriendRelationship_params *params ) +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; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends005_GetFriendPersonaState( struct cppISteamFriends_SteamFriends005_GetFriendPersonaState_params *params ) +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; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends005_GetFriendPersonaName( struct cppISteamFriends_SteamFriends005_GetFriendPersonaName_params *params ) +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; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends005_GetFriendAvatar( struct cppISteamFriends_SteamFriends005_GetFriendAvatar_params *params ) +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; params->_ret = iface->GetFriendAvatar( params->steamIDFriend, params->eAvatarSize ); + return 0; } -void cppISteamFriends_SteamFriends005_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends005_GetFriendGamePlayed_params *params ) +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; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pFriendGameInfo ); + return 0; } -void cppISteamFriends_SteamFriends005_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends005_GetFriendPersonaNameHistory_params *params ) +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; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends005_HasFriend( struct cppISteamFriends_SteamFriends005_HasFriend_params *params ) +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; params->_ret = iface->HasFriend( params->steamIDFriend, params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends005_GetClanCount( struct cppISteamFriends_SteamFriends005_GetClanCount_params *params ) +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; params->_ret = iface->GetClanCount( ); + return 0; } -void cppISteamFriends_SteamFriends005_GetClanByIndex( struct cppISteamFriends_SteamFriends005_GetClanByIndex_params *params ) +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; *params->_ret = iface->GetClanByIndex( params->iClan ); + return 0; } -void cppISteamFriends_SteamFriends005_GetClanName( struct cppISteamFriends_SteamFriends005_GetClanName_params *params ) +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; params->_ret = iface->GetClanName( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends005_GetFriendCountFromSource( struct cppISteamFriends_SteamFriends005_GetFriendCountFromSource_params *params ) +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; params->_ret = iface->GetFriendCountFromSource( params->steamIDSource ); + return 0; } -void cppISteamFriends_SteamFriends005_GetFriendFromSourceByIndex( struct cppISteamFriends_SteamFriends005_GetFriendFromSourceByIndex_params *params ) +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; *params->_ret = iface->GetFriendFromSourceByIndex( params->steamIDSource, params->iFriend ); + return 0; } -void cppISteamFriends_SteamFriends005_IsUserInSource( struct cppISteamFriends_SteamFriends005_IsUserInSource_params *params ) +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; params->_ret = iface->IsUserInSource( params->steamIDUser, params->steamIDSource ); + return 0; } -void cppISteamFriends_SteamFriends005_SetInGameVoiceSpeaking( struct cppISteamFriends_SteamFriends005_SetInGameVoiceSpeaking_params *params ) +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; iface->SetInGameVoiceSpeaking( params->steamIDUser, params->bSpeaking ); + return 0; } -void cppISteamFriends_SteamFriends005_ActivateGameOverlay( struct cppISteamFriends_SteamFriends005_ActivateGameOverlay_params *params ) +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; iface->ActivateGameOverlay( params->pchDialog ); + return 0; } -void cppISteamFriends_SteamFriends005_ActivateGameOverlayToUser( struct cppISteamFriends_SteamFriends005_ActivateGameOverlayToUser_params *params ) +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; iface->ActivateGameOverlayToUser( params->pchDialog, params->steamID ); + return 0; } -void cppISteamFriends_SteamFriends005_ActivateGameOverlayToWebPage( struct cppISteamFriends_SteamFriends005_ActivateGameOverlayToWebPage_params *params ) +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; iface->ActivateGameOverlayToWebPage( params->pchURL ); + return 0; } -void cppISteamFriends_SteamFriends005_ActivateGameOverlayToStore( struct cppISteamFriends_SteamFriends005_ActivateGameOverlayToStore_params *params ) +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; iface->ActivateGameOverlayToStore( params->nAppID ); + return 0; } -void cppISteamFriends_SteamFriends005_SetPlayedWith( struct cppISteamFriends_SteamFriends005_SetPlayedWith_params *params ) +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; iface->SetPlayedWith( params->steamIDUserPlayedWith ); + return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends005.h b/lsteamclient/cppISteamFriends_SteamFriends005.h deleted file mode 100644 index 971a4fd9..00000000 --- a/lsteamclient/cppISteamFriends_SteamFriends005.h +++ /dev/null @@ -1,203 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamFriends_SteamFriends005_GetPersonaName_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamFriends_SteamFriends005_GetPersonaName( struct cppISteamFriends_SteamFriends005_GetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends005_SetPersonaName_params -{ - void *linux_side; - const char *pchPersonaName; -}; -extern void cppISteamFriends_SteamFriends005_SetPersonaName( struct cppISteamFriends_SteamFriends005_SetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends005_GetPersonaState_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamFriends_SteamFriends005_GetPersonaState( struct cppISteamFriends_SteamFriends005_GetPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends005_GetFriendCount_params -{ - void *linux_side; - int32_t _ret; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends005_GetFriendCount( struct cppISteamFriends_SteamFriends005_GetFriendCount_params *params ); - -struct cppISteamFriends_SteamFriends005_GetFriendByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iFriend; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends005_GetFriendByIndex( struct cppISteamFriends_SteamFriends005_GetFriendByIndex_params *params ); - -struct cppISteamFriends_SteamFriends005_GetFriendRelationship_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends005_GetFriendRelationship( struct cppISteamFriends_SteamFriends005_GetFriendRelationship_params *params ); - -struct cppISteamFriends_SteamFriends005_GetFriendPersonaState_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends005_GetFriendPersonaState( struct cppISteamFriends_SteamFriends005_GetFriendPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends005_GetFriendPersonaName_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends005_GetFriendPersonaName( struct cppISteamFriends_SteamFriends005_GetFriendPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends005_GetFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; - int32_t eAvatarSize; -}; -extern void cppISteamFriends_SteamFriends005_GetFriendAvatar( struct cppISteamFriends_SteamFriends005_GetFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends005_GetFriendGamePlayed_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - FriendGameInfo_t *pFriendGameInfo; -}; -extern void cppISteamFriends_SteamFriends005_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends005_GetFriendGamePlayed_params *params ); - -struct cppISteamFriends_SteamFriends005_GetFriendPersonaNameHistory_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - int32_t iPersonaName; -}; -extern void cppISteamFriends_SteamFriends005_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends005_GetFriendPersonaNameHistory_params *params ); - -struct cppISteamFriends_SteamFriends005_HasFriend_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends005_HasFriend( struct cppISteamFriends_SteamFriends005_HasFriend_params *params ); - -struct cppISteamFriends_SteamFriends005_GetClanCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamFriends_SteamFriends005_GetClanCount( struct cppISteamFriends_SteamFriends005_GetClanCount_params *params ); - -struct cppISteamFriends_SteamFriends005_GetClanByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iClan; -}; -extern void cppISteamFriends_SteamFriends005_GetClanByIndex( struct cppISteamFriends_SteamFriends005_GetClanByIndex_params *params ); - -struct cppISteamFriends_SteamFriends005_GetClanName_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends005_GetClanName( struct cppISteamFriends_SteamFriends005_GetClanName_params *params ); - -struct cppISteamFriends_SteamFriends005_GetFriendCountFromSource_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDSource; -}; -extern void cppISteamFriends_SteamFriends005_GetFriendCountFromSource( struct cppISteamFriends_SteamFriends005_GetFriendCountFromSource_params *params ); - -struct cppISteamFriends_SteamFriends005_GetFriendFromSourceByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDSource; - int32_t iFriend; -}; -extern void cppISteamFriends_SteamFriends005_GetFriendFromSourceByIndex( struct cppISteamFriends_SteamFriends005_GetFriendFromSourceByIndex_params *params ); - -struct cppISteamFriends_SteamFriends005_IsUserInSource_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - CSteamID steamIDSource; -}; -extern void cppISteamFriends_SteamFriends005_IsUserInSource( struct cppISteamFriends_SteamFriends005_IsUserInSource_params *params ); - -struct cppISteamFriends_SteamFriends005_SetInGameVoiceSpeaking_params -{ - void *linux_side; - CSteamID steamIDUser; - bool bSpeaking; -}; -extern void cppISteamFriends_SteamFriends005_SetInGameVoiceSpeaking( struct cppISteamFriends_SteamFriends005_SetInGameVoiceSpeaking_params *params ); - -struct cppISteamFriends_SteamFriends005_ActivateGameOverlay_params -{ - void *linux_side; - const char *pchDialog; -}; -extern void cppISteamFriends_SteamFriends005_ActivateGameOverlay( struct cppISteamFriends_SteamFriends005_ActivateGameOverlay_params *params ); - -struct cppISteamFriends_SteamFriends005_ActivateGameOverlayToUser_params -{ - void *linux_side; - const char *pchDialog; - CSteamID steamID; -}; -extern void cppISteamFriends_SteamFriends005_ActivateGameOverlayToUser( struct cppISteamFriends_SteamFriends005_ActivateGameOverlayToUser_params *params ); - -struct cppISteamFriends_SteamFriends005_ActivateGameOverlayToWebPage_params -{ - void *linux_side; - const char *pchURL; -}; -extern void cppISteamFriends_SteamFriends005_ActivateGameOverlayToWebPage( struct cppISteamFriends_SteamFriends005_ActivateGameOverlayToWebPage_params *params ); - -struct cppISteamFriends_SteamFriends005_ActivateGameOverlayToStore_params -{ - void *linux_side; - uint32_t nAppID; -}; -extern void cppISteamFriends_SteamFriends005_ActivateGameOverlayToStore( struct cppISteamFriends_SteamFriends005_ActivateGameOverlayToStore_params *params ); - -struct cppISteamFriends_SteamFriends005_SetPlayedWith_params -{ - void *linux_side; - CSteamID steamIDUserPlayedWith; -}; -extern void cppISteamFriends_SteamFriends005_SetPlayedWith( struct cppISteamFriends_SteamFriends005_SetPlayedWith_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamFriends_SteamFriends006.cpp b/lsteamclient/cppISteamFriends_SteamFriends006.cpp index e39edfdc..50451baf 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends006.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends006.cpp @@ -1,160 +1,211 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamFriends_SteamFriends006.h" -void cppISteamFriends_SteamFriends006_GetPersonaName( struct cppISteamFriends_SteamFriends006_GetPersonaName_params *params ) +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; params->_ret = iface->GetPersonaName( ); + return 0; } -void cppISteamFriends_SteamFriends006_SetPersonaName( struct cppISteamFriends_SteamFriends006_SetPersonaName_params *params ) +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; iface->SetPersonaName( params->pchPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends006_GetPersonaState( struct cppISteamFriends_SteamFriends006_GetPersonaState_params *params ) +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; params->_ret = iface->GetPersonaState( ); + return 0; } -void cppISteamFriends_SteamFriends006_GetFriendCount( struct cppISteamFriends_SteamFriends006_GetFriendCount_params *params ) +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; params->_ret = iface->GetFriendCount( params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends006_GetFriendByIndex( struct cppISteamFriends_SteamFriends006_GetFriendByIndex_params *params ) +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; *params->_ret = iface->GetFriendByIndex( params->iFriend, params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends006_GetFriendRelationship( struct cppISteamFriends_SteamFriends006_GetFriendRelationship_params *params ) +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; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends006_GetFriendPersonaState( struct cppISteamFriends_SteamFriends006_GetFriendPersonaState_params *params ) +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; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends006_GetFriendPersonaName( struct cppISteamFriends_SteamFriends006_GetFriendPersonaName_params *params ) +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; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends006_GetFriendAvatar( struct cppISteamFriends_SteamFriends006_GetFriendAvatar_params *params ) +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; params->_ret = iface->GetFriendAvatar( params->steamIDFriend, params->eAvatarSize ); + return 0; } -void cppISteamFriends_SteamFriends006_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends006_GetFriendGamePlayed_params *params ) +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; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pFriendGameInfo ); + return 0; } -void cppISteamFriends_SteamFriends006_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends006_GetFriendPersonaNameHistory_params *params ) +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; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends006_HasFriend( struct cppISteamFriends_SteamFriends006_HasFriend_params *params ) +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; params->_ret = iface->HasFriend( params->steamIDFriend, params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends006_GetClanCount( struct cppISteamFriends_SteamFriends006_GetClanCount_params *params ) +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; params->_ret = iface->GetClanCount( ); + return 0; } -void cppISteamFriends_SteamFriends006_GetClanByIndex( struct cppISteamFriends_SteamFriends006_GetClanByIndex_params *params ) +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; *params->_ret = iface->GetClanByIndex( params->iClan ); + return 0; } -void cppISteamFriends_SteamFriends006_GetClanName( struct cppISteamFriends_SteamFriends006_GetClanName_params *params ) +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; params->_ret = iface->GetClanName( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends006_GetClanTag( struct cppISteamFriends_SteamFriends006_GetClanTag_params *params ) +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; params->_ret = iface->GetClanTag( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends006_GetFriendCountFromSource( struct cppISteamFriends_SteamFriends006_GetFriendCountFromSource_params *params ) +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; params->_ret = iface->GetFriendCountFromSource( params->steamIDSource ); + return 0; } -void cppISteamFriends_SteamFriends006_GetFriendFromSourceByIndex( struct cppISteamFriends_SteamFriends006_GetFriendFromSourceByIndex_params *params ) +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; *params->_ret = iface->GetFriendFromSourceByIndex( params->steamIDSource, params->iFriend ); + return 0; } -void cppISteamFriends_SteamFriends006_IsUserInSource( struct cppISteamFriends_SteamFriends006_IsUserInSource_params *params ) +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; params->_ret = iface->IsUserInSource( params->steamIDUser, params->steamIDSource ); + return 0; } -void cppISteamFriends_SteamFriends006_SetInGameVoiceSpeaking( struct cppISteamFriends_SteamFriends006_SetInGameVoiceSpeaking_params *params ) +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; iface->SetInGameVoiceSpeaking( params->steamIDUser, params->bSpeaking ); + return 0; } -void cppISteamFriends_SteamFriends006_ActivateGameOverlay( struct cppISteamFriends_SteamFriends006_ActivateGameOverlay_params *params ) +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; iface->ActivateGameOverlay( params->pchDialog ); + return 0; } -void cppISteamFriends_SteamFriends006_ActivateGameOverlayToUser( struct cppISteamFriends_SteamFriends006_ActivateGameOverlayToUser_params *params ) +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; iface->ActivateGameOverlayToUser( params->pchDialog, params->steamID ); + return 0; } -void cppISteamFriends_SteamFriends006_ActivateGameOverlayToWebPage( struct cppISteamFriends_SteamFriends006_ActivateGameOverlayToWebPage_params *params ) +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; iface->ActivateGameOverlayToWebPage( params->pchURL ); + return 0; } -void cppISteamFriends_SteamFriends006_ActivateGameOverlayToStore( struct cppISteamFriends_SteamFriends006_ActivateGameOverlayToStore_params *params ) +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; iface->ActivateGameOverlayToStore( params->nAppID ); + return 0; } -void cppISteamFriends_SteamFriends006_SetPlayedWith( struct cppISteamFriends_SteamFriends006_SetPlayedWith_params *params ) +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; iface->SetPlayedWith( params->steamIDUserPlayedWith ); + return 0; } -void cppISteamFriends_SteamFriends006_ActivateGameOverlayInviteDialog( struct cppISteamFriends_SteamFriends006_ActivateGameOverlayInviteDialog_params *params ) +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; iface->ActivateGameOverlayInviteDialog( params->steamIDLobby ); + return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends006.h b/lsteamclient/cppISteamFriends_SteamFriends006.h deleted file mode 100644 index 73c7105a..00000000 --- a/lsteamclient/cppISteamFriends_SteamFriends006.h +++ /dev/null @@ -1,218 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamFriends_SteamFriends006_GetPersonaName_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamFriends_SteamFriends006_GetPersonaName( struct cppISteamFriends_SteamFriends006_GetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends006_SetPersonaName_params -{ - void *linux_side; - const char *pchPersonaName; -}; -extern void cppISteamFriends_SteamFriends006_SetPersonaName( struct cppISteamFriends_SteamFriends006_SetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends006_GetPersonaState_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamFriends_SteamFriends006_GetPersonaState( struct cppISteamFriends_SteamFriends006_GetPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends006_GetFriendCount_params -{ - void *linux_side; - int32_t _ret; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends006_GetFriendCount( struct cppISteamFriends_SteamFriends006_GetFriendCount_params *params ); - -struct cppISteamFriends_SteamFriends006_GetFriendByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iFriend; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends006_GetFriendByIndex( struct cppISteamFriends_SteamFriends006_GetFriendByIndex_params *params ); - -struct cppISteamFriends_SteamFriends006_GetFriendRelationship_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends006_GetFriendRelationship( struct cppISteamFriends_SteamFriends006_GetFriendRelationship_params *params ); - -struct cppISteamFriends_SteamFriends006_GetFriendPersonaState_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends006_GetFriendPersonaState( struct cppISteamFriends_SteamFriends006_GetFriendPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends006_GetFriendPersonaName_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends006_GetFriendPersonaName( struct cppISteamFriends_SteamFriends006_GetFriendPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends006_GetFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; - int32_t eAvatarSize; -}; -extern void cppISteamFriends_SteamFriends006_GetFriendAvatar( struct cppISteamFriends_SteamFriends006_GetFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends006_GetFriendGamePlayed_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - FriendGameInfo_t *pFriendGameInfo; -}; -extern void cppISteamFriends_SteamFriends006_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends006_GetFriendGamePlayed_params *params ); - -struct cppISteamFriends_SteamFriends006_GetFriendPersonaNameHistory_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - int32_t iPersonaName; -}; -extern void cppISteamFriends_SteamFriends006_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends006_GetFriendPersonaNameHistory_params *params ); - -struct cppISteamFriends_SteamFriends006_HasFriend_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends006_HasFriend( struct cppISteamFriends_SteamFriends006_HasFriend_params *params ); - -struct cppISteamFriends_SteamFriends006_GetClanCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamFriends_SteamFriends006_GetClanCount( struct cppISteamFriends_SteamFriends006_GetClanCount_params *params ); - -struct cppISteamFriends_SteamFriends006_GetClanByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iClan; -}; -extern void cppISteamFriends_SteamFriends006_GetClanByIndex( struct cppISteamFriends_SteamFriends006_GetClanByIndex_params *params ); - -struct cppISteamFriends_SteamFriends006_GetClanName_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends006_GetClanName( struct cppISteamFriends_SteamFriends006_GetClanName_params *params ); - -struct cppISteamFriends_SteamFriends006_GetClanTag_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends006_GetClanTag( struct cppISteamFriends_SteamFriends006_GetClanTag_params *params ); - -struct cppISteamFriends_SteamFriends006_GetFriendCountFromSource_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDSource; -}; -extern void cppISteamFriends_SteamFriends006_GetFriendCountFromSource( struct cppISteamFriends_SteamFriends006_GetFriendCountFromSource_params *params ); - -struct cppISteamFriends_SteamFriends006_GetFriendFromSourceByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDSource; - int32_t iFriend; -}; -extern void cppISteamFriends_SteamFriends006_GetFriendFromSourceByIndex( struct cppISteamFriends_SteamFriends006_GetFriendFromSourceByIndex_params *params ); - -struct cppISteamFriends_SteamFriends006_IsUserInSource_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - CSteamID steamIDSource; -}; -extern void cppISteamFriends_SteamFriends006_IsUserInSource( struct cppISteamFriends_SteamFriends006_IsUserInSource_params *params ); - -struct cppISteamFriends_SteamFriends006_SetInGameVoiceSpeaking_params -{ - void *linux_side; - CSteamID steamIDUser; - bool bSpeaking; -}; -extern void cppISteamFriends_SteamFriends006_SetInGameVoiceSpeaking( struct cppISteamFriends_SteamFriends006_SetInGameVoiceSpeaking_params *params ); - -struct cppISteamFriends_SteamFriends006_ActivateGameOverlay_params -{ - void *linux_side; - const char *pchDialog; -}; -extern void cppISteamFriends_SteamFriends006_ActivateGameOverlay( struct cppISteamFriends_SteamFriends006_ActivateGameOverlay_params *params ); - -struct cppISteamFriends_SteamFriends006_ActivateGameOverlayToUser_params -{ - void *linux_side; - const char *pchDialog; - CSteamID steamID; -}; -extern void cppISteamFriends_SteamFriends006_ActivateGameOverlayToUser( struct cppISteamFriends_SteamFriends006_ActivateGameOverlayToUser_params *params ); - -struct cppISteamFriends_SteamFriends006_ActivateGameOverlayToWebPage_params -{ - void *linux_side; - const char *pchURL; -}; -extern void cppISteamFriends_SteamFriends006_ActivateGameOverlayToWebPage( struct cppISteamFriends_SteamFriends006_ActivateGameOverlayToWebPage_params *params ); - -struct cppISteamFriends_SteamFriends006_ActivateGameOverlayToStore_params -{ - void *linux_side; - uint32_t nAppID; -}; -extern void cppISteamFriends_SteamFriends006_ActivateGameOverlayToStore( struct cppISteamFriends_SteamFriends006_ActivateGameOverlayToStore_params *params ); - -struct cppISteamFriends_SteamFriends006_SetPlayedWith_params -{ - void *linux_side; - CSteamID steamIDUserPlayedWith; -}; -extern void cppISteamFriends_SteamFriends006_SetPlayedWith( struct cppISteamFriends_SteamFriends006_SetPlayedWith_params *params ); - -struct cppISteamFriends_SteamFriends006_ActivateGameOverlayInviteDialog_params -{ - void *linux_side; - CSteamID steamIDLobby; -}; -extern void cppISteamFriends_SteamFriends006_ActivateGameOverlayInviteDialog( struct cppISteamFriends_SteamFriends006_ActivateGameOverlayInviteDialog_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamFriends_SteamFriends007.cpp b/lsteamclient/cppISteamFriends_SteamFriends007.cpp index 978cb1cb..d809c513 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends007.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends007.cpp @@ -1,172 +1,227 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamFriends_SteamFriends007.h" -void cppISteamFriends_SteamFriends007_GetPersonaName( struct cppISteamFriends_SteamFriends007_GetPersonaName_params *params ) +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; params->_ret = iface->GetPersonaName( ); + return 0; } -void cppISteamFriends_SteamFriends007_SetPersonaName( struct cppISteamFriends_SteamFriends007_SetPersonaName_params *params ) +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; iface->SetPersonaName( params->pchPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends007_GetPersonaState( struct cppISteamFriends_SteamFriends007_GetPersonaState_params *params ) +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; params->_ret = iface->GetPersonaState( ); + return 0; } -void cppISteamFriends_SteamFriends007_GetFriendCount( struct cppISteamFriends_SteamFriends007_GetFriendCount_params *params ) +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; params->_ret = iface->GetFriendCount( params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends007_GetFriendByIndex( struct cppISteamFriends_SteamFriends007_GetFriendByIndex_params *params ) +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; *params->_ret = iface->GetFriendByIndex( params->iFriend, params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends007_GetFriendRelationship( struct cppISteamFriends_SteamFriends007_GetFriendRelationship_params *params ) +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; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends007_GetFriendPersonaState( struct cppISteamFriends_SteamFriends007_GetFriendPersonaState_params *params ) +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; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends007_GetFriendPersonaName( struct cppISteamFriends_SteamFriends007_GetFriendPersonaName_params *params ) +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; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends007_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends007_GetFriendGamePlayed_params *params ) +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; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pFriendGameInfo ); + return 0; } -void cppISteamFriends_SteamFriends007_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends007_GetFriendPersonaNameHistory_params *params ) +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; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends007_HasFriend( struct cppISteamFriends_SteamFriends007_HasFriend_params *params ) +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; params->_ret = iface->HasFriend( params->steamIDFriend, params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends007_GetClanCount( struct cppISteamFriends_SteamFriends007_GetClanCount_params *params ) +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; params->_ret = iface->GetClanCount( ); + return 0; } -void cppISteamFriends_SteamFriends007_GetClanByIndex( struct cppISteamFriends_SteamFriends007_GetClanByIndex_params *params ) +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; *params->_ret = iface->GetClanByIndex( params->iClan ); + return 0; } -void cppISteamFriends_SteamFriends007_GetClanName( struct cppISteamFriends_SteamFriends007_GetClanName_params *params ) +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; params->_ret = iface->GetClanName( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends007_GetClanTag( struct cppISteamFriends_SteamFriends007_GetClanTag_params *params ) +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; params->_ret = iface->GetClanTag( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends007_GetFriendCountFromSource( struct cppISteamFriends_SteamFriends007_GetFriendCountFromSource_params *params ) +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; params->_ret = iface->GetFriendCountFromSource( params->steamIDSource ); + return 0; } -void cppISteamFriends_SteamFriends007_GetFriendFromSourceByIndex( struct cppISteamFriends_SteamFriends007_GetFriendFromSourceByIndex_params *params ) +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; *params->_ret = iface->GetFriendFromSourceByIndex( params->steamIDSource, params->iFriend ); + return 0; } -void cppISteamFriends_SteamFriends007_IsUserInSource( struct cppISteamFriends_SteamFriends007_IsUserInSource_params *params ) +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; params->_ret = iface->IsUserInSource( params->steamIDUser, params->steamIDSource ); + return 0; } -void cppISteamFriends_SteamFriends007_SetInGameVoiceSpeaking( struct cppISteamFriends_SteamFriends007_SetInGameVoiceSpeaking_params *params ) +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; iface->SetInGameVoiceSpeaking( params->steamIDUser, params->bSpeaking ); + return 0; } -void cppISteamFriends_SteamFriends007_ActivateGameOverlay( struct cppISteamFriends_SteamFriends007_ActivateGameOverlay_params *params ) +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; iface->ActivateGameOverlay( params->pchDialog ); + return 0; } -void cppISteamFriends_SteamFriends007_ActivateGameOverlayToUser( struct cppISteamFriends_SteamFriends007_ActivateGameOverlayToUser_params *params ) +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; iface->ActivateGameOverlayToUser( params->pchDialog, params->steamID ); + return 0; } -void cppISteamFriends_SteamFriends007_ActivateGameOverlayToWebPage( struct cppISteamFriends_SteamFriends007_ActivateGameOverlayToWebPage_params *params ) +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; iface->ActivateGameOverlayToWebPage( params->pchURL ); + return 0; } -void cppISteamFriends_SteamFriends007_ActivateGameOverlayToStore( struct cppISteamFriends_SteamFriends007_ActivateGameOverlayToStore_params *params ) +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; iface->ActivateGameOverlayToStore( params->nAppID ); + return 0; } -void cppISteamFriends_SteamFriends007_SetPlayedWith( struct cppISteamFriends_SteamFriends007_SetPlayedWith_params *params ) +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; iface->SetPlayedWith( params->steamIDUserPlayedWith ); + return 0; } -void cppISteamFriends_SteamFriends007_ActivateGameOverlayInviteDialog( struct cppISteamFriends_SteamFriends007_ActivateGameOverlayInviteDialog_params *params ) +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; iface->ActivateGameOverlayInviteDialog( params->steamIDLobby ); + return 0; } -void cppISteamFriends_SteamFriends007_GetSmallFriendAvatar( struct cppISteamFriends_SteamFriends007_GetSmallFriendAvatar_params *params ) +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; params->_ret = iface->GetSmallFriendAvatar( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends007_GetMediumFriendAvatar( struct cppISteamFriends_SteamFriends007_GetMediumFriendAvatar_params *params ) +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; params->_ret = iface->GetMediumFriendAvatar( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends007_GetLargeFriendAvatar( struct cppISteamFriends_SteamFriends007_GetLargeFriendAvatar_params *params ) +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; params->_ret = iface->GetLargeFriendAvatar( params->steamIDFriend ); + return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends007.h b/lsteamclient/cppISteamFriends_SteamFriends007.h deleted file mode 100644 index 235b3f60..00000000 --- a/lsteamclient/cppISteamFriends_SteamFriends007.h +++ /dev/null @@ -1,233 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamFriends_SteamFriends007_GetPersonaName_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamFriends_SteamFriends007_GetPersonaName( struct cppISteamFriends_SteamFriends007_GetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends007_SetPersonaName_params -{ - void *linux_side; - const char *pchPersonaName; -}; -extern void cppISteamFriends_SteamFriends007_SetPersonaName( struct cppISteamFriends_SteamFriends007_SetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends007_GetPersonaState_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamFriends_SteamFriends007_GetPersonaState( struct cppISteamFriends_SteamFriends007_GetPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends007_GetFriendCount_params -{ - void *linux_side; - int32_t _ret; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends007_GetFriendCount( struct cppISteamFriends_SteamFriends007_GetFriendCount_params *params ); - -struct cppISteamFriends_SteamFriends007_GetFriendByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iFriend; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends007_GetFriendByIndex( struct cppISteamFriends_SteamFriends007_GetFriendByIndex_params *params ); - -struct cppISteamFriends_SteamFriends007_GetFriendRelationship_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends007_GetFriendRelationship( struct cppISteamFriends_SteamFriends007_GetFriendRelationship_params *params ); - -struct cppISteamFriends_SteamFriends007_GetFriendPersonaState_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends007_GetFriendPersonaState( struct cppISteamFriends_SteamFriends007_GetFriendPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends007_GetFriendPersonaName_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends007_GetFriendPersonaName( struct cppISteamFriends_SteamFriends007_GetFriendPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends007_GetFriendGamePlayed_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - FriendGameInfo_t *pFriendGameInfo; -}; -extern void cppISteamFriends_SteamFriends007_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends007_GetFriendGamePlayed_params *params ); - -struct cppISteamFriends_SteamFriends007_GetFriendPersonaNameHistory_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - int32_t iPersonaName; -}; -extern void cppISteamFriends_SteamFriends007_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends007_GetFriendPersonaNameHistory_params *params ); - -struct cppISteamFriends_SteamFriends007_HasFriend_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends007_HasFriend( struct cppISteamFriends_SteamFriends007_HasFriend_params *params ); - -struct cppISteamFriends_SteamFriends007_GetClanCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamFriends_SteamFriends007_GetClanCount( struct cppISteamFriends_SteamFriends007_GetClanCount_params *params ); - -struct cppISteamFriends_SteamFriends007_GetClanByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iClan; -}; -extern void cppISteamFriends_SteamFriends007_GetClanByIndex( struct cppISteamFriends_SteamFriends007_GetClanByIndex_params *params ); - -struct cppISteamFriends_SteamFriends007_GetClanName_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends007_GetClanName( struct cppISteamFriends_SteamFriends007_GetClanName_params *params ); - -struct cppISteamFriends_SteamFriends007_GetClanTag_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends007_GetClanTag( struct cppISteamFriends_SteamFriends007_GetClanTag_params *params ); - -struct cppISteamFriends_SteamFriends007_GetFriendCountFromSource_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDSource; -}; -extern void cppISteamFriends_SteamFriends007_GetFriendCountFromSource( struct cppISteamFriends_SteamFriends007_GetFriendCountFromSource_params *params ); - -struct cppISteamFriends_SteamFriends007_GetFriendFromSourceByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDSource; - int32_t iFriend; -}; -extern void cppISteamFriends_SteamFriends007_GetFriendFromSourceByIndex( struct cppISteamFriends_SteamFriends007_GetFriendFromSourceByIndex_params *params ); - -struct cppISteamFriends_SteamFriends007_IsUserInSource_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - CSteamID steamIDSource; -}; -extern void cppISteamFriends_SteamFriends007_IsUserInSource( struct cppISteamFriends_SteamFriends007_IsUserInSource_params *params ); - -struct cppISteamFriends_SteamFriends007_SetInGameVoiceSpeaking_params -{ - void *linux_side; - CSteamID steamIDUser; - bool bSpeaking; -}; -extern void cppISteamFriends_SteamFriends007_SetInGameVoiceSpeaking( struct cppISteamFriends_SteamFriends007_SetInGameVoiceSpeaking_params *params ); - -struct cppISteamFriends_SteamFriends007_ActivateGameOverlay_params -{ - void *linux_side; - const char *pchDialog; -}; -extern void cppISteamFriends_SteamFriends007_ActivateGameOverlay( struct cppISteamFriends_SteamFriends007_ActivateGameOverlay_params *params ); - -struct cppISteamFriends_SteamFriends007_ActivateGameOverlayToUser_params -{ - void *linux_side; - const char *pchDialog; - CSteamID steamID; -}; -extern void cppISteamFriends_SteamFriends007_ActivateGameOverlayToUser( struct cppISteamFriends_SteamFriends007_ActivateGameOverlayToUser_params *params ); - -struct cppISteamFriends_SteamFriends007_ActivateGameOverlayToWebPage_params -{ - void *linux_side; - const char *pchURL; -}; -extern void cppISteamFriends_SteamFriends007_ActivateGameOverlayToWebPage( struct cppISteamFriends_SteamFriends007_ActivateGameOverlayToWebPage_params *params ); - -struct cppISteamFriends_SteamFriends007_ActivateGameOverlayToStore_params -{ - void *linux_side; - uint32_t nAppID; -}; -extern void cppISteamFriends_SteamFriends007_ActivateGameOverlayToStore( struct cppISteamFriends_SteamFriends007_ActivateGameOverlayToStore_params *params ); - -struct cppISteamFriends_SteamFriends007_SetPlayedWith_params -{ - void *linux_side; - CSteamID steamIDUserPlayedWith; -}; -extern void cppISteamFriends_SteamFriends007_SetPlayedWith( struct cppISteamFriends_SteamFriends007_SetPlayedWith_params *params ); - -struct cppISteamFriends_SteamFriends007_ActivateGameOverlayInviteDialog_params -{ - void *linux_side; - CSteamID steamIDLobby; -}; -extern void cppISteamFriends_SteamFriends007_ActivateGameOverlayInviteDialog( struct cppISteamFriends_SteamFriends007_ActivateGameOverlayInviteDialog_params *params ); - -struct cppISteamFriends_SteamFriends007_GetSmallFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends007_GetSmallFriendAvatar( struct cppISteamFriends_SteamFriends007_GetSmallFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends007_GetMediumFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends007_GetMediumFriendAvatar( struct cppISteamFriends_SteamFriends007_GetMediumFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends007_GetLargeFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends007_GetLargeFriendAvatar( struct cppISteamFriends_SteamFriends007_GetLargeFriendAvatar_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamFriends_SteamFriends008.cpp b/lsteamclient/cppISteamFriends_SteamFriends008.cpp index 2988d881..4e0f368d 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends008.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends008.cpp @@ -1,208 +1,275 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamFriends_SteamFriends008.h" -void cppISteamFriends_SteamFriends008_GetPersonaName( struct cppISteamFriends_SteamFriends008_GetPersonaName_params *params ) +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; params->_ret = iface->GetPersonaName( ); + return 0; } -void cppISteamFriends_SteamFriends008_SetPersonaName( struct cppISteamFriends_SteamFriends008_SetPersonaName_params *params ) +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; iface->SetPersonaName( params->pchPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends008_GetPersonaState( struct cppISteamFriends_SteamFriends008_GetPersonaState_params *params ) +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; params->_ret = iface->GetPersonaState( ); + return 0; } -void cppISteamFriends_SteamFriends008_GetFriendCount( struct cppISteamFriends_SteamFriends008_GetFriendCount_params *params ) +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; params->_ret = iface->GetFriendCount( params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends008_GetFriendByIndex( struct cppISteamFriends_SteamFriends008_GetFriendByIndex_params *params ) +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; *params->_ret = iface->GetFriendByIndex( params->iFriend, params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends008_GetFriendRelationship( struct cppISteamFriends_SteamFriends008_GetFriendRelationship_params *params ) +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; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends008_GetFriendPersonaState( struct cppISteamFriends_SteamFriends008_GetFriendPersonaState_params *params ) +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; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends008_GetFriendPersonaName( struct cppISteamFriends_SteamFriends008_GetFriendPersonaName_params *params ) +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; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends008_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends008_GetFriendGamePlayed_params *params ) +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; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pFriendGameInfo ); + return 0; } -void cppISteamFriends_SteamFriends008_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends008_GetFriendPersonaNameHistory_params *params ) +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; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends008_HasFriend( struct cppISteamFriends_SteamFriends008_HasFriend_params *params ) +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; params->_ret = iface->HasFriend( params->steamIDFriend, params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends008_GetClanCount( struct cppISteamFriends_SteamFriends008_GetClanCount_params *params ) +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; params->_ret = iface->GetClanCount( ); + return 0; } -void cppISteamFriends_SteamFriends008_GetClanByIndex( struct cppISteamFriends_SteamFriends008_GetClanByIndex_params *params ) +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; *params->_ret = iface->GetClanByIndex( params->iClan ); + return 0; } -void cppISteamFriends_SteamFriends008_GetClanName( struct cppISteamFriends_SteamFriends008_GetClanName_params *params ) +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; params->_ret = iface->GetClanName( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends008_GetClanTag( struct cppISteamFriends_SteamFriends008_GetClanTag_params *params ) +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; params->_ret = iface->GetClanTag( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends008_GetFriendCountFromSource( struct cppISteamFriends_SteamFriends008_GetFriendCountFromSource_params *params ) +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; params->_ret = iface->GetFriendCountFromSource( params->steamIDSource ); + return 0; } -void cppISteamFriends_SteamFriends008_GetFriendFromSourceByIndex( struct cppISteamFriends_SteamFriends008_GetFriendFromSourceByIndex_params *params ) +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; *params->_ret = iface->GetFriendFromSourceByIndex( params->steamIDSource, params->iFriend ); + return 0; } -void cppISteamFriends_SteamFriends008_IsUserInSource( struct cppISteamFriends_SteamFriends008_IsUserInSource_params *params ) +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; params->_ret = iface->IsUserInSource( params->steamIDUser, params->steamIDSource ); + return 0; } -void cppISteamFriends_SteamFriends008_SetInGameVoiceSpeaking( struct cppISteamFriends_SteamFriends008_SetInGameVoiceSpeaking_params *params ) +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; iface->SetInGameVoiceSpeaking( params->steamIDUser, params->bSpeaking ); + return 0; } -void cppISteamFriends_SteamFriends008_ActivateGameOverlay( struct cppISteamFriends_SteamFriends008_ActivateGameOverlay_params *params ) +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; iface->ActivateGameOverlay( params->pchDialog ); + return 0; } -void cppISteamFriends_SteamFriends008_ActivateGameOverlayToUser( struct cppISteamFriends_SteamFriends008_ActivateGameOverlayToUser_params *params ) +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; iface->ActivateGameOverlayToUser( params->pchDialog, params->steamID ); + return 0; } -void cppISteamFriends_SteamFriends008_ActivateGameOverlayToWebPage( struct cppISteamFriends_SteamFriends008_ActivateGameOverlayToWebPage_params *params ) +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; iface->ActivateGameOverlayToWebPage( params->pchURL ); + return 0; } -void cppISteamFriends_SteamFriends008_ActivateGameOverlayToStore( struct cppISteamFriends_SteamFriends008_ActivateGameOverlayToStore_params *params ) +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; iface->ActivateGameOverlayToStore( params->nAppID ); + return 0; } -void cppISteamFriends_SteamFriends008_SetPlayedWith( struct cppISteamFriends_SteamFriends008_SetPlayedWith_params *params ) +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; iface->SetPlayedWith( params->steamIDUserPlayedWith ); + return 0; } -void cppISteamFriends_SteamFriends008_ActivateGameOverlayInviteDialog( struct cppISteamFriends_SteamFriends008_ActivateGameOverlayInviteDialog_params *params ) +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; iface->ActivateGameOverlayInviteDialog( params->steamIDLobby ); + return 0; } -void cppISteamFriends_SteamFriends008_GetSmallFriendAvatar( struct cppISteamFriends_SteamFriends008_GetSmallFriendAvatar_params *params ) +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; params->_ret = iface->GetSmallFriendAvatar( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends008_GetMediumFriendAvatar( struct cppISteamFriends_SteamFriends008_GetMediumFriendAvatar_params *params ) +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; params->_ret = iface->GetMediumFriendAvatar( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends008_GetLargeFriendAvatar( struct cppISteamFriends_SteamFriends008_GetLargeFriendAvatar_params *params ) +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; params->_ret = iface->GetLargeFriendAvatar( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends008_RequestUserInformation( struct cppISteamFriends_SteamFriends008_RequestUserInformation_params *params ) +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; params->_ret = iface->RequestUserInformation( params->steamIDUser, params->bRequireNameOnly ); + return 0; } -void cppISteamFriends_SteamFriends008_RequestClanOfficerList( struct cppISteamFriends_SteamFriends008_RequestClanOfficerList_params *params ) +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; params->_ret = iface->RequestClanOfficerList( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends008_GetClanOwner( struct cppISteamFriends_SteamFriends008_GetClanOwner_params *params ) +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; *params->_ret = iface->GetClanOwner( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends008_GetClanOfficerCount( struct cppISteamFriends_SteamFriends008_GetClanOfficerCount_params *params ) +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; params->_ret = iface->GetClanOfficerCount( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends008_GetClanOfficerByIndex( struct cppISteamFriends_SteamFriends008_GetClanOfficerByIndex_params *params ) +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; *params->_ret = iface->GetClanOfficerByIndex( params->steamIDClan, params->iOfficer ); + return 0; } -void cppISteamFriends_SteamFriends008_GetUserRestrictions( struct cppISteamFriends_SteamFriends008_GetUserRestrictions_params *params ) +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; params->_ret = iface->GetUserRestrictions( ); + return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends008.h b/lsteamclient/cppISteamFriends_SteamFriends008.h deleted file mode 100644 index e431028e..00000000 --- a/lsteamclient/cppISteamFriends_SteamFriends008.h +++ /dev/null @@ -1,282 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamFriends_SteamFriends008_GetPersonaName_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamFriends_SteamFriends008_GetPersonaName( struct cppISteamFriends_SteamFriends008_GetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends008_SetPersonaName_params -{ - void *linux_side; - const char *pchPersonaName; -}; -extern void cppISteamFriends_SteamFriends008_SetPersonaName( struct cppISteamFriends_SteamFriends008_SetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends008_GetPersonaState_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamFriends_SteamFriends008_GetPersonaState( struct cppISteamFriends_SteamFriends008_GetPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends008_GetFriendCount_params -{ - void *linux_side; - int32_t _ret; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends008_GetFriendCount( struct cppISteamFriends_SteamFriends008_GetFriendCount_params *params ); - -struct cppISteamFriends_SteamFriends008_GetFriendByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iFriend; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends008_GetFriendByIndex( struct cppISteamFriends_SteamFriends008_GetFriendByIndex_params *params ); - -struct cppISteamFriends_SteamFriends008_GetFriendRelationship_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends008_GetFriendRelationship( struct cppISteamFriends_SteamFriends008_GetFriendRelationship_params *params ); - -struct cppISteamFriends_SteamFriends008_GetFriendPersonaState_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends008_GetFriendPersonaState( struct cppISteamFriends_SteamFriends008_GetFriendPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends008_GetFriendPersonaName_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends008_GetFriendPersonaName( struct cppISteamFriends_SteamFriends008_GetFriendPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends008_GetFriendGamePlayed_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - FriendGameInfo_t *pFriendGameInfo; -}; -extern void cppISteamFriends_SteamFriends008_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends008_GetFriendGamePlayed_params *params ); - -struct cppISteamFriends_SteamFriends008_GetFriendPersonaNameHistory_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - int32_t iPersonaName; -}; -extern void cppISteamFriends_SteamFriends008_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends008_GetFriendPersonaNameHistory_params *params ); - -struct cppISteamFriends_SteamFriends008_HasFriend_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends008_HasFriend( struct cppISteamFriends_SteamFriends008_HasFriend_params *params ); - -struct cppISteamFriends_SteamFriends008_GetClanCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamFriends_SteamFriends008_GetClanCount( struct cppISteamFriends_SteamFriends008_GetClanCount_params *params ); - -struct cppISteamFriends_SteamFriends008_GetClanByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iClan; -}; -extern void cppISteamFriends_SteamFriends008_GetClanByIndex( struct cppISteamFriends_SteamFriends008_GetClanByIndex_params *params ); - -struct cppISteamFriends_SteamFriends008_GetClanName_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends008_GetClanName( struct cppISteamFriends_SteamFriends008_GetClanName_params *params ); - -struct cppISteamFriends_SteamFriends008_GetClanTag_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends008_GetClanTag( struct cppISteamFriends_SteamFriends008_GetClanTag_params *params ); - -struct cppISteamFriends_SteamFriends008_GetFriendCountFromSource_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDSource; -}; -extern void cppISteamFriends_SteamFriends008_GetFriendCountFromSource( struct cppISteamFriends_SteamFriends008_GetFriendCountFromSource_params *params ); - -struct cppISteamFriends_SteamFriends008_GetFriendFromSourceByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDSource; - int32_t iFriend; -}; -extern void cppISteamFriends_SteamFriends008_GetFriendFromSourceByIndex( struct cppISteamFriends_SteamFriends008_GetFriendFromSourceByIndex_params *params ); - -struct cppISteamFriends_SteamFriends008_IsUserInSource_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - CSteamID steamIDSource; -}; -extern void cppISteamFriends_SteamFriends008_IsUserInSource( struct cppISteamFriends_SteamFriends008_IsUserInSource_params *params ); - -struct cppISteamFriends_SteamFriends008_SetInGameVoiceSpeaking_params -{ - void *linux_side; - CSteamID steamIDUser; - bool bSpeaking; -}; -extern void cppISteamFriends_SteamFriends008_SetInGameVoiceSpeaking( struct cppISteamFriends_SteamFriends008_SetInGameVoiceSpeaking_params *params ); - -struct cppISteamFriends_SteamFriends008_ActivateGameOverlay_params -{ - void *linux_side; - const char *pchDialog; -}; -extern void cppISteamFriends_SteamFriends008_ActivateGameOverlay( struct cppISteamFriends_SteamFriends008_ActivateGameOverlay_params *params ); - -struct cppISteamFriends_SteamFriends008_ActivateGameOverlayToUser_params -{ - void *linux_side; - const char *pchDialog; - CSteamID steamID; -}; -extern void cppISteamFriends_SteamFriends008_ActivateGameOverlayToUser( struct cppISteamFriends_SteamFriends008_ActivateGameOverlayToUser_params *params ); - -struct cppISteamFriends_SteamFriends008_ActivateGameOverlayToWebPage_params -{ - void *linux_side; - const char *pchURL; -}; -extern void cppISteamFriends_SteamFriends008_ActivateGameOverlayToWebPage( struct cppISteamFriends_SteamFriends008_ActivateGameOverlayToWebPage_params *params ); - -struct cppISteamFriends_SteamFriends008_ActivateGameOverlayToStore_params -{ - void *linux_side; - uint32_t nAppID; -}; -extern void cppISteamFriends_SteamFriends008_ActivateGameOverlayToStore( struct cppISteamFriends_SteamFriends008_ActivateGameOverlayToStore_params *params ); - -struct cppISteamFriends_SteamFriends008_SetPlayedWith_params -{ - void *linux_side; - CSteamID steamIDUserPlayedWith; -}; -extern void cppISteamFriends_SteamFriends008_SetPlayedWith( struct cppISteamFriends_SteamFriends008_SetPlayedWith_params *params ); - -struct cppISteamFriends_SteamFriends008_ActivateGameOverlayInviteDialog_params -{ - void *linux_side; - CSteamID steamIDLobby; -}; -extern void cppISteamFriends_SteamFriends008_ActivateGameOverlayInviteDialog( struct cppISteamFriends_SteamFriends008_ActivateGameOverlayInviteDialog_params *params ); - -struct cppISteamFriends_SteamFriends008_GetSmallFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends008_GetSmallFriendAvatar( struct cppISteamFriends_SteamFriends008_GetSmallFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends008_GetMediumFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends008_GetMediumFriendAvatar( struct cppISteamFriends_SteamFriends008_GetMediumFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends008_GetLargeFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends008_GetLargeFriendAvatar( struct cppISteamFriends_SteamFriends008_GetLargeFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends008_RequestUserInformation_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - bool bRequireNameOnly; -}; -extern void cppISteamFriends_SteamFriends008_RequestUserInformation( struct cppISteamFriends_SteamFriends008_RequestUserInformation_params *params ); - -struct cppISteamFriends_SteamFriends008_RequestClanOfficerList_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends008_RequestClanOfficerList( struct cppISteamFriends_SteamFriends008_RequestClanOfficerList_params *params ); - -struct cppISteamFriends_SteamFriends008_GetClanOwner_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends008_GetClanOwner( struct cppISteamFriends_SteamFriends008_GetClanOwner_params *params ); - -struct cppISteamFriends_SteamFriends008_GetClanOfficerCount_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends008_GetClanOfficerCount( struct cppISteamFriends_SteamFriends008_GetClanOfficerCount_params *params ); - -struct cppISteamFriends_SteamFriends008_GetClanOfficerByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDClan; - int32_t iOfficer; -}; -extern void cppISteamFriends_SteamFriends008_GetClanOfficerByIndex( struct cppISteamFriends_SteamFriends008_GetClanOfficerByIndex_params *params ); - -struct cppISteamFriends_SteamFriends008_GetUserRestrictions_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamFriends_SteamFriends008_GetUserRestrictions( struct cppISteamFriends_SteamFriends008_GetUserRestrictions_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamFriends_SteamFriends009.cpp b/lsteamclient/cppISteamFriends_SteamFriends009.cpp index 1c9d4065..11e44d70 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends009.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends009.cpp @@ -1,268 +1,355 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamFriends_SteamFriends009.h" -void cppISteamFriends_SteamFriends009_GetPersonaName( struct cppISteamFriends_SteamFriends009_GetPersonaName_params *params ) +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; params->_ret = iface->GetPersonaName( ); + return 0; } -void cppISteamFriends_SteamFriends009_SetPersonaName( struct cppISteamFriends_SteamFriends009_SetPersonaName_params *params ) +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; iface->SetPersonaName( params->pchPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends009_GetPersonaState( struct cppISteamFriends_SteamFriends009_GetPersonaState_params *params ) +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; params->_ret = iface->GetPersonaState( ); + return 0; } -void cppISteamFriends_SteamFriends009_GetFriendCount( struct cppISteamFriends_SteamFriends009_GetFriendCount_params *params ) +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; params->_ret = iface->GetFriendCount( params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends009_GetFriendByIndex( struct cppISteamFriends_SteamFriends009_GetFriendByIndex_params *params ) +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; *params->_ret = iface->GetFriendByIndex( params->iFriend, params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends009_GetFriendRelationship( struct cppISteamFriends_SteamFriends009_GetFriendRelationship_params *params ) +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; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends009_GetFriendPersonaState( struct cppISteamFriends_SteamFriends009_GetFriendPersonaState_params *params ) +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; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends009_GetFriendPersonaName( struct cppISteamFriends_SteamFriends009_GetFriendPersonaName_params *params ) +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; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends009_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends009_GetFriendGamePlayed_params *params ) +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; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pFriendGameInfo ); + return 0; } -void cppISteamFriends_SteamFriends009_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends009_GetFriendPersonaNameHistory_params *params ) +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; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends009_HasFriend( struct cppISteamFriends_SteamFriends009_HasFriend_params *params ) +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; params->_ret = iface->HasFriend( params->steamIDFriend, params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends009_GetClanCount( struct cppISteamFriends_SteamFriends009_GetClanCount_params *params ) +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; params->_ret = iface->GetClanCount( ); + return 0; } -void cppISteamFriends_SteamFriends009_GetClanByIndex( struct cppISteamFriends_SteamFriends009_GetClanByIndex_params *params ) +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; *params->_ret = iface->GetClanByIndex( params->iClan ); + return 0; } -void cppISteamFriends_SteamFriends009_GetClanName( struct cppISteamFriends_SteamFriends009_GetClanName_params *params ) +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; params->_ret = iface->GetClanName( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends009_GetClanTag( struct cppISteamFriends_SteamFriends009_GetClanTag_params *params ) +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; params->_ret = iface->GetClanTag( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends009_GetFriendCountFromSource( struct cppISteamFriends_SteamFriends009_GetFriendCountFromSource_params *params ) +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; params->_ret = iface->GetFriendCountFromSource( params->steamIDSource ); + return 0; } -void cppISteamFriends_SteamFriends009_GetFriendFromSourceByIndex( struct cppISteamFriends_SteamFriends009_GetFriendFromSourceByIndex_params *params ) +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; *params->_ret = iface->GetFriendFromSourceByIndex( params->steamIDSource, params->iFriend ); + return 0; } -void cppISteamFriends_SteamFriends009_IsUserInSource( struct cppISteamFriends_SteamFriends009_IsUserInSource_params *params ) +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; params->_ret = iface->IsUserInSource( params->steamIDUser, params->steamIDSource ); + return 0; } -void cppISteamFriends_SteamFriends009_SetInGameVoiceSpeaking( struct cppISteamFriends_SteamFriends009_SetInGameVoiceSpeaking_params *params ) +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; iface->SetInGameVoiceSpeaking( params->steamIDUser, params->bSpeaking ); + return 0; } -void cppISteamFriends_SteamFriends009_ActivateGameOverlay( struct cppISteamFriends_SteamFriends009_ActivateGameOverlay_params *params ) +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; iface->ActivateGameOverlay( params->pchDialog ); + return 0; } -void cppISteamFriends_SteamFriends009_ActivateGameOverlayToUser( struct cppISteamFriends_SteamFriends009_ActivateGameOverlayToUser_params *params ) +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; iface->ActivateGameOverlayToUser( params->pchDialog, params->steamID ); + return 0; } -void cppISteamFriends_SteamFriends009_ActivateGameOverlayToWebPage( struct cppISteamFriends_SteamFriends009_ActivateGameOverlayToWebPage_params *params ) +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; iface->ActivateGameOverlayToWebPage( params->pchURL ); + return 0; } -void cppISteamFriends_SteamFriends009_ActivateGameOverlayToStore( struct cppISteamFriends_SteamFriends009_ActivateGameOverlayToStore_params *params ) +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; iface->ActivateGameOverlayToStore( params->nAppID ); + return 0; } -void cppISteamFriends_SteamFriends009_SetPlayedWith( struct cppISteamFriends_SteamFriends009_SetPlayedWith_params *params ) +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; iface->SetPlayedWith( params->steamIDUserPlayedWith ); + return 0; } -void cppISteamFriends_SteamFriends009_ActivateGameOverlayInviteDialog( struct cppISteamFriends_SteamFriends009_ActivateGameOverlayInviteDialog_params *params ) +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; iface->ActivateGameOverlayInviteDialog( params->steamIDLobby ); + return 0; } -void cppISteamFriends_SteamFriends009_GetSmallFriendAvatar( struct cppISteamFriends_SteamFriends009_GetSmallFriendAvatar_params *params ) +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; params->_ret = iface->GetSmallFriendAvatar( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends009_GetMediumFriendAvatar( struct cppISteamFriends_SteamFriends009_GetMediumFriendAvatar_params *params ) +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; params->_ret = iface->GetMediumFriendAvatar( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends009_GetLargeFriendAvatar( struct cppISteamFriends_SteamFriends009_GetLargeFriendAvatar_params *params ) +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; params->_ret = iface->GetLargeFriendAvatar( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends009_RequestUserInformation( struct cppISteamFriends_SteamFriends009_RequestUserInformation_params *params ) +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; params->_ret = iface->RequestUserInformation( params->steamIDUser, params->bRequireNameOnly ); + return 0; } -void cppISteamFriends_SteamFriends009_RequestClanOfficerList( struct cppISteamFriends_SteamFriends009_RequestClanOfficerList_params *params ) +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; params->_ret = iface->RequestClanOfficerList( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends009_GetClanOwner( struct cppISteamFriends_SteamFriends009_GetClanOwner_params *params ) +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; *params->_ret = iface->GetClanOwner( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends009_GetClanOfficerCount( struct cppISteamFriends_SteamFriends009_GetClanOfficerCount_params *params ) +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; params->_ret = iface->GetClanOfficerCount( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends009_GetClanOfficerByIndex( struct cppISteamFriends_SteamFriends009_GetClanOfficerByIndex_params *params ) +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; *params->_ret = iface->GetClanOfficerByIndex( params->steamIDClan, params->iOfficer ); + return 0; } -void cppISteamFriends_SteamFriends009_GetUserRestrictions( struct cppISteamFriends_SteamFriends009_GetUserRestrictions_params *params ) +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; params->_ret = iface->GetUserRestrictions( ); + return 0; } -void cppISteamFriends_SteamFriends009_SetRichPresence( struct cppISteamFriends_SteamFriends009_SetRichPresence_params *params ) +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; params->_ret = iface->SetRichPresence( params->pchKey, params->pchValue ); + return 0; } -void cppISteamFriends_SteamFriends009_ClearRichPresence( struct cppISteamFriends_SteamFriends009_ClearRichPresence_params *params ) +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; iface->ClearRichPresence( ); + return 0; } -void cppISteamFriends_SteamFriends009_GetFriendRichPresence( struct cppISteamFriends_SteamFriends009_GetFriendRichPresence_params *params ) +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; params->_ret = iface->GetFriendRichPresence( params->steamIDFriend, params->pchKey ); + return 0; } -void cppISteamFriends_SteamFriends009_GetFriendRichPresenceKeyCount( struct cppISteamFriends_SteamFriends009_GetFriendRichPresenceKeyCount_params *params ) +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; params->_ret = iface->GetFriendRichPresenceKeyCount( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends009_GetFriendRichPresenceKeyByIndex( struct cppISteamFriends_SteamFriends009_GetFriendRichPresenceKeyByIndex_params *params ) +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; params->_ret = iface->GetFriendRichPresenceKeyByIndex( params->steamIDFriend, params->iKey ); + return 0; } -void cppISteamFriends_SteamFriends009_InviteUserToGame( struct cppISteamFriends_SteamFriends009_InviteUserToGame_params *params ) +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; params->_ret = iface->InviteUserToGame( params->steamIDFriend, params->pchConnectString ); + return 0; } -void cppISteamFriends_SteamFriends009_GetCoplayFriendCount( struct cppISteamFriends_SteamFriends009_GetCoplayFriendCount_params *params ) +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; params->_ret = iface->GetCoplayFriendCount( ); + return 0; } -void cppISteamFriends_SteamFriends009_GetCoplayFriend( struct cppISteamFriends_SteamFriends009_GetCoplayFriend_params *params ) +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; *params->_ret = iface->GetCoplayFriend( params->iCoplayFriend ); + return 0; } -void cppISteamFriends_SteamFriends009_GetFriendCoplayTime( struct cppISteamFriends_SteamFriends009_GetFriendCoplayTime_params *params ) +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; params->_ret = iface->GetFriendCoplayTime( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends009_GetFriendCoplayGame( struct cppISteamFriends_SteamFriends009_GetFriendCoplayGame_params *params ) +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; params->_ret = iface->GetFriendCoplayGame( params->steamIDFriend ); + return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends009.h b/lsteamclient/cppISteamFriends_SteamFriends009.h deleted file mode 100644 index bb1a7886..00000000 --- a/lsteamclient/cppISteamFriends_SteamFriends009.h +++ /dev/null @@ -1,363 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamFriends_SteamFriends009_GetPersonaName_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamFriends_SteamFriends009_GetPersonaName( struct cppISteamFriends_SteamFriends009_GetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends009_SetPersonaName_params -{ - void *linux_side; - const char *pchPersonaName; -}; -extern void cppISteamFriends_SteamFriends009_SetPersonaName( struct cppISteamFriends_SteamFriends009_SetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends009_GetPersonaState_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamFriends_SteamFriends009_GetPersonaState( struct cppISteamFriends_SteamFriends009_GetPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends009_GetFriendCount_params -{ - void *linux_side; - int32_t _ret; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends009_GetFriendCount( struct cppISteamFriends_SteamFriends009_GetFriendCount_params *params ); - -struct cppISteamFriends_SteamFriends009_GetFriendByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iFriend; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends009_GetFriendByIndex( struct cppISteamFriends_SteamFriends009_GetFriendByIndex_params *params ); - -struct cppISteamFriends_SteamFriends009_GetFriendRelationship_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends009_GetFriendRelationship( struct cppISteamFriends_SteamFriends009_GetFriendRelationship_params *params ); - -struct cppISteamFriends_SteamFriends009_GetFriendPersonaState_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends009_GetFriendPersonaState( struct cppISteamFriends_SteamFriends009_GetFriendPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends009_GetFriendPersonaName_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends009_GetFriendPersonaName( struct cppISteamFriends_SteamFriends009_GetFriendPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends009_GetFriendGamePlayed_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - FriendGameInfo_t *pFriendGameInfo; -}; -extern void cppISteamFriends_SteamFriends009_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends009_GetFriendGamePlayed_params *params ); - -struct cppISteamFriends_SteamFriends009_GetFriendPersonaNameHistory_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - int32_t iPersonaName; -}; -extern void cppISteamFriends_SteamFriends009_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends009_GetFriendPersonaNameHistory_params *params ); - -struct cppISteamFriends_SteamFriends009_HasFriend_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends009_HasFriend( struct cppISteamFriends_SteamFriends009_HasFriend_params *params ); - -struct cppISteamFriends_SteamFriends009_GetClanCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamFriends_SteamFriends009_GetClanCount( struct cppISteamFriends_SteamFriends009_GetClanCount_params *params ); - -struct cppISteamFriends_SteamFriends009_GetClanByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iClan; -}; -extern void cppISteamFriends_SteamFriends009_GetClanByIndex( struct cppISteamFriends_SteamFriends009_GetClanByIndex_params *params ); - -struct cppISteamFriends_SteamFriends009_GetClanName_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends009_GetClanName( struct cppISteamFriends_SteamFriends009_GetClanName_params *params ); - -struct cppISteamFriends_SteamFriends009_GetClanTag_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends009_GetClanTag( struct cppISteamFriends_SteamFriends009_GetClanTag_params *params ); - -struct cppISteamFriends_SteamFriends009_GetFriendCountFromSource_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDSource; -}; -extern void cppISteamFriends_SteamFriends009_GetFriendCountFromSource( struct cppISteamFriends_SteamFriends009_GetFriendCountFromSource_params *params ); - -struct cppISteamFriends_SteamFriends009_GetFriendFromSourceByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDSource; - int32_t iFriend; -}; -extern void cppISteamFriends_SteamFriends009_GetFriendFromSourceByIndex( struct cppISteamFriends_SteamFriends009_GetFriendFromSourceByIndex_params *params ); - -struct cppISteamFriends_SteamFriends009_IsUserInSource_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - CSteamID steamIDSource; -}; -extern void cppISteamFriends_SteamFriends009_IsUserInSource( struct cppISteamFriends_SteamFriends009_IsUserInSource_params *params ); - -struct cppISteamFriends_SteamFriends009_SetInGameVoiceSpeaking_params -{ - void *linux_side; - CSteamID steamIDUser; - bool bSpeaking; -}; -extern void cppISteamFriends_SteamFriends009_SetInGameVoiceSpeaking( struct cppISteamFriends_SteamFriends009_SetInGameVoiceSpeaking_params *params ); - -struct cppISteamFriends_SteamFriends009_ActivateGameOverlay_params -{ - void *linux_side; - const char *pchDialog; -}; -extern void cppISteamFriends_SteamFriends009_ActivateGameOverlay( struct cppISteamFriends_SteamFriends009_ActivateGameOverlay_params *params ); - -struct cppISteamFriends_SteamFriends009_ActivateGameOverlayToUser_params -{ - void *linux_side; - const char *pchDialog; - CSteamID steamID; -}; -extern void cppISteamFriends_SteamFriends009_ActivateGameOverlayToUser( struct cppISteamFriends_SteamFriends009_ActivateGameOverlayToUser_params *params ); - -struct cppISteamFriends_SteamFriends009_ActivateGameOverlayToWebPage_params -{ - void *linux_side; - const char *pchURL; -}; -extern void cppISteamFriends_SteamFriends009_ActivateGameOverlayToWebPage( struct cppISteamFriends_SteamFriends009_ActivateGameOverlayToWebPage_params *params ); - -struct cppISteamFriends_SteamFriends009_ActivateGameOverlayToStore_params -{ - void *linux_side; - uint32_t nAppID; -}; -extern void cppISteamFriends_SteamFriends009_ActivateGameOverlayToStore( struct cppISteamFriends_SteamFriends009_ActivateGameOverlayToStore_params *params ); - -struct cppISteamFriends_SteamFriends009_SetPlayedWith_params -{ - void *linux_side; - CSteamID steamIDUserPlayedWith; -}; -extern void cppISteamFriends_SteamFriends009_SetPlayedWith( struct cppISteamFriends_SteamFriends009_SetPlayedWith_params *params ); - -struct cppISteamFriends_SteamFriends009_ActivateGameOverlayInviteDialog_params -{ - void *linux_side; - CSteamID steamIDLobby; -}; -extern void cppISteamFriends_SteamFriends009_ActivateGameOverlayInviteDialog( struct cppISteamFriends_SteamFriends009_ActivateGameOverlayInviteDialog_params *params ); - -struct cppISteamFriends_SteamFriends009_GetSmallFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends009_GetSmallFriendAvatar( struct cppISteamFriends_SteamFriends009_GetSmallFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends009_GetMediumFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends009_GetMediumFriendAvatar( struct cppISteamFriends_SteamFriends009_GetMediumFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends009_GetLargeFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends009_GetLargeFriendAvatar( struct cppISteamFriends_SteamFriends009_GetLargeFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends009_RequestUserInformation_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - bool bRequireNameOnly; -}; -extern void cppISteamFriends_SteamFriends009_RequestUserInformation( struct cppISteamFriends_SteamFriends009_RequestUserInformation_params *params ); - -struct cppISteamFriends_SteamFriends009_RequestClanOfficerList_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends009_RequestClanOfficerList( struct cppISteamFriends_SteamFriends009_RequestClanOfficerList_params *params ); - -struct cppISteamFriends_SteamFriends009_GetClanOwner_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends009_GetClanOwner( struct cppISteamFriends_SteamFriends009_GetClanOwner_params *params ); - -struct cppISteamFriends_SteamFriends009_GetClanOfficerCount_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends009_GetClanOfficerCount( struct cppISteamFriends_SteamFriends009_GetClanOfficerCount_params *params ); - -struct cppISteamFriends_SteamFriends009_GetClanOfficerByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDClan; - int32_t iOfficer; -}; -extern void cppISteamFriends_SteamFriends009_GetClanOfficerByIndex( struct cppISteamFriends_SteamFriends009_GetClanOfficerByIndex_params *params ); - -struct cppISteamFriends_SteamFriends009_GetUserRestrictions_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamFriends_SteamFriends009_GetUserRestrictions( struct cppISteamFriends_SteamFriends009_GetUserRestrictions_params *params ); - -struct cppISteamFriends_SteamFriends009_SetRichPresence_params -{ - void *linux_side; - bool _ret; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamFriends_SteamFriends009_SetRichPresence( struct cppISteamFriends_SteamFriends009_SetRichPresence_params *params ); - -struct cppISteamFriends_SteamFriends009_ClearRichPresence_params -{ - void *linux_side; -}; -extern void cppISteamFriends_SteamFriends009_ClearRichPresence( struct cppISteamFriends_SteamFriends009_ClearRichPresence_params *params ); - -struct cppISteamFriends_SteamFriends009_GetFriendRichPresence_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - const char *pchKey; -}; -extern void cppISteamFriends_SteamFriends009_GetFriendRichPresence( struct cppISteamFriends_SteamFriends009_GetFriendRichPresence_params *params ); - -struct cppISteamFriends_SteamFriends009_GetFriendRichPresenceKeyCount_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends009_GetFriendRichPresenceKeyCount( struct cppISteamFriends_SteamFriends009_GetFriendRichPresenceKeyCount_params *params ); - -struct cppISteamFriends_SteamFriends009_GetFriendRichPresenceKeyByIndex_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - int32_t iKey; -}; -extern void cppISteamFriends_SteamFriends009_GetFriendRichPresenceKeyByIndex( struct cppISteamFriends_SteamFriends009_GetFriendRichPresenceKeyByIndex_params *params ); - -struct cppISteamFriends_SteamFriends009_InviteUserToGame_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - const char *pchConnectString; -}; -extern void cppISteamFriends_SteamFriends009_InviteUserToGame( struct cppISteamFriends_SteamFriends009_InviteUserToGame_params *params ); - -struct cppISteamFriends_SteamFriends009_GetCoplayFriendCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamFriends_SteamFriends009_GetCoplayFriendCount( struct cppISteamFriends_SteamFriends009_GetCoplayFriendCount_params *params ); - -struct cppISteamFriends_SteamFriends009_GetCoplayFriend_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iCoplayFriend; -}; -extern void cppISteamFriends_SteamFriends009_GetCoplayFriend( struct cppISteamFriends_SteamFriends009_GetCoplayFriend_params *params ); - -struct cppISteamFriends_SteamFriends009_GetFriendCoplayTime_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends009_GetFriendCoplayTime( struct cppISteamFriends_SteamFriends009_GetFriendCoplayTime_params *params ); - -struct cppISteamFriends_SteamFriends009_GetFriendCoplayGame_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends009_GetFriendCoplayGame( struct cppISteamFriends_SteamFriends009_GetFriendCoplayGame_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamFriends_SteamFriends010.cpp b/lsteamclient/cppISteamFriends_SteamFriends010.cpp index 26132489..474d75a7 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends010.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends010.cpp @@ -1,358 +1,475 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamFriends_SteamFriends010.h" -void cppISteamFriends_SteamFriends010_GetPersonaName( struct cppISteamFriends_SteamFriends010_GetPersonaName_params *params ) +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; params->_ret = iface->GetPersonaName( ); + return 0; } -void cppISteamFriends_SteamFriends010_SetPersonaName( struct cppISteamFriends_SteamFriends010_SetPersonaName_params *params ) +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; iface->SetPersonaName( params->pchPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends010_GetPersonaState( struct cppISteamFriends_SteamFriends010_GetPersonaState_params *params ) +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; params->_ret = iface->GetPersonaState( ); + return 0; } -void cppISteamFriends_SteamFriends010_GetFriendCount( struct cppISteamFriends_SteamFriends010_GetFriendCount_params *params ) +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; params->_ret = iface->GetFriendCount( params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends010_GetFriendByIndex( struct cppISteamFriends_SteamFriends010_GetFriendByIndex_params *params ) +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; *params->_ret = iface->GetFriendByIndex( params->iFriend, params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends010_GetFriendRelationship( struct cppISteamFriends_SteamFriends010_GetFriendRelationship_params *params ) +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; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends010_GetFriendPersonaState( struct cppISteamFriends_SteamFriends010_GetFriendPersonaState_params *params ) +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; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends010_GetFriendPersonaName( struct cppISteamFriends_SteamFriends010_GetFriendPersonaName_params *params ) +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; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends010_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends010_GetFriendGamePlayed_params *params ) +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; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pFriendGameInfo ); + return 0; } -void cppISteamFriends_SteamFriends010_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends010_GetFriendPersonaNameHistory_params *params ) +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; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends010_HasFriend( struct cppISteamFriends_SteamFriends010_HasFriend_params *params ) +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; params->_ret = iface->HasFriend( params->steamIDFriend, params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends010_GetClanCount( struct cppISteamFriends_SteamFriends010_GetClanCount_params *params ) +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; params->_ret = iface->GetClanCount( ); + return 0; } -void cppISteamFriends_SteamFriends010_GetClanByIndex( struct cppISteamFriends_SteamFriends010_GetClanByIndex_params *params ) +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; *params->_ret = iface->GetClanByIndex( params->iClan ); + return 0; } -void cppISteamFriends_SteamFriends010_GetClanName( struct cppISteamFriends_SteamFriends010_GetClanName_params *params ) +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; params->_ret = iface->GetClanName( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends010_GetClanTag( struct cppISteamFriends_SteamFriends010_GetClanTag_params *params ) +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; params->_ret = iface->GetClanTag( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends010_GetClanActivityCounts( struct cppISteamFriends_SteamFriends010_GetClanActivityCounts_params *params ) +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; params->_ret = iface->GetClanActivityCounts( params->steamIDClan, params->pnOnline, params->pnInGame, params->pnChatting ); + return 0; } -void cppISteamFriends_SteamFriends010_DownloadClanActivityCounts( struct cppISteamFriends_SteamFriends010_DownloadClanActivityCounts_params *params ) +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; params->_ret = iface->DownloadClanActivityCounts( params->psteamIDClans, params->cClansToRequest ); + return 0; } -void cppISteamFriends_SteamFriends010_GetFriendCountFromSource( struct cppISteamFriends_SteamFriends010_GetFriendCountFromSource_params *params ) +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; params->_ret = iface->GetFriendCountFromSource( params->steamIDSource ); + return 0; } -void cppISteamFriends_SteamFriends010_GetFriendFromSourceByIndex( struct cppISteamFriends_SteamFriends010_GetFriendFromSourceByIndex_params *params ) +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; *params->_ret = iface->GetFriendFromSourceByIndex( params->steamIDSource, params->iFriend ); + return 0; } -void cppISteamFriends_SteamFriends010_IsUserInSource( struct cppISteamFriends_SteamFriends010_IsUserInSource_params *params ) +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; params->_ret = iface->IsUserInSource( params->steamIDUser, params->steamIDSource ); + return 0; } -void cppISteamFriends_SteamFriends010_SetInGameVoiceSpeaking( struct cppISteamFriends_SteamFriends010_SetInGameVoiceSpeaking_params *params ) +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; iface->SetInGameVoiceSpeaking( params->steamIDUser, params->bSpeaking ); + return 0; } -void cppISteamFriends_SteamFriends010_ActivateGameOverlay( struct cppISteamFriends_SteamFriends010_ActivateGameOverlay_params *params ) +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; iface->ActivateGameOverlay( params->pchDialog ); + return 0; } -void cppISteamFriends_SteamFriends010_ActivateGameOverlayToUser( struct cppISteamFriends_SteamFriends010_ActivateGameOverlayToUser_params *params ) +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; iface->ActivateGameOverlayToUser( params->pchDialog, params->steamID ); + return 0; } -void cppISteamFriends_SteamFriends010_ActivateGameOverlayToWebPage( struct cppISteamFriends_SteamFriends010_ActivateGameOverlayToWebPage_params *params ) +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; iface->ActivateGameOverlayToWebPage( params->pchURL ); + return 0; } -void cppISteamFriends_SteamFriends010_ActivateGameOverlayToStore( struct cppISteamFriends_SteamFriends010_ActivateGameOverlayToStore_params *params ) +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; iface->ActivateGameOverlayToStore( params->nAppID ); + return 0; } -void cppISteamFriends_SteamFriends010_SetPlayedWith( struct cppISteamFriends_SteamFriends010_SetPlayedWith_params *params ) +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; iface->SetPlayedWith( params->steamIDUserPlayedWith ); + return 0; } -void cppISteamFriends_SteamFriends010_ActivateGameOverlayInviteDialog( struct cppISteamFriends_SteamFriends010_ActivateGameOverlayInviteDialog_params *params ) +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; iface->ActivateGameOverlayInviteDialog( params->steamIDLobby ); + return 0; } -void cppISteamFriends_SteamFriends010_GetSmallFriendAvatar( struct cppISteamFriends_SteamFriends010_GetSmallFriendAvatar_params *params ) +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; params->_ret = iface->GetSmallFriendAvatar( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends010_GetMediumFriendAvatar( struct cppISteamFriends_SteamFriends010_GetMediumFriendAvatar_params *params ) +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; params->_ret = iface->GetMediumFriendAvatar( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends010_GetLargeFriendAvatar( struct cppISteamFriends_SteamFriends010_GetLargeFriendAvatar_params *params ) +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; params->_ret = iface->GetLargeFriendAvatar( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends010_RequestUserInformation( struct cppISteamFriends_SteamFriends010_RequestUserInformation_params *params ) +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; params->_ret = iface->RequestUserInformation( params->steamIDUser, params->bRequireNameOnly ); + return 0; } -void cppISteamFriends_SteamFriends010_RequestClanOfficerList( struct cppISteamFriends_SteamFriends010_RequestClanOfficerList_params *params ) +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; params->_ret = iface->RequestClanOfficerList( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends010_GetClanOwner( struct cppISteamFriends_SteamFriends010_GetClanOwner_params *params ) +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; *params->_ret = iface->GetClanOwner( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends010_GetClanOfficerCount( struct cppISteamFriends_SteamFriends010_GetClanOfficerCount_params *params ) +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; params->_ret = iface->GetClanOfficerCount( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends010_GetClanOfficerByIndex( struct cppISteamFriends_SteamFriends010_GetClanOfficerByIndex_params *params ) +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; *params->_ret = iface->GetClanOfficerByIndex( params->steamIDClan, params->iOfficer ); + return 0; } -void cppISteamFriends_SteamFriends010_GetUserRestrictions( struct cppISteamFriends_SteamFriends010_GetUserRestrictions_params *params ) +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; params->_ret = iface->GetUserRestrictions( ); + return 0; } -void cppISteamFriends_SteamFriends010_SetRichPresence( struct cppISteamFriends_SteamFriends010_SetRichPresence_params *params ) +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; params->_ret = iface->SetRichPresence( params->pchKey, params->pchValue ); + return 0; } -void cppISteamFriends_SteamFriends010_ClearRichPresence( struct cppISteamFriends_SteamFriends010_ClearRichPresence_params *params ) +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; iface->ClearRichPresence( ); + return 0; } -void cppISteamFriends_SteamFriends010_GetFriendRichPresence( struct cppISteamFriends_SteamFriends010_GetFriendRichPresence_params *params ) +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; params->_ret = iface->GetFriendRichPresence( params->steamIDFriend, params->pchKey ); + return 0; } -void cppISteamFriends_SteamFriends010_GetFriendRichPresenceKeyCount( struct cppISteamFriends_SteamFriends010_GetFriendRichPresenceKeyCount_params *params ) +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; params->_ret = iface->GetFriendRichPresenceKeyCount( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends010_GetFriendRichPresenceKeyByIndex( struct cppISteamFriends_SteamFriends010_GetFriendRichPresenceKeyByIndex_params *params ) +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; params->_ret = iface->GetFriendRichPresenceKeyByIndex( params->steamIDFriend, params->iKey ); + return 0; } -void cppISteamFriends_SteamFriends010_InviteUserToGame( struct cppISteamFriends_SteamFriends010_InviteUserToGame_params *params ) +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; params->_ret = iface->InviteUserToGame( params->steamIDFriend, params->pchConnectString ); + return 0; } -void cppISteamFriends_SteamFriends010_GetCoplayFriendCount( struct cppISteamFriends_SteamFriends010_GetCoplayFriendCount_params *params ) +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; params->_ret = iface->GetCoplayFriendCount( ); + return 0; } -void cppISteamFriends_SteamFriends010_GetCoplayFriend( struct cppISteamFriends_SteamFriends010_GetCoplayFriend_params *params ) +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; *params->_ret = iface->GetCoplayFriend( params->iCoplayFriend ); + return 0; } -void cppISteamFriends_SteamFriends010_GetFriendCoplayTime( struct cppISteamFriends_SteamFriends010_GetFriendCoplayTime_params *params ) +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; params->_ret = iface->GetFriendCoplayTime( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends010_GetFriendCoplayGame( struct cppISteamFriends_SteamFriends010_GetFriendCoplayGame_params *params ) +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; params->_ret = iface->GetFriendCoplayGame( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends010_JoinClanChatRoom( struct cppISteamFriends_SteamFriends010_JoinClanChatRoom_params *params ) +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; params->_ret = iface->JoinClanChatRoom( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends010_LeaveClanChatRoom( struct cppISteamFriends_SteamFriends010_LeaveClanChatRoom_params *params ) +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; params->_ret = iface->LeaveClanChatRoom( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends010_GetClanChatMemberCount( struct cppISteamFriends_SteamFriends010_GetClanChatMemberCount_params *params ) +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; params->_ret = iface->GetClanChatMemberCount( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends010_GetChatMemberByIndex( struct cppISteamFriends_SteamFriends010_GetChatMemberByIndex_params *params ) +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; *params->_ret = iface->GetChatMemberByIndex( params->steamIDClan, params->iUser ); + return 0; } -void cppISteamFriends_SteamFriends010_SendClanChatMessage( struct cppISteamFriends_SteamFriends010_SendClanChatMessage_params *params ) +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; params->_ret = iface->SendClanChatMessage( params->steamIDClanChat, params->pchText ); + return 0; } -void cppISteamFriends_SteamFriends010_GetClanChatMessage( struct cppISteamFriends_SteamFriends010_GetClanChatMessage_params *params ) +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; params->_ret = iface->GetClanChatMessage( params->steamIDClanChat, params->iMessage, params->prgchText, params->cchTextMax, params->_e, params->_f ); + return 0; } -void cppISteamFriends_SteamFriends010_IsClanChatAdmin( struct cppISteamFriends_SteamFriends010_IsClanChatAdmin_params *params ) +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; params->_ret = iface->IsClanChatAdmin( params->steamIDClanChat, params->steamIDUser ); + return 0; } -void cppISteamFriends_SteamFriends010_IsClanChatWindowOpenInSteam( struct cppISteamFriends_SteamFriends010_IsClanChatWindowOpenInSteam_params *params ) +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; params->_ret = iface->IsClanChatWindowOpenInSteam( params->steamIDClanChat ); + return 0; } -void cppISteamFriends_SteamFriends010_OpenClanChatWindowInSteam( struct cppISteamFriends_SteamFriends010_OpenClanChatWindowInSteam_params *params ) +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; params->_ret = iface->OpenClanChatWindowInSteam( params->steamIDClanChat ); + return 0; } -void cppISteamFriends_SteamFriends010_CloseClanChatWindowInSteam( struct cppISteamFriends_SteamFriends010_CloseClanChatWindowInSteam_params *params ) +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; params->_ret = iface->CloseClanChatWindowInSteam( params->steamIDClanChat ); + return 0; } -void cppISteamFriends_SteamFriends010_SetListenForFriendsMessages( struct cppISteamFriends_SteamFriends010_SetListenForFriendsMessages_params *params ) +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; params->_ret = iface->SetListenForFriendsMessages( params->bInterceptEnabled ); + return 0; } -void cppISteamFriends_SteamFriends010_ReplyToFriendMessage( struct cppISteamFriends_SteamFriends010_ReplyToFriendMessage_params *params ) +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; params->_ret = iface->ReplyToFriendMessage( params->steamIDFriend, params->pchMsgToSend ); + return 0; } -void cppISteamFriends_SteamFriends010_GetFriendMessage( struct cppISteamFriends_SteamFriends010_GetFriendMessage_params *params ) +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; params->_ret = iface->GetFriendMessage( params->steamIDFriend, params->iMessageID, params->pvData, params->cubData, params->peChatEntryType ); + return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends010.h b/lsteamclient/cppISteamFriends_SteamFriends010.h deleted file mode 100644 index 219ed74e..00000000 --- a/lsteamclient/cppISteamFriends_SteamFriends010.h +++ /dev/null @@ -1,500 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamFriends_SteamFriends010_GetPersonaName_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamFriends_SteamFriends010_GetPersonaName( struct cppISteamFriends_SteamFriends010_GetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends010_SetPersonaName_params -{ - void *linux_side; - const char *pchPersonaName; -}; -extern void cppISteamFriends_SteamFriends010_SetPersonaName( struct cppISteamFriends_SteamFriends010_SetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends010_GetPersonaState_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamFriends_SteamFriends010_GetPersonaState( struct cppISteamFriends_SteamFriends010_GetPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends010_GetFriendCount_params -{ - void *linux_side; - int32_t _ret; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends010_GetFriendCount( struct cppISteamFriends_SteamFriends010_GetFriendCount_params *params ); - -struct cppISteamFriends_SteamFriends010_GetFriendByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iFriend; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends010_GetFriendByIndex( struct cppISteamFriends_SteamFriends010_GetFriendByIndex_params *params ); - -struct cppISteamFriends_SteamFriends010_GetFriendRelationship_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends010_GetFriendRelationship( struct cppISteamFriends_SteamFriends010_GetFriendRelationship_params *params ); - -struct cppISteamFriends_SteamFriends010_GetFriendPersonaState_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends010_GetFriendPersonaState( struct cppISteamFriends_SteamFriends010_GetFriendPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends010_GetFriendPersonaName_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends010_GetFriendPersonaName( struct cppISteamFriends_SteamFriends010_GetFriendPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends010_GetFriendGamePlayed_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - FriendGameInfo_t *pFriendGameInfo; -}; -extern void cppISteamFriends_SteamFriends010_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends010_GetFriendGamePlayed_params *params ); - -struct cppISteamFriends_SteamFriends010_GetFriendPersonaNameHistory_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - int32_t iPersonaName; -}; -extern void cppISteamFriends_SteamFriends010_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends010_GetFriendPersonaNameHistory_params *params ); - -struct cppISteamFriends_SteamFriends010_HasFriend_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends010_HasFriend( struct cppISteamFriends_SteamFriends010_HasFriend_params *params ); - -struct cppISteamFriends_SteamFriends010_GetClanCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamFriends_SteamFriends010_GetClanCount( struct cppISteamFriends_SteamFriends010_GetClanCount_params *params ); - -struct cppISteamFriends_SteamFriends010_GetClanByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iClan; -}; -extern void cppISteamFriends_SteamFriends010_GetClanByIndex( struct cppISteamFriends_SteamFriends010_GetClanByIndex_params *params ); - -struct cppISteamFriends_SteamFriends010_GetClanName_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends010_GetClanName( struct cppISteamFriends_SteamFriends010_GetClanName_params *params ); - -struct cppISteamFriends_SteamFriends010_GetClanTag_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends010_GetClanTag( struct cppISteamFriends_SteamFriends010_GetClanTag_params *params ); - -struct cppISteamFriends_SteamFriends010_GetClanActivityCounts_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClan; - int32_t *pnOnline; - int32_t *pnInGame; - int32_t *pnChatting; -}; -extern void cppISteamFriends_SteamFriends010_GetClanActivityCounts( struct cppISteamFriends_SteamFriends010_GetClanActivityCounts_params *params ); - -struct cppISteamFriends_SteamFriends010_DownloadClanActivityCounts_params -{ - void *linux_side; - uint64_t _ret; - CSteamID *psteamIDClans; - int32_t cClansToRequest; -}; -extern void cppISteamFriends_SteamFriends010_DownloadClanActivityCounts( struct cppISteamFriends_SteamFriends010_DownloadClanActivityCounts_params *params ); - -struct cppISteamFriends_SteamFriends010_GetFriendCountFromSource_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDSource; -}; -extern void cppISteamFriends_SteamFriends010_GetFriendCountFromSource( struct cppISteamFriends_SteamFriends010_GetFriendCountFromSource_params *params ); - -struct cppISteamFriends_SteamFriends010_GetFriendFromSourceByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDSource; - int32_t iFriend; -}; -extern void cppISteamFriends_SteamFriends010_GetFriendFromSourceByIndex( struct cppISteamFriends_SteamFriends010_GetFriendFromSourceByIndex_params *params ); - -struct cppISteamFriends_SteamFriends010_IsUserInSource_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - CSteamID steamIDSource; -}; -extern void cppISteamFriends_SteamFriends010_IsUserInSource( struct cppISteamFriends_SteamFriends010_IsUserInSource_params *params ); - -struct cppISteamFriends_SteamFriends010_SetInGameVoiceSpeaking_params -{ - void *linux_side; - CSteamID steamIDUser; - bool bSpeaking; -}; -extern void cppISteamFriends_SteamFriends010_SetInGameVoiceSpeaking( struct cppISteamFriends_SteamFriends010_SetInGameVoiceSpeaking_params *params ); - -struct cppISteamFriends_SteamFriends010_ActivateGameOverlay_params -{ - void *linux_side; - const char *pchDialog; -}; -extern void cppISteamFriends_SteamFriends010_ActivateGameOverlay( struct cppISteamFriends_SteamFriends010_ActivateGameOverlay_params *params ); - -struct cppISteamFriends_SteamFriends010_ActivateGameOverlayToUser_params -{ - void *linux_side; - const char *pchDialog; - CSteamID steamID; -}; -extern void cppISteamFriends_SteamFriends010_ActivateGameOverlayToUser( struct cppISteamFriends_SteamFriends010_ActivateGameOverlayToUser_params *params ); - -struct cppISteamFriends_SteamFriends010_ActivateGameOverlayToWebPage_params -{ - void *linux_side; - const char *pchURL; -}; -extern void cppISteamFriends_SteamFriends010_ActivateGameOverlayToWebPage( struct cppISteamFriends_SteamFriends010_ActivateGameOverlayToWebPage_params *params ); - -struct cppISteamFriends_SteamFriends010_ActivateGameOverlayToStore_params -{ - void *linux_side; - uint32_t nAppID; -}; -extern void cppISteamFriends_SteamFriends010_ActivateGameOverlayToStore( struct cppISteamFriends_SteamFriends010_ActivateGameOverlayToStore_params *params ); - -struct cppISteamFriends_SteamFriends010_SetPlayedWith_params -{ - void *linux_side; - CSteamID steamIDUserPlayedWith; -}; -extern void cppISteamFriends_SteamFriends010_SetPlayedWith( struct cppISteamFriends_SteamFriends010_SetPlayedWith_params *params ); - -struct cppISteamFriends_SteamFriends010_ActivateGameOverlayInviteDialog_params -{ - void *linux_side; - CSteamID steamIDLobby; -}; -extern void cppISteamFriends_SteamFriends010_ActivateGameOverlayInviteDialog( struct cppISteamFriends_SteamFriends010_ActivateGameOverlayInviteDialog_params *params ); - -struct cppISteamFriends_SteamFriends010_GetSmallFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends010_GetSmallFriendAvatar( struct cppISteamFriends_SteamFriends010_GetSmallFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends010_GetMediumFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends010_GetMediumFriendAvatar( struct cppISteamFriends_SteamFriends010_GetMediumFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends010_GetLargeFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends010_GetLargeFriendAvatar( struct cppISteamFriends_SteamFriends010_GetLargeFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends010_RequestUserInformation_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - bool bRequireNameOnly; -}; -extern void cppISteamFriends_SteamFriends010_RequestUserInformation( struct cppISteamFriends_SteamFriends010_RequestUserInformation_params *params ); - -struct cppISteamFriends_SteamFriends010_RequestClanOfficerList_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends010_RequestClanOfficerList( struct cppISteamFriends_SteamFriends010_RequestClanOfficerList_params *params ); - -struct cppISteamFriends_SteamFriends010_GetClanOwner_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends010_GetClanOwner( struct cppISteamFriends_SteamFriends010_GetClanOwner_params *params ); - -struct cppISteamFriends_SteamFriends010_GetClanOfficerCount_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends010_GetClanOfficerCount( struct cppISteamFriends_SteamFriends010_GetClanOfficerCount_params *params ); - -struct cppISteamFriends_SteamFriends010_GetClanOfficerByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDClan; - int32_t iOfficer; -}; -extern void cppISteamFriends_SteamFriends010_GetClanOfficerByIndex( struct cppISteamFriends_SteamFriends010_GetClanOfficerByIndex_params *params ); - -struct cppISteamFriends_SteamFriends010_GetUserRestrictions_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamFriends_SteamFriends010_GetUserRestrictions( struct cppISteamFriends_SteamFriends010_GetUserRestrictions_params *params ); - -struct cppISteamFriends_SteamFriends010_SetRichPresence_params -{ - void *linux_side; - bool _ret; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamFriends_SteamFriends010_SetRichPresence( struct cppISteamFriends_SteamFriends010_SetRichPresence_params *params ); - -struct cppISteamFriends_SteamFriends010_ClearRichPresence_params -{ - void *linux_side; -}; -extern void cppISteamFriends_SteamFriends010_ClearRichPresence( struct cppISteamFriends_SteamFriends010_ClearRichPresence_params *params ); - -struct cppISteamFriends_SteamFriends010_GetFriendRichPresence_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - const char *pchKey; -}; -extern void cppISteamFriends_SteamFriends010_GetFriendRichPresence( struct cppISteamFriends_SteamFriends010_GetFriendRichPresence_params *params ); - -struct cppISteamFriends_SteamFriends010_GetFriendRichPresenceKeyCount_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends010_GetFriendRichPresenceKeyCount( struct cppISteamFriends_SteamFriends010_GetFriendRichPresenceKeyCount_params *params ); - -struct cppISteamFriends_SteamFriends010_GetFriendRichPresenceKeyByIndex_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - int32_t iKey; -}; -extern void cppISteamFriends_SteamFriends010_GetFriendRichPresenceKeyByIndex( struct cppISteamFriends_SteamFriends010_GetFriendRichPresenceKeyByIndex_params *params ); - -struct cppISteamFriends_SteamFriends010_InviteUserToGame_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - const char *pchConnectString; -}; -extern void cppISteamFriends_SteamFriends010_InviteUserToGame( struct cppISteamFriends_SteamFriends010_InviteUserToGame_params *params ); - -struct cppISteamFriends_SteamFriends010_GetCoplayFriendCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamFriends_SteamFriends010_GetCoplayFriendCount( struct cppISteamFriends_SteamFriends010_GetCoplayFriendCount_params *params ); - -struct cppISteamFriends_SteamFriends010_GetCoplayFriend_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iCoplayFriend; -}; -extern void cppISteamFriends_SteamFriends010_GetCoplayFriend( struct cppISteamFriends_SteamFriends010_GetCoplayFriend_params *params ); - -struct cppISteamFriends_SteamFriends010_GetFriendCoplayTime_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends010_GetFriendCoplayTime( struct cppISteamFriends_SteamFriends010_GetFriendCoplayTime_params *params ); - -struct cppISteamFriends_SteamFriends010_GetFriendCoplayGame_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends010_GetFriendCoplayGame( struct cppISteamFriends_SteamFriends010_GetFriendCoplayGame_params *params ); - -struct cppISteamFriends_SteamFriends010_JoinClanChatRoom_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends010_JoinClanChatRoom( struct cppISteamFriends_SteamFriends010_JoinClanChatRoom_params *params ); - -struct cppISteamFriends_SteamFriends010_LeaveClanChatRoom_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends010_LeaveClanChatRoom( struct cppISteamFriends_SteamFriends010_LeaveClanChatRoom_params *params ); - -struct cppISteamFriends_SteamFriends010_GetClanChatMemberCount_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends010_GetClanChatMemberCount( struct cppISteamFriends_SteamFriends010_GetClanChatMemberCount_params *params ); - -struct cppISteamFriends_SteamFriends010_GetChatMemberByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDClan; - int32_t iUser; -}; -extern void cppISteamFriends_SteamFriends010_GetChatMemberByIndex( struct cppISteamFriends_SteamFriends010_GetChatMemberByIndex_params *params ); - -struct cppISteamFriends_SteamFriends010_SendClanChatMessage_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; - const char *pchText; -}; -extern void cppISteamFriends_SteamFriends010_SendClanChatMessage( struct cppISteamFriends_SteamFriends010_SendClanChatMessage_params *params ); - -struct cppISteamFriends_SteamFriends010_GetClanChatMessage_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDClanChat; - int32_t iMessage; - void *prgchText; - int32_t cchTextMax; - uint32_t *_e; - CSteamID *_f; -}; -extern void cppISteamFriends_SteamFriends010_GetClanChatMessage( struct cppISteamFriends_SteamFriends010_GetClanChatMessage_params *params ); - -struct cppISteamFriends_SteamFriends010_IsClanChatAdmin_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; - CSteamID steamIDUser; -}; -extern void cppISteamFriends_SteamFriends010_IsClanChatAdmin( struct cppISteamFriends_SteamFriends010_IsClanChatAdmin_params *params ); - -struct cppISteamFriends_SteamFriends010_IsClanChatWindowOpenInSteam_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; -}; -extern void cppISteamFriends_SteamFriends010_IsClanChatWindowOpenInSteam( struct cppISteamFriends_SteamFriends010_IsClanChatWindowOpenInSteam_params *params ); - -struct cppISteamFriends_SteamFriends010_OpenClanChatWindowInSteam_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; -}; -extern void cppISteamFriends_SteamFriends010_OpenClanChatWindowInSteam( struct cppISteamFriends_SteamFriends010_OpenClanChatWindowInSteam_params *params ); - -struct cppISteamFriends_SteamFriends010_CloseClanChatWindowInSteam_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; -}; -extern void cppISteamFriends_SteamFriends010_CloseClanChatWindowInSteam( struct cppISteamFriends_SteamFriends010_CloseClanChatWindowInSteam_params *params ); - -struct cppISteamFriends_SteamFriends010_SetListenForFriendsMessages_params -{ - void *linux_side; - bool _ret; - bool bInterceptEnabled; -}; -extern void cppISteamFriends_SteamFriends010_SetListenForFriendsMessages( struct cppISteamFriends_SteamFriends010_SetListenForFriendsMessages_params *params ); - -struct cppISteamFriends_SteamFriends010_ReplyToFriendMessage_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - const char *pchMsgToSend; -}; -extern void cppISteamFriends_SteamFriends010_ReplyToFriendMessage( struct cppISteamFriends_SteamFriends010_ReplyToFriendMessage_params *params ); - -struct cppISteamFriends_SteamFriends010_GetFriendMessage_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; - int32_t iMessageID; - void *pvData; - int32_t cubData; - uint32_t *peChatEntryType; -}; -extern void cppISteamFriends_SteamFriends010_GetFriendMessage( struct cppISteamFriends_SteamFriends010_GetFriendMessage_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamFriends_SteamFriends011.cpp b/lsteamclient/cppISteamFriends_SteamFriends011.cpp index b0ba33ba..a2504864 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends011.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends011.cpp @@ -1,382 +1,507 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamFriends_SteamFriends011.h" -void cppISteamFriends_SteamFriends011_GetPersonaName( struct cppISteamFriends_SteamFriends011_GetPersonaName_params *params ) +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; params->_ret = iface->GetPersonaName( ); + return 0; } -void cppISteamFriends_SteamFriends011_SetPersonaName( struct cppISteamFriends_SteamFriends011_SetPersonaName_params *params ) +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; iface->SetPersonaName( params->pchPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends011_GetPersonaState( struct cppISteamFriends_SteamFriends011_GetPersonaState_params *params ) +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; params->_ret = iface->GetPersonaState( ); + return 0; } -void cppISteamFriends_SteamFriends011_GetFriendCount( struct cppISteamFriends_SteamFriends011_GetFriendCount_params *params ) +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; params->_ret = iface->GetFriendCount( params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends011_GetFriendByIndex( struct cppISteamFriends_SteamFriends011_GetFriendByIndex_params *params ) +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; *params->_ret = iface->GetFriendByIndex( params->iFriend, params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends011_GetFriendRelationship( struct cppISteamFriends_SteamFriends011_GetFriendRelationship_params *params ) +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; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends011_GetFriendPersonaState( struct cppISteamFriends_SteamFriends011_GetFriendPersonaState_params *params ) +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; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends011_GetFriendPersonaName( struct cppISteamFriends_SteamFriends011_GetFriendPersonaName_params *params ) +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; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends011_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends011_GetFriendGamePlayed_params *params ) +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; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pFriendGameInfo ); + return 0; } -void cppISteamFriends_SteamFriends011_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends011_GetFriendPersonaNameHistory_params *params ) +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; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends011_HasFriend( struct cppISteamFriends_SteamFriends011_HasFriend_params *params ) +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; params->_ret = iface->HasFriend( params->steamIDFriend, params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends011_GetClanCount( struct cppISteamFriends_SteamFriends011_GetClanCount_params *params ) +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; params->_ret = iface->GetClanCount( ); + return 0; } -void cppISteamFriends_SteamFriends011_GetClanByIndex( struct cppISteamFriends_SteamFriends011_GetClanByIndex_params *params ) +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; *params->_ret = iface->GetClanByIndex( params->iClan ); + return 0; } -void cppISteamFriends_SteamFriends011_GetClanName( struct cppISteamFriends_SteamFriends011_GetClanName_params *params ) +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; params->_ret = iface->GetClanName( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends011_GetClanTag( struct cppISteamFriends_SteamFriends011_GetClanTag_params *params ) +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; params->_ret = iface->GetClanTag( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends011_GetClanActivityCounts( struct cppISteamFriends_SteamFriends011_GetClanActivityCounts_params *params ) +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; params->_ret = iface->GetClanActivityCounts( params->steamIDClan, params->pnOnline, params->pnInGame, params->pnChatting ); + return 0; } -void cppISteamFriends_SteamFriends011_DownloadClanActivityCounts( struct cppISteamFriends_SteamFriends011_DownloadClanActivityCounts_params *params ) +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; params->_ret = iface->DownloadClanActivityCounts( params->psteamIDClans, params->cClansToRequest ); + return 0; } -void cppISteamFriends_SteamFriends011_GetFriendCountFromSource( struct cppISteamFriends_SteamFriends011_GetFriendCountFromSource_params *params ) +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; params->_ret = iface->GetFriendCountFromSource( params->steamIDSource ); + return 0; } -void cppISteamFriends_SteamFriends011_GetFriendFromSourceByIndex( struct cppISteamFriends_SteamFriends011_GetFriendFromSourceByIndex_params *params ) +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; *params->_ret = iface->GetFriendFromSourceByIndex( params->steamIDSource, params->iFriend ); + return 0; } -void cppISteamFriends_SteamFriends011_IsUserInSource( struct cppISteamFriends_SteamFriends011_IsUserInSource_params *params ) +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; params->_ret = iface->IsUserInSource( params->steamIDUser, params->steamIDSource ); + return 0; } -void cppISteamFriends_SteamFriends011_SetInGameVoiceSpeaking( struct cppISteamFriends_SteamFriends011_SetInGameVoiceSpeaking_params *params ) +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; iface->SetInGameVoiceSpeaking( params->steamIDUser, params->bSpeaking ); + return 0; } -void cppISteamFriends_SteamFriends011_ActivateGameOverlay( struct cppISteamFriends_SteamFriends011_ActivateGameOverlay_params *params ) +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; iface->ActivateGameOverlay( params->pchDialog ); + return 0; } -void cppISteamFriends_SteamFriends011_ActivateGameOverlayToUser( struct cppISteamFriends_SteamFriends011_ActivateGameOverlayToUser_params *params ) +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; iface->ActivateGameOverlayToUser( params->pchDialog, params->steamID ); + return 0; } -void cppISteamFriends_SteamFriends011_ActivateGameOverlayToWebPage( struct cppISteamFriends_SteamFriends011_ActivateGameOverlayToWebPage_params *params ) +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; iface->ActivateGameOverlayToWebPage( params->pchURL ); + return 0; } -void cppISteamFriends_SteamFriends011_ActivateGameOverlayToStore( struct cppISteamFriends_SteamFriends011_ActivateGameOverlayToStore_params *params ) +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; iface->ActivateGameOverlayToStore( params->nAppID ); + return 0; } -void cppISteamFriends_SteamFriends011_SetPlayedWith( struct cppISteamFriends_SteamFriends011_SetPlayedWith_params *params ) +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; iface->SetPlayedWith( params->steamIDUserPlayedWith ); + return 0; } -void cppISteamFriends_SteamFriends011_ActivateGameOverlayInviteDialog( struct cppISteamFriends_SteamFriends011_ActivateGameOverlayInviteDialog_params *params ) +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; iface->ActivateGameOverlayInviteDialog( params->steamIDLobby ); + return 0; } -void cppISteamFriends_SteamFriends011_GetSmallFriendAvatar( struct cppISteamFriends_SteamFriends011_GetSmallFriendAvatar_params *params ) +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; params->_ret = iface->GetSmallFriendAvatar( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends011_GetMediumFriendAvatar( struct cppISteamFriends_SteamFriends011_GetMediumFriendAvatar_params *params ) +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; params->_ret = iface->GetMediumFriendAvatar( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends011_GetLargeFriendAvatar( struct cppISteamFriends_SteamFriends011_GetLargeFriendAvatar_params *params ) +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; params->_ret = iface->GetLargeFriendAvatar( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends011_RequestUserInformation( struct cppISteamFriends_SteamFriends011_RequestUserInformation_params *params ) +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; params->_ret = iface->RequestUserInformation( params->steamIDUser, params->bRequireNameOnly ); + return 0; } -void cppISteamFriends_SteamFriends011_RequestClanOfficerList( struct cppISteamFriends_SteamFriends011_RequestClanOfficerList_params *params ) +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; params->_ret = iface->RequestClanOfficerList( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends011_GetClanOwner( struct cppISteamFriends_SteamFriends011_GetClanOwner_params *params ) +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; *params->_ret = iface->GetClanOwner( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends011_GetClanOfficerCount( struct cppISteamFriends_SteamFriends011_GetClanOfficerCount_params *params ) +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; params->_ret = iface->GetClanOfficerCount( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends011_GetClanOfficerByIndex( struct cppISteamFriends_SteamFriends011_GetClanOfficerByIndex_params *params ) +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; *params->_ret = iface->GetClanOfficerByIndex( params->steamIDClan, params->iOfficer ); + return 0; } -void cppISteamFriends_SteamFriends011_GetUserRestrictions( struct cppISteamFriends_SteamFriends011_GetUserRestrictions_params *params ) +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; params->_ret = iface->GetUserRestrictions( ); + return 0; } -void cppISteamFriends_SteamFriends011_SetRichPresence( struct cppISteamFriends_SteamFriends011_SetRichPresence_params *params ) +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; params->_ret = iface->SetRichPresence( params->pchKey, params->pchValue ); + return 0; } -void cppISteamFriends_SteamFriends011_ClearRichPresence( struct cppISteamFriends_SteamFriends011_ClearRichPresence_params *params ) +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; iface->ClearRichPresence( ); + return 0; } -void cppISteamFriends_SteamFriends011_GetFriendRichPresence( struct cppISteamFriends_SteamFriends011_GetFriendRichPresence_params *params ) +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; params->_ret = iface->GetFriendRichPresence( params->steamIDFriend, params->pchKey ); + return 0; } -void cppISteamFriends_SteamFriends011_GetFriendRichPresenceKeyCount( struct cppISteamFriends_SteamFriends011_GetFriendRichPresenceKeyCount_params *params ) +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; params->_ret = iface->GetFriendRichPresenceKeyCount( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends011_GetFriendRichPresenceKeyByIndex( struct cppISteamFriends_SteamFriends011_GetFriendRichPresenceKeyByIndex_params *params ) +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; params->_ret = iface->GetFriendRichPresenceKeyByIndex( params->steamIDFriend, params->iKey ); + return 0; } -void cppISteamFriends_SteamFriends011_RequestFriendRichPresence( struct cppISteamFriends_SteamFriends011_RequestFriendRichPresence_params *params ) +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; iface->RequestFriendRichPresence( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends011_InviteUserToGame( struct cppISteamFriends_SteamFriends011_InviteUserToGame_params *params ) +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; params->_ret = iface->InviteUserToGame( params->steamIDFriend, params->pchConnectString ); + return 0; } -void cppISteamFriends_SteamFriends011_GetCoplayFriendCount( struct cppISteamFriends_SteamFriends011_GetCoplayFriendCount_params *params ) +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; params->_ret = iface->GetCoplayFriendCount( ); + return 0; } -void cppISteamFriends_SteamFriends011_GetCoplayFriend( struct cppISteamFriends_SteamFriends011_GetCoplayFriend_params *params ) +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; *params->_ret = iface->GetCoplayFriend( params->iCoplayFriend ); + return 0; } -void cppISteamFriends_SteamFriends011_GetFriendCoplayTime( struct cppISteamFriends_SteamFriends011_GetFriendCoplayTime_params *params ) +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; params->_ret = iface->GetFriendCoplayTime( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends011_GetFriendCoplayGame( struct cppISteamFriends_SteamFriends011_GetFriendCoplayGame_params *params ) +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; params->_ret = iface->GetFriendCoplayGame( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends011_JoinClanChatRoom( struct cppISteamFriends_SteamFriends011_JoinClanChatRoom_params *params ) +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; params->_ret = iface->JoinClanChatRoom( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends011_LeaveClanChatRoom( struct cppISteamFriends_SteamFriends011_LeaveClanChatRoom_params *params ) +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; params->_ret = iface->LeaveClanChatRoom( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends011_GetClanChatMemberCount( struct cppISteamFriends_SteamFriends011_GetClanChatMemberCount_params *params ) +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; params->_ret = iface->GetClanChatMemberCount( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends011_GetChatMemberByIndex( struct cppISteamFriends_SteamFriends011_GetChatMemberByIndex_params *params ) +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; *params->_ret = iface->GetChatMemberByIndex( params->steamIDClan, params->iUser ); + return 0; } -void cppISteamFriends_SteamFriends011_SendClanChatMessage( struct cppISteamFriends_SteamFriends011_SendClanChatMessage_params *params ) +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; params->_ret = iface->SendClanChatMessage( params->steamIDClanChat, params->pchText ); + return 0; } -void cppISteamFriends_SteamFriends011_GetClanChatMessage( struct cppISteamFriends_SteamFriends011_GetClanChatMessage_params *params ) +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; params->_ret = iface->GetClanChatMessage( params->steamIDClanChat, params->iMessage, params->prgchText, params->cchTextMax, params->_e, params->_f ); + return 0; } -void cppISteamFriends_SteamFriends011_IsClanChatAdmin( struct cppISteamFriends_SteamFriends011_IsClanChatAdmin_params *params ) +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; params->_ret = iface->IsClanChatAdmin( params->steamIDClanChat, params->steamIDUser ); + return 0; } -void cppISteamFriends_SteamFriends011_IsClanChatWindowOpenInSteam( struct cppISteamFriends_SteamFriends011_IsClanChatWindowOpenInSteam_params *params ) +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; params->_ret = iface->IsClanChatWindowOpenInSteam( params->steamIDClanChat ); + return 0; } -void cppISteamFriends_SteamFriends011_OpenClanChatWindowInSteam( struct cppISteamFriends_SteamFriends011_OpenClanChatWindowInSteam_params *params ) +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; params->_ret = iface->OpenClanChatWindowInSteam( params->steamIDClanChat ); + return 0; } -void cppISteamFriends_SteamFriends011_CloseClanChatWindowInSteam( struct cppISteamFriends_SteamFriends011_CloseClanChatWindowInSteam_params *params ) +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; params->_ret = iface->CloseClanChatWindowInSteam( params->steamIDClanChat ); + return 0; } -void cppISteamFriends_SteamFriends011_SetListenForFriendsMessages( struct cppISteamFriends_SteamFriends011_SetListenForFriendsMessages_params *params ) +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; params->_ret = iface->SetListenForFriendsMessages( params->bInterceptEnabled ); + return 0; } -void cppISteamFriends_SteamFriends011_ReplyToFriendMessage( struct cppISteamFriends_SteamFriends011_ReplyToFriendMessage_params *params ) +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; params->_ret = iface->ReplyToFriendMessage( params->steamIDFriend, params->pchMsgToSend ); + return 0; } -void cppISteamFriends_SteamFriends011_GetFriendMessage( struct cppISteamFriends_SteamFriends011_GetFriendMessage_params *params ) +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; params->_ret = iface->GetFriendMessage( params->steamIDFriend, params->iMessageID, params->pvData, params->cubData, params->peChatEntryType ); + return 0; } -void cppISteamFriends_SteamFriends011_GetFollowerCount( struct cppISteamFriends_SteamFriends011_GetFollowerCount_params *params ) +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; params->_ret = iface->GetFollowerCount( params->steamID ); + return 0; } -void cppISteamFriends_SteamFriends011_IsFollowing( struct cppISteamFriends_SteamFriends011_IsFollowing_params *params ) +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; params->_ret = iface->IsFollowing( params->steamID ); + return 0; } -void cppISteamFriends_SteamFriends011_EnumerateFollowingList( struct cppISteamFriends_SteamFriends011_EnumerateFollowingList_params *params ) +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; params->_ret = iface->EnumerateFollowingList( params->unStartIndex ); + return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends011.h b/lsteamclient/cppISteamFriends_SteamFriends011.h deleted file mode 100644 index 50dee17e..00000000 --- a/lsteamclient/cppISteamFriends_SteamFriends011.h +++ /dev/null @@ -1,531 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamFriends_SteamFriends011_GetPersonaName_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamFriends_SteamFriends011_GetPersonaName( struct cppISteamFriends_SteamFriends011_GetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends011_SetPersonaName_params -{ - void *linux_side; - const char *pchPersonaName; -}; -extern void cppISteamFriends_SteamFriends011_SetPersonaName( struct cppISteamFriends_SteamFriends011_SetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends011_GetPersonaState_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamFriends_SteamFriends011_GetPersonaState( struct cppISteamFriends_SteamFriends011_GetPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends011_GetFriendCount_params -{ - void *linux_side; - int32_t _ret; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends011_GetFriendCount( struct cppISteamFriends_SteamFriends011_GetFriendCount_params *params ); - -struct cppISteamFriends_SteamFriends011_GetFriendByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iFriend; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends011_GetFriendByIndex( struct cppISteamFriends_SteamFriends011_GetFriendByIndex_params *params ); - -struct cppISteamFriends_SteamFriends011_GetFriendRelationship_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends011_GetFriendRelationship( struct cppISteamFriends_SteamFriends011_GetFriendRelationship_params *params ); - -struct cppISteamFriends_SteamFriends011_GetFriendPersonaState_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends011_GetFriendPersonaState( struct cppISteamFriends_SteamFriends011_GetFriendPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends011_GetFriendPersonaName_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends011_GetFriendPersonaName( struct cppISteamFriends_SteamFriends011_GetFriendPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends011_GetFriendGamePlayed_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - FriendGameInfo_t *pFriendGameInfo; -}; -extern void cppISteamFriends_SteamFriends011_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends011_GetFriendGamePlayed_params *params ); - -struct cppISteamFriends_SteamFriends011_GetFriendPersonaNameHistory_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - int32_t iPersonaName; -}; -extern void cppISteamFriends_SteamFriends011_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends011_GetFriendPersonaNameHistory_params *params ); - -struct cppISteamFriends_SteamFriends011_HasFriend_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends011_HasFriend( struct cppISteamFriends_SteamFriends011_HasFriend_params *params ); - -struct cppISteamFriends_SteamFriends011_GetClanCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamFriends_SteamFriends011_GetClanCount( struct cppISteamFriends_SteamFriends011_GetClanCount_params *params ); - -struct cppISteamFriends_SteamFriends011_GetClanByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iClan; -}; -extern void cppISteamFriends_SteamFriends011_GetClanByIndex( struct cppISteamFriends_SteamFriends011_GetClanByIndex_params *params ); - -struct cppISteamFriends_SteamFriends011_GetClanName_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends011_GetClanName( struct cppISteamFriends_SteamFriends011_GetClanName_params *params ); - -struct cppISteamFriends_SteamFriends011_GetClanTag_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends011_GetClanTag( struct cppISteamFriends_SteamFriends011_GetClanTag_params *params ); - -struct cppISteamFriends_SteamFriends011_GetClanActivityCounts_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClan; - int32_t *pnOnline; - int32_t *pnInGame; - int32_t *pnChatting; -}; -extern void cppISteamFriends_SteamFriends011_GetClanActivityCounts( struct cppISteamFriends_SteamFriends011_GetClanActivityCounts_params *params ); - -struct cppISteamFriends_SteamFriends011_DownloadClanActivityCounts_params -{ - void *linux_side; - uint64_t _ret; - CSteamID *psteamIDClans; - int32_t cClansToRequest; -}; -extern void cppISteamFriends_SteamFriends011_DownloadClanActivityCounts( struct cppISteamFriends_SteamFriends011_DownloadClanActivityCounts_params *params ); - -struct cppISteamFriends_SteamFriends011_GetFriendCountFromSource_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDSource; -}; -extern void cppISteamFriends_SteamFriends011_GetFriendCountFromSource( struct cppISteamFriends_SteamFriends011_GetFriendCountFromSource_params *params ); - -struct cppISteamFriends_SteamFriends011_GetFriendFromSourceByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDSource; - int32_t iFriend; -}; -extern void cppISteamFriends_SteamFriends011_GetFriendFromSourceByIndex( struct cppISteamFriends_SteamFriends011_GetFriendFromSourceByIndex_params *params ); - -struct cppISteamFriends_SteamFriends011_IsUserInSource_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - CSteamID steamIDSource; -}; -extern void cppISteamFriends_SteamFriends011_IsUserInSource( struct cppISteamFriends_SteamFriends011_IsUserInSource_params *params ); - -struct cppISteamFriends_SteamFriends011_SetInGameVoiceSpeaking_params -{ - void *linux_side; - CSteamID steamIDUser; - bool bSpeaking; -}; -extern void cppISteamFriends_SteamFriends011_SetInGameVoiceSpeaking( struct cppISteamFriends_SteamFriends011_SetInGameVoiceSpeaking_params *params ); - -struct cppISteamFriends_SteamFriends011_ActivateGameOverlay_params -{ - void *linux_side; - const char *pchDialog; -}; -extern void cppISteamFriends_SteamFriends011_ActivateGameOverlay( struct cppISteamFriends_SteamFriends011_ActivateGameOverlay_params *params ); - -struct cppISteamFriends_SteamFriends011_ActivateGameOverlayToUser_params -{ - void *linux_side; - const char *pchDialog; - CSteamID steamID; -}; -extern void cppISteamFriends_SteamFriends011_ActivateGameOverlayToUser( struct cppISteamFriends_SteamFriends011_ActivateGameOverlayToUser_params *params ); - -struct cppISteamFriends_SteamFriends011_ActivateGameOverlayToWebPage_params -{ - void *linux_side; - const char *pchURL; -}; -extern void cppISteamFriends_SteamFriends011_ActivateGameOverlayToWebPage( struct cppISteamFriends_SteamFriends011_ActivateGameOverlayToWebPage_params *params ); - -struct cppISteamFriends_SteamFriends011_ActivateGameOverlayToStore_params -{ - void *linux_side; - uint32_t nAppID; -}; -extern void cppISteamFriends_SteamFriends011_ActivateGameOverlayToStore( struct cppISteamFriends_SteamFriends011_ActivateGameOverlayToStore_params *params ); - -struct cppISteamFriends_SteamFriends011_SetPlayedWith_params -{ - void *linux_side; - CSteamID steamIDUserPlayedWith; -}; -extern void cppISteamFriends_SteamFriends011_SetPlayedWith( struct cppISteamFriends_SteamFriends011_SetPlayedWith_params *params ); - -struct cppISteamFriends_SteamFriends011_ActivateGameOverlayInviteDialog_params -{ - void *linux_side; - CSteamID steamIDLobby; -}; -extern void cppISteamFriends_SteamFriends011_ActivateGameOverlayInviteDialog( struct cppISteamFriends_SteamFriends011_ActivateGameOverlayInviteDialog_params *params ); - -struct cppISteamFriends_SteamFriends011_GetSmallFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends011_GetSmallFriendAvatar( struct cppISteamFriends_SteamFriends011_GetSmallFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends011_GetMediumFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends011_GetMediumFriendAvatar( struct cppISteamFriends_SteamFriends011_GetMediumFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends011_GetLargeFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends011_GetLargeFriendAvatar( struct cppISteamFriends_SteamFriends011_GetLargeFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends011_RequestUserInformation_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - bool bRequireNameOnly; -}; -extern void cppISteamFriends_SteamFriends011_RequestUserInformation( struct cppISteamFriends_SteamFriends011_RequestUserInformation_params *params ); - -struct cppISteamFriends_SteamFriends011_RequestClanOfficerList_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends011_RequestClanOfficerList( struct cppISteamFriends_SteamFriends011_RequestClanOfficerList_params *params ); - -struct cppISteamFriends_SteamFriends011_GetClanOwner_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends011_GetClanOwner( struct cppISteamFriends_SteamFriends011_GetClanOwner_params *params ); - -struct cppISteamFriends_SteamFriends011_GetClanOfficerCount_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends011_GetClanOfficerCount( struct cppISteamFriends_SteamFriends011_GetClanOfficerCount_params *params ); - -struct cppISteamFriends_SteamFriends011_GetClanOfficerByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDClan; - int32_t iOfficer; -}; -extern void cppISteamFriends_SteamFriends011_GetClanOfficerByIndex( struct cppISteamFriends_SteamFriends011_GetClanOfficerByIndex_params *params ); - -struct cppISteamFriends_SteamFriends011_GetUserRestrictions_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamFriends_SteamFriends011_GetUserRestrictions( struct cppISteamFriends_SteamFriends011_GetUserRestrictions_params *params ); - -struct cppISteamFriends_SteamFriends011_SetRichPresence_params -{ - void *linux_side; - bool _ret; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamFriends_SteamFriends011_SetRichPresence( struct cppISteamFriends_SteamFriends011_SetRichPresence_params *params ); - -struct cppISteamFriends_SteamFriends011_ClearRichPresence_params -{ - void *linux_side; -}; -extern void cppISteamFriends_SteamFriends011_ClearRichPresence( struct cppISteamFriends_SteamFriends011_ClearRichPresence_params *params ); - -struct cppISteamFriends_SteamFriends011_GetFriendRichPresence_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - const char *pchKey; -}; -extern void cppISteamFriends_SteamFriends011_GetFriendRichPresence( struct cppISteamFriends_SteamFriends011_GetFriendRichPresence_params *params ); - -struct cppISteamFriends_SteamFriends011_GetFriendRichPresenceKeyCount_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends011_GetFriendRichPresenceKeyCount( struct cppISteamFriends_SteamFriends011_GetFriendRichPresenceKeyCount_params *params ); - -struct cppISteamFriends_SteamFriends011_GetFriendRichPresenceKeyByIndex_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - int32_t iKey; -}; -extern void cppISteamFriends_SteamFriends011_GetFriendRichPresenceKeyByIndex( struct cppISteamFriends_SteamFriends011_GetFriendRichPresenceKeyByIndex_params *params ); - -struct cppISteamFriends_SteamFriends011_RequestFriendRichPresence_params -{ - void *linux_side; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends011_RequestFriendRichPresence( struct cppISteamFriends_SteamFriends011_RequestFriendRichPresence_params *params ); - -struct cppISteamFriends_SteamFriends011_InviteUserToGame_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - const char *pchConnectString; -}; -extern void cppISteamFriends_SteamFriends011_InviteUserToGame( struct cppISteamFriends_SteamFriends011_InviteUserToGame_params *params ); - -struct cppISteamFriends_SteamFriends011_GetCoplayFriendCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamFriends_SteamFriends011_GetCoplayFriendCount( struct cppISteamFriends_SteamFriends011_GetCoplayFriendCount_params *params ); - -struct cppISteamFriends_SteamFriends011_GetCoplayFriend_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iCoplayFriend; -}; -extern void cppISteamFriends_SteamFriends011_GetCoplayFriend( struct cppISteamFriends_SteamFriends011_GetCoplayFriend_params *params ); - -struct cppISteamFriends_SteamFriends011_GetFriendCoplayTime_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends011_GetFriendCoplayTime( struct cppISteamFriends_SteamFriends011_GetFriendCoplayTime_params *params ); - -struct cppISteamFriends_SteamFriends011_GetFriendCoplayGame_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends011_GetFriendCoplayGame( struct cppISteamFriends_SteamFriends011_GetFriendCoplayGame_params *params ); - -struct cppISteamFriends_SteamFriends011_JoinClanChatRoom_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends011_JoinClanChatRoom( struct cppISteamFriends_SteamFriends011_JoinClanChatRoom_params *params ); - -struct cppISteamFriends_SteamFriends011_LeaveClanChatRoom_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends011_LeaveClanChatRoom( struct cppISteamFriends_SteamFriends011_LeaveClanChatRoom_params *params ); - -struct cppISteamFriends_SteamFriends011_GetClanChatMemberCount_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends011_GetClanChatMemberCount( struct cppISteamFriends_SteamFriends011_GetClanChatMemberCount_params *params ); - -struct cppISteamFriends_SteamFriends011_GetChatMemberByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDClan; - int32_t iUser; -}; -extern void cppISteamFriends_SteamFriends011_GetChatMemberByIndex( struct cppISteamFriends_SteamFriends011_GetChatMemberByIndex_params *params ); - -struct cppISteamFriends_SteamFriends011_SendClanChatMessage_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; - const char *pchText; -}; -extern void cppISteamFriends_SteamFriends011_SendClanChatMessage( struct cppISteamFriends_SteamFriends011_SendClanChatMessage_params *params ); - -struct cppISteamFriends_SteamFriends011_GetClanChatMessage_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDClanChat; - int32_t iMessage; - void *prgchText; - int32_t cchTextMax; - uint32_t *_e; - CSteamID *_f; -}; -extern void cppISteamFriends_SteamFriends011_GetClanChatMessage( struct cppISteamFriends_SteamFriends011_GetClanChatMessage_params *params ); - -struct cppISteamFriends_SteamFriends011_IsClanChatAdmin_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; - CSteamID steamIDUser; -}; -extern void cppISteamFriends_SteamFriends011_IsClanChatAdmin( struct cppISteamFriends_SteamFriends011_IsClanChatAdmin_params *params ); - -struct cppISteamFriends_SteamFriends011_IsClanChatWindowOpenInSteam_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; -}; -extern void cppISteamFriends_SteamFriends011_IsClanChatWindowOpenInSteam( struct cppISteamFriends_SteamFriends011_IsClanChatWindowOpenInSteam_params *params ); - -struct cppISteamFriends_SteamFriends011_OpenClanChatWindowInSteam_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; -}; -extern void cppISteamFriends_SteamFriends011_OpenClanChatWindowInSteam( struct cppISteamFriends_SteamFriends011_OpenClanChatWindowInSteam_params *params ); - -struct cppISteamFriends_SteamFriends011_CloseClanChatWindowInSteam_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; -}; -extern void cppISteamFriends_SteamFriends011_CloseClanChatWindowInSteam( struct cppISteamFriends_SteamFriends011_CloseClanChatWindowInSteam_params *params ); - -struct cppISteamFriends_SteamFriends011_SetListenForFriendsMessages_params -{ - void *linux_side; - bool _ret; - bool bInterceptEnabled; -}; -extern void cppISteamFriends_SteamFriends011_SetListenForFriendsMessages( struct cppISteamFriends_SteamFriends011_SetListenForFriendsMessages_params *params ); - -struct cppISteamFriends_SteamFriends011_ReplyToFriendMessage_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - const char *pchMsgToSend; -}; -extern void cppISteamFriends_SteamFriends011_ReplyToFriendMessage( struct cppISteamFriends_SteamFriends011_ReplyToFriendMessage_params *params ); - -struct cppISteamFriends_SteamFriends011_GetFriendMessage_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; - int32_t iMessageID; - void *pvData; - int32_t cubData; - uint32_t *peChatEntryType; -}; -extern void cppISteamFriends_SteamFriends011_GetFriendMessage( struct cppISteamFriends_SteamFriends011_GetFriendMessage_params *params ); - -struct cppISteamFriends_SteamFriends011_GetFollowerCount_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamID; -}; -extern void cppISteamFriends_SteamFriends011_GetFollowerCount( struct cppISteamFriends_SteamFriends011_GetFollowerCount_params *params ); - -struct cppISteamFriends_SteamFriends011_IsFollowing_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamID; -}; -extern void cppISteamFriends_SteamFriends011_IsFollowing( struct cppISteamFriends_SteamFriends011_IsFollowing_params *params ); - -struct cppISteamFriends_SteamFriends011_EnumerateFollowingList_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unStartIndex; -}; -extern void cppISteamFriends_SteamFriends011_EnumerateFollowingList( struct cppISteamFriends_SteamFriends011_EnumerateFollowingList_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamFriends_SteamFriends012.cpp b/lsteamclient/cppISteamFriends_SteamFriends012.cpp index a2e60daa..e6cc3e6f 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends012.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends012.cpp @@ -1,382 +1,507 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamFriends_SteamFriends012.h" -void cppISteamFriends_SteamFriends012_GetPersonaName( struct cppISteamFriends_SteamFriends012_GetPersonaName_params *params ) +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; params->_ret = iface->GetPersonaName( ); + return 0; } -void cppISteamFriends_SteamFriends012_SetPersonaName( struct cppISteamFriends_SteamFriends012_SetPersonaName_params *params ) +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; params->_ret = iface->SetPersonaName( params->pchPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends012_GetPersonaState( struct cppISteamFriends_SteamFriends012_GetPersonaState_params *params ) +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; params->_ret = iface->GetPersonaState( ); + return 0; } -void cppISteamFriends_SteamFriends012_GetFriendCount( struct cppISteamFriends_SteamFriends012_GetFriendCount_params *params ) +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; params->_ret = iface->GetFriendCount( params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends012_GetFriendByIndex( struct cppISteamFriends_SteamFriends012_GetFriendByIndex_params *params ) +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; *params->_ret = iface->GetFriendByIndex( params->iFriend, params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends012_GetFriendRelationship( struct cppISteamFriends_SteamFriends012_GetFriendRelationship_params *params ) +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; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends012_GetFriendPersonaState( struct cppISteamFriends_SteamFriends012_GetFriendPersonaState_params *params ) +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; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends012_GetFriendPersonaName( struct cppISteamFriends_SteamFriends012_GetFriendPersonaName_params *params ) +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; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends012_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends012_GetFriendGamePlayed_params *params ) +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; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pFriendGameInfo ); + return 0; } -void cppISteamFriends_SteamFriends012_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends012_GetFriendPersonaNameHistory_params *params ) +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; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends012_HasFriend( struct cppISteamFriends_SteamFriends012_HasFriend_params *params ) +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; params->_ret = iface->HasFriend( params->steamIDFriend, params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends012_GetClanCount( struct cppISteamFriends_SteamFriends012_GetClanCount_params *params ) +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; params->_ret = iface->GetClanCount( ); + return 0; } -void cppISteamFriends_SteamFriends012_GetClanByIndex( struct cppISteamFriends_SteamFriends012_GetClanByIndex_params *params ) +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; *params->_ret = iface->GetClanByIndex( params->iClan ); + return 0; } -void cppISteamFriends_SteamFriends012_GetClanName( struct cppISteamFriends_SteamFriends012_GetClanName_params *params ) +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; params->_ret = iface->GetClanName( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends012_GetClanTag( struct cppISteamFriends_SteamFriends012_GetClanTag_params *params ) +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; params->_ret = iface->GetClanTag( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends012_GetClanActivityCounts( struct cppISteamFriends_SteamFriends012_GetClanActivityCounts_params *params ) +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; params->_ret = iface->GetClanActivityCounts( params->steamIDClan, params->pnOnline, params->pnInGame, params->pnChatting ); + return 0; } -void cppISteamFriends_SteamFriends012_DownloadClanActivityCounts( struct cppISteamFriends_SteamFriends012_DownloadClanActivityCounts_params *params ) +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; params->_ret = iface->DownloadClanActivityCounts( params->psteamIDClans, params->cClansToRequest ); + return 0; } -void cppISteamFriends_SteamFriends012_GetFriendCountFromSource( struct cppISteamFriends_SteamFriends012_GetFriendCountFromSource_params *params ) +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; params->_ret = iface->GetFriendCountFromSource( params->steamIDSource ); + return 0; } -void cppISteamFriends_SteamFriends012_GetFriendFromSourceByIndex( struct cppISteamFriends_SteamFriends012_GetFriendFromSourceByIndex_params *params ) +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; *params->_ret = iface->GetFriendFromSourceByIndex( params->steamIDSource, params->iFriend ); + return 0; } -void cppISteamFriends_SteamFriends012_IsUserInSource( struct cppISteamFriends_SteamFriends012_IsUserInSource_params *params ) +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; params->_ret = iface->IsUserInSource( params->steamIDUser, params->steamIDSource ); + return 0; } -void cppISteamFriends_SteamFriends012_SetInGameVoiceSpeaking( struct cppISteamFriends_SteamFriends012_SetInGameVoiceSpeaking_params *params ) +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; iface->SetInGameVoiceSpeaking( params->steamIDUser, params->bSpeaking ); + return 0; } -void cppISteamFriends_SteamFriends012_ActivateGameOverlay( struct cppISteamFriends_SteamFriends012_ActivateGameOverlay_params *params ) +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; iface->ActivateGameOverlay( params->pchDialog ); + return 0; } -void cppISteamFriends_SteamFriends012_ActivateGameOverlayToUser( struct cppISteamFriends_SteamFriends012_ActivateGameOverlayToUser_params *params ) +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; iface->ActivateGameOverlayToUser( params->pchDialog, params->steamID ); + return 0; } -void cppISteamFriends_SteamFriends012_ActivateGameOverlayToWebPage( struct cppISteamFriends_SteamFriends012_ActivateGameOverlayToWebPage_params *params ) +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; iface->ActivateGameOverlayToWebPage( params->pchURL ); + return 0; } -void cppISteamFriends_SteamFriends012_ActivateGameOverlayToStore( struct cppISteamFriends_SteamFriends012_ActivateGameOverlayToStore_params *params ) +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; iface->ActivateGameOverlayToStore( params->nAppID ); + return 0; } -void cppISteamFriends_SteamFriends012_SetPlayedWith( struct cppISteamFriends_SteamFriends012_SetPlayedWith_params *params ) +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; iface->SetPlayedWith( params->steamIDUserPlayedWith ); + return 0; } -void cppISteamFriends_SteamFriends012_ActivateGameOverlayInviteDialog( struct cppISteamFriends_SteamFriends012_ActivateGameOverlayInviteDialog_params *params ) +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; iface->ActivateGameOverlayInviteDialog( params->steamIDLobby ); + return 0; } -void cppISteamFriends_SteamFriends012_GetSmallFriendAvatar( struct cppISteamFriends_SteamFriends012_GetSmallFriendAvatar_params *params ) +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; params->_ret = iface->GetSmallFriendAvatar( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends012_GetMediumFriendAvatar( struct cppISteamFriends_SteamFriends012_GetMediumFriendAvatar_params *params ) +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; params->_ret = iface->GetMediumFriendAvatar( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends012_GetLargeFriendAvatar( struct cppISteamFriends_SteamFriends012_GetLargeFriendAvatar_params *params ) +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; params->_ret = iface->GetLargeFriendAvatar( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends012_RequestUserInformation( struct cppISteamFriends_SteamFriends012_RequestUserInformation_params *params ) +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; params->_ret = iface->RequestUserInformation( params->steamIDUser, params->bRequireNameOnly ); + return 0; } -void cppISteamFriends_SteamFriends012_RequestClanOfficerList( struct cppISteamFriends_SteamFriends012_RequestClanOfficerList_params *params ) +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; params->_ret = iface->RequestClanOfficerList( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends012_GetClanOwner( struct cppISteamFriends_SteamFriends012_GetClanOwner_params *params ) +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; *params->_ret = iface->GetClanOwner( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends012_GetClanOfficerCount( struct cppISteamFriends_SteamFriends012_GetClanOfficerCount_params *params ) +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; params->_ret = iface->GetClanOfficerCount( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends012_GetClanOfficerByIndex( struct cppISteamFriends_SteamFriends012_GetClanOfficerByIndex_params *params ) +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; *params->_ret = iface->GetClanOfficerByIndex( params->steamIDClan, params->iOfficer ); + return 0; } -void cppISteamFriends_SteamFriends012_GetUserRestrictions( struct cppISteamFriends_SteamFriends012_GetUserRestrictions_params *params ) +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; params->_ret = iface->GetUserRestrictions( ); + return 0; } -void cppISteamFriends_SteamFriends012_SetRichPresence( struct cppISteamFriends_SteamFriends012_SetRichPresence_params *params ) +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; params->_ret = iface->SetRichPresence( params->pchKey, params->pchValue ); + return 0; } -void cppISteamFriends_SteamFriends012_ClearRichPresence( struct cppISteamFriends_SteamFriends012_ClearRichPresence_params *params ) +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; iface->ClearRichPresence( ); + return 0; } -void cppISteamFriends_SteamFriends012_GetFriendRichPresence( struct cppISteamFriends_SteamFriends012_GetFriendRichPresence_params *params ) +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; params->_ret = iface->GetFriendRichPresence( params->steamIDFriend, params->pchKey ); + return 0; } -void cppISteamFriends_SteamFriends012_GetFriendRichPresenceKeyCount( struct cppISteamFriends_SteamFriends012_GetFriendRichPresenceKeyCount_params *params ) +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; params->_ret = iface->GetFriendRichPresenceKeyCount( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends012_GetFriendRichPresenceKeyByIndex( struct cppISteamFriends_SteamFriends012_GetFriendRichPresenceKeyByIndex_params *params ) +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; params->_ret = iface->GetFriendRichPresenceKeyByIndex( params->steamIDFriend, params->iKey ); + return 0; } -void cppISteamFriends_SteamFriends012_RequestFriendRichPresence( struct cppISteamFriends_SteamFriends012_RequestFriendRichPresence_params *params ) +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; iface->RequestFriendRichPresence( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends012_InviteUserToGame( struct cppISteamFriends_SteamFriends012_InviteUserToGame_params *params ) +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; params->_ret = iface->InviteUserToGame( params->steamIDFriend, params->pchConnectString ); + return 0; } -void cppISteamFriends_SteamFriends012_GetCoplayFriendCount( struct cppISteamFriends_SteamFriends012_GetCoplayFriendCount_params *params ) +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; params->_ret = iface->GetCoplayFriendCount( ); + return 0; } -void cppISteamFriends_SteamFriends012_GetCoplayFriend( struct cppISteamFriends_SteamFriends012_GetCoplayFriend_params *params ) +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; *params->_ret = iface->GetCoplayFriend( params->iCoplayFriend ); + return 0; } -void cppISteamFriends_SteamFriends012_GetFriendCoplayTime( struct cppISteamFriends_SteamFriends012_GetFriendCoplayTime_params *params ) +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; params->_ret = iface->GetFriendCoplayTime( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends012_GetFriendCoplayGame( struct cppISteamFriends_SteamFriends012_GetFriendCoplayGame_params *params ) +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; params->_ret = iface->GetFriendCoplayGame( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends012_JoinClanChatRoom( struct cppISteamFriends_SteamFriends012_JoinClanChatRoom_params *params ) +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; params->_ret = iface->JoinClanChatRoom( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends012_LeaveClanChatRoom( struct cppISteamFriends_SteamFriends012_LeaveClanChatRoom_params *params ) +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; params->_ret = iface->LeaveClanChatRoom( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends012_GetClanChatMemberCount( struct cppISteamFriends_SteamFriends012_GetClanChatMemberCount_params *params ) +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; params->_ret = iface->GetClanChatMemberCount( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends012_GetChatMemberByIndex( struct cppISteamFriends_SteamFriends012_GetChatMemberByIndex_params *params ) +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; *params->_ret = iface->GetChatMemberByIndex( params->steamIDClan, params->iUser ); + return 0; } -void cppISteamFriends_SteamFriends012_SendClanChatMessage( struct cppISteamFriends_SteamFriends012_SendClanChatMessage_params *params ) +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; params->_ret = iface->SendClanChatMessage( params->steamIDClanChat, params->pchText ); + return 0; } -void cppISteamFriends_SteamFriends012_GetClanChatMessage( struct cppISteamFriends_SteamFriends012_GetClanChatMessage_params *params ) +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; params->_ret = iface->GetClanChatMessage( params->steamIDClanChat, params->iMessage, params->prgchText, params->cchTextMax, params->_e, params->_f ); + return 0; } -void cppISteamFriends_SteamFriends012_IsClanChatAdmin( struct cppISteamFriends_SteamFriends012_IsClanChatAdmin_params *params ) +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; params->_ret = iface->IsClanChatAdmin( params->steamIDClanChat, params->steamIDUser ); + return 0; } -void cppISteamFriends_SteamFriends012_IsClanChatWindowOpenInSteam( struct cppISteamFriends_SteamFriends012_IsClanChatWindowOpenInSteam_params *params ) +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; params->_ret = iface->IsClanChatWindowOpenInSteam( params->steamIDClanChat ); + return 0; } -void cppISteamFriends_SteamFriends012_OpenClanChatWindowInSteam( struct cppISteamFriends_SteamFriends012_OpenClanChatWindowInSteam_params *params ) +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; params->_ret = iface->OpenClanChatWindowInSteam( params->steamIDClanChat ); + return 0; } -void cppISteamFriends_SteamFriends012_CloseClanChatWindowInSteam( struct cppISteamFriends_SteamFriends012_CloseClanChatWindowInSteam_params *params ) +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; params->_ret = iface->CloseClanChatWindowInSteam( params->steamIDClanChat ); + return 0; } -void cppISteamFriends_SteamFriends012_SetListenForFriendsMessages( struct cppISteamFriends_SteamFriends012_SetListenForFriendsMessages_params *params ) +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; params->_ret = iface->SetListenForFriendsMessages( params->bInterceptEnabled ); + return 0; } -void cppISteamFriends_SteamFriends012_ReplyToFriendMessage( struct cppISteamFriends_SteamFriends012_ReplyToFriendMessage_params *params ) +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; params->_ret = iface->ReplyToFriendMessage( params->steamIDFriend, params->pchMsgToSend ); + return 0; } -void cppISteamFriends_SteamFriends012_GetFriendMessage( struct cppISteamFriends_SteamFriends012_GetFriendMessage_params *params ) +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; params->_ret = iface->GetFriendMessage( params->steamIDFriend, params->iMessageID, params->pvData, params->cubData, params->peChatEntryType ); + return 0; } -void cppISteamFriends_SteamFriends012_GetFollowerCount( struct cppISteamFriends_SteamFriends012_GetFollowerCount_params *params ) +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; params->_ret = iface->GetFollowerCount( params->steamID ); + return 0; } -void cppISteamFriends_SteamFriends012_IsFollowing( struct cppISteamFriends_SteamFriends012_IsFollowing_params *params ) +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; params->_ret = iface->IsFollowing( params->steamID ); + return 0; } -void cppISteamFriends_SteamFriends012_EnumerateFollowingList( struct cppISteamFriends_SteamFriends012_EnumerateFollowingList_params *params ) +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; params->_ret = iface->EnumerateFollowingList( params->unStartIndex ); + return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends012.h b/lsteamclient/cppISteamFriends_SteamFriends012.h deleted file mode 100644 index 12b5123e..00000000 --- a/lsteamclient/cppISteamFriends_SteamFriends012.h +++ /dev/null @@ -1,532 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamFriends_SteamFriends012_GetPersonaName_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamFriends_SteamFriends012_GetPersonaName( struct cppISteamFriends_SteamFriends012_GetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends012_SetPersonaName_params -{ - void *linux_side; - uint64_t _ret; - const char *pchPersonaName; -}; -extern void cppISteamFriends_SteamFriends012_SetPersonaName( struct cppISteamFriends_SteamFriends012_SetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends012_GetPersonaState_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamFriends_SteamFriends012_GetPersonaState( struct cppISteamFriends_SteamFriends012_GetPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends012_GetFriendCount_params -{ - void *linux_side; - int32_t _ret; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends012_GetFriendCount( struct cppISteamFriends_SteamFriends012_GetFriendCount_params *params ); - -struct cppISteamFriends_SteamFriends012_GetFriendByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iFriend; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends012_GetFriendByIndex( struct cppISteamFriends_SteamFriends012_GetFriendByIndex_params *params ); - -struct cppISteamFriends_SteamFriends012_GetFriendRelationship_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends012_GetFriendRelationship( struct cppISteamFriends_SteamFriends012_GetFriendRelationship_params *params ); - -struct cppISteamFriends_SteamFriends012_GetFriendPersonaState_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends012_GetFriendPersonaState( struct cppISteamFriends_SteamFriends012_GetFriendPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends012_GetFriendPersonaName_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends012_GetFriendPersonaName( struct cppISteamFriends_SteamFriends012_GetFriendPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends012_GetFriendGamePlayed_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - FriendGameInfo_t *pFriendGameInfo; -}; -extern void cppISteamFriends_SteamFriends012_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends012_GetFriendGamePlayed_params *params ); - -struct cppISteamFriends_SteamFriends012_GetFriendPersonaNameHistory_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - int32_t iPersonaName; -}; -extern void cppISteamFriends_SteamFriends012_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends012_GetFriendPersonaNameHistory_params *params ); - -struct cppISteamFriends_SteamFriends012_HasFriend_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends012_HasFriend( struct cppISteamFriends_SteamFriends012_HasFriend_params *params ); - -struct cppISteamFriends_SteamFriends012_GetClanCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamFriends_SteamFriends012_GetClanCount( struct cppISteamFriends_SteamFriends012_GetClanCount_params *params ); - -struct cppISteamFriends_SteamFriends012_GetClanByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iClan; -}; -extern void cppISteamFriends_SteamFriends012_GetClanByIndex( struct cppISteamFriends_SteamFriends012_GetClanByIndex_params *params ); - -struct cppISteamFriends_SteamFriends012_GetClanName_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends012_GetClanName( struct cppISteamFriends_SteamFriends012_GetClanName_params *params ); - -struct cppISteamFriends_SteamFriends012_GetClanTag_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends012_GetClanTag( struct cppISteamFriends_SteamFriends012_GetClanTag_params *params ); - -struct cppISteamFriends_SteamFriends012_GetClanActivityCounts_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClan; - int32_t *pnOnline; - int32_t *pnInGame; - int32_t *pnChatting; -}; -extern void cppISteamFriends_SteamFriends012_GetClanActivityCounts( struct cppISteamFriends_SteamFriends012_GetClanActivityCounts_params *params ); - -struct cppISteamFriends_SteamFriends012_DownloadClanActivityCounts_params -{ - void *linux_side; - uint64_t _ret; - CSteamID *psteamIDClans; - int32_t cClansToRequest; -}; -extern void cppISteamFriends_SteamFriends012_DownloadClanActivityCounts( struct cppISteamFriends_SteamFriends012_DownloadClanActivityCounts_params *params ); - -struct cppISteamFriends_SteamFriends012_GetFriendCountFromSource_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDSource; -}; -extern void cppISteamFriends_SteamFriends012_GetFriendCountFromSource( struct cppISteamFriends_SteamFriends012_GetFriendCountFromSource_params *params ); - -struct cppISteamFriends_SteamFriends012_GetFriendFromSourceByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDSource; - int32_t iFriend; -}; -extern void cppISteamFriends_SteamFriends012_GetFriendFromSourceByIndex( struct cppISteamFriends_SteamFriends012_GetFriendFromSourceByIndex_params *params ); - -struct cppISteamFriends_SteamFriends012_IsUserInSource_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - CSteamID steamIDSource; -}; -extern void cppISteamFriends_SteamFriends012_IsUserInSource( struct cppISteamFriends_SteamFriends012_IsUserInSource_params *params ); - -struct cppISteamFriends_SteamFriends012_SetInGameVoiceSpeaking_params -{ - void *linux_side; - CSteamID steamIDUser; - bool bSpeaking; -}; -extern void cppISteamFriends_SteamFriends012_SetInGameVoiceSpeaking( struct cppISteamFriends_SteamFriends012_SetInGameVoiceSpeaking_params *params ); - -struct cppISteamFriends_SteamFriends012_ActivateGameOverlay_params -{ - void *linux_side; - const char *pchDialog; -}; -extern void cppISteamFriends_SteamFriends012_ActivateGameOverlay( struct cppISteamFriends_SteamFriends012_ActivateGameOverlay_params *params ); - -struct cppISteamFriends_SteamFriends012_ActivateGameOverlayToUser_params -{ - void *linux_side; - const char *pchDialog; - CSteamID steamID; -}; -extern void cppISteamFriends_SteamFriends012_ActivateGameOverlayToUser( struct cppISteamFriends_SteamFriends012_ActivateGameOverlayToUser_params *params ); - -struct cppISteamFriends_SteamFriends012_ActivateGameOverlayToWebPage_params -{ - void *linux_side; - const char *pchURL; -}; -extern void cppISteamFriends_SteamFriends012_ActivateGameOverlayToWebPage( struct cppISteamFriends_SteamFriends012_ActivateGameOverlayToWebPage_params *params ); - -struct cppISteamFriends_SteamFriends012_ActivateGameOverlayToStore_params -{ - void *linux_side; - uint32_t nAppID; -}; -extern void cppISteamFriends_SteamFriends012_ActivateGameOverlayToStore( struct cppISteamFriends_SteamFriends012_ActivateGameOverlayToStore_params *params ); - -struct cppISteamFriends_SteamFriends012_SetPlayedWith_params -{ - void *linux_side; - CSteamID steamIDUserPlayedWith; -}; -extern void cppISteamFriends_SteamFriends012_SetPlayedWith( struct cppISteamFriends_SteamFriends012_SetPlayedWith_params *params ); - -struct cppISteamFriends_SteamFriends012_ActivateGameOverlayInviteDialog_params -{ - void *linux_side; - CSteamID steamIDLobby; -}; -extern void cppISteamFriends_SteamFriends012_ActivateGameOverlayInviteDialog( struct cppISteamFriends_SteamFriends012_ActivateGameOverlayInviteDialog_params *params ); - -struct cppISteamFriends_SteamFriends012_GetSmallFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends012_GetSmallFriendAvatar( struct cppISteamFriends_SteamFriends012_GetSmallFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends012_GetMediumFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends012_GetMediumFriendAvatar( struct cppISteamFriends_SteamFriends012_GetMediumFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends012_GetLargeFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends012_GetLargeFriendAvatar( struct cppISteamFriends_SteamFriends012_GetLargeFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends012_RequestUserInformation_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - bool bRequireNameOnly; -}; -extern void cppISteamFriends_SteamFriends012_RequestUserInformation( struct cppISteamFriends_SteamFriends012_RequestUserInformation_params *params ); - -struct cppISteamFriends_SteamFriends012_RequestClanOfficerList_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends012_RequestClanOfficerList( struct cppISteamFriends_SteamFriends012_RequestClanOfficerList_params *params ); - -struct cppISteamFriends_SteamFriends012_GetClanOwner_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends012_GetClanOwner( struct cppISteamFriends_SteamFriends012_GetClanOwner_params *params ); - -struct cppISteamFriends_SteamFriends012_GetClanOfficerCount_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends012_GetClanOfficerCount( struct cppISteamFriends_SteamFriends012_GetClanOfficerCount_params *params ); - -struct cppISteamFriends_SteamFriends012_GetClanOfficerByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDClan; - int32_t iOfficer; -}; -extern void cppISteamFriends_SteamFriends012_GetClanOfficerByIndex( struct cppISteamFriends_SteamFriends012_GetClanOfficerByIndex_params *params ); - -struct cppISteamFriends_SteamFriends012_GetUserRestrictions_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamFriends_SteamFriends012_GetUserRestrictions( struct cppISteamFriends_SteamFriends012_GetUserRestrictions_params *params ); - -struct cppISteamFriends_SteamFriends012_SetRichPresence_params -{ - void *linux_side; - bool _ret; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamFriends_SteamFriends012_SetRichPresence( struct cppISteamFriends_SteamFriends012_SetRichPresence_params *params ); - -struct cppISteamFriends_SteamFriends012_ClearRichPresence_params -{ - void *linux_side; -}; -extern void cppISteamFriends_SteamFriends012_ClearRichPresence( struct cppISteamFriends_SteamFriends012_ClearRichPresence_params *params ); - -struct cppISteamFriends_SteamFriends012_GetFriendRichPresence_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - const char *pchKey; -}; -extern void cppISteamFriends_SteamFriends012_GetFriendRichPresence( struct cppISteamFriends_SteamFriends012_GetFriendRichPresence_params *params ); - -struct cppISteamFriends_SteamFriends012_GetFriendRichPresenceKeyCount_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends012_GetFriendRichPresenceKeyCount( struct cppISteamFriends_SteamFriends012_GetFriendRichPresenceKeyCount_params *params ); - -struct cppISteamFriends_SteamFriends012_GetFriendRichPresenceKeyByIndex_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - int32_t iKey; -}; -extern void cppISteamFriends_SteamFriends012_GetFriendRichPresenceKeyByIndex( struct cppISteamFriends_SteamFriends012_GetFriendRichPresenceKeyByIndex_params *params ); - -struct cppISteamFriends_SteamFriends012_RequestFriendRichPresence_params -{ - void *linux_side; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends012_RequestFriendRichPresence( struct cppISteamFriends_SteamFriends012_RequestFriendRichPresence_params *params ); - -struct cppISteamFriends_SteamFriends012_InviteUserToGame_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - const char *pchConnectString; -}; -extern void cppISteamFriends_SteamFriends012_InviteUserToGame( struct cppISteamFriends_SteamFriends012_InviteUserToGame_params *params ); - -struct cppISteamFriends_SteamFriends012_GetCoplayFriendCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamFriends_SteamFriends012_GetCoplayFriendCount( struct cppISteamFriends_SteamFriends012_GetCoplayFriendCount_params *params ); - -struct cppISteamFriends_SteamFriends012_GetCoplayFriend_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iCoplayFriend; -}; -extern void cppISteamFriends_SteamFriends012_GetCoplayFriend( struct cppISteamFriends_SteamFriends012_GetCoplayFriend_params *params ); - -struct cppISteamFriends_SteamFriends012_GetFriendCoplayTime_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends012_GetFriendCoplayTime( struct cppISteamFriends_SteamFriends012_GetFriendCoplayTime_params *params ); - -struct cppISteamFriends_SteamFriends012_GetFriendCoplayGame_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends012_GetFriendCoplayGame( struct cppISteamFriends_SteamFriends012_GetFriendCoplayGame_params *params ); - -struct cppISteamFriends_SteamFriends012_JoinClanChatRoom_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends012_JoinClanChatRoom( struct cppISteamFriends_SteamFriends012_JoinClanChatRoom_params *params ); - -struct cppISteamFriends_SteamFriends012_LeaveClanChatRoom_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends012_LeaveClanChatRoom( struct cppISteamFriends_SteamFriends012_LeaveClanChatRoom_params *params ); - -struct cppISteamFriends_SteamFriends012_GetClanChatMemberCount_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends012_GetClanChatMemberCount( struct cppISteamFriends_SteamFriends012_GetClanChatMemberCount_params *params ); - -struct cppISteamFriends_SteamFriends012_GetChatMemberByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDClan; - int32_t iUser; -}; -extern void cppISteamFriends_SteamFriends012_GetChatMemberByIndex( struct cppISteamFriends_SteamFriends012_GetChatMemberByIndex_params *params ); - -struct cppISteamFriends_SteamFriends012_SendClanChatMessage_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; - const char *pchText; -}; -extern void cppISteamFriends_SteamFriends012_SendClanChatMessage( struct cppISteamFriends_SteamFriends012_SendClanChatMessage_params *params ); - -struct cppISteamFriends_SteamFriends012_GetClanChatMessage_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDClanChat; - int32_t iMessage; - void *prgchText; - int32_t cchTextMax; - uint32_t *_e; - CSteamID *_f; -}; -extern void cppISteamFriends_SteamFriends012_GetClanChatMessage( struct cppISteamFriends_SteamFriends012_GetClanChatMessage_params *params ); - -struct cppISteamFriends_SteamFriends012_IsClanChatAdmin_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; - CSteamID steamIDUser; -}; -extern void cppISteamFriends_SteamFriends012_IsClanChatAdmin( struct cppISteamFriends_SteamFriends012_IsClanChatAdmin_params *params ); - -struct cppISteamFriends_SteamFriends012_IsClanChatWindowOpenInSteam_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; -}; -extern void cppISteamFriends_SteamFriends012_IsClanChatWindowOpenInSteam( struct cppISteamFriends_SteamFriends012_IsClanChatWindowOpenInSteam_params *params ); - -struct cppISteamFriends_SteamFriends012_OpenClanChatWindowInSteam_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; -}; -extern void cppISteamFriends_SteamFriends012_OpenClanChatWindowInSteam( struct cppISteamFriends_SteamFriends012_OpenClanChatWindowInSteam_params *params ); - -struct cppISteamFriends_SteamFriends012_CloseClanChatWindowInSteam_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; -}; -extern void cppISteamFriends_SteamFriends012_CloseClanChatWindowInSteam( struct cppISteamFriends_SteamFriends012_CloseClanChatWindowInSteam_params *params ); - -struct cppISteamFriends_SteamFriends012_SetListenForFriendsMessages_params -{ - void *linux_side; - bool _ret; - bool bInterceptEnabled; -}; -extern void cppISteamFriends_SteamFriends012_SetListenForFriendsMessages( struct cppISteamFriends_SteamFriends012_SetListenForFriendsMessages_params *params ); - -struct cppISteamFriends_SteamFriends012_ReplyToFriendMessage_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - const char *pchMsgToSend; -}; -extern void cppISteamFriends_SteamFriends012_ReplyToFriendMessage( struct cppISteamFriends_SteamFriends012_ReplyToFriendMessage_params *params ); - -struct cppISteamFriends_SteamFriends012_GetFriendMessage_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; - int32_t iMessageID; - void *pvData; - int32_t cubData; - uint32_t *peChatEntryType; -}; -extern void cppISteamFriends_SteamFriends012_GetFriendMessage( struct cppISteamFriends_SteamFriends012_GetFriendMessage_params *params ); - -struct cppISteamFriends_SteamFriends012_GetFollowerCount_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamID; -}; -extern void cppISteamFriends_SteamFriends012_GetFollowerCount( struct cppISteamFriends_SteamFriends012_GetFollowerCount_params *params ); - -struct cppISteamFriends_SteamFriends012_IsFollowing_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamID; -}; -extern void cppISteamFriends_SteamFriends012_IsFollowing( struct cppISteamFriends_SteamFriends012_IsFollowing_params *params ); - -struct cppISteamFriends_SteamFriends012_EnumerateFollowingList_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unStartIndex; -}; -extern void cppISteamFriends_SteamFriends012_EnumerateFollowingList( struct cppISteamFriends_SteamFriends012_EnumerateFollowingList_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamFriends_SteamFriends013.cpp b/lsteamclient/cppISteamFriends_SteamFriends013.cpp index eda2320e..ccd651f9 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends013.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends013.cpp @@ -1,382 +1,507 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamFriends_SteamFriends013.h" -void cppISteamFriends_SteamFriends013_GetPersonaName( struct cppISteamFriends_SteamFriends013_GetPersonaName_params *params ) +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; params->_ret = iface->GetPersonaName( ); + return 0; } -void cppISteamFriends_SteamFriends013_SetPersonaName( struct cppISteamFriends_SteamFriends013_SetPersonaName_params *params ) +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; params->_ret = iface->SetPersonaName( params->pchPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends013_GetPersonaState( struct cppISteamFriends_SteamFriends013_GetPersonaState_params *params ) +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; params->_ret = iface->GetPersonaState( ); + return 0; } -void cppISteamFriends_SteamFriends013_GetFriendCount( struct cppISteamFriends_SteamFriends013_GetFriendCount_params *params ) +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; params->_ret = iface->GetFriendCount( params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends013_GetFriendByIndex( struct cppISteamFriends_SteamFriends013_GetFriendByIndex_params *params ) +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; *params->_ret = iface->GetFriendByIndex( params->iFriend, params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends013_GetFriendRelationship( struct cppISteamFriends_SteamFriends013_GetFriendRelationship_params *params ) +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; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends013_GetFriendPersonaState( struct cppISteamFriends_SteamFriends013_GetFriendPersonaState_params *params ) +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; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends013_GetFriendPersonaName( struct cppISteamFriends_SteamFriends013_GetFriendPersonaName_params *params ) +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; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends013_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends013_GetFriendGamePlayed_params *params ) +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; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pFriendGameInfo ); + return 0; } -void cppISteamFriends_SteamFriends013_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends013_GetFriendPersonaNameHistory_params *params ) +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; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends013_HasFriend( struct cppISteamFriends_SteamFriends013_HasFriend_params *params ) +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; params->_ret = iface->HasFriend( params->steamIDFriend, params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends013_GetClanCount( struct cppISteamFriends_SteamFriends013_GetClanCount_params *params ) +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; params->_ret = iface->GetClanCount( ); + return 0; } -void cppISteamFriends_SteamFriends013_GetClanByIndex( struct cppISteamFriends_SteamFriends013_GetClanByIndex_params *params ) +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; *params->_ret = iface->GetClanByIndex( params->iClan ); + return 0; } -void cppISteamFriends_SteamFriends013_GetClanName( struct cppISteamFriends_SteamFriends013_GetClanName_params *params ) +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; params->_ret = iface->GetClanName( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends013_GetClanTag( struct cppISteamFriends_SteamFriends013_GetClanTag_params *params ) +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; params->_ret = iface->GetClanTag( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends013_GetClanActivityCounts( struct cppISteamFriends_SteamFriends013_GetClanActivityCounts_params *params ) +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; params->_ret = iface->GetClanActivityCounts( params->steamIDClan, params->pnOnline, params->pnInGame, params->pnChatting ); + return 0; } -void cppISteamFriends_SteamFriends013_DownloadClanActivityCounts( struct cppISteamFriends_SteamFriends013_DownloadClanActivityCounts_params *params ) +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; params->_ret = iface->DownloadClanActivityCounts( params->psteamIDClans, params->cClansToRequest ); + return 0; } -void cppISteamFriends_SteamFriends013_GetFriendCountFromSource( struct cppISteamFriends_SteamFriends013_GetFriendCountFromSource_params *params ) +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; params->_ret = iface->GetFriendCountFromSource( params->steamIDSource ); + return 0; } -void cppISteamFriends_SteamFriends013_GetFriendFromSourceByIndex( struct cppISteamFriends_SteamFriends013_GetFriendFromSourceByIndex_params *params ) +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; *params->_ret = iface->GetFriendFromSourceByIndex( params->steamIDSource, params->iFriend ); + return 0; } -void cppISteamFriends_SteamFriends013_IsUserInSource( struct cppISteamFriends_SteamFriends013_IsUserInSource_params *params ) +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; params->_ret = iface->IsUserInSource( params->steamIDUser, params->steamIDSource ); + return 0; } -void cppISteamFriends_SteamFriends013_SetInGameVoiceSpeaking( struct cppISteamFriends_SteamFriends013_SetInGameVoiceSpeaking_params *params ) +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; iface->SetInGameVoiceSpeaking( params->steamIDUser, params->bSpeaking ); + return 0; } -void cppISteamFriends_SteamFriends013_ActivateGameOverlay( struct cppISteamFriends_SteamFriends013_ActivateGameOverlay_params *params ) +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; iface->ActivateGameOverlay( params->pchDialog ); + return 0; } -void cppISteamFriends_SteamFriends013_ActivateGameOverlayToUser( struct cppISteamFriends_SteamFriends013_ActivateGameOverlayToUser_params *params ) +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; iface->ActivateGameOverlayToUser( params->pchDialog, params->steamID ); + return 0; } -void cppISteamFriends_SteamFriends013_ActivateGameOverlayToWebPage( struct cppISteamFriends_SteamFriends013_ActivateGameOverlayToWebPage_params *params ) +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; iface->ActivateGameOverlayToWebPage( params->pchURL ); + return 0; } -void cppISteamFriends_SteamFriends013_ActivateGameOverlayToStore( struct cppISteamFriends_SteamFriends013_ActivateGameOverlayToStore_params *params ) +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; iface->ActivateGameOverlayToStore( params->nAppID, params->eFlag ); + return 0; } -void cppISteamFriends_SteamFriends013_SetPlayedWith( struct cppISteamFriends_SteamFriends013_SetPlayedWith_params *params ) +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; iface->SetPlayedWith( params->steamIDUserPlayedWith ); + return 0; } -void cppISteamFriends_SteamFriends013_ActivateGameOverlayInviteDialog( struct cppISteamFriends_SteamFriends013_ActivateGameOverlayInviteDialog_params *params ) +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; iface->ActivateGameOverlayInviteDialog( params->steamIDLobby ); + return 0; } -void cppISteamFriends_SteamFriends013_GetSmallFriendAvatar( struct cppISteamFriends_SteamFriends013_GetSmallFriendAvatar_params *params ) +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; params->_ret = iface->GetSmallFriendAvatar( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends013_GetMediumFriendAvatar( struct cppISteamFriends_SteamFriends013_GetMediumFriendAvatar_params *params ) +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; params->_ret = iface->GetMediumFriendAvatar( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends013_GetLargeFriendAvatar( struct cppISteamFriends_SteamFriends013_GetLargeFriendAvatar_params *params ) +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; params->_ret = iface->GetLargeFriendAvatar( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends013_RequestUserInformation( struct cppISteamFriends_SteamFriends013_RequestUserInformation_params *params ) +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; params->_ret = iface->RequestUserInformation( params->steamIDUser, params->bRequireNameOnly ); + return 0; } -void cppISteamFriends_SteamFriends013_RequestClanOfficerList( struct cppISteamFriends_SteamFriends013_RequestClanOfficerList_params *params ) +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; params->_ret = iface->RequestClanOfficerList( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends013_GetClanOwner( struct cppISteamFriends_SteamFriends013_GetClanOwner_params *params ) +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; *params->_ret = iface->GetClanOwner( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends013_GetClanOfficerCount( struct cppISteamFriends_SteamFriends013_GetClanOfficerCount_params *params ) +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; params->_ret = iface->GetClanOfficerCount( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends013_GetClanOfficerByIndex( struct cppISteamFriends_SteamFriends013_GetClanOfficerByIndex_params *params ) +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; *params->_ret = iface->GetClanOfficerByIndex( params->steamIDClan, params->iOfficer ); + return 0; } -void cppISteamFriends_SteamFriends013_GetUserRestrictions( struct cppISteamFriends_SteamFriends013_GetUserRestrictions_params *params ) +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; params->_ret = iface->GetUserRestrictions( ); + return 0; } -void cppISteamFriends_SteamFriends013_SetRichPresence( struct cppISteamFriends_SteamFriends013_SetRichPresence_params *params ) +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; params->_ret = iface->SetRichPresence( params->pchKey, params->pchValue ); + return 0; } -void cppISteamFriends_SteamFriends013_ClearRichPresence( struct cppISteamFriends_SteamFriends013_ClearRichPresence_params *params ) +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; iface->ClearRichPresence( ); + return 0; } -void cppISteamFriends_SteamFriends013_GetFriendRichPresence( struct cppISteamFriends_SteamFriends013_GetFriendRichPresence_params *params ) +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; params->_ret = iface->GetFriendRichPresence( params->steamIDFriend, params->pchKey ); + return 0; } -void cppISteamFriends_SteamFriends013_GetFriendRichPresenceKeyCount( struct cppISteamFriends_SteamFriends013_GetFriendRichPresenceKeyCount_params *params ) +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; params->_ret = iface->GetFriendRichPresenceKeyCount( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends013_GetFriendRichPresenceKeyByIndex( struct cppISteamFriends_SteamFriends013_GetFriendRichPresenceKeyByIndex_params *params ) +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; params->_ret = iface->GetFriendRichPresenceKeyByIndex( params->steamIDFriend, params->iKey ); + return 0; } -void cppISteamFriends_SteamFriends013_RequestFriendRichPresence( struct cppISteamFriends_SteamFriends013_RequestFriendRichPresence_params *params ) +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; iface->RequestFriendRichPresence( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends013_InviteUserToGame( struct cppISteamFriends_SteamFriends013_InviteUserToGame_params *params ) +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; params->_ret = iface->InviteUserToGame( params->steamIDFriend, params->pchConnectString ); + return 0; } -void cppISteamFriends_SteamFriends013_GetCoplayFriendCount( struct cppISteamFriends_SteamFriends013_GetCoplayFriendCount_params *params ) +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; params->_ret = iface->GetCoplayFriendCount( ); + return 0; } -void cppISteamFriends_SteamFriends013_GetCoplayFriend( struct cppISteamFriends_SteamFriends013_GetCoplayFriend_params *params ) +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; *params->_ret = iface->GetCoplayFriend( params->iCoplayFriend ); + return 0; } -void cppISteamFriends_SteamFriends013_GetFriendCoplayTime( struct cppISteamFriends_SteamFriends013_GetFriendCoplayTime_params *params ) +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; params->_ret = iface->GetFriendCoplayTime( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends013_GetFriendCoplayGame( struct cppISteamFriends_SteamFriends013_GetFriendCoplayGame_params *params ) +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; params->_ret = iface->GetFriendCoplayGame( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends013_JoinClanChatRoom( struct cppISteamFriends_SteamFriends013_JoinClanChatRoom_params *params ) +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; params->_ret = iface->JoinClanChatRoom( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends013_LeaveClanChatRoom( struct cppISteamFriends_SteamFriends013_LeaveClanChatRoom_params *params ) +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; params->_ret = iface->LeaveClanChatRoom( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends013_GetClanChatMemberCount( struct cppISteamFriends_SteamFriends013_GetClanChatMemberCount_params *params ) +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; params->_ret = iface->GetClanChatMemberCount( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends013_GetChatMemberByIndex( struct cppISteamFriends_SteamFriends013_GetChatMemberByIndex_params *params ) +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; *params->_ret = iface->GetChatMemberByIndex( params->steamIDClan, params->iUser ); + return 0; } -void cppISteamFriends_SteamFriends013_SendClanChatMessage( struct cppISteamFriends_SteamFriends013_SendClanChatMessage_params *params ) +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; params->_ret = iface->SendClanChatMessage( params->steamIDClanChat, params->pchText ); + return 0; } -void cppISteamFriends_SteamFriends013_GetClanChatMessage( struct cppISteamFriends_SteamFriends013_GetClanChatMessage_params *params ) +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; params->_ret = iface->GetClanChatMessage( params->steamIDClanChat, params->iMessage, params->prgchText, params->cchTextMax, params->_e, params->_f ); + return 0; } -void cppISteamFriends_SteamFriends013_IsClanChatAdmin( struct cppISteamFriends_SteamFriends013_IsClanChatAdmin_params *params ) +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; params->_ret = iface->IsClanChatAdmin( params->steamIDClanChat, params->steamIDUser ); + return 0; } -void cppISteamFriends_SteamFriends013_IsClanChatWindowOpenInSteam( struct cppISteamFriends_SteamFriends013_IsClanChatWindowOpenInSteam_params *params ) +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; params->_ret = iface->IsClanChatWindowOpenInSteam( params->steamIDClanChat ); + return 0; } -void cppISteamFriends_SteamFriends013_OpenClanChatWindowInSteam( struct cppISteamFriends_SteamFriends013_OpenClanChatWindowInSteam_params *params ) +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; params->_ret = iface->OpenClanChatWindowInSteam( params->steamIDClanChat ); + return 0; } -void cppISteamFriends_SteamFriends013_CloseClanChatWindowInSteam( struct cppISteamFriends_SteamFriends013_CloseClanChatWindowInSteam_params *params ) +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; params->_ret = iface->CloseClanChatWindowInSteam( params->steamIDClanChat ); + return 0; } -void cppISteamFriends_SteamFriends013_SetListenForFriendsMessages( struct cppISteamFriends_SteamFriends013_SetListenForFriendsMessages_params *params ) +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; params->_ret = iface->SetListenForFriendsMessages( params->bInterceptEnabled ); + return 0; } -void cppISteamFriends_SteamFriends013_ReplyToFriendMessage( struct cppISteamFriends_SteamFriends013_ReplyToFriendMessage_params *params ) +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; params->_ret = iface->ReplyToFriendMessage( params->steamIDFriend, params->pchMsgToSend ); + return 0; } -void cppISteamFriends_SteamFriends013_GetFriendMessage( struct cppISteamFriends_SteamFriends013_GetFriendMessage_params *params ) +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; params->_ret = iface->GetFriendMessage( params->steamIDFriend, params->iMessageID, params->pvData, params->cubData, params->peChatEntryType ); + return 0; } -void cppISteamFriends_SteamFriends013_GetFollowerCount( struct cppISteamFriends_SteamFriends013_GetFollowerCount_params *params ) +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; params->_ret = iface->GetFollowerCount( params->steamID ); + return 0; } -void cppISteamFriends_SteamFriends013_IsFollowing( struct cppISteamFriends_SteamFriends013_IsFollowing_params *params ) +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; params->_ret = iface->IsFollowing( params->steamID ); + return 0; } -void cppISteamFriends_SteamFriends013_EnumerateFollowingList( struct cppISteamFriends_SteamFriends013_EnumerateFollowingList_params *params ) +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; params->_ret = iface->EnumerateFollowingList( params->unStartIndex ); + return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends013.h b/lsteamclient/cppISteamFriends_SteamFriends013.h deleted file mode 100644 index 989ffe95..00000000 --- a/lsteamclient/cppISteamFriends_SteamFriends013.h +++ /dev/null @@ -1,533 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamFriends_SteamFriends013_GetPersonaName_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamFriends_SteamFriends013_GetPersonaName( struct cppISteamFriends_SteamFriends013_GetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends013_SetPersonaName_params -{ - void *linux_side; - uint64_t _ret; - const char *pchPersonaName; -}; -extern void cppISteamFriends_SteamFriends013_SetPersonaName( struct cppISteamFriends_SteamFriends013_SetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends013_GetPersonaState_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamFriends_SteamFriends013_GetPersonaState( struct cppISteamFriends_SteamFriends013_GetPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends013_GetFriendCount_params -{ - void *linux_side; - int32_t _ret; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends013_GetFriendCount( struct cppISteamFriends_SteamFriends013_GetFriendCount_params *params ); - -struct cppISteamFriends_SteamFriends013_GetFriendByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iFriend; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends013_GetFriendByIndex( struct cppISteamFriends_SteamFriends013_GetFriendByIndex_params *params ); - -struct cppISteamFriends_SteamFriends013_GetFriendRelationship_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends013_GetFriendRelationship( struct cppISteamFriends_SteamFriends013_GetFriendRelationship_params *params ); - -struct cppISteamFriends_SteamFriends013_GetFriendPersonaState_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends013_GetFriendPersonaState( struct cppISteamFriends_SteamFriends013_GetFriendPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends013_GetFriendPersonaName_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends013_GetFriendPersonaName( struct cppISteamFriends_SteamFriends013_GetFriendPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends013_GetFriendGamePlayed_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - FriendGameInfo_t *pFriendGameInfo; -}; -extern void cppISteamFriends_SteamFriends013_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends013_GetFriendGamePlayed_params *params ); - -struct cppISteamFriends_SteamFriends013_GetFriendPersonaNameHistory_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - int32_t iPersonaName; -}; -extern void cppISteamFriends_SteamFriends013_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends013_GetFriendPersonaNameHistory_params *params ); - -struct cppISteamFriends_SteamFriends013_HasFriend_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends013_HasFriend( struct cppISteamFriends_SteamFriends013_HasFriend_params *params ); - -struct cppISteamFriends_SteamFriends013_GetClanCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamFriends_SteamFriends013_GetClanCount( struct cppISteamFriends_SteamFriends013_GetClanCount_params *params ); - -struct cppISteamFriends_SteamFriends013_GetClanByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iClan; -}; -extern void cppISteamFriends_SteamFriends013_GetClanByIndex( struct cppISteamFriends_SteamFriends013_GetClanByIndex_params *params ); - -struct cppISteamFriends_SteamFriends013_GetClanName_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends013_GetClanName( struct cppISteamFriends_SteamFriends013_GetClanName_params *params ); - -struct cppISteamFriends_SteamFriends013_GetClanTag_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends013_GetClanTag( struct cppISteamFriends_SteamFriends013_GetClanTag_params *params ); - -struct cppISteamFriends_SteamFriends013_GetClanActivityCounts_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClan; - int32_t *pnOnline; - int32_t *pnInGame; - int32_t *pnChatting; -}; -extern void cppISteamFriends_SteamFriends013_GetClanActivityCounts( struct cppISteamFriends_SteamFriends013_GetClanActivityCounts_params *params ); - -struct cppISteamFriends_SteamFriends013_DownloadClanActivityCounts_params -{ - void *linux_side; - uint64_t _ret; - CSteamID *psteamIDClans; - int32_t cClansToRequest; -}; -extern void cppISteamFriends_SteamFriends013_DownloadClanActivityCounts( struct cppISteamFriends_SteamFriends013_DownloadClanActivityCounts_params *params ); - -struct cppISteamFriends_SteamFriends013_GetFriendCountFromSource_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDSource; -}; -extern void cppISteamFriends_SteamFriends013_GetFriendCountFromSource( struct cppISteamFriends_SteamFriends013_GetFriendCountFromSource_params *params ); - -struct cppISteamFriends_SteamFriends013_GetFriendFromSourceByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDSource; - int32_t iFriend; -}; -extern void cppISteamFriends_SteamFriends013_GetFriendFromSourceByIndex( struct cppISteamFriends_SteamFriends013_GetFriendFromSourceByIndex_params *params ); - -struct cppISteamFriends_SteamFriends013_IsUserInSource_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - CSteamID steamIDSource; -}; -extern void cppISteamFriends_SteamFriends013_IsUserInSource( struct cppISteamFriends_SteamFriends013_IsUserInSource_params *params ); - -struct cppISteamFriends_SteamFriends013_SetInGameVoiceSpeaking_params -{ - void *linux_side; - CSteamID steamIDUser; - bool bSpeaking; -}; -extern void cppISteamFriends_SteamFriends013_SetInGameVoiceSpeaking( struct cppISteamFriends_SteamFriends013_SetInGameVoiceSpeaking_params *params ); - -struct cppISteamFriends_SteamFriends013_ActivateGameOverlay_params -{ - void *linux_side; - const char *pchDialog; -}; -extern void cppISteamFriends_SteamFriends013_ActivateGameOverlay( struct cppISteamFriends_SteamFriends013_ActivateGameOverlay_params *params ); - -struct cppISteamFriends_SteamFriends013_ActivateGameOverlayToUser_params -{ - void *linux_side; - const char *pchDialog; - CSteamID steamID; -}; -extern void cppISteamFriends_SteamFriends013_ActivateGameOverlayToUser( struct cppISteamFriends_SteamFriends013_ActivateGameOverlayToUser_params *params ); - -struct cppISteamFriends_SteamFriends013_ActivateGameOverlayToWebPage_params -{ - void *linux_side; - const char *pchURL; -}; -extern void cppISteamFriends_SteamFriends013_ActivateGameOverlayToWebPage( struct cppISteamFriends_SteamFriends013_ActivateGameOverlayToWebPage_params *params ); - -struct cppISteamFriends_SteamFriends013_ActivateGameOverlayToStore_params -{ - void *linux_side; - uint32_t nAppID; - uint32_t eFlag; -}; -extern void cppISteamFriends_SteamFriends013_ActivateGameOverlayToStore( struct cppISteamFriends_SteamFriends013_ActivateGameOverlayToStore_params *params ); - -struct cppISteamFriends_SteamFriends013_SetPlayedWith_params -{ - void *linux_side; - CSteamID steamIDUserPlayedWith; -}; -extern void cppISteamFriends_SteamFriends013_SetPlayedWith( struct cppISteamFriends_SteamFriends013_SetPlayedWith_params *params ); - -struct cppISteamFriends_SteamFriends013_ActivateGameOverlayInviteDialog_params -{ - void *linux_side; - CSteamID steamIDLobby; -}; -extern void cppISteamFriends_SteamFriends013_ActivateGameOverlayInviteDialog( struct cppISteamFriends_SteamFriends013_ActivateGameOverlayInviteDialog_params *params ); - -struct cppISteamFriends_SteamFriends013_GetSmallFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends013_GetSmallFriendAvatar( struct cppISteamFriends_SteamFriends013_GetSmallFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends013_GetMediumFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends013_GetMediumFriendAvatar( struct cppISteamFriends_SteamFriends013_GetMediumFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends013_GetLargeFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends013_GetLargeFriendAvatar( struct cppISteamFriends_SteamFriends013_GetLargeFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends013_RequestUserInformation_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - bool bRequireNameOnly; -}; -extern void cppISteamFriends_SteamFriends013_RequestUserInformation( struct cppISteamFriends_SteamFriends013_RequestUserInformation_params *params ); - -struct cppISteamFriends_SteamFriends013_RequestClanOfficerList_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends013_RequestClanOfficerList( struct cppISteamFriends_SteamFriends013_RequestClanOfficerList_params *params ); - -struct cppISteamFriends_SteamFriends013_GetClanOwner_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends013_GetClanOwner( struct cppISteamFriends_SteamFriends013_GetClanOwner_params *params ); - -struct cppISteamFriends_SteamFriends013_GetClanOfficerCount_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends013_GetClanOfficerCount( struct cppISteamFriends_SteamFriends013_GetClanOfficerCount_params *params ); - -struct cppISteamFriends_SteamFriends013_GetClanOfficerByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDClan; - int32_t iOfficer; -}; -extern void cppISteamFriends_SteamFriends013_GetClanOfficerByIndex( struct cppISteamFriends_SteamFriends013_GetClanOfficerByIndex_params *params ); - -struct cppISteamFriends_SteamFriends013_GetUserRestrictions_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamFriends_SteamFriends013_GetUserRestrictions( struct cppISteamFriends_SteamFriends013_GetUserRestrictions_params *params ); - -struct cppISteamFriends_SteamFriends013_SetRichPresence_params -{ - void *linux_side; - bool _ret; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamFriends_SteamFriends013_SetRichPresence( struct cppISteamFriends_SteamFriends013_SetRichPresence_params *params ); - -struct cppISteamFriends_SteamFriends013_ClearRichPresence_params -{ - void *linux_side; -}; -extern void cppISteamFriends_SteamFriends013_ClearRichPresence( struct cppISteamFriends_SteamFriends013_ClearRichPresence_params *params ); - -struct cppISteamFriends_SteamFriends013_GetFriendRichPresence_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - const char *pchKey; -}; -extern void cppISteamFriends_SteamFriends013_GetFriendRichPresence( struct cppISteamFriends_SteamFriends013_GetFriendRichPresence_params *params ); - -struct cppISteamFriends_SteamFriends013_GetFriendRichPresenceKeyCount_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends013_GetFriendRichPresenceKeyCount( struct cppISteamFriends_SteamFriends013_GetFriendRichPresenceKeyCount_params *params ); - -struct cppISteamFriends_SteamFriends013_GetFriendRichPresenceKeyByIndex_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - int32_t iKey; -}; -extern void cppISteamFriends_SteamFriends013_GetFriendRichPresenceKeyByIndex( struct cppISteamFriends_SteamFriends013_GetFriendRichPresenceKeyByIndex_params *params ); - -struct cppISteamFriends_SteamFriends013_RequestFriendRichPresence_params -{ - void *linux_side; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends013_RequestFriendRichPresence( struct cppISteamFriends_SteamFriends013_RequestFriendRichPresence_params *params ); - -struct cppISteamFriends_SteamFriends013_InviteUserToGame_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - const char *pchConnectString; -}; -extern void cppISteamFriends_SteamFriends013_InviteUserToGame( struct cppISteamFriends_SteamFriends013_InviteUserToGame_params *params ); - -struct cppISteamFriends_SteamFriends013_GetCoplayFriendCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamFriends_SteamFriends013_GetCoplayFriendCount( struct cppISteamFriends_SteamFriends013_GetCoplayFriendCount_params *params ); - -struct cppISteamFriends_SteamFriends013_GetCoplayFriend_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iCoplayFriend; -}; -extern void cppISteamFriends_SteamFriends013_GetCoplayFriend( struct cppISteamFriends_SteamFriends013_GetCoplayFriend_params *params ); - -struct cppISteamFriends_SteamFriends013_GetFriendCoplayTime_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends013_GetFriendCoplayTime( struct cppISteamFriends_SteamFriends013_GetFriendCoplayTime_params *params ); - -struct cppISteamFriends_SteamFriends013_GetFriendCoplayGame_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends013_GetFriendCoplayGame( struct cppISteamFriends_SteamFriends013_GetFriendCoplayGame_params *params ); - -struct cppISteamFriends_SteamFriends013_JoinClanChatRoom_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends013_JoinClanChatRoom( struct cppISteamFriends_SteamFriends013_JoinClanChatRoom_params *params ); - -struct cppISteamFriends_SteamFriends013_LeaveClanChatRoom_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends013_LeaveClanChatRoom( struct cppISteamFriends_SteamFriends013_LeaveClanChatRoom_params *params ); - -struct cppISteamFriends_SteamFriends013_GetClanChatMemberCount_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends013_GetClanChatMemberCount( struct cppISteamFriends_SteamFriends013_GetClanChatMemberCount_params *params ); - -struct cppISteamFriends_SteamFriends013_GetChatMemberByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDClan; - int32_t iUser; -}; -extern void cppISteamFriends_SteamFriends013_GetChatMemberByIndex( struct cppISteamFriends_SteamFriends013_GetChatMemberByIndex_params *params ); - -struct cppISteamFriends_SteamFriends013_SendClanChatMessage_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; - const char *pchText; -}; -extern void cppISteamFriends_SteamFriends013_SendClanChatMessage( struct cppISteamFriends_SteamFriends013_SendClanChatMessage_params *params ); - -struct cppISteamFriends_SteamFriends013_GetClanChatMessage_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDClanChat; - int32_t iMessage; - void *prgchText; - int32_t cchTextMax; - uint32_t *_e; - CSteamID *_f; -}; -extern void cppISteamFriends_SteamFriends013_GetClanChatMessage( struct cppISteamFriends_SteamFriends013_GetClanChatMessage_params *params ); - -struct cppISteamFriends_SteamFriends013_IsClanChatAdmin_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; - CSteamID steamIDUser; -}; -extern void cppISteamFriends_SteamFriends013_IsClanChatAdmin( struct cppISteamFriends_SteamFriends013_IsClanChatAdmin_params *params ); - -struct cppISteamFriends_SteamFriends013_IsClanChatWindowOpenInSteam_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; -}; -extern void cppISteamFriends_SteamFriends013_IsClanChatWindowOpenInSteam( struct cppISteamFriends_SteamFriends013_IsClanChatWindowOpenInSteam_params *params ); - -struct cppISteamFriends_SteamFriends013_OpenClanChatWindowInSteam_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; -}; -extern void cppISteamFriends_SteamFriends013_OpenClanChatWindowInSteam( struct cppISteamFriends_SteamFriends013_OpenClanChatWindowInSteam_params *params ); - -struct cppISteamFriends_SteamFriends013_CloseClanChatWindowInSteam_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; -}; -extern void cppISteamFriends_SteamFriends013_CloseClanChatWindowInSteam( struct cppISteamFriends_SteamFriends013_CloseClanChatWindowInSteam_params *params ); - -struct cppISteamFriends_SteamFriends013_SetListenForFriendsMessages_params -{ - void *linux_side; - bool _ret; - bool bInterceptEnabled; -}; -extern void cppISteamFriends_SteamFriends013_SetListenForFriendsMessages( struct cppISteamFriends_SteamFriends013_SetListenForFriendsMessages_params *params ); - -struct cppISteamFriends_SteamFriends013_ReplyToFriendMessage_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - const char *pchMsgToSend; -}; -extern void cppISteamFriends_SteamFriends013_ReplyToFriendMessage( struct cppISteamFriends_SteamFriends013_ReplyToFriendMessage_params *params ); - -struct cppISteamFriends_SteamFriends013_GetFriendMessage_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; - int32_t iMessageID; - void *pvData; - int32_t cubData; - uint32_t *peChatEntryType; -}; -extern void cppISteamFriends_SteamFriends013_GetFriendMessage( struct cppISteamFriends_SteamFriends013_GetFriendMessage_params *params ); - -struct cppISteamFriends_SteamFriends013_GetFollowerCount_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamID; -}; -extern void cppISteamFriends_SteamFriends013_GetFollowerCount( struct cppISteamFriends_SteamFriends013_GetFollowerCount_params *params ); - -struct cppISteamFriends_SteamFriends013_IsFollowing_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamID; -}; -extern void cppISteamFriends_SteamFriends013_IsFollowing( struct cppISteamFriends_SteamFriends013_IsFollowing_params *params ); - -struct cppISteamFriends_SteamFriends013_EnumerateFollowingList_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unStartIndex; -}; -extern void cppISteamFriends_SteamFriends013_EnumerateFollowingList( struct cppISteamFriends_SteamFriends013_EnumerateFollowingList_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamFriends_SteamFriends014.cpp b/lsteamclient/cppISteamFriends_SteamFriends014.cpp index 41259bbc..67bc7858 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends014.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends014.cpp @@ -1,388 +1,515 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamFriends_SteamFriends014.h" -void cppISteamFriends_SteamFriends014_GetPersonaName( struct cppISteamFriends_SteamFriends014_GetPersonaName_params *params ) +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; params->_ret = iface->GetPersonaName( ); + return 0; } -void cppISteamFriends_SteamFriends014_SetPersonaName( struct cppISteamFriends_SteamFriends014_SetPersonaName_params *params ) +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; params->_ret = iface->SetPersonaName( params->pchPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends014_GetPersonaState( struct cppISteamFriends_SteamFriends014_GetPersonaState_params *params ) +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; params->_ret = iface->GetPersonaState( ); + return 0; } -void cppISteamFriends_SteamFriends014_GetFriendCount( struct cppISteamFriends_SteamFriends014_GetFriendCount_params *params ) +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; params->_ret = iface->GetFriendCount( params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends014_GetFriendByIndex( struct cppISteamFriends_SteamFriends014_GetFriendByIndex_params *params ) +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; *params->_ret = iface->GetFriendByIndex( params->iFriend, params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends014_GetFriendRelationship( struct cppISteamFriends_SteamFriends014_GetFriendRelationship_params *params ) +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; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends014_GetFriendPersonaState( struct cppISteamFriends_SteamFriends014_GetFriendPersonaState_params *params ) +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; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends014_GetFriendPersonaName( struct cppISteamFriends_SteamFriends014_GetFriendPersonaName_params *params ) +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; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends014_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends014_GetFriendGamePlayed_params *params ) +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; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pFriendGameInfo ); + return 0; } -void cppISteamFriends_SteamFriends014_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends014_GetFriendPersonaNameHistory_params *params ) +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; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends014_GetPlayerNickname( struct cppISteamFriends_SteamFriends014_GetPlayerNickname_params *params ) +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; params->_ret = iface->GetPlayerNickname( params->steamIDPlayer ); + return 0; } -void cppISteamFriends_SteamFriends014_HasFriend( struct cppISteamFriends_SteamFriends014_HasFriend_params *params ) +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; params->_ret = iface->HasFriend( params->steamIDFriend, params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends014_GetClanCount( struct cppISteamFriends_SteamFriends014_GetClanCount_params *params ) +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; params->_ret = iface->GetClanCount( ); + return 0; } -void cppISteamFriends_SteamFriends014_GetClanByIndex( struct cppISteamFriends_SteamFriends014_GetClanByIndex_params *params ) +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; *params->_ret = iface->GetClanByIndex( params->iClan ); + return 0; } -void cppISteamFriends_SteamFriends014_GetClanName( struct cppISteamFriends_SteamFriends014_GetClanName_params *params ) +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; params->_ret = iface->GetClanName( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends014_GetClanTag( struct cppISteamFriends_SteamFriends014_GetClanTag_params *params ) +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; params->_ret = iface->GetClanTag( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends014_GetClanActivityCounts( struct cppISteamFriends_SteamFriends014_GetClanActivityCounts_params *params ) +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; params->_ret = iface->GetClanActivityCounts( params->steamIDClan, params->pnOnline, params->pnInGame, params->pnChatting ); + return 0; } -void cppISteamFriends_SteamFriends014_DownloadClanActivityCounts( struct cppISteamFriends_SteamFriends014_DownloadClanActivityCounts_params *params ) +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; params->_ret = iface->DownloadClanActivityCounts( params->psteamIDClans, params->cClansToRequest ); + return 0; } -void cppISteamFriends_SteamFriends014_GetFriendCountFromSource( struct cppISteamFriends_SteamFriends014_GetFriendCountFromSource_params *params ) +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; params->_ret = iface->GetFriendCountFromSource( params->steamIDSource ); + return 0; } -void cppISteamFriends_SteamFriends014_GetFriendFromSourceByIndex( struct cppISteamFriends_SteamFriends014_GetFriendFromSourceByIndex_params *params ) +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; *params->_ret = iface->GetFriendFromSourceByIndex( params->steamIDSource, params->iFriend ); + return 0; } -void cppISteamFriends_SteamFriends014_IsUserInSource( struct cppISteamFriends_SteamFriends014_IsUserInSource_params *params ) +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; params->_ret = iface->IsUserInSource( params->steamIDUser, params->steamIDSource ); + return 0; } -void cppISteamFriends_SteamFriends014_SetInGameVoiceSpeaking( struct cppISteamFriends_SteamFriends014_SetInGameVoiceSpeaking_params *params ) +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; iface->SetInGameVoiceSpeaking( params->steamIDUser, params->bSpeaking ); + return 0; } -void cppISteamFriends_SteamFriends014_ActivateGameOverlay( struct cppISteamFriends_SteamFriends014_ActivateGameOverlay_params *params ) +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; iface->ActivateGameOverlay( params->pchDialog ); + return 0; } -void cppISteamFriends_SteamFriends014_ActivateGameOverlayToUser( struct cppISteamFriends_SteamFriends014_ActivateGameOverlayToUser_params *params ) +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; iface->ActivateGameOverlayToUser( params->pchDialog, params->steamID ); + return 0; } -void cppISteamFriends_SteamFriends014_ActivateGameOverlayToWebPage( struct cppISteamFriends_SteamFriends014_ActivateGameOverlayToWebPage_params *params ) +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; iface->ActivateGameOverlayToWebPage( params->pchURL ); + return 0; } -void cppISteamFriends_SteamFriends014_ActivateGameOverlayToStore( struct cppISteamFriends_SteamFriends014_ActivateGameOverlayToStore_params *params ) +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; iface->ActivateGameOverlayToStore( params->nAppID, params->eFlag ); + return 0; } -void cppISteamFriends_SteamFriends014_SetPlayedWith( struct cppISteamFriends_SteamFriends014_SetPlayedWith_params *params ) +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; iface->SetPlayedWith( params->steamIDUserPlayedWith ); + return 0; } -void cppISteamFriends_SteamFriends014_ActivateGameOverlayInviteDialog( struct cppISteamFriends_SteamFriends014_ActivateGameOverlayInviteDialog_params *params ) +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; iface->ActivateGameOverlayInviteDialog( params->steamIDLobby ); + return 0; } -void cppISteamFriends_SteamFriends014_GetSmallFriendAvatar( struct cppISteamFriends_SteamFriends014_GetSmallFriendAvatar_params *params ) +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; params->_ret = iface->GetSmallFriendAvatar( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends014_GetMediumFriendAvatar( struct cppISteamFriends_SteamFriends014_GetMediumFriendAvatar_params *params ) +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; params->_ret = iface->GetMediumFriendAvatar( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends014_GetLargeFriendAvatar( struct cppISteamFriends_SteamFriends014_GetLargeFriendAvatar_params *params ) +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; params->_ret = iface->GetLargeFriendAvatar( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends014_RequestUserInformation( struct cppISteamFriends_SteamFriends014_RequestUserInformation_params *params ) +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; params->_ret = iface->RequestUserInformation( params->steamIDUser, params->bRequireNameOnly ); + return 0; } -void cppISteamFriends_SteamFriends014_RequestClanOfficerList( struct cppISteamFriends_SteamFriends014_RequestClanOfficerList_params *params ) +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; params->_ret = iface->RequestClanOfficerList( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends014_GetClanOwner( struct cppISteamFriends_SteamFriends014_GetClanOwner_params *params ) +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; *params->_ret = iface->GetClanOwner( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends014_GetClanOfficerCount( struct cppISteamFriends_SteamFriends014_GetClanOfficerCount_params *params ) +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; params->_ret = iface->GetClanOfficerCount( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends014_GetClanOfficerByIndex( struct cppISteamFriends_SteamFriends014_GetClanOfficerByIndex_params *params ) +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; *params->_ret = iface->GetClanOfficerByIndex( params->steamIDClan, params->iOfficer ); + return 0; } -void cppISteamFriends_SteamFriends014_GetUserRestrictions( struct cppISteamFriends_SteamFriends014_GetUserRestrictions_params *params ) +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; params->_ret = iface->GetUserRestrictions( ); + return 0; } -void cppISteamFriends_SteamFriends014_SetRichPresence( struct cppISteamFriends_SteamFriends014_SetRichPresence_params *params ) +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; params->_ret = iface->SetRichPresence( params->pchKey, params->pchValue ); + return 0; } -void cppISteamFriends_SteamFriends014_ClearRichPresence( struct cppISteamFriends_SteamFriends014_ClearRichPresence_params *params ) +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; iface->ClearRichPresence( ); + return 0; } -void cppISteamFriends_SteamFriends014_GetFriendRichPresence( struct cppISteamFriends_SteamFriends014_GetFriendRichPresence_params *params ) +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; params->_ret = iface->GetFriendRichPresence( params->steamIDFriend, params->pchKey ); + return 0; } -void cppISteamFriends_SteamFriends014_GetFriendRichPresenceKeyCount( struct cppISteamFriends_SteamFriends014_GetFriendRichPresenceKeyCount_params *params ) +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; params->_ret = iface->GetFriendRichPresenceKeyCount( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends014_GetFriendRichPresenceKeyByIndex( struct cppISteamFriends_SteamFriends014_GetFriendRichPresenceKeyByIndex_params *params ) +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; params->_ret = iface->GetFriendRichPresenceKeyByIndex( params->steamIDFriend, params->iKey ); + return 0; } -void cppISteamFriends_SteamFriends014_RequestFriendRichPresence( struct cppISteamFriends_SteamFriends014_RequestFriendRichPresence_params *params ) +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; iface->RequestFriendRichPresence( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends014_InviteUserToGame( struct cppISteamFriends_SteamFriends014_InviteUserToGame_params *params ) +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; params->_ret = iface->InviteUserToGame( params->steamIDFriend, params->pchConnectString ); + return 0; } -void cppISteamFriends_SteamFriends014_GetCoplayFriendCount( struct cppISteamFriends_SteamFriends014_GetCoplayFriendCount_params *params ) +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; params->_ret = iface->GetCoplayFriendCount( ); + return 0; } -void cppISteamFriends_SteamFriends014_GetCoplayFriend( struct cppISteamFriends_SteamFriends014_GetCoplayFriend_params *params ) +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; *params->_ret = iface->GetCoplayFriend( params->iCoplayFriend ); + return 0; } -void cppISteamFriends_SteamFriends014_GetFriendCoplayTime( struct cppISteamFriends_SteamFriends014_GetFriendCoplayTime_params *params ) +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; params->_ret = iface->GetFriendCoplayTime( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends014_GetFriendCoplayGame( struct cppISteamFriends_SteamFriends014_GetFriendCoplayGame_params *params ) +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; params->_ret = iface->GetFriendCoplayGame( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends014_JoinClanChatRoom( struct cppISteamFriends_SteamFriends014_JoinClanChatRoom_params *params ) +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; params->_ret = iface->JoinClanChatRoom( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends014_LeaveClanChatRoom( struct cppISteamFriends_SteamFriends014_LeaveClanChatRoom_params *params ) +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; params->_ret = iface->LeaveClanChatRoom( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends014_GetClanChatMemberCount( struct cppISteamFriends_SteamFriends014_GetClanChatMemberCount_params *params ) +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; params->_ret = iface->GetClanChatMemberCount( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends014_GetChatMemberByIndex( struct cppISteamFriends_SteamFriends014_GetChatMemberByIndex_params *params ) +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; *params->_ret = iface->GetChatMemberByIndex( params->steamIDClan, params->iUser ); + return 0; } -void cppISteamFriends_SteamFriends014_SendClanChatMessage( struct cppISteamFriends_SteamFriends014_SendClanChatMessage_params *params ) +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; params->_ret = iface->SendClanChatMessage( params->steamIDClanChat, params->pchText ); + return 0; } -void cppISteamFriends_SteamFriends014_GetClanChatMessage( struct cppISteamFriends_SteamFriends014_GetClanChatMessage_params *params ) +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; params->_ret = iface->GetClanChatMessage( params->steamIDClanChat, params->iMessage, params->prgchText, params->cchTextMax, params->peChatEntryType, params->psteamidChatter ); + return 0; } -void cppISteamFriends_SteamFriends014_IsClanChatAdmin( struct cppISteamFriends_SteamFriends014_IsClanChatAdmin_params *params ) +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; params->_ret = iface->IsClanChatAdmin( params->steamIDClanChat, params->steamIDUser ); + return 0; } -void cppISteamFriends_SteamFriends014_IsClanChatWindowOpenInSteam( struct cppISteamFriends_SteamFriends014_IsClanChatWindowOpenInSteam_params *params ) +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; params->_ret = iface->IsClanChatWindowOpenInSteam( params->steamIDClanChat ); + return 0; } -void cppISteamFriends_SteamFriends014_OpenClanChatWindowInSteam( struct cppISteamFriends_SteamFriends014_OpenClanChatWindowInSteam_params *params ) +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; params->_ret = iface->OpenClanChatWindowInSteam( params->steamIDClanChat ); + return 0; } -void cppISteamFriends_SteamFriends014_CloseClanChatWindowInSteam( struct cppISteamFriends_SteamFriends014_CloseClanChatWindowInSteam_params *params ) +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; params->_ret = iface->CloseClanChatWindowInSteam( params->steamIDClanChat ); + return 0; } -void cppISteamFriends_SteamFriends014_SetListenForFriendsMessages( struct cppISteamFriends_SteamFriends014_SetListenForFriendsMessages_params *params ) +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; params->_ret = iface->SetListenForFriendsMessages( params->bInterceptEnabled ); + return 0; } -void cppISteamFriends_SteamFriends014_ReplyToFriendMessage( struct cppISteamFriends_SteamFriends014_ReplyToFriendMessage_params *params ) +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; params->_ret = iface->ReplyToFriendMessage( params->steamIDFriend, params->pchMsgToSend ); + return 0; } -void cppISteamFriends_SteamFriends014_GetFriendMessage( struct cppISteamFriends_SteamFriends014_GetFriendMessage_params *params ) +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; params->_ret = iface->GetFriendMessage( params->steamIDFriend, params->iMessageID, params->pvData, params->cubData, params->peChatEntryType ); + return 0; } -void cppISteamFriends_SteamFriends014_GetFollowerCount( struct cppISteamFriends_SteamFriends014_GetFollowerCount_params *params ) +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; params->_ret = iface->GetFollowerCount( params->steamID ); + return 0; } -void cppISteamFriends_SteamFriends014_IsFollowing( struct cppISteamFriends_SteamFriends014_IsFollowing_params *params ) +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; params->_ret = iface->IsFollowing( params->steamID ); + return 0; } -void cppISteamFriends_SteamFriends014_EnumerateFollowingList( struct cppISteamFriends_SteamFriends014_EnumerateFollowingList_params *params ) +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; params->_ret = iface->EnumerateFollowingList( params->unStartIndex ); + return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends014.h b/lsteamclient/cppISteamFriends_SteamFriends014.h deleted file mode 100644 index 09357891..00000000 --- a/lsteamclient/cppISteamFriends_SteamFriends014.h +++ /dev/null @@ -1,541 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamFriends_SteamFriends014_GetPersonaName_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamFriends_SteamFriends014_GetPersonaName( struct cppISteamFriends_SteamFriends014_GetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends014_SetPersonaName_params -{ - void *linux_side; - uint64_t _ret; - const char *pchPersonaName; -}; -extern void cppISteamFriends_SteamFriends014_SetPersonaName( struct cppISteamFriends_SteamFriends014_SetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends014_GetPersonaState_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamFriends_SteamFriends014_GetPersonaState( struct cppISteamFriends_SteamFriends014_GetPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends014_GetFriendCount_params -{ - void *linux_side; - int32_t _ret; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends014_GetFriendCount( struct cppISteamFriends_SteamFriends014_GetFriendCount_params *params ); - -struct cppISteamFriends_SteamFriends014_GetFriendByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iFriend; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends014_GetFriendByIndex( struct cppISteamFriends_SteamFriends014_GetFriendByIndex_params *params ); - -struct cppISteamFriends_SteamFriends014_GetFriendRelationship_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends014_GetFriendRelationship( struct cppISteamFriends_SteamFriends014_GetFriendRelationship_params *params ); - -struct cppISteamFriends_SteamFriends014_GetFriendPersonaState_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends014_GetFriendPersonaState( struct cppISteamFriends_SteamFriends014_GetFriendPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends014_GetFriendPersonaName_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends014_GetFriendPersonaName( struct cppISteamFriends_SteamFriends014_GetFriendPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends014_GetFriendGamePlayed_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - FriendGameInfo_t *pFriendGameInfo; -}; -extern void cppISteamFriends_SteamFriends014_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends014_GetFriendGamePlayed_params *params ); - -struct cppISteamFriends_SteamFriends014_GetFriendPersonaNameHistory_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - int32_t iPersonaName; -}; -extern void cppISteamFriends_SteamFriends014_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends014_GetFriendPersonaNameHistory_params *params ); - -struct cppISteamFriends_SteamFriends014_GetPlayerNickname_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDPlayer; -}; -extern void cppISteamFriends_SteamFriends014_GetPlayerNickname( struct cppISteamFriends_SteamFriends014_GetPlayerNickname_params *params ); - -struct cppISteamFriends_SteamFriends014_HasFriend_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends014_HasFriend( struct cppISteamFriends_SteamFriends014_HasFriend_params *params ); - -struct cppISteamFriends_SteamFriends014_GetClanCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamFriends_SteamFriends014_GetClanCount( struct cppISteamFriends_SteamFriends014_GetClanCount_params *params ); - -struct cppISteamFriends_SteamFriends014_GetClanByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iClan; -}; -extern void cppISteamFriends_SteamFriends014_GetClanByIndex( struct cppISteamFriends_SteamFriends014_GetClanByIndex_params *params ); - -struct cppISteamFriends_SteamFriends014_GetClanName_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends014_GetClanName( struct cppISteamFriends_SteamFriends014_GetClanName_params *params ); - -struct cppISteamFriends_SteamFriends014_GetClanTag_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends014_GetClanTag( struct cppISteamFriends_SteamFriends014_GetClanTag_params *params ); - -struct cppISteamFriends_SteamFriends014_GetClanActivityCounts_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClan; - int32_t *pnOnline; - int32_t *pnInGame; - int32_t *pnChatting; -}; -extern void cppISteamFriends_SteamFriends014_GetClanActivityCounts( struct cppISteamFriends_SteamFriends014_GetClanActivityCounts_params *params ); - -struct cppISteamFriends_SteamFriends014_DownloadClanActivityCounts_params -{ - void *linux_side; - uint64_t _ret; - CSteamID *psteamIDClans; - int32_t cClansToRequest; -}; -extern void cppISteamFriends_SteamFriends014_DownloadClanActivityCounts( struct cppISteamFriends_SteamFriends014_DownloadClanActivityCounts_params *params ); - -struct cppISteamFriends_SteamFriends014_GetFriendCountFromSource_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDSource; -}; -extern void cppISteamFriends_SteamFriends014_GetFriendCountFromSource( struct cppISteamFriends_SteamFriends014_GetFriendCountFromSource_params *params ); - -struct cppISteamFriends_SteamFriends014_GetFriendFromSourceByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDSource; - int32_t iFriend; -}; -extern void cppISteamFriends_SteamFriends014_GetFriendFromSourceByIndex( struct cppISteamFriends_SteamFriends014_GetFriendFromSourceByIndex_params *params ); - -struct cppISteamFriends_SteamFriends014_IsUserInSource_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - CSteamID steamIDSource; -}; -extern void cppISteamFriends_SteamFriends014_IsUserInSource( struct cppISteamFriends_SteamFriends014_IsUserInSource_params *params ); - -struct cppISteamFriends_SteamFriends014_SetInGameVoiceSpeaking_params -{ - void *linux_side; - CSteamID steamIDUser; - bool bSpeaking; -}; -extern void cppISteamFriends_SteamFriends014_SetInGameVoiceSpeaking( struct cppISteamFriends_SteamFriends014_SetInGameVoiceSpeaking_params *params ); - -struct cppISteamFriends_SteamFriends014_ActivateGameOverlay_params -{ - void *linux_side; - const char *pchDialog; -}; -extern void cppISteamFriends_SteamFriends014_ActivateGameOverlay( struct cppISteamFriends_SteamFriends014_ActivateGameOverlay_params *params ); - -struct cppISteamFriends_SteamFriends014_ActivateGameOverlayToUser_params -{ - void *linux_side; - const char *pchDialog; - CSteamID steamID; -}; -extern void cppISteamFriends_SteamFriends014_ActivateGameOverlayToUser( struct cppISteamFriends_SteamFriends014_ActivateGameOverlayToUser_params *params ); - -struct cppISteamFriends_SteamFriends014_ActivateGameOverlayToWebPage_params -{ - void *linux_side; - const char *pchURL; -}; -extern void cppISteamFriends_SteamFriends014_ActivateGameOverlayToWebPage( struct cppISteamFriends_SteamFriends014_ActivateGameOverlayToWebPage_params *params ); - -struct cppISteamFriends_SteamFriends014_ActivateGameOverlayToStore_params -{ - void *linux_side; - uint32_t nAppID; - uint32_t eFlag; -}; -extern void cppISteamFriends_SteamFriends014_ActivateGameOverlayToStore( struct cppISteamFriends_SteamFriends014_ActivateGameOverlayToStore_params *params ); - -struct cppISteamFriends_SteamFriends014_SetPlayedWith_params -{ - void *linux_side; - CSteamID steamIDUserPlayedWith; -}; -extern void cppISteamFriends_SteamFriends014_SetPlayedWith( struct cppISteamFriends_SteamFriends014_SetPlayedWith_params *params ); - -struct cppISteamFriends_SteamFriends014_ActivateGameOverlayInviteDialog_params -{ - void *linux_side; - CSteamID steamIDLobby; -}; -extern void cppISteamFriends_SteamFriends014_ActivateGameOverlayInviteDialog( struct cppISteamFriends_SteamFriends014_ActivateGameOverlayInviteDialog_params *params ); - -struct cppISteamFriends_SteamFriends014_GetSmallFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends014_GetSmallFriendAvatar( struct cppISteamFriends_SteamFriends014_GetSmallFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends014_GetMediumFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends014_GetMediumFriendAvatar( struct cppISteamFriends_SteamFriends014_GetMediumFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends014_GetLargeFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends014_GetLargeFriendAvatar( struct cppISteamFriends_SteamFriends014_GetLargeFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends014_RequestUserInformation_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - bool bRequireNameOnly; -}; -extern void cppISteamFriends_SteamFriends014_RequestUserInformation( struct cppISteamFriends_SteamFriends014_RequestUserInformation_params *params ); - -struct cppISteamFriends_SteamFriends014_RequestClanOfficerList_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends014_RequestClanOfficerList( struct cppISteamFriends_SteamFriends014_RequestClanOfficerList_params *params ); - -struct cppISteamFriends_SteamFriends014_GetClanOwner_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends014_GetClanOwner( struct cppISteamFriends_SteamFriends014_GetClanOwner_params *params ); - -struct cppISteamFriends_SteamFriends014_GetClanOfficerCount_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends014_GetClanOfficerCount( struct cppISteamFriends_SteamFriends014_GetClanOfficerCount_params *params ); - -struct cppISteamFriends_SteamFriends014_GetClanOfficerByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDClan; - int32_t iOfficer; -}; -extern void cppISteamFriends_SteamFriends014_GetClanOfficerByIndex( struct cppISteamFriends_SteamFriends014_GetClanOfficerByIndex_params *params ); - -struct cppISteamFriends_SteamFriends014_GetUserRestrictions_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamFriends_SteamFriends014_GetUserRestrictions( struct cppISteamFriends_SteamFriends014_GetUserRestrictions_params *params ); - -struct cppISteamFriends_SteamFriends014_SetRichPresence_params -{ - void *linux_side; - bool _ret; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamFriends_SteamFriends014_SetRichPresence( struct cppISteamFriends_SteamFriends014_SetRichPresence_params *params ); - -struct cppISteamFriends_SteamFriends014_ClearRichPresence_params -{ - void *linux_side; -}; -extern void cppISteamFriends_SteamFriends014_ClearRichPresence( struct cppISteamFriends_SteamFriends014_ClearRichPresence_params *params ); - -struct cppISteamFriends_SteamFriends014_GetFriendRichPresence_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - const char *pchKey; -}; -extern void cppISteamFriends_SteamFriends014_GetFriendRichPresence( struct cppISteamFriends_SteamFriends014_GetFriendRichPresence_params *params ); - -struct cppISteamFriends_SteamFriends014_GetFriendRichPresenceKeyCount_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends014_GetFriendRichPresenceKeyCount( struct cppISteamFriends_SteamFriends014_GetFriendRichPresenceKeyCount_params *params ); - -struct cppISteamFriends_SteamFriends014_GetFriendRichPresenceKeyByIndex_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - int32_t iKey; -}; -extern void cppISteamFriends_SteamFriends014_GetFriendRichPresenceKeyByIndex( struct cppISteamFriends_SteamFriends014_GetFriendRichPresenceKeyByIndex_params *params ); - -struct cppISteamFriends_SteamFriends014_RequestFriendRichPresence_params -{ - void *linux_side; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends014_RequestFriendRichPresence( struct cppISteamFriends_SteamFriends014_RequestFriendRichPresence_params *params ); - -struct cppISteamFriends_SteamFriends014_InviteUserToGame_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - const char *pchConnectString; -}; -extern void cppISteamFriends_SteamFriends014_InviteUserToGame( struct cppISteamFriends_SteamFriends014_InviteUserToGame_params *params ); - -struct cppISteamFriends_SteamFriends014_GetCoplayFriendCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamFriends_SteamFriends014_GetCoplayFriendCount( struct cppISteamFriends_SteamFriends014_GetCoplayFriendCount_params *params ); - -struct cppISteamFriends_SteamFriends014_GetCoplayFriend_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iCoplayFriend; -}; -extern void cppISteamFriends_SteamFriends014_GetCoplayFriend( struct cppISteamFriends_SteamFriends014_GetCoplayFriend_params *params ); - -struct cppISteamFriends_SteamFriends014_GetFriendCoplayTime_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends014_GetFriendCoplayTime( struct cppISteamFriends_SteamFriends014_GetFriendCoplayTime_params *params ); - -struct cppISteamFriends_SteamFriends014_GetFriendCoplayGame_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends014_GetFriendCoplayGame( struct cppISteamFriends_SteamFriends014_GetFriendCoplayGame_params *params ); - -struct cppISteamFriends_SteamFriends014_JoinClanChatRoom_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends014_JoinClanChatRoom( struct cppISteamFriends_SteamFriends014_JoinClanChatRoom_params *params ); - -struct cppISteamFriends_SteamFriends014_LeaveClanChatRoom_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends014_LeaveClanChatRoom( struct cppISteamFriends_SteamFriends014_LeaveClanChatRoom_params *params ); - -struct cppISteamFriends_SteamFriends014_GetClanChatMemberCount_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends014_GetClanChatMemberCount( struct cppISteamFriends_SteamFriends014_GetClanChatMemberCount_params *params ); - -struct cppISteamFriends_SteamFriends014_GetChatMemberByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDClan; - int32_t iUser; -}; -extern void cppISteamFriends_SteamFriends014_GetChatMemberByIndex( struct cppISteamFriends_SteamFriends014_GetChatMemberByIndex_params *params ); - -struct cppISteamFriends_SteamFriends014_SendClanChatMessage_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; - const char *pchText; -}; -extern void cppISteamFriends_SteamFriends014_SendClanChatMessage( struct cppISteamFriends_SteamFriends014_SendClanChatMessage_params *params ); - -struct cppISteamFriends_SteamFriends014_GetClanChatMessage_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDClanChat; - int32_t iMessage; - void *prgchText; - int32_t cchTextMax; - uint32_t *peChatEntryType; - CSteamID *psteamidChatter; -}; -extern void cppISteamFriends_SteamFriends014_GetClanChatMessage( struct cppISteamFriends_SteamFriends014_GetClanChatMessage_params *params ); - -struct cppISteamFriends_SteamFriends014_IsClanChatAdmin_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; - CSteamID steamIDUser; -}; -extern void cppISteamFriends_SteamFriends014_IsClanChatAdmin( struct cppISteamFriends_SteamFriends014_IsClanChatAdmin_params *params ); - -struct cppISteamFriends_SteamFriends014_IsClanChatWindowOpenInSteam_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; -}; -extern void cppISteamFriends_SteamFriends014_IsClanChatWindowOpenInSteam( struct cppISteamFriends_SteamFriends014_IsClanChatWindowOpenInSteam_params *params ); - -struct cppISteamFriends_SteamFriends014_OpenClanChatWindowInSteam_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; -}; -extern void cppISteamFriends_SteamFriends014_OpenClanChatWindowInSteam( struct cppISteamFriends_SteamFriends014_OpenClanChatWindowInSteam_params *params ); - -struct cppISteamFriends_SteamFriends014_CloseClanChatWindowInSteam_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; -}; -extern void cppISteamFriends_SteamFriends014_CloseClanChatWindowInSteam( struct cppISteamFriends_SteamFriends014_CloseClanChatWindowInSteam_params *params ); - -struct cppISteamFriends_SteamFriends014_SetListenForFriendsMessages_params -{ - void *linux_side; - bool _ret; - bool bInterceptEnabled; -}; -extern void cppISteamFriends_SteamFriends014_SetListenForFriendsMessages( struct cppISteamFriends_SteamFriends014_SetListenForFriendsMessages_params *params ); - -struct cppISteamFriends_SteamFriends014_ReplyToFriendMessage_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - const char *pchMsgToSend; -}; -extern void cppISteamFriends_SteamFriends014_ReplyToFriendMessage( struct cppISteamFriends_SteamFriends014_ReplyToFriendMessage_params *params ); - -struct cppISteamFriends_SteamFriends014_GetFriendMessage_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; - int32_t iMessageID; - void *pvData; - int32_t cubData; - uint32_t *peChatEntryType; -}; -extern void cppISteamFriends_SteamFriends014_GetFriendMessage( struct cppISteamFriends_SteamFriends014_GetFriendMessage_params *params ); - -struct cppISteamFriends_SteamFriends014_GetFollowerCount_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamID; -}; -extern void cppISteamFriends_SteamFriends014_GetFollowerCount( struct cppISteamFriends_SteamFriends014_GetFollowerCount_params *params ); - -struct cppISteamFriends_SteamFriends014_IsFollowing_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamID; -}; -extern void cppISteamFriends_SteamFriends014_IsFollowing( struct cppISteamFriends_SteamFriends014_IsFollowing_params *params ); - -struct cppISteamFriends_SteamFriends014_EnumerateFollowingList_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unStartIndex; -}; -extern void cppISteamFriends_SteamFriends014_EnumerateFollowingList( struct cppISteamFriends_SteamFriends014_EnumerateFollowingList_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamFriends_SteamFriends015.cpp b/lsteamclient/cppISteamFriends_SteamFriends015.cpp index ba2a6a70..e55b038c 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends015.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends015.cpp @@ -1,436 +1,579 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamFriends_SteamFriends015.h" -void cppISteamFriends_SteamFriends015_GetPersonaName( struct cppISteamFriends_SteamFriends015_GetPersonaName_params *params ) +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; params->_ret = iface->GetPersonaName( ); + return 0; } -void cppISteamFriends_SteamFriends015_SetPersonaName( struct cppISteamFriends_SteamFriends015_SetPersonaName_params *params ) +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; params->_ret = iface->SetPersonaName( params->pchPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends015_GetPersonaState( struct cppISteamFriends_SteamFriends015_GetPersonaState_params *params ) +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; params->_ret = iface->GetPersonaState( ); + return 0; } -void cppISteamFriends_SteamFriends015_GetFriendCount( struct cppISteamFriends_SteamFriends015_GetFriendCount_params *params ) +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; params->_ret = iface->GetFriendCount( params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends015_GetFriendByIndex( struct cppISteamFriends_SteamFriends015_GetFriendByIndex_params *params ) +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; *params->_ret = iface->GetFriendByIndex( params->iFriend, params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends015_GetFriendRelationship( struct cppISteamFriends_SteamFriends015_GetFriendRelationship_params *params ) +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; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends015_GetFriendPersonaState( struct cppISteamFriends_SteamFriends015_GetFriendPersonaState_params *params ) +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; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends015_GetFriendPersonaName( struct cppISteamFriends_SteamFriends015_GetFriendPersonaName_params *params ) +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; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends015_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends015_GetFriendGamePlayed_params *params ) +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; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pFriendGameInfo ); + return 0; } -void cppISteamFriends_SteamFriends015_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends015_GetFriendPersonaNameHistory_params *params ) +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; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends015_GetFriendSteamLevel( struct cppISteamFriends_SteamFriends015_GetFriendSteamLevel_params *params ) +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; params->_ret = iface->GetFriendSteamLevel( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends015_GetPlayerNickname( struct cppISteamFriends_SteamFriends015_GetPlayerNickname_params *params ) +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; params->_ret = iface->GetPlayerNickname( params->steamIDPlayer ); + return 0; } -void cppISteamFriends_SteamFriends015_GetFriendsGroupCount( struct cppISteamFriends_SteamFriends015_GetFriendsGroupCount_params *params ) +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; params->_ret = iface->GetFriendsGroupCount( ); + return 0; } -void cppISteamFriends_SteamFriends015_GetFriendsGroupIDByIndex( struct cppISteamFriends_SteamFriends015_GetFriendsGroupIDByIndex_params *params ) +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; params->_ret = iface->GetFriendsGroupIDByIndex( params->iFG ); + return 0; } -void cppISteamFriends_SteamFriends015_GetFriendsGroupName( struct cppISteamFriends_SteamFriends015_GetFriendsGroupName_params *params ) +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; params->_ret = iface->GetFriendsGroupName( params->friendsGroupID ); + return 0; } -void cppISteamFriends_SteamFriends015_GetFriendsGroupMembersCount( struct cppISteamFriends_SteamFriends015_GetFriendsGroupMembersCount_params *params ) +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; params->_ret = iface->GetFriendsGroupMembersCount( params->friendsGroupID ); + return 0; } -void cppISteamFriends_SteamFriends015_GetFriendsGroupMembersList( struct cppISteamFriends_SteamFriends015_GetFriendsGroupMembersList_params *params ) +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; iface->GetFriendsGroupMembersList( params->friendsGroupID, params->pOutSteamIDMembers, params->nMembersCount ); + return 0; } -void cppISteamFriends_SteamFriends015_HasFriend( struct cppISteamFriends_SteamFriends015_HasFriend_params *params ) +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; params->_ret = iface->HasFriend( params->steamIDFriend, params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends015_GetClanCount( struct cppISteamFriends_SteamFriends015_GetClanCount_params *params ) +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; params->_ret = iface->GetClanCount( ); + return 0; } -void cppISteamFriends_SteamFriends015_GetClanByIndex( struct cppISteamFriends_SteamFriends015_GetClanByIndex_params *params ) +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; *params->_ret = iface->GetClanByIndex( params->iClan ); + return 0; } -void cppISteamFriends_SteamFriends015_GetClanName( struct cppISteamFriends_SteamFriends015_GetClanName_params *params ) +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; params->_ret = iface->GetClanName( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends015_GetClanTag( struct cppISteamFriends_SteamFriends015_GetClanTag_params *params ) +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; params->_ret = iface->GetClanTag( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends015_GetClanActivityCounts( struct cppISteamFriends_SteamFriends015_GetClanActivityCounts_params *params ) +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; params->_ret = iface->GetClanActivityCounts( params->steamIDClan, params->pnOnline, params->pnInGame, params->pnChatting ); + return 0; } -void cppISteamFriends_SteamFriends015_DownloadClanActivityCounts( struct cppISteamFriends_SteamFriends015_DownloadClanActivityCounts_params *params ) +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; params->_ret = iface->DownloadClanActivityCounts( params->psteamIDClans, params->cClansToRequest ); + return 0; } -void cppISteamFriends_SteamFriends015_GetFriendCountFromSource( struct cppISteamFriends_SteamFriends015_GetFriendCountFromSource_params *params ) +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; params->_ret = iface->GetFriendCountFromSource( params->steamIDSource ); + return 0; } -void cppISteamFriends_SteamFriends015_GetFriendFromSourceByIndex( struct cppISteamFriends_SteamFriends015_GetFriendFromSourceByIndex_params *params ) +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; *params->_ret = iface->GetFriendFromSourceByIndex( params->steamIDSource, params->iFriend ); + return 0; } -void cppISteamFriends_SteamFriends015_IsUserInSource( struct cppISteamFriends_SteamFriends015_IsUserInSource_params *params ) +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; params->_ret = iface->IsUserInSource( params->steamIDUser, params->steamIDSource ); + return 0; } -void cppISteamFriends_SteamFriends015_SetInGameVoiceSpeaking( struct cppISteamFriends_SteamFriends015_SetInGameVoiceSpeaking_params *params ) +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; iface->SetInGameVoiceSpeaking( params->steamIDUser, params->bSpeaking ); + return 0; } -void cppISteamFriends_SteamFriends015_ActivateGameOverlay( struct cppISteamFriends_SteamFriends015_ActivateGameOverlay_params *params ) +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; iface->ActivateGameOverlay( params->pchDialog ); + return 0; } -void cppISteamFriends_SteamFriends015_ActivateGameOverlayToUser( struct cppISteamFriends_SteamFriends015_ActivateGameOverlayToUser_params *params ) +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; iface->ActivateGameOverlayToUser( params->pchDialog, params->steamID ); + return 0; } -void cppISteamFriends_SteamFriends015_ActivateGameOverlayToWebPage( struct cppISteamFriends_SteamFriends015_ActivateGameOverlayToWebPage_params *params ) +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; iface->ActivateGameOverlayToWebPage( params->pchURL ); + return 0; } -void cppISteamFriends_SteamFriends015_ActivateGameOverlayToStore( struct cppISteamFriends_SteamFriends015_ActivateGameOverlayToStore_params *params ) +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; iface->ActivateGameOverlayToStore( params->nAppID, params->eFlag ); + return 0; } -void cppISteamFriends_SteamFriends015_SetPlayedWith( struct cppISteamFriends_SteamFriends015_SetPlayedWith_params *params ) +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; iface->SetPlayedWith( params->steamIDUserPlayedWith ); + return 0; } -void cppISteamFriends_SteamFriends015_ActivateGameOverlayInviteDialog( struct cppISteamFriends_SteamFriends015_ActivateGameOverlayInviteDialog_params *params ) +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; iface->ActivateGameOverlayInviteDialog( params->steamIDLobby ); + return 0; } -void cppISteamFriends_SteamFriends015_GetSmallFriendAvatar( struct cppISteamFriends_SteamFriends015_GetSmallFriendAvatar_params *params ) +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; params->_ret = iface->GetSmallFriendAvatar( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends015_GetMediumFriendAvatar( struct cppISteamFriends_SteamFriends015_GetMediumFriendAvatar_params *params ) +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; params->_ret = iface->GetMediumFriendAvatar( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends015_GetLargeFriendAvatar( struct cppISteamFriends_SteamFriends015_GetLargeFriendAvatar_params *params ) +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; params->_ret = iface->GetLargeFriendAvatar( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends015_RequestUserInformation( struct cppISteamFriends_SteamFriends015_RequestUserInformation_params *params ) +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; params->_ret = iface->RequestUserInformation( params->steamIDUser, params->bRequireNameOnly ); + return 0; } -void cppISteamFriends_SteamFriends015_RequestClanOfficerList( struct cppISteamFriends_SteamFriends015_RequestClanOfficerList_params *params ) +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; params->_ret = iface->RequestClanOfficerList( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends015_GetClanOwner( struct cppISteamFriends_SteamFriends015_GetClanOwner_params *params ) +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; *params->_ret = iface->GetClanOwner( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends015_GetClanOfficerCount( struct cppISteamFriends_SteamFriends015_GetClanOfficerCount_params *params ) +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; params->_ret = iface->GetClanOfficerCount( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends015_GetClanOfficerByIndex( struct cppISteamFriends_SteamFriends015_GetClanOfficerByIndex_params *params ) +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; *params->_ret = iface->GetClanOfficerByIndex( params->steamIDClan, params->iOfficer ); + return 0; } -void cppISteamFriends_SteamFriends015_GetUserRestrictions( struct cppISteamFriends_SteamFriends015_GetUserRestrictions_params *params ) +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; params->_ret = iface->GetUserRestrictions( ); + return 0; } -void cppISteamFriends_SteamFriends015_SetRichPresence( struct cppISteamFriends_SteamFriends015_SetRichPresence_params *params ) +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; params->_ret = iface->SetRichPresence( params->pchKey, params->pchValue ); + return 0; } -void cppISteamFriends_SteamFriends015_ClearRichPresence( struct cppISteamFriends_SteamFriends015_ClearRichPresence_params *params ) +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; iface->ClearRichPresence( ); + return 0; } -void cppISteamFriends_SteamFriends015_GetFriendRichPresence( struct cppISteamFriends_SteamFriends015_GetFriendRichPresence_params *params ) +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; params->_ret = iface->GetFriendRichPresence( params->steamIDFriend, params->pchKey ); + return 0; } -void cppISteamFriends_SteamFriends015_GetFriendRichPresenceKeyCount( struct cppISteamFriends_SteamFriends015_GetFriendRichPresenceKeyCount_params *params ) +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; params->_ret = iface->GetFriendRichPresenceKeyCount( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends015_GetFriendRichPresenceKeyByIndex( struct cppISteamFriends_SteamFriends015_GetFriendRichPresenceKeyByIndex_params *params ) +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; params->_ret = iface->GetFriendRichPresenceKeyByIndex( params->steamIDFriend, params->iKey ); + return 0; } -void cppISteamFriends_SteamFriends015_RequestFriendRichPresence( struct cppISteamFriends_SteamFriends015_RequestFriendRichPresence_params *params ) +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; iface->RequestFriendRichPresence( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends015_InviteUserToGame( struct cppISteamFriends_SteamFriends015_InviteUserToGame_params *params ) +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; params->_ret = iface->InviteUserToGame( params->steamIDFriend, params->pchConnectString ); + return 0; } -void cppISteamFriends_SteamFriends015_GetCoplayFriendCount( struct cppISteamFriends_SteamFriends015_GetCoplayFriendCount_params *params ) +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; params->_ret = iface->GetCoplayFriendCount( ); + return 0; } -void cppISteamFriends_SteamFriends015_GetCoplayFriend( struct cppISteamFriends_SteamFriends015_GetCoplayFriend_params *params ) +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; *params->_ret = iface->GetCoplayFriend( params->iCoplayFriend ); + return 0; } -void cppISteamFriends_SteamFriends015_GetFriendCoplayTime( struct cppISteamFriends_SteamFriends015_GetFriendCoplayTime_params *params ) +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; params->_ret = iface->GetFriendCoplayTime( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends015_GetFriendCoplayGame( struct cppISteamFriends_SteamFriends015_GetFriendCoplayGame_params *params ) +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; params->_ret = iface->GetFriendCoplayGame( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends015_JoinClanChatRoom( struct cppISteamFriends_SteamFriends015_JoinClanChatRoom_params *params ) +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; params->_ret = iface->JoinClanChatRoom( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends015_LeaveClanChatRoom( struct cppISteamFriends_SteamFriends015_LeaveClanChatRoom_params *params ) +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; params->_ret = iface->LeaveClanChatRoom( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends015_GetClanChatMemberCount( struct cppISteamFriends_SteamFriends015_GetClanChatMemberCount_params *params ) +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; params->_ret = iface->GetClanChatMemberCount( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends015_GetChatMemberByIndex( struct cppISteamFriends_SteamFriends015_GetChatMemberByIndex_params *params ) +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; *params->_ret = iface->GetChatMemberByIndex( params->steamIDClan, params->iUser ); + return 0; } -void cppISteamFriends_SteamFriends015_SendClanChatMessage( struct cppISteamFriends_SteamFriends015_SendClanChatMessage_params *params ) +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; params->_ret = iface->SendClanChatMessage( params->steamIDClanChat, params->pchText ); + return 0; } -void cppISteamFriends_SteamFriends015_GetClanChatMessage( struct cppISteamFriends_SteamFriends015_GetClanChatMessage_params *params ) +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; params->_ret = iface->GetClanChatMessage( params->steamIDClanChat, params->iMessage, params->prgchText, params->cchTextMax, params->peChatEntryType, params->psteamidChatter ); + return 0; } -void cppISteamFriends_SteamFriends015_IsClanChatAdmin( struct cppISteamFriends_SteamFriends015_IsClanChatAdmin_params *params ) +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; params->_ret = iface->IsClanChatAdmin( params->steamIDClanChat, params->steamIDUser ); + return 0; } -void cppISteamFriends_SteamFriends015_IsClanChatWindowOpenInSteam( struct cppISteamFriends_SteamFriends015_IsClanChatWindowOpenInSteam_params *params ) +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; params->_ret = iface->IsClanChatWindowOpenInSteam( params->steamIDClanChat ); + return 0; } -void cppISteamFriends_SteamFriends015_OpenClanChatWindowInSteam( struct cppISteamFriends_SteamFriends015_OpenClanChatWindowInSteam_params *params ) +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; params->_ret = iface->OpenClanChatWindowInSteam( params->steamIDClanChat ); + return 0; } -void cppISteamFriends_SteamFriends015_CloseClanChatWindowInSteam( struct cppISteamFriends_SteamFriends015_CloseClanChatWindowInSteam_params *params ) +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; params->_ret = iface->CloseClanChatWindowInSteam( params->steamIDClanChat ); + return 0; } -void cppISteamFriends_SteamFriends015_SetListenForFriendsMessages( struct cppISteamFriends_SteamFriends015_SetListenForFriendsMessages_params *params ) +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; params->_ret = iface->SetListenForFriendsMessages( params->bInterceptEnabled ); + return 0; } -void cppISteamFriends_SteamFriends015_ReplyToFriendMessage( struct cppISteamFriends_SteamFriends015_ReplyToFriendMessage_params *params ) +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; params->_ret = iface->ReplyToFriendMessage( params->steamIDFriend, params->pchMsgToSend ); + return 0; } -void cppISteamFriends_SteamFriends015_GetFriendMessage( struct cppISteamFriends_SteamFriends015_GetFriendMessage_params *params ) +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; params->_ret = iface->GetFriendMessage( params->steamIDFriend, params->iMessageID, params->pvData, params->cubData, params->peChatEntryType ); + return 0; } -void cppISteamFriends_SteamFriends015_GetFollowerCount( struct cppISteamFriends_SteamFriends015_GetFollowerCount_params *params ) +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; params->_ret = iface->GetFollowerCount( params->steamID ); + return 0; } -void cppISteamFriends_SteamFriends015_IsFollowing( struct cppISteamFriends_SteamFriends015_IsFollowing_params *params ) +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; params->_ret = iface->IsFollowing( params->steamID ); + return 0; } -void cppISteamFriends_SteamFriends015_EnumerateFollowingList( struct cppISteamFriends_SteamFriends015_EnumerateFollowingList_params *params ) +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; params->_ret = iface->EnumerateFollowingList( params->unStartIndex ); + return 0; } -void cppISteamFriends_SteamFriends015_IsClanPublic( struct cppISteamFriends_SteamFriends015_IsClanPublic_params *params ) +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; params->_ret = iface->IsClanPublic( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends015_IsClanOfficialGameGroup( struct cppISteamFriends_SteamFriends015_IsClanOfficialGameGroup_params *params ) +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; params->_ret = iface->IsClanOfficialGameGroup( params->steamIDClan ); + return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends015.h b/lsteamclient/cppISteamFriends_SteamFriends015.h deleted file mode 100644 index eecb30dc..00000000 --- a/lsteamclient/cppISteamFriends_SteamFriends015.h +++ /dev/null @@ -1,605 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamFriends_SteamFriends015_GetPersonaName_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamFriends_SteamFriends015_GetPersonaName( struct cppISteamFriends_SteamFriends015_GetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends015_SetPersonaName_params -{ - void *linux_side; - uint64_t _ret; - const char *pchPersonaName; -}; -extern void cppISteamFriends_SteamFriends015_SetPersonaName( struct cppISteamFriends_SteamFriends015_SetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends015_GetPersonaState_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamFriends_SteamFriends015_GetPersonaState( struct cppISteamFriends_SteamFriends015_GetPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends015_GetFriendCount_params -{ - void *linux_side; - int32_t _ret; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends015_GetFriendCount( struct cppISteamFriends_SteamFriends015_GetFriendCount_params *params ); - -struct cppISteamFriends_SteamFriends015_GetFriendByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iFriend; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends015_GetFriendByIndex( struct cppISteamFriends_SteamFriends015_GetFriendByIndex_params *params ); - -struct cppISteamFriends_SteamFriends015_GetFriendRelationship_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends015_GetFriendRelationship( struct cppISteamFriends_SteamFriends015_GetFriendRelationship_params *params ); - -struct cppISteamFriends_SteamFriends015_GetFriendPersonaState_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends015_GetFriendPersonaState( struct cppISteamFriends_SteamFriends015_GetFriendPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends015_GetFriendPersonaName_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends015_GetFriendPersonaName( struct cppISteamFriends_SteamFriends015_GetFriendPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends015_GetFriendGamePlayed_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - FriendGameInfo_t *pFriendGameInfo; -}; -extern void cppISteamFriends_SteamFriends015_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends015_GetFriendGamePlayed_params *params ); - -struct cppISteamFriends_SteamFriends015_GetFriendPersonaNameHistory_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - int32_t iPersonaName; -}; -extern void cppISteamFriends_SteamFriends015_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends015_GetFriendPersonaNameHistory_params *params ); - -struct cppISteamFriends_SteamFriends015_GetFriendSteamLevel_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends015_GetFriendSteamLevel( struct cppISteamFriends_SteamFriends015_GetFriendSteamLevel_params *params ); - -struct cppISteamFriends_SteamFriends015_GetPlayerNickname_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDPlayer; -}; -extern void cppISteamFriends_SteamFriends015_GetPlayerNickname( struct cppISteamFriends_SteamFriends015_GetPlayerNickname_params *params ); - -struct cppISteamFriends_SteamFriends015_GetFriendsGroupCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamFriends_SteamFriends015_GetFriendsGroupCount( struct cppISteamFriends_SteamFriends015_GetFriendsGroupCount_params *params ); - -struct cppISteamFriends_SteamFriends015_GetFriendsGroupIDByIndex_params -{ - void *linux_side; - int16_t _ret; - int32_t iFG; -}; -extern void cppISteamFriends_SteamFriends015_GetFriendsGroupIDByIndex( struct cppISteamFriends_SteamFriends015_GetFriendsGroupIDByIndex_params *params ); - -struct cppISteamFriends_SteamFriends015_GetFriendsGroupName_params -{ - void *linux_side; - const char *_ret; - int16_t friendsGroupID; -}; -extern void cppISteamFriends_SteamFriends015_GetFriendsGroupName( struct cppISteamFriends_SteamFriends015_GetFriendsGroupName_params *params ); - -struct cppISteamFriends_SteamFriends015_GetFriendsGroupMembersCount_params -{ - void *linux_side; - int32_t _ret; - int16_t friendsGroupID; -}; -extern void cppISteamFriends_SteamFriends015_GetFriendsGroupMembersCount( struct cppISteamFriends_SteamFriends015_GetFriendsGroupMembersCount_params *params ); - -struct cppISteamFriends_SteamFriends015_GetFriendsGroupMembersList_params -{ - void *linux_side; - int16_t friendsGroupID; - CSteamID *pOutSteamIDMembers; - int32_t nMembersCount; -}; -extern void cppISteamFriends_SteamFriends015_GetFriendsGroupMembersList( struct cppISteamFriends_SteamFriends015_GetFriendsGroupMembersList_params *params ); - -struct cppISteamFriends_SteamFriends015_HasFriend_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends015_HasFriend( struct cppISteamFriends_SteamFriends015_HasFriend_params *params ); - -struct cppISteamFriends_SteamFriends015_GetClanCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamFriends_SteamFriends015_GetClanCount( struct cppISteamFriends_SteamFriends015_GetClanCount_params *params ); - -struct cppISteamFriends_SteamFriends015_GetClanByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iClan; -}; -extern void cppISteamFriends_SteamFriends015_GetClanByIndex( struct cppISteamFriends_SteamFriends015_GetClanByIndex_params *params ); - -struct cppISteamFriends_SteamFriends015_GetClanName_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends015_GetClanName( struct cppISteamFriends_SteamFriends015_GetClanName_params *params ); - -struct cppISteamFriends_SteamFriends015_GetClanTag_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends015_GetClanTag( struct cppISteamFriends_SteamFriends015_GetClanTag_params *params ); - -struct cppISteamFriends_SteamFriends015_GetClanActivityCounts_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClan; - int32_t *pnOnline; - int32_t *pnInGame; - int32_t *pnChatting; -}; -extern void cppISteamFriends_SteamFriends015_GetClanActivityCounts( struct cppISteamFriends_SteamFriends015_GetClanActivityCounts_params *params ); - -struct cppISteamFriends_SteamFriends015_DownloadClanActivityCounts_params -{ - void *linux_side; - uint64_t _ret; - CSteamID *psteamIDClans; - int32_t cClansToRequest; -}; -extern void cppISteamFriends_SteamFriends015_DownloadClanActivityCounts( struct cppISteamFriends_SteamFriends015_DownloadClanActivityCounts_params *params ); - -struct cppISteamFriends_SteamFriends015_GetFriendCountFromSource_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDSource; -}; -extern void cppISteamFriends_SteamFriends015_GetFriendCountFromSource( struct cppISteamFriends_SteamFriends015_GetFriendCountFromSource_params *params ); - -struct cppISteamFriends_SteamFriends015_GetFriendFromSourceByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDSource; - int32_t iFriend; -}; -extern void cppISteamFriends_SteamFriends015_GetFriendFromSourceByIndex( struct cppISteamFriends_SteamFriends015_GetFriendFromSourceByIndex_params *params ); - -struct cppISteamFriends_SteamFriends015_IsUserInSource_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - CSteamID steamIDSource; -}; -extern void cppISteamFriends_SteamFriends015_IsUserInSource( struct cppISteamFriends_SteamFriends015_IsUserInSource_params *params ); - -struct cppISteamFriends_SteamFriends015_SetInGameVoiceSpeaking_params -{ - void *linux_side; - CSteamID steamIDUser; - bool bSpeaking; -}; -extern void cppISteamFriends_SteamFriends015_SetInGameVoiceSpeaking( struct cppISteamFriends_SteamFriends015_SetInGameVoiceSpeaking_params *params ); - -struct cppISteamFriends_SteamFriends015_ActivateGameOverlay_params -{ - void *linux_side; - const char *pchDialog; -}; -extern void cppISteamFriends_SteamFriends015_ActivateGameOverlay( struct cppISteamFriends_SteamFriends015_ActivateGameOverlay_params *params ); - -struct cppISteamFriends_SteamFriends015_ActivateGameOverlayToUser_params -{ - void *linux_side; - const char *pchDialog; - CSteamID steamID; -}; -extern void cppISteamFriends_SteamFriends015_ActivateGameOverlayToUser( struct cppISteamFriends_SteamFriends015_ActivateGameOverlayToUser_params *params ); - -struct cppISteamFriends_SteamFriends015_ActivateGameOverlayToWebPage_params -{ - void *linux_side; - const char *pchURL; -}; -extern void cppISteamFriends_SteamFriends015_ActivateGameOverlayToWebPage( struct cppISteamFriends_SteamFriends015_ActivateGameOverlayToWebPage_params *params ); - -struct cppISteamFriends_SteamFriends015_ActivateGameOverlayToStore_params -{ - void *linux_side; - uint32_t nAppID; - uint32_t eFlag; -}; -extern void cppISteamFriends_SteamFriends015_ActivateGameOverlayToStore( struct cppISteamFriends_SteamFriends015_ActivateGameOverlayToStore_params *params ); - -struct cppISteamFriends_SteamFriends015_SetPlayedWith_params -{ - void *linux_side; - CSteamID steamIDUserPlayedWith; -}; -extern void cppISteamFriends_SteamFriends015_SetPlayedWith( struct cppISteamFriends_SteamFriends015_SetPlayedWith_params *params ); - -struct cppISteamFriends_SteamFriends015_ActivateGameOverlayInviteDialog_params -{ - void *linux_side; - CSteamID steamIDLobby; -}; -extern void cppISteamFriends_SteamFriends015_ActivateGameOverlayInviteDialog( struct cppISteamFriends_SteamFriends015_ActivateGameOverlayInviteDialog_params *params ); - -struct cppISteamFriends_SteamFriends015_GetSmallFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends015_GetSmallFriendAvatar( struct cppISteamFriends_SteamFriends015_GetSmallFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends015_GetMediumFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends015_GetMediumFriendAvatar( struct cppISteamFriends_SteamFriends015_GetMediumFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends015_GetLargeFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends015_GetLargeFriendAvatar( struct cppISteamFriends_SteamFriends015_GetLargeFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends015_RequestUserInformation_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - bool bRequireNameOnly; -}; -extern void cppISteamFriends_SteamFriends015_RequestUserInformation( struct cppISteamFriends_SteamFriends015_RequestUserInformation_params *params ); - -struct cppISteamFriends_SteamFriends015_RequestClanOfficerList_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends015_RequestClanOfficerList( struct cppISteamFriends_SteamFriends015_RequestClanOfficerList_params *params ); - -struct cppISteamFriends_SteamFriends015_GetClanOwner_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends015_GetClanOwner( struct cppISteamFriends_SteamFriends015_GetClanOwner_params *params ); - -struct cppISteamFriends_SteamFriends015_GetClanOfficerCount_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends015_GetClanOfficerCount( struct cppISteamFriends_SteamFriends015_GetClanOfficerCount_params *params ); - -struct cppISteamFriends_SteamFriends015_GetClanOfficerByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDClan; - int32_t iOfficer; -}; -extern void cppISteamFriends_SteamFriends015_GetClanOfficerByIndex( struct cppISteamFriends_SteamFriends015_GetClanOfficerByIndex_params *params ); - -struct cppISteamFriends_SteamFriends015_GetUserRestrictions_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamFriends_SteamFriends015_GetUserRestrictions( struct cppISteamFriends_SteamFriends015_GetUserRestrictions_params *params ); - -struct cppISteamFriends_SteamFriends015_SetRichPresence_params -{ - void *linux_side; - bool _ret; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamFriends_SteamFriends015_SetRichPresence( struct cppISteamFriends_SteamFriends015_SetRichPresence_params *params ); - -struct cppISteamFriends_SteamFriends015_ClearRichPresence_params -{ - void *linux_side; -}; -extern void cppISteamFriends_SteamFriends015_ClearRichPresence( struct cppISteamFriends_SteamFriends015_ClearRichPresence_params *params ); - -struct cppISteamFriends_SteamFriends015_GetFriendRichPresence_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - const char *pchKey; -}; -extern void cppISteamFriends_SteamFriends015_GetFriendRichPresence( struct cppISteamFriends_SteamFriends015_GetFriendRichPresence_params *params ); - -struct cppISteamFriends_SteamFriends015_GetFriendRichPresenceKeyCount_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends015_GetFriendRichPresenceKeyCount( struct cppISteamFriends_SteamFriends015_GetFriendRichPresenceKeyCount_params *params ); - -struct cppISteamFriends_SteamFriends015_GetFriendRichPresenceKeyByIndex_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - int32_t iKey; -}; -extern void cppISteamFriends_SteamFriends015_GetFriendRichPresenceKeyByIndex( struct cppISteamFriends_SteamFriends015_GetFriendRichPresenceKeyByIndex_params *params ); - -struct cppISteamFriends_SteamFriends015_RequestFriendRichPresence_params -{ - void *linux_side; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends015_RequestFriendRichPresence( struct cppISteamFriends_SteamFriends015_RequestFriendRichPresence_params *params ); - -struct cppISteamFriends_SteamFriends015_InviteUserToGame_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - const char *pchConnectString; -}; -extern void cppISteamFriends_SteamFriends015_InviteUserToGame( struct cppISteamFriends_SteamFriends015_InviteUserToGame_params *params ); - -struct cppISteamFriends_SteamFriends015_GetCoplayFriendCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamFriends_SteamFriends015_GetCoplayFriendCount( struct cppISteamFriends_SteamFriends015_GetCoplayFriendCount_params *params ); - -struct cppISteamFriends_SteamFriends015_GetCoplayFriend_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iCoplayFriend; -}; -extern void cppISteamFriends_SteamFriends015_GetCoplayFriend( struct cppISteamFriends_SteamFriends015_GetCoplayFriend_params *params ); - -struct cppISteamFriends_SteamFriends015_GetFriendCoplayTime_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends015_GetFriendCoplayTime( struct cppISteamFriends_SteamFriends015_GetFriendCoplayTime_params *params ); - -struct cppISteamFriends_SteamFriends015_GetFriendCoplayGame_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends015_GetFriendCoplayGame( struct cppISteamFriends_SteamFriends015_GetFriendCoplayGame_params *params ); - -struct cppISteamFriends_SteamFriends015_JoinClanChatRoom_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends015_JoinClanChatRoom( struct cppISteamFriends_SteamFriends015_JoinClanChatRoom_params *params ); - -struct cppISteamFriends_SteamFriends015_LeaveClanChatRoom_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends015_LeaveClanChatRoom( struct cppISteamFriends_SteamFriends015_LeaveClanChatRoom_params *params ); - -struct cppISteamFriends_SteamFriends015_GetClanChatMemberCount_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends015_GetClanChatMemberCount( struct cppISteamFriends_SteamFriends015_GetClanChatMemberCount_params *params ); - -struct cppISteamFriends_SteamFriends015_GetChatMemberByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDClan; - int32_t iUser; -}; -extern void cppISteamFriends_SteamFriends015_GetChatMemberByIndex( struct cppISteamFriends_SteamFriends015_GetChatMemberByIndex_params *params ); - -struct cppISteamFriends_SteamFriends015_SendClanChatMessage_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; - const char *pchText; -}; -extern void cppISteamFriends_SteamFriends015_SendClanChatMessage( struct cppISteamFriends_SteamFriends015_SendClanChatMessage_params *params ); - -struct cppISteamFriends_SteamFriends015_GetClanChatMessage_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDClanChat; - int32_t iMessage; - void *prgchText; - int32_t cchTextMax; - uint32_t *peChatEntryType; - CSteamID *psteamidChatter; -}; -extern void cppISteamFriends_SteamFriends015_GetClanChatMessage( struct cppISteamFriends_SteamFriends015_GetClanChatMessage_params *params ); - -struct cppISteamFriends_SteamFriends015_IsClanChatAdmin_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; - CSteamID steamIDUser; -}; -extern void cppISteamFriends_SteamFriends015_IsClanChatAdmin( struct cppISteamFriends_SteamFriends015_IsClanChatAdmin_params *params ); - -struct cppISteamFriends_SteamFriends015_IsClanChatWindowOpenInSteam_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; -}; -extern void cppISteamFriends_SteamFriends015_IsClanChatWindowOpenInSteam( struct cppISteamFriends_SteamFriends015_IsClanChatWindowOpenInSteam_params *params ); - -struct cppISteamFriends_SteamFriends015_OpenClanChatWindowInSteam_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; -}; -extern void cppISteamFriends_SteamFriends015_OpenClanChatWindowInSteam( struct cppISteamFriends_SteamFriends015_OpenClanChatWindowInSteam_params *params ); - -struct cppISteamFriends_SteamFriends015_CloseClanChatWindowInSteam_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; -}; -extern void cppISteamFriends_SteamFriends015_CloseClanChatWindowInSteam( struct cppISteamFriends_SteamFriends015_CloseClanChatWindowInSteam_params *params ); - -struct cppISteamFriends_SteamFriends015_SetListenForFriendsMessages_params -{ - void *linux_side; - bool _ret; - bool bInterceptEnabled; -}; -extern void cppISteamFriends_SteamFriends015_SetListenForFriendsMessages( struct cppISteamFriends_SteamFriends015_SetListenForFriendsMessages_params *params ); - -struct cppISteamFriends_SteamFriends015_ReplyToFriendMessage_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - const char *pchMsgToSend; -}; -extern void cppISteamFriends_SteamFriends015_ReplyToFriendMessage( struct cppISteamFriends_SteamFriends015_ReplyToFriendMessage_params *params ); - -struct cppISteamFriends_SteamFriends015_GetFriendMessage_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; - int32_t iMessageID; - void *pvData; - int32_t cubData; - uint32_t *peChatEntryType; -}; -extern void cppISteamFriends_SteamFriends015_GetFriendMessage( struct cppISteamFriends_SteamFriends015_GetFriendMessage_params *params ); - -struct cppISteamFriends_SteamFriends015_GetFollowerCount_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamID; -}; -extern void cppISteamFriends_SteamFriends015_GetFollowerCount( struct cppISteamFriends_SteamFriends015_GetFollowerCount_params *params ); - -struct cppISteamFriends_SteamFriends015_IsFollowing_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamID; -}; -extern void cppISteamFriends_SteamFriends015_IsFollowing( struct cppISteamFriends_SteamFriends015_IsFollowing_params *params ); - -struct cppISteamFriends_SteamFriends015_EnumerateFollowingList_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unStartIndex; -}; -extern void cppISteamFriends_SteamFriends015_EnumerateFollowingList( struct cppISteamFriends_SteamFriends015_EnumerateFollowingList_params *params ); - -struct cppISteamFriends_SteamFriends015_IsClanPublic_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends015_IsClanPublic( struct cppISteamFriends_SteamFriends015_IsClanPublic_params *params ); - -struct cppISteamFriends_SteamFriends015_IsClanOfficialGameGroup_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends015_IsClanOfficialGameGroup( struct cppISteamFriends_SteamFriends015_IsClanOfficialGameGroup_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamFriends_SteamFriends017.cpp b/lsteamclient/cppISteamFriends_SteamFriends017.cpp index 2e0b2766..39d7d525 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends017.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends017.cpp @@ -1,484 +1,643 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamFriends_SteamFriends017.h" -void cppISteamFriends_SteamFriends017_GetPersonaName( struct cppISteamFriends_SteamFriends017_GetPersonaName_params *params ) +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; params->_ret = iface->GetPersonaName( ); + return 0; } -void cppISteamFriends_SteamFriends017_SetPersonaName( struct cppISteamFriends_SteamFriends017_SetPersonaName_params *params ) +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; params->_ret = iface->SetPersonaName( params->pchPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends017_GetPersonaState( struct cppISteamFriends_SteamFriends017_GetPersonaState_params *params ) +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; params->_ret = iface->GetPersonaState( ); + return 0; } -void cppISteamFriends_SteamFriends017_GetFriendCount( struct cppISteamFriends_SteamFriends017_GetFriendCount_params *params ) +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; params->_ret = iface->GetFriendCount( params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends017_GetFriendByIndex( struct cppISteamFriends_SteamFriends017_GetFriendByIndex_params *params ) +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; *params->_ret = iface->GetFriendByIndex( params->iFriend, params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends017_GetFriendRelationship( struct cppISteamFriends_SteamFriends017_GetFriendRelationship_params *params ) +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; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends017_GetFriendPersonaState( struct cppISteamFriends_SteamFriends017_GetFriendPersonaState_params *params ) +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; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends017_GetFriendPersonaName( struct cppISteamFriends_SteamFriends017_GetFriendPersonaName_params *params ) +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; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends017_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends017_GetFriendGamePlayed_params *params ) +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; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pFriendGameInfo ); + return 0; } -void cppISteamFriends_SteamFriends017_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends017_GetFriendPersonaNameHistory_params *params ) +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; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); + return 0; } -void cppISteamFriends_SteamFriends017_GetFriendSteamLevel( struct cppISteamFriends_SteamFriends017_GetFriendSteamLevel_params *params ) +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; params->_ret = iface->GetFriendSteamLevel( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends017_GetPlayerNickname( struct cppISteamFriends_SteamFriends017_GetPlayerNickname_params *params ) +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; params->_ret = iface->GetPlayerNickname( params->steamIDPlayer ); + return 0; } -void cppISteamFriends_SteamFriends017_GetFriendsGroupCount( struct cppISteamFriends_SteamFriends017_GetFriendsGroupCount_params *params ) +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; params->_ret = iface->GetFriendsGroupCount( ); + return 0; } -void cppISteamFriends_SteamFriends017_GetFriendsGroupIDByIndex( struct cppISteamFriends_SteamFriends017_GetFriendsGroupIDByIndex_params *params ) +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; params->_ret = iface->GetFriendsGroupIDByIndex( params->iFG ); + return 0; } -void cppISteamFriends_SteamFriends017_GetFriendsGroupName( struct cppISteamFriends_SteamFriends017_GetFriendsGroupName_params *params ) +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; params->_ret = iface->GetFriendsGroupName( params->friendsGroupID ); + return 0; } -void cppISteamFriends_SteamFriends017_GetFriendsGroupMembersCount( struct cppISteamFriends_SteamFriends017_GetFriendsGroupMembersCount_params *params ) +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; params->_ret = iface->GetFriendsGroupMembersCount( params->friendsGroupID ); + return 0; } -void cppISteamFriends_SteamFriends017_GetFriendsGroupMembersList( struct cppISteamFriends_SteamFriends017_GetFriendsGroupMembersList_params *params ) +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; iface->GetFriendsGroupMembersList( params->friendsGroupID, params->pOutSteamIDMembers, params->nMembersCount ); + return 0; } -void cppISteamFriends_SteamFriends017_HasFriend( struct cppISteamFriends_SteamFriends017_HasFriend_params *params ) +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; params->_ret = iface->HasFriend( params->steamIDFriend, params->iFriendFlags ); + return 0; } -void cppISteamFriends_SteamFriends017_GetClanCount( struct cppISteamFriends_SteamFriends017_GetClanCount_params *params ) +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; params->_ret = iface->GetClanCount( ); + return 0; } -void cppISteamFriends_SteamFriends017_GetClanByIndex( struct cppISteamFriends_SteamFriends017_GetClanByIndex_params *params ) +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; *params->_ret = iface->GetClanByIndex( params->iClan ); + return 0; } -void cppISteamFriends_SteamFriends017_GetClanName( struct cppISteamFriends_SteamFriends017_GetClanName_params *params ) +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; params->_ret = iface->GetClanName( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends017_GetClanTag( struct cppISteamFriends_SteamFriends017_GetClanTag_params *params ) +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; params->_ret = iface->GetClanTag( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends017_GetClanActivityCounts( struct cppISteamFriends_SteamFriends017_GetClanActivityCounts_params *params ) +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; params->_ret = iface->GetClanActivityCounts( params->steamIDClan, params->pnOnline, params->pnInGame, params->pnChatting ); + return 0; } -void cppISteamFriends_SteamFriends017_DownloadClanActivityCounts( struct cppISteamFriends_SteamFriends017_DownloadClanActivityCounts_params *params ) +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; params->_ret = iface->DownloadClanActivityCounts( params->psteamIDClans, params->cClansToRequest ); + return 0; } -void cppISteamFriends_SteamFriends017_GetFriendCountFromSource( struct cppISteamFriends_SteamFriends017_GetFriendCountFromSource_params *params ) +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; params->_ret = iface->GetFriendCountFromSource( params->steamIDSource ); + return 0; } -void cppISteamFriends_SteamFriends017_GetFriendFromSourceByIndex( struct cppISteamFriends_SteamFriends017_GetFriendFromSourceByIndex_params *params ) +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; *params->_ret = iface->GetFriendFromSourceByIndex( params->steamIDSource, params->iFriend ); + return 0; } -void cppISteamFriends_SteamFriends017_IsUserInSource( struct cppISteamFriends_SteamFriends017_IsUserInSource_params *params ) +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; params->_ret = iface->IsUserInSource( params->steamIDUser, params->steamIDSource ); + return 0; } -void cppISteamFriends_SteamFriends017_SetInGameVoiceSpeaking( struct cppISteamFriends_SteamFriends017_SetInGameVoiceSpeaking_params *params ) +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; iface->SetInGameVoiceSpeaking( params->steamIDUser, params->bSpeaking ); + return 0; } -void cppISteamFriends_SteamFriends017_ActivateGameOverlay( struct cppISteamFriends_SteamFriends017_ActivateGameOverlay_params *params ) +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; iface->ActivateGameOverlay( params->pchDialog ); + return 0; } -void cppISteamFriends_SteamFriends017_ActivateGameOverlayToUser( struct cppISteamFriends_SteamFriends017_ActivateGameOverlayToUser_params *params ) +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; iface->ActivateGameOverlayToUser( params->pchDialog, params->steamID ); + return 0; } -void cppISteamFriends_SteamFriends017_ActivateGameOverlayToWebPage( struct cppISteamFriends_SteamFriends017_ActivateGameOverlayToWebPage_params *params ) +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; iface->ActivateGameOverlayToWebPage( params->pchURL, params->eMode ); + return 0; } -void cppISteamFriends_SteamFriends017_ActivateGameOverlayToStore( struct cppISteamFriends_SteamFriends017_ActivateGameOverlayToStore_params *params ) +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; iface->ActivateGameOverlayToStore( params->nAppID, params->eFlag ); + return 0; } -void cppISteamFriends_SteamFriends017_SetPlayedWith( struct cppISteamFriends_SteamFriends017_SetPlayedWith_params *params ) +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; iface->SetPlayedWith( params->steamIDUserPlayedWith ); + return 0; } -void cppISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialog( struct cppISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialog_params *params ) +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; iface->ActivateGameOverlayInviteDialog( params->steamIDLobby ); + return 0; } -void cppISteamFriends_SteamFriends017_GetSmallFriendAvatar( struct cppISteamFriends_SteamFriends017_GetSmallFriendAvatar_params *params ) +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; params->_ret = iface->GetSmallFriendAvatar( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends017_GetMediumFriendAvatar( struct cppISteamFriends_SteamFriends017_GetMediumFriendAvatar_params *params ) +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; params->_ret = iface->GetMediumFriendAvatar( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends017_GetLargeFriendAvatar( struct cppISteamFriends_SteamFriends017_GetLargeFriendAvatar_params *params ) +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; params->_ret = iface->GetLargeFriendAvatar( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends017_RequestUserInformation( struct cppISteamFriends_SteamFriends017_RequestUserInformation_params *params ) +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; params->_ret = iface->RequestUserInformation( params->steamIDUser, params->bRequireNameOnly ); + return 0; } -void cppISteamFriends_SteamFriends017_RequestClanOfficerList( struct cppISteamFriends_SteamFriends017_RequestClanOfficerList_params *params ) +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; params->_ret = iface->RequestClanOfficerList( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends017_GetClanOwner( struct cppISteamFriends_SteamFriends017_GetClanOwner_params *params ) +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; *params->_ret = iface->GetClanOwner( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends017_GetClanOfficerCount( struct cppISteamFriends_SteamFriends017_GetClanOfficerCount_params *params ) +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; params->_ret = iface->GetClanOfficerCount( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends017_GetClanOfficerByIndex( struct cppISteamFriends_SteamFriends017_GetClanOfficerByIndex_params *params ) +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; *params->_ret = iface->GetClanOfficerByIndex( params->steamIDClan, params->iOfficer ); + return 0; } -void cppISteamFriends_SteamFriends017_GetUserRestrictions( struct cppISteamFriends_SteamFriends017_GetUserRestrictions_params *params ) +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; params->_ret = iface->GetUserRestrictions( ); + return 0; } -void cppISteamFriends_SteamFriends017_SetRichPresence( struct cppISteamFriends_SteamFriends017_SetRichPresence_params *params ) +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; params->_ret = iface->SetRichPresence( params->pchKey, params->pchValue ); + return 0; } -void cppISteamFriends_SteamFriends017_ClearRichPresence( struct cppISteamFriends_SteamFriends017_ClearRichPresence_params *params ) +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; iface->ClearRichPresence( ); + return 0; } -void cppISteamFriends_SteamFriends017_GetFriendRichPresence( struct cppISteamFriends_SteamFriends017_GetFriendRichPresence_params *params ) +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; params->_ret = iface->GetFriendRichPresence( params->steamIDFriend, params->pchKey ); + return 0; } -void cppISteamFriends_SteamFriends017_GetFriendRichPresenceKeyCount( struct cppISteamFriends_SteamFriends017_GetFriendRichPresenceKeyCount_params *params ) +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; params->_ret = iface->GetFriendRichPresenceKeyCount( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends017_GetFriendRichPresenceKeyByIndex( struct cppISteamFriends_SteamFriends017_GetFriendRichPresenceKeyByIndex_params *params ) +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; params->_ret = iface->GetFriendRichPresenceKeyByIndex( params->steamIDFriend, params->iKey ); + return 0; } -void cppISteamFriends_SteamFriends017_RequestFriendRichPresence( struct cppISteamFriends_SteamFriends017_RequestFriendRichPresence_params *params ) +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; iface->RequestFriendRichPresence( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends017_InviteUserToGame( struct cppISteamFriends_SteamFriends017_InviteUserToGame_params *params ) +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; params->_ret = iface->InviteUserToGame( params->steamIDFriend, params->pchConnectString ); + return 0; } -void cppISteamFriends_SteamFriends017_GetCoplayFriendCount( struct cppISteamFriends_SteamFriends017_GetCoplayFriendCount_params *params ) +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; params->_ret = iface->GetCoplayFriendCount( ); + return 0; } -void cppISteamFriends_SteamFriends017_GetCoplayFriend( struct cppISteamFriends_SteamFriends017_GetCoplayFriend_params *params ) +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; *params->_ret = iface->GetCoplayFriend( params->iCoplayFriend ); + return 0; } -void cppISteamFriends_SteamFriends017_GetFriendCoplayTime( struct cppISteamFriends_SteamFriends017_GetFriendCoplayTime_params *params ) +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; params->_ret = iface->GetFriendCoplayTime( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends017_GetFriendCoplayGame( struct cppISteamFriends_SteamFriends017_GetFriendCoplayGame_params *params ) +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; params->_ret = iface->GetFriendCoplayGame( params->steamIDFriend ); + return 0; } -void cppISteamFriends_SteamFriends017_JoinClanChatRoom( struct cppISteamFriends_SteamFriends017_JoinClanChatRoom_params *params ) +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; params->_ret = iface->JoinClanChatRoom( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends017_LeaveClanChatRoom( struct cppISteamFriends_SteamFriends017_LeaveClanChatRoom_params *params ) +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; params->_ret = iface->LeaveClanChatRoom( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends017_GetClanChatMemberCount( struct cppISteamFriends_SteamFriends017_GetClanChatMemberCount_params *params ) +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; params->_ret = iface->GetClanChatMemberCount( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends017_GetChatMemberByIndex( struct cppISteamFriends_SteamFriends017_GetChatMemberByIndex_params *params ) +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; *params->_ret = iface->GetChatMemberByIndex( params->steamIDClan, params->iUser ); + return 0; } -void cppISteamFriends_SteamFriends017_SendClanChatMessage( struct cppISteamFriends_SteamFriends017_SendClanChatMessage_params *params ) +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; params->_ret = iface->SendClanChatMessage( params->steamIDClanChat, params->pchText ); + return 0; } -void cppISteamFriends_SteamFriends017_GetClanChatMessage( struct cppISteamFriends_SteamFriends017_GetClanChatMessage_params *params ) +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; params->_ret = iface->GetClanChatMessage( params->steamIDClanChat, params->iMessage, params->prgchText, params->cchTextMax, params->peChatEntryType, params->psteamidChatter ); + return 0; } -void cppISteamFriends_SteamFriends017_IsClanChatAdmin( struct cppISteamFriends_SteamFriends017_IsClanChatAdmin_params *params ) +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; params->_ret = iface->IsClanChatAdmin( params->steamIDClanChat, params->steamIDUser ); + return 0; } -void cppISteamFriends_SteamFriends017_IsClanChatWindowOpenInSteam( struct cppISteamFriends_SteamFriends017_IsClanChatWindowOpenInSteam_params *params ) +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; params->_ret = iface->IsClanChatWindowOpenInSteam( params->steamIDClanChat ); + return 0; } -void cppISteamFriends_SteamFriends017_OpenClanChatWindowInSteam( struct cppISteamFriends_SteamFriends017_OpenClanChatWindowInSteam_params *params ) +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; params->_ret = iface->OpenClanChatWindowInSteam( params->steamIDClanChat ); + return 0; } -void cppISteamFriends_SteamFriends017_CloseClanChatWindowInSteam( struct cppISteamFriends_SteamFriends017_CloseClanChatWindowInSteam_params *params ) +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; params->_ret = iface->CloseClanChatWindowInSteam( params->steamIDClanChat ); + return 0; } -void cppISteamFriends_SteamFriends017_SetListenForFriendsMessages( struct cppISteamFriends_SteamFriends017_SetListenForFriendsMessages_params *params ) +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; params->_ret = iface->SetListenForFriendsMessages( params->bInterceptEnabled ); + return 0; } -void cppISteamFriends_SteamFriends017_ReplyToFriendMessage( struct cppISteamFriends_SteamFriends017_ReplyToFriendMessage_params *params ) +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; params->_ret = iface->ReplyToFriendMessage( params->steamIDFriend, params->pchMsgToSend ); + return 0; } -void cppISteamFriends_SteamFriends017_GetFriendMessage( struct cppISteamFriends_SteamFriends017_GetFriendMessage_params *params ) +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; params->_ret = iface->GetFriendMessage( params->steamIDFriend, params->iMessageID, params->pvData, params->cubData, params->peChatEntryType ); + return 0; } -void cppISteamFriends_SteamFriends017_GetFollowerCount( struct cppISteamFriends_SteamFriends017_GetFollowerCount_params *params ) +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; params->_ret = iface->GetFollowerCount( params->steamID ); + return 0; } -void cppISteamFriends_SteamFriends017_IsFollowing( struct cppISteamFriends_SteamFriends017_IsFollowing_params *params ) +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; params->_ret = iface->IsFollowing( params->steamID ); + return 0; } -void cppISteamFriends_SteamFriends017_EnumerateFollowingList( struct cppISteamFriends_SteamFriends017_EnumerateFollowingList_params *params ) +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; params->_ret = iface->EnumerateFollowingList( params->unStartIndex ); + return 0; } -void cppISteamFriends_SteamFriends017_IsClanPublic( struct cppISteamFriends_SteamFriends017_IsClanPublic_params *params ) +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; params->_ret = iface->IsClanPublic( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends017_IsClanOfficialGameGroup( struct cppISteamFriends_SteamFriends017_IsClanOfficialGameGroup_params *params ) +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; params->_ret = iface->IsClanOfficialGameGroup( params->steamIDClan ); + return 0; } -void cppISteamFriends_SteamFriends017_GetNumChatsWithUnreadPriorityMessages( struct cppISteamFriends_SteamFriends017_GetNumChatsWithUnreadPriorityMessages_params *params ) +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; params->_ret = iface->GetNumChatsWithUnreadPriorityMessages( ); + return 0; } -void cppISteamFriends_SteamFriends017_ActivateGameOverlayRemotePlayTogetherInviteDialog( struct cppISteamFriends_SteamFriends017_ActivateGameOverlayRemotePlayTogetherInviteDialog_params *params ) +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; iface->ActivateGameOverlayRemotePlayTogetherInviteDialog( params->steamIDLobby ); + return 0; } -void cppISteamFriends_SteamFriends017_RegisterProtocolInOverlayBrowser( struct cppISteamFriends_SteamFriends017_RegisterProtocolInOverlayBrowser_params *params ) +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; params->_ret = iface->RegisterProtocolInOverlayBrowser( params->pchProtocol ); + return 0; } -void cppISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialogConnectString( struct cppISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialogConnectString_params *params ) +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; iface->ActivateGameOverlayInviteDialogConnectString( params->pchConnectString ); + return 0; } -void cppISteamFriends_SteamFriends017_RequestEquippedProfileItems( struct cppISteamFriends_SteamFriends017_RequestEquippedProfileItems_params *params ) +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; params->_ret = iface->RequestEquippedProfileItems( params->steamID ); + return 0; } -void cppISteamFriends_SteamFriends017_BHasEquippedProfileItem( struct cppISteamFriends_SteamFriends017_BHasEquippedProfileItem_params *params ) +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; params->_ret = iface->BHasEquippedProfileItem( params->steamID, params->itemType ); + return 0; } -void cppISteamFriends_SteamFriends017_GetProfileItemPropertyString( struct cppISteamFriends_SteamFriends017_GetProfileItemPropertyString_params *params ) +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; params->_ret = iface->GetProfileItemPropertyString( params->steamID, params->itemType, params->prop ); + return 0; } -void cppISteamFriends_SteamFriends017_GetProfileItemPropertyUint( struct cppISteamFriends_SteamFriends017_GetProfileItemPropertyUint_params *params ) +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; params->_ret = iface->GetProfileItemPropertyUint( params->steamID, params->itemType, params->prop ); + return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends017.h b/lsteamclient/cppISteamFriends_SteamFriends017.h deleted file mode 100644 index f667eeea..00000000 --- a/lsteamclient/cppISteamFriends_SteamFriends017.h +++ /dev/null @@ -1,672 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamFriends_SteamFriends017_GetPersonaName_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamFriends_SteamFriends017_GetPersonaName( struct cppISteamFriends_SteamFriends017_GetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends017_SetPersonaName_params -{ - void *linux_side; - uint64_t _ret; - const char *pchPersonaName; -}; -extern void cppISteamFriends_SteamFriends017_SetPersonaName( struct cppISteamFriends_SteamFriends017_SetPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends017_GetPersonaState_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamFriends_SteamFriends017_GetPersonaState( struct cppISteamFriends_SteamFriends017_GetPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends017_GetFriendCount_params -{ - void *linux_side; - int32_t _ret; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends017_GetFriendCount( struct cppISteamFriends_SteamFriends017_GetFriendCount_params *params ); - -struct cppISteamFriends_SteamFriends017_GetFriendByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iFriend; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends017_GetFriendByIndex( struct cppISteamFriends_SteamFriends017_GetFriendByIndex_params *params ); - -struct cppISteamFriends_SteamFriends017_GetFriendRelationship_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends017_GetFriendRelationship( struct cppISteamFriends_SteamFriends017_GetFriendRelationship_params *params ); - -struct cppISteamFriends_SteamFriends017_GetFriendPersonaState_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends017_GetFriendPersonaState( struct cppISteamFriends_SteamFriends017_GetFriendPersonaState_params *params ); - -struct cppISteamFriends_SteamFriends017_GetFriendPersonaName_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends017_GetFriendPersonaName( struct cppISteamFriends_SteamFriends017_GetFriendPersonaName_params *params ); - -struct cppISteamFriends_SteamFriends017_GetFriendGamePlayed_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - FriendGameInfo_t *pFriendGameInfo; -}; -extern void cppISteamFriends_SteamFriends017_GetFriendGamePlayed( struct cppISteamFriends_SteamFriends017_GetFriendGamePlayed_params *params ); - -struct cppISteamFriends_SteamFriends017_GetFriendPersonaNameHistory_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - int32_t iPersonaName; -}; -extern void cppISteamFriends_SteamFriends017_GetFriendPersonaNameHistory( struct cppISteamFriends_SteamFriends017_GetFriendPersonaNameHistory_params *params ); - -struct cppISteamFriends_SteamFriends017_GetFriendSteamLevel_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends017_GetFriendSteamLevel( struct cppISteamFriends_SteamFriends017_GetFriendSteamLevel_params *params ); - -struct cppISteamFriends_SteamFriends017_GetPlayerNickname_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDPlayer; -}; -extern void cppISteamFriends_SteamFriends017_GetPlayerNickname( struct cppISteamFriends_SteamFriends017_GetPlayerNickname_params *params ); - -struct cppISteamFriends_SteamFriends017_GetFriendsGroupCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamFriends_SteamFriends017_GetFriendsGroupCount( struct cppISteamFriends_SteamFriends017_GetFriendsGroupCount_params *params ); - -struct cppISteamFriends_SteamFriends017_GetFriendsGroupIDByIndex_params -{ - void *linux_side; - int16_t _ret; - int32_t iFG; -}; -extern void cppISteamFriends_SteamFriends017_GetFriendsGroupIDByIndex( struct cppISteamFriends_SteamFriends017_GetFriendsGroupIDByIndex_params *params ); - -struct cppISteamFriends_SteamFriends017_GetFriendsGroupName_params -{ - void *linux_side; - const char *_ret; - int16_t friendsGroupID; -}; -extern void cppISteamFriends_SteamFriends017_GetFriendsGroupName( struct cppISteamFriends_SteamFriends017_GetFriendsGroupName_params *params ); - -struct cppISteamFriends_SteamFriends017_GetFriendsGroupMembersCount_params -{ - void *linux_side; - int32_t _ret; - int16_t friendsGroupID; -}; -extern void cppISteamFriends_SteamFriends017_GetFriendsGroupMembersCount( struct cppISteamFriends_SteamFriends017_GetFriendsGroupMembersCount_params *params ); - -struct cppISteamFriends_SteamFriends017_GetFriendsGroupMembersList_params -{ - void *linux_side; - int16_t friendsGroupID; - CSteamID *pOutSteamIDMembers; - int32_t nMembersCount; -}; -extern void cppISteamFriends_SteamFriends017_GetFriendsGroupMembersList( struct cppISteamFriends_SteamFriends017_GetFriendsGroupMembersList_params *params ); - -struct cppISteamFriends_SteamFriends017_HasFriend_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - int32_t iFriendFlags; -}; -extern void cppISteamFriends_SteamFriends017_HasFriend( struct cppISteamFriends_SteamFriends017_HasFriend_params *params ); - -struct cppISteamFriends_SteamFriends017_GetClanCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamFriends_SteamFriends017_GetClanCount( struct cppISteamFriends_SteamFriends017_GetClanCount_params *params ); - -struct cppISteamFriends_SteamFriends017_GetClanByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iClan; -}; -extern void cppISteamFriends_SteamFriends017_GetClanByIndex( struct cppISteamFriends_SteamFriends017_GetClanByIndex_params *params ); - -struct cppISteamFriends_SteamFriends017_GetClanName_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends017_GetClanName( struct cppISteamFriends_SteamFriends017_GetClanName_params *params ); - -struct cppISteamFriends_SteamFriends017_GetClanTag_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends017_GetClanTag( struct cppISteamFriends_SteamFriends017_GetClanTag_params *params ); - -struct cppISteamFriends_SteamFriends017_GetClanActivityCounts_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClan; - int32_t *pnOnline; - int32_t *pnInGame; - int32_t *pnChatting; -}; -extern void cppISteamFriends_SteamFriends017_GetClanActivityCounts( struct cppISteamFriends_SteamFriends017_GetClanActivityCounts_params *params ); - -struct cppISteamFriends_SteamFriends017_DownloadClanActivityCounts_params -{ - void *linux_side; - uint64_t _ret; - CSteamID *psteamIDClans; - int32_t cClansToRequest; -}; -extern void cppISteamFriends_SteamFriends017_DownloadClanActivityCounts( struct cppISteamFriends_SteamFriends017_DownloadClanActivityCounts_params *params ); - -struct cppISteamFriends_SteamFriends017_GetFriendCountFromSource_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDSource; -}; -extern void cppISteamFriends_SteamFriends017_GetFriendCountFromSource( struct cppISteamFriends_SteamFriends017_GetFriendCountFromSource_params *params ); - -struct cppISteamFriends_SteamFriends017_GetFriendFromSourceByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDSource; - int32_t iFriend; -}; -extern void cppISteamFriends_SteamFriends017_GetFriendFromSourceByIndex( struct cppISteamFriends_SteamFriends017_GetFriendFromSourceByIndex_params *params ); - -struct cppISteamFriends_SteamFriends017_IsUserInSource_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - CSteamID steamIDSource; -}; -extern void cppISteamFriends_SteamFriends017_IsUserInSource( struct cppISteamFriends_SteamFriends017_IsUserInSource_params *params ); - -struct cppISteamFriends_SteamFriends017_SetInGameVoiceSpeaking_params -{ - void *linux_side; - CSteamID steamIDUser; - bool bSpeaking; -}; -extern void cppISteamFriends_SteamFriends017_SetInGameVoiceSpeaking( struct cppISteamFriends_SteamFriends017_SetInGameVoiceSpeaking_params *params ); - -struct cppISteamFriends_SteamFriends017_ActivateGameOverlay_params -{ - void *linux_side; - const char *pchDialog; -}; -extern void cppISteamFriends_SteamFriends017_ActivateGameOverlay( struct cppISteamFriends_SteamFriends017_ActivateGameOverlay_params *params ); - -struct cppISteamFriends_SteamFriends017_ActivateGameOverlayToUser_params -{ - void *linux_side; - const char *pchDialog; - CSteamID steamID; -}; -extern void cppISteamFriends_SteamFriends017_ActivateGameOverlayToUser( struct cppISteamFriends_SteamFriends017_ActivateGameOverlayToUser_params *params ); - -struct cppISteamFriends_SteamFriends017_ActivateGameOverlayToWebPage_params -{ - void *linux_side; - const char *pchURL; - uint32_t eMode; -}; -extern void cppISteamFriends_SteamFriends017_ActivateGameOverlayToWebPage( struct cppISteamFriends_SteamFriends017_ActivateGameOverlayToWebPage_params *params ); - -struct cppISteamFriends_SteamFriends017_ActivateGameOverlayToStore_params -{ - void *linux_side; - uint32_t nAppID; - uint32_t eFlag; -}; -extern void cppISteamFriends_SteamFriends017_ActivateGameOverlayToStore( struct cppISteamFriends_SteamFriends017_ActivateGameOverlayToStore_params *params ); - -struct cppISteamFriends_SteamFriends017_SetPlayedWith_params -{ - void *linux_side; - CSteamID steamIDUserPlayedWith; -}; -extern void cppISteamFriends_SteamFriends017_SetPlayedWith( struct cppISteamFriends_SteamFriends017_SetPlayedWith_params *params ); - -struct cppISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialog_params -{ - void *linux_side; - CSteamID steamIDLobby; -}; -extern void cppISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialog( struct cppISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialog_params *params ); - -struct cppISteamFriends_SteamFriends017_GetSmallFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends017_GetSmallFriendAvatar( struct cppISteamFriends_SteamFriends017_GetSmallFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends017_GetMediumFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends017_GetMediumFriendAvatar( struct cppISteamFriends_SteamFriends017_GetMediumFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends017_GetLargeFriendAvatar_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends017_GetLargeFriendAvatar( struct cppISteamFriends_SteamFriends017_GetLargeFriendAvatar_params *params ); - -struct cppISteamFriends_SteamFriends017_RequestUserInformation_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - bool bRequireNameOnly; -}; -extern void cppISteamFriends_SteamFriends017_RequestUserInformation( struct cppISteamFriends_SteamFriends017_RequestUserInformation_params *params ); - -struct cppISteamFriends_SteamFriends017_RequestClanOfficerList_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends017_RequestClanOfficerList( struct cppISteamFriends_SteamFriends017_RequestClanOfficerList_params *params ); - -struct cppISteamFriends_SteamFriends017_GetClanOwner_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends017_GetClanOwner( struct cppISteamFriends_SteamFriends017_GetClanOwner_params *params ); - -struct cppISteamFriends_SteamFriends017_GetClanOfficerCount_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends017_GetClanOfficerCount( struct cppISteamFriends_SteamFriends017_GetClanOfficerCount_params *params ); - -struct cppISteamFriends_SteamFriends017_GetClanOfficerByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDClan; - int32_t iOfficer; -}; -extern void cppISteamFriends_SteamFriends017_GetClanOfficerByIndex( struct cppISteamFriends_SteamFriends017_GetClanOfficerByIndex_params *params ); - -struct cppISteamFriends_SteamFriends017_GetUserRestrictions_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamFriends_SteamFriends017_GetUserRestrictions( struct cppISteamFriends_SteamFriends017_GetUserRestrictions_params *params ); - -struct cppISteamFriends_SteamFriends017_SetRichPresence_params -{ - void *linux_side; - bool _ret; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamFriends_SteamFriends017_SetRichPresence( struct cppISteamFriends_SteamFriends017_SetRichPresence_params *params ); - -struct cppISteamFriends_SteamFriends017_ClearRichPresence_params -{ - void *linux_side; -}; -extern void cppISteamFriends_SteamFriends017_ClearRichPresence( struct cppISteamFriends_SteamFriends017_ClearRichPresence_params *params ); - -struct cppISteamFriends_SteamFriends017_GetFriendRichPresence_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - const char *pchKey; -}; -extern void cppISteamFriends_SteamFriends017_GetFriendRichPresence( struct cppISteamFriends_SteamFriends017_GetFriendRichPresence_params *params ); - -struct cppISteamFriends_SteamFriends017_GetFriendRichPresenceKeyCount_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends017_GetFriendRichPresenceKeyCount( struct cppISteamFriends_SteamFriends017_GetFriendRichPresenceKeyCount_params *params ); - -struct cppISteamFriends_SteamFriends017_GetFriendRichPresenceKeyByIndex_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDFriend; - int32_t iKey; -}; -extern void cppISteamFriends_SteamFriends017_GetFriendRichPresenceKeyByIndex( struct cppISteamFriends_SteamFriends017_GetFriendRichPresenceKeyByIndex_params *params ); - -struct cppISteamFriends_SteamFriends017_RequestFriendRichPresence_params -{ - void *linux_side; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends017_RequestFriendRichPresence( struct cppISteamFriends_SteamFriends017_RequestFriendRichPresence_params *params ); - -struct cppISteamFriends_SteamFriends017_InviteUserToGame_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - const char *pchConnectString; -}; -extern void cppISteamFriends_SteamFriends017_InviteUserToGame( struct cppISteamFriends_SteamFriends017_InviteUserToGame_params *params ); - -struct cppISteamFriends_SteamFriends017_GetCoplayFriendCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamFriends_SteamFriends017_GetCoplayFriendCount( struct cppISteamFriends_SteamFriends017_GetCoplayFriendCount_params *params ); - -struct cppISteamFriends_SteamFriends017_GetCoplayFriend_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iCoplayFriend; -}; -extern void cppISteamFriends_SteamFriends017_GetCoplayFriend( struct cppISteamFriends_SteamFriends017_GetCoplayFriend_params *params ); - -struct cppISteamFriends_SteamFriends017_GetFriendCoplayTime_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends017_GetFriendCoplayTime( struct cppISteamFriends_SteamFriends017_GetFriendCoplayTime_params *params ); - -struct cppISteamFriends_SteamFriends017_GetFriendCoplayGame_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamFriends_SteamFriends017_GetFriendCoplayGame( struct cppISteamFriends_SteamFriends017_GetFriendCoplayGame_params *params ); - -struct cppISteamFriends_SteamFriends017_JoinClanChatRoom_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends017_JoinClanChatRoom( struct cppISteamFriends_SteamFriends017_JoinClanChatRoom_params *params ); - -struct cppISteamFriends_SteamFriends017_LeaveClanChatRoom_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends017_LeaveClanChatRoom( struct cppISteamFriends_SteamFriends017_LeaveClanChatRoom_params *params ); - -struct cppISteamFriends_SteamFriends017_GetClanChatMemberCount_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends017_GetClanChatMemberCount( struct cppISteamFriends_SteamFriends017_GetClanChatMemberCount_params *params ); - -struct cppISteamFriends_SteamFriends017_GetChatMemberByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDClan; - int32_t iUser; -}; -extern void cppISteamFriends_SteamFriends017_GetChatMemberByIndex( struct cppISteamFriends_SteamFriends017_GetChatMemberByIndex_params *params ); - -struct cppISteamFriends_SteamFriends017_SendClanChatMessage_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; - const char *pchText; -}; -extern void cppISteamFriends_SteamFriends017_SendClanChatMessage( struct cppISteamFriends_SteamFriends017_SendClanChatMessage_params *params ); - -struct cppISteamFriends_SteamFriends017_GetClanChatMessage_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDClanChat; - int32_t iMessage; - void *prgchText; - int32_t cchTextMax; - uint32_t *peChatEntryType; - CSteamID *psteamidChatter; -}; -extern void cppISteamFriends_SteamFriends017_GetClanChatMessage( struct cppISteamFriends_SteamFriends017_GetClanChatMessage_params *params ); - -struct cppISteamFriends_SteamFriends017_IsClanChatAdmin_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; - CSteamID steamIDUser; -}; -extern void cppISteamFriends_SteamFriends017_IsClanChatAdmin( struct cppISteamFriends_SteamFriends017_IsClanChatAdmin_params *params ); - -struct cppISteamFriends_SteamFriends017_IsClanChatWindowOpenInSteam_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; -}; -extern void cppISteamFriends_SteamFriends017_IsClanChatWindowOpenInSteam( struct cppISteamFriends_SteamFriends017_IsClanChatWindowOpenInSteam_params *params ); - -struct cppISteamFriends_SteamFriends017_OpenClanChatWindowInSteam_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; -}; -extern void cppISteamFriends_SteamFriends017_OpenClanChatWindowInSteam( struct cppISteamFriends_SteamFriends017_OpenClanChatWindowInSteam_params *params ); - -struct cppISteamFriends_SteamFriends017_CloseClanChatWindowInSteam_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClanChat; -}; -extern void cppISteamFriends_SteamFriends017_CloseClanChatWindowInSteam( struct cppISteamFriends_SteamFriends017_CloseClanChatWindowInSteam_params *params ); - -struct cppISteamFriends_SteamFriends017_SetListenForFriendsMessages_params -{ - void *linux_side; - bool _ret; - bool bInterceptEnabled; -}; -extern void cppISteamFriends_SteamFriends017_SetListenForFriendsMessages( struct cppISteamFriends_SteamFriends017_SetListenForFriendsMessages_params *params ); - -struct cppISteamFriends_SteamFriends017_ReplyToFriendMessage_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; - const char *pchMsgToSend; -}; -extern void cppISteamFriends_SteamFriends017_ReplyToFriendMessage( struct cppISteamFriends_SteamFriends017_ReplyToFriendMessage_params *params ); - -struct cppISteamFriends_SteamFriends017_GetFriendMessage_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDFriend; - int32_t iMessageID; - void *pvData; - int32_t cubData; - uint32_t *peChatEntryType; -}; -extern void cppISteamFriends_SteamFriends017_GetFriendMessage( struct cppISteamFriends_SteamFriends017_GetFriendMessage_params *params ); - -struct cppISteamFriends_SteamFriends017_GetFollowerCount_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamID; -}; -extern void cppISteamFriends_SteamFriends017_GetFollowerCount( struct cppISteamFriends_SteamFriends017_GetFollowerCount_params *params ); - -struct cppISteamFriends_SteamFriends017_IsFollowing_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamID; -}; -extern void cppISteamFriends_SteamFriends017_IsFollowing( struct cppISteamFriends_SteamFriends017_IsFollowing_params *params ); - -struct cppISteamFriends_SteamFriends017_EnumerateFollowingList_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unStartIndex; -}; -extern void cppISteamFriends_SteamFriends017_EnumerateFollowingList( struct cppISteamFriends_SteamFriends017_EnumerateFollowingList_params *params ); - -struct cppISteamFriends_SteamFriends017_IsClanPublic_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends017_IsClanPublic( struct cppISteamFriends_SteamFriends017_IsClanPublic_params *params ); - -struct cppISteamFriends_SteamFriends017_IsClanOfficialGameGroup_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDClan; -}; -extern void cppISteamFriends_SteamFriends017_IsClanOfficialGameGroup( struct cppISteamFriends_SteamFriends017_IsClanOfficialGameGroup_params *params ); - -struct cppISteamFriends_SteamFriends017_GetNumChatsWithUnreadPriorityMessages_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamFriends_SteamFriends017_GetNumChatsWithUnreadPriorityMessages( struct cppISteamFriends_SteamFriends017_GetNumChatsWithUnreadPriorityMessages_params *params ); - -struct cppISteamFriends_SteamFriends017_ActivateGameOverlayRemotePlayTogetherInviteDialog_params -{ - void *linux_side; - CSteamID steamIDLobby; -}; -extern void cppISteamFriends_SteamFriends017_ActivateGameOverlayRemotePlayTogetherInviteDialog( struct cppISteamFriends_SteamFriends017_ActivateGameOverlayRemotePlayTogetherInviteDialog_params *params ); - -struct cppISteamFriends_SteamFriends017_RegisterProtocolInOverlayBrowser_params -{ - void *linux_side; - bool _ret; - const char *pchProtocol; -}; -extern void cppISteamFriends_SteamFriends017_RegisterProtocolInOverlayBrowser( struct cppISteamFriends_SteamFriends017_RegisterProtocolInOverlayBrowser_params *params ); - -struct cppISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialogConnectString_params -{ - void *linux_side; - const char *pchConnectString; -}; -extern void cppISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialogConnectString( struct cppISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialogConnectString_params *params ); - -struct cppISteamFriends_SteamFriends017_RequestEquippedProfileItems_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamID; -}; -extern void cppISteamFriends_SteamFriends017_RequestEquippedProfileItems( struct cppISteamFriends_SteamFriends017_RequestEquippedProfileItems_params *params ); - -struct cppISteamFriends_SteamFriends017_BHasEquippedProfileItem_params -{ - void *linux_side; - bool _ret; - CSteamID steamID; - uint32_t itemType; -}; -extern void cppISteamFriends_SteamFriends017_BHasEquippedProfileItem( struct cppISteamFriends_SteamFriends017_BHasEquippedProfileItem_params *params ); - -struct cppISteamFriends_SteamFriends017_GetProfileItemPropertyString_params -{ - void *linux_side; - const char *_ret; - CSteamID steamID; - uint32_t itemType; - uint32_t prop; -}; -extern void cppISteamFriends_SteamFriends017_GetProfileItemPropertyString( struct cppISteamFriends_SteamFriends017_GetProfileItemPropertyString_params *params ); - -struct cppISteamFriends_SteamFriends017_GetProfileItemPropertyUint_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamID; - uint32_t itemType; - uint32_t prop; -}; -extern void cppISteamFriends_SteamFriends017_GetProfileItemPropertyUint( struct cppISteamFriends_SteamFriends017_GetProfileItemPropertyUint_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamGameCoordinator_SteamGameCoordinator001.cpp b/lsteamclient/cppISteamGameCoordinator_SteamGameCoordinator001.cpp index 68de7ad3..80e976c3 100644 --- a/lsteamclient/cppISteamGameCoordinator_SteamGameCoordinator001.cpp +++ b/lsteamclient/cppISteamGameCoordinator_SteamGameCoordinator001.cpp @@ -1,22 +1,27 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamGameCoordinator_SteamGameCoordinator001.h" -void cppISteamGameCoordinator_SteamGameCoordinator001_SendMessage( struct cppISteamGameCoordinator_SteamGameCoordinator001_SendMessage_params *params ) +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; params->_ret = iface->SendMessage( params->unMsgType, params->pubData, params->cubData ); + return 0; } -void cppISteamGameCoordinator_SteamGameCoordinator001_IsMessageAvailable( struct cppISteamGameCoordinator_SteamGameCoordinator001_IsMessageAvailable_params *params ) +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; params->_ret = iface->IsMessageAvailable( params->pcubMsgSize ); + return 0; } -void cppISteamGameCoordinator_SteamGameCoordinator001_RetrieveMessage( struct cppISteamGameCoordinator_SteamGameCoordinator001_RetrieveMessage_params *params ) +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; params->_ret = iface->RetrieveMessage( params->punMsgType, params->pubDest, params->cubDest, params->pcubMsgSize ); + return 0; } diff --git a/lsteamclient/cppISteamGameCoordinator_SteamGameCoordinator001.h b/lsteamclient/cppISteamGameCoordinator_SteamGameCoordinator001.h deleted file mode 100644 index 3cee7600..00000000 --- a/lsteamclient/cppISteamGameCoordinator_SteamGameCoordinator001.h +++ /dev/null @@ -1,41 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamGameCoordinator_SteamGameCoordinator001_SendMessage_params -{ - void *linux_side; - uint32_t _ret; - uint32_t unMsgType; - const void *pubData; - uint32_t cubData; -}; -extern void cppISteamGameCoordinator_SteamGameCoordinator001_SendMessage( struct cppISteamGameCoordinator_SteamGameCoordinator001_SendMessage_params *params ); - -struct cppISteamGameCoordinator_SteamGameCoordinator001_IsMessageAvailable_params -{ - void *linux_side; - bool _ret; - uint32_t *pcubMsgSize; -}; -extern void cppISteamGameCoordinator_SteamGameCoordinator001_IsMessageAvailable( struct cppISteamGameCoordinator_SteamGameCoordinator001_IsMessageAvailable_params *params ); - -struct cppISteamGameCoordinator_SteamGameCoordinator001_RetrieveMessage_params -{ - void *linux_side; - uint32_t _ret; - uint32_t *punMsgType; - void *pubDest; - uint32_t cubDest; - uint32_t *pcubMsgSize; -}; -extern void cppISteamGameCoordinator_SteamGameCoordinator001_RetrieveMessage( struct cppISteamGameCoordinator_SteamGameCoordinator001_RetrieveMessage_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamGameSearch_SteamMatchGameSearch001.cpp b/lsteamclient/cppISteamGameSearch_SteamMatchGameSearch001.cpp index 52c7389c..2d026147 100644 --- a/lsteamclient/cppISteamGameSearch_SteamMatchGameSearch001.cpp +++ b/lsteamclient/cppISteamGameSearch_SteamMatchGameSearch001.cpp @@ -1,88 +1,115 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamGameSearch_SteamMatchGameSearch001.h" -void cppISteamGameSearch_SteamMatchGameSearch001_AddGameSearchParams( struct cppISteamGameSearch_SteamMatchGameSearch001_AddGameSearchParams_params *params ) +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; params->_ret = iface->AddGameSearchParams( params->pchKeyToFind, params->pchValuesToFind ); + return 0; } -void cppISteamGameSearch_SteamMatchGameSearch001_SearchForGameWithLobby( struct cppISteamGameSearch_SteamMatchGameSearch001_SearchForGameWithLobby_params *params ) +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; params->_ret = iface->SearchForGameWithLobby( params->steamIDLobby, params->nPlayerMin, params->nPlayerMax ); + return 0; } -void cppISteamGameSearch_SteamMatchGameSearch001_SearchForGameSolo( struct cppISteamGameSearch_SteamMatchGameSearch001_SearchForGameSolo_params *params ) +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; params->_ret = iface->SearchForGameSolo( params->nPlayerMin, params->nPlayerMax ); + return 0; } -void cppISteamGameSearch_SteamMatchGameSearch001_AcceptGame( struct cppISteamGameSearch_SteamMatchGameSearch001_AcceptGame_params *params ) +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; params->_ret = iface->AcceptGame( ); + return 0; } -void cppISteamGameSearch_SteamMatchGameSearch001_DeclineGame( struct cppISteamGameSearch_SteamMatchGameSearch001_DeclineGame_params *params ) +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; params->_ret = iface->DeclineGame( ); + return 0; } -void cppISteamGameSearch_SteamMatchGameSearch001_RetrieveConnectionDetails( struct cppISteamGameSearch_SteamMatchGameSearch001_RetrieveConnectionDetails_params *params ) +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; params->_ret = iface->RetrieveConnectionDetails( params->steamIDHost, params->pchConnectionDetails, params->cubConnectionDetails ); + return 0; } -void cppISteamGameSearch_SteamMatchGameSearch001_EndGameSearch( struct cppISteamGameSearch_SteamMatchGameSearch001_EndGameSearch_params *params ) +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; params->_ret = iface->EndGameSearch( ); + return 0; } -void cppISteamGameSearch_SteamMatchGameSearch001_SetGameHostParams( struct cppISteamGameSearch_SteamMatchGameSearch001_SetGameHostParams_params *params ) +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; params->_ret = iface->SetGameHostParams( params->pchKey, params->pchValue ); + return 0; } -void cppISteamGameSearch_SteamMatchGameSearch001_SetConnectionDetails( struct cppISteamGameSearch_SteamMatchGameSearch001_SetConnectionDetails_params *params ) +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; params->_ret = iface->SetConnectionDetails( params->pchConnectionDetails, params->cubConnectionDetails ); + return 0; } -void cppISteamGameSearch_SteamMatchGameSearch001_RequestPlayersForGame( struct cppISteamGameSearch_SteamMatchGameSearch001_RequestPlayersForGame_params *params ) +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; params->_ret = iface->RequestPlayersForGame( params->nPlayerMin, params->nPlayerMax, params->nMaxTeamSize ); + return 0; } -void cppISteamGameSearch_SteamMatchGameSearch001_HostConfirmGameStart( struct cppISteamGameSearch_SteamMatchGameSearch001_HostConfirmGameStart_params *params ) +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; params->_ret = iface->HostConfirmGameStart( params->ullUniqueGameID ); + return 0; } -void cppISteamGameSearch_SteamMatchGameSearch001_CancelRequestPlayersForGame( struct cppISteamGameSearch_SteamMatchGameSearch001_CancelRequestPlayersForGame_params *params ) +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; params->_ret = iface->CancelRequestPlayersForGame( ); + return 0; } -void cppISteamGameSearch_SteamMatchGameSearch001_SubmitPlayerResult( struct cppISteamGameSearch_SteamMatchGameSearch001_SubmitPlayerResult_params *params ) +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; params->_ret = iface->SubmitPlayerResult( params->ullUniqueGameID, params->steamIDPlayer, params->EPlayerResult ); + return 0; } -void cppISteamGameSearch_SteamMatchGameSearch001_EndGame( struct cppISteamGameSearch_SteamMatchGameSearch001_EndGame_params *params ) +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; params->_ret = iface->EndGame( params->ullUniqueGameID ); + return 0; } diff --git a/lsteamclient/cppISteamGameSearch_SteamMatchGameSearch001.h b/lsteamclient/cppISteamGameSearch_SteamMatchGameSearch001.h deleted file mode 100644 index de8f4a98..00000000 --- a/lsteamclient/cppISteamGameSearch_SteamMatchGameSearch001.h +++ /dev/null @@ -1,132 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamGameSearch_SteamMatchGameSearch001_AddGameSearchParams_params -{ - void *linux_side; - uint32_t _ret; - const char *pchKeyToFind; - const char *pchValuesToFind; -}; -extern void cppISteamGameSearch_SteamMatchGameSearch001_AddGameSearchParams( struct cppISteamGameSearch_SteamMatchGameSearch001_AddGameSearchParams_params *params ); - -struct cppISteamGameSearch_SteamMatchGameSearch001_SearchForGameWithLobby_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDLobby; - int32_t nPlayerMin; - int32_t nPlayerMax; -}; -extern void cppISteamGameSearch_SteamMatchGameSearch001_SearchForGameWithLobby( struct cppISteamGameSearch_SteamMatchGameSearch001_SearchForGameWithLobby_params *params ); - -struct cppISteamGameSearch_SteamMatchGameSearch001_SearchForGameSolo_params -{ - void *linux_side; - uint32_t _ret; - int32_t nPlayerMin; - int32_t nPlayerMax; -}; -extern void cppISteamGameSearch_SteamMatchGameSearch001_SearchForGameSolo( struct cppISteamGameSearch_SteamMatchGameSearch001_SearchForGameSolo_params *params ); - -struct cppISteamGameSearch_SteamMatchGameSearch001_AcceptGame_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamGameSearch_SteamMatchGameSearch001_AcceptGame( struct cppISteamGameSearch_SteamMatchGameSearch001_AcceptGame_params *params ); - -struct cppISteamGameSearch_SteamMatchGameSearch001_DeclineGame_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamGameSearch_SteamMatchGameSearch001_DeclineGame( struct cppISteamGameSearch_SteamMatchGameSearch001_DeclineGame_params *params ); - -struct cppISteamGameSearch_SteamMatchGameSearch001_RetrieveConnectionDetails_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDHost; - char *pchConnectionDetails; - int32_t cubConnectionDetails; -}; -extern void cppISteamGameSearch_SteamMatchGameSearch001_RetrieveConnectionDetails( struct cppISteamGameSearch_SteamMatchGameSearch001_RetrieveConnectionDetails_params *params ); - -struct cppISteamGameSearch_SteamMatchGameSearch001_EndGameSearch_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamGameSearch_SteamMatchGameSearch001_EndGameSearch( struct cppISteamGameSearch_SteamMatchGameSearch001_EndGameSearch_params *params ); - -struct cppISteamGameSearch_SteamMatchGameSearch001_SetGameHostParams_params -{ - void *linux_side; - uint32_t _ret; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamGameSearch_SteamMatchGameSearch001_SetGameHostParams( struct cppISteamGameSearch_SteamMatchGameSearch001_SetGameHostParams_params *params ); - -struct cppISteamGameSearch_SteamMatchGameSearch001_SetConnectionDetails_params -{ - void *linux_side; - uint32_t _ret; - const char *pchConnectionDetails; - int32_t cubConnectionDetails; -}; -extern void cppISteamGameSearch_SteamMatchGameSearch001_SetConnectionDetails( struct cppISteamGameSearch_SteamMatchGameSearch001_SetConnectionDetails_params *params ); - -struct cppISteamGameSearch_SteamMatchGameSearch001_RequestPlayersForGame_params -{ - void *linux_side; - uint32_t _ret; - int32_t nPlayerMin; - int32_t nPlayerMax; - int32_t nMaxTeamSize; -}; -extern void cppISteamGameSearch_SteamMatchGameSearch001_RequestPlayersForGame( struct cppISteamGameSearch_SteamMatchGameSearch001_RequestPlayersForGame_params *params ); - -struct cppISteamGameSearch_SteamMatchGameSearch001_HostConfirmGameStart_params -{ - void *linux_side; - uint32_t _ret; - uint64_t ullUniqueGameID; -}; -extern void cppISteamGameSearch_SteamMatchGameSearch001_HostConfirmGameStart( struct cppISteamGameSearch_SteamMatchGameSearch001_HostConfirmGameStart_params *params ); - -struct cppISteamGameSearch_SteamMatchGameSearch001_CancelRequestPlayersForGame_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamGameSearch_SteamMatchGameSearch001_CancelRequestPlayersForGame( struct cppISteamGameSearch_SteamMatchGameSearch001_CancelRequestPlayersForGame_params *params ); - -struct cppISteamGameSearch_SteamMatchGameSearch001_SubmitPlayerResult_params -{ - void *linux_side; - uint32_t _ret; - uint64_t ullUniqueGameID; - CSteamID steamIDPlayer; - uint32_t EPlayerResult; -}; -extern void cppISteamGameSearch_SteamMatchGameSearch001_SubmitPlayerResult( struct cppISteamGameSearch_SteamMatchGameSearch001_SubmitPlayerResult_params *params ); - -struct cppISteamGameSearch_SteamMatchGameSearch001_EndGame_params -{ - void *linux_side; - uint32_t _ret; - uint64_t ullUniqueGameID; -}; -extern void cppISteamGameSearch_SteamMatchGameSearch001_EndGame( struct cppISteamGameSearch_SteamMatchGameSearch001_EndGame_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamGameServerStats_SteamGameServerStats001.cpp b/lsteamclient/cppISteamGameServerStats_SteamGameServerStats001.cpp index e84c6e64..62da6692 100644 --- a/lsteamclient/cppISteamGameServerStats_SteamGameServerStats001.cpp +++ b/lsteamclient/cppISteamGameServerStats_SteamGameServerStats001.cpp @@ -1,64 +1,83 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamGameServerStats_SteamGameServerStats001.h" -void cppISteamGameServerStats_SteamGameServerStats001_RequestUserStats( struct cppISteamGameServerStats_SteamGameServerStats001_RequestUserStats_params *params ) +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; params->_ret = iface->RequestUserStats( params->steamIDUser ); + return 0; } -void cppISteamGameServerStats_SteamGameServerStats001_GetUserStat( struct cppISteamGameServerStats_SteamGameServerStats001_GetUserStat_params *params ) +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; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); + return 0; } -void cppISteamGameServerStats_SteamGameServerStats001_GetUserStat_2( struct cppISteamGameServerStats_SteamGameServerStats001_GetUserStat_2_params *params ) +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; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); + return 0; } -void cppISteamGameServerStats_SteamGameServerStats001_GetUserAchievement( struct cppISteamGameServerStats_SteamGameServerStats001_GetUserAchievement_params *params ) +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; params->_ret = iface->GetUserAchievement( params->steamIDUser, params->pchName, params->pbAchieved ); + return 0; } -void cppISteamGameServerStats_SteamGameServerStats001_SetUserStat( struct cppISteamGameServerStats_SteamGameServerStats001_SetUserStat_params *params ) +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; params->_ret = iface->SetUserStat( params->steamIDUser, params->pchName, params->nData ); + return 0; } -void cppISteamGameServerStats_SteamGameServerStats001_SetUserStat_2( struct cppISteamGameServerStats_SteamGameServerStats001_SetUserStat_2_params *params ) +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; params->_ret = iface->SetUserStat( params->steamIDUser, params->pchName, params->fData ); + return 0; } -void cppISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRateStat( struct cppISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRateStat_params *params ) +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; params->_ret = iface->UpdateUserAvgRateStat( params->steamIDUser, params->pchName, params->flCountThisSession, params->dSessionLength ); + return 0; } -void cppISteamGameServerStats_SteamGameServerStats001_SetUserAchievement( struct cppISteamGameServerStats_SteamGameServerStats001_SetUserAchievement_params *params ) +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; params->_ret = iface->SetUserAchievement( params->steamIDUser, params->pchName ); + return 0; } -void cppISteamGameServerStats_SteamGameServerStats001_ClearUserAchievement( struct cppISteamGameServerStats_SteamGameServerStats001_ClearUserAchievement_params *params ) +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; params->_ret = iface->ClearUserAchievement( params->steamIDUser, params->pchName ); + return 0; } -void cppISteamGameServerStats_SteamGameServerStats001_StoreUserStats( struct cppISteamGameServerStats_SteamGameServerStats001_StoreUserStats_params *params ) +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; params->_ret = iface->StoreUserStats( params->steamIDUser ); + return 0; } diff --git a/lsteamclient/cppISteamGameServerStats_SteamGameServerStats001.h b/lsteamclient/cppISteamGameServerStats_SteamGameServerStats001.h deleted file mode 100644 index c97c5e1b..00000000 --- a/lsteamclient/cppISteamGameServerStats_SteamGameServerStats001.h +++ /dev/null @@ -1,107 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamGameServerStats_SteamGameServerStats001_RequestUserStats_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDUser; -}; -extern void cppISteamGameServerStats_SteamGameServerStats001_RequestUserStats( struct cppISteamGameServerStats_SteamGameServerStats001_RequestUserStats_params *params ); - -struct cppISteamGameServerStats_SteamGameServerStats001_GetUserStat_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - int32_t *pData; -}; -extern void cppISteamGameServerStats_SteamGameServerStats001_GetUserStat( struct cppISteamGameServerStats_SteamGameServerStats001_GetUserStat_params *params ); - -struct cppISteamGameServerStats_SteamGameServerStats001_GetUserStat_2_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - float *pData; -}; -extern void cppISteamGameServerStats_SteamGameServerStats001_GetUserStat_2( struct cppISteamGameServerStats_SteamGameServerStats001_GetUserStat_2_params *params ); - -struct cppISteamGameServerStats_SteamGameServerStats001_GetUserAchievement_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - bool *pbAchieved; -}; -extern void cppISteamGameServerStats_SteamGameServerStats001_GetUserAchievement( struct cppISteamGameServerStats_SteamGameServerStats001_GetUserAchievement_params *params ); - -struct cppISteamGameServerStats_SteamGameServerStats001_SetUserStat_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - int32_t nData; -}; -extern void cppISteamGameServerStats_SteamGameServerStats001_SetUserStat( struct cppISteamGameServerStats_SteamGameServerStats001_SetUserStat_params *params ); - -struct cppISteamGameServerStats_SteamGameServerStats001_SetUserStat_2_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - float fData; -}; -extern void cppISteamGameServerStats_SteamGameServerStats001_SetUserStat_2( struct cppISteamGameServerStats_SteamGameServerStats001_SetUserStat_2_params *params ); - -struct cppISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRateStat_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - float flCountThisSession; - double dSessionLength; -}; -extern void cppISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRateStat( struct cppISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRateStat_params *params ); - -struct cppISteamGameServerStats_SteamGameServerStats001_SetUserAchievement_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; -}; -extern void cppISteamGameServerStats_SteamGameServerStats001_SetUserAchievement( struct cppISteamGameServerStats_SteamGameServerStats001_SetUserAchievement_params *params ); - -struct cppISteamGameServerStats_SteamGameServerStats001_ClearUserAchievement_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; -}; -extern void cppISteamGameServerStats_SteamGameServerStats001_ClearUserAchievement( struct cppISteamGameServerStats_SteamGameServerStats001_ClearUserAchievement_params *params ); - -struct cppISteamGameServerStats_SteamGameServerStats001_StoreUserStats_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDUser; -}; -extern void cppISteamGameServerStats_SteamGameServerStats001_StoreUserStats( struct cppISteamGameServerStats_SteamGameServerStats001_StoreUserStats_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer002.cpp b/lsteamclient/cppISteamGameServer_SteamGameServer002.cpp index 0958237a..6e202e28 100644 --- a/lsteamclient/cppISteamGameServer_SteamGameServer002.cpp +++ b/lsteamclient/cppISteamGameServer_SteamGameServer002.cpp @@ -1,130 +1,171 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamGameServer_SteamGameServer002.h" -void cppISteamGameServer_SteamGameServer002_LogOn( struct cppISteamGameServer_SteamGameServer002_LogOn_params *params ) +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; iface->LogOn( ); + return 0; } -void cppISteamGameServer_SteamGameServer002_LogOff( struct cppISteamGameServer_SteamGameServer002_LogOff_params *params ) +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; iface->LogOff( ); + return 0; } -void cppISteamGameServer_SteamGameServer002_BLoggedOn( struct cppISteamGameServer_SteamGameServer002_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamGameServer_SteamGameServer002_GSSetSpawnCount( struct cppISteamGameServer_SteamGameServer002_GSSetSpawnCount_params *params ) +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; iface->GSSetSpawnCount( params->ucSpawn ); + return 0; } -void cppISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionKeyToSendToNewClient( struct cppISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionKeyToSendToNewClient_params *params ) +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; params->_ret = iface->GSGetSteam2GetEncryptionKeyToSendToNewClient( params->pvEncryptionKey, params->pcbEncryptionKey, params->cbMaxEncryptionKey ); + return 0; } -void cppISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect( struct cppISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect_params *params ) +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; params->_ret = iface->GSSendSteam2UserConnect( params->unUserID, params->pvRawKey, params->unKeyLen, params->unIPPublic, params->usPort, params->pvCookie, params->cubCookie ); + return 0; } -void cppISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect( struct cppISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect_params *params ) +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; params->_ret = iface->GSSendSteam3UserConnect( params->steamID, params->unIPPublic, params->pvCookie, params->cubCookie ); + return 0; } -void cppISteamGameServer_SteamGameServer002_GSRemoveUserConnect( struct cppISteamGameServer_SteamGameServer002_GSRemoveUserConnect_params *params ) +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; params->_ret = iface->GSRemoveUserConnect( params->unUserID ); + return 0; } -void cppISteamGameServer_SteamGameServer002_GSSendUserDisconnect( struct cppISteamGameServer_SteamGameServer002_GSSendUserDisconnect_params *params ) +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; params->_ret = iface->GSSendUserDisconnect( params->steamID, params->unUserID ); + return 0; } -void cppISteamGameServer_SteamGameServer002_GSSendUserStatusResponse( struct cppISteamGameServer_SteamGameServer002_GSSendUserStatusResponse_params *params ) +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; params->_ret = iface->GSSendUserStatusResponse( params->steamID, params->nSecondsConnected, params->nSecondsSinceLast ); + return 0; } -void cppISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus( struct cppISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus_params *params ) +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; 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; } -void cppISteamGameServer_SteamGameServer002_GSUpdateStatus( struct cppISteamGameServer_SteamGameServer002_GSUpdateStatus_params *params ) +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; params->_ret = iface->GSUpdateStatus( params->cPlayers, params->cPlayersMax, params->cBotPlayers, params->pchServerName, params->pchMapName ); + return 0; } -void cppISteamGameServer_SteamGameServer002_BSecure( struct cppISteamGameServer_SteamGameServer002_BSecure_params *params ) +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; params->_ret = iface->BSecure( ); + return 0; } -void cppISteamGameServer_SteamGameServer002_GetSteamID( struct cppISteamGameServer_SteamGameServer002_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamGameServer_SteamGameServer002_GSSetServerType( struct cppISteamGameServer_SteamGameServer002_GSSetServerType_params *params ) +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; params->_ret = iface->GSSetServerType( params->nGameAppId, params->unServerFlags, params->unGameIP, params->unGamePort, params->pchGameDir, params->pchVersion ); + return 0; } -void cppISteamGameServer_SteamGameServer002_GSSetServerType2( struct cppISteamGameServer_SteamGameServer002_GSSetServerType2_params *params ) +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; params->_ret = iface->GSSetServerType2( params->nGameAppId, params->unServerFlags, params->unGameIP, params->unGamePort, params->unSpectatorPort, params->usQueryPort, params->pchGameDir, params->pchVersion, params->bLANMode ); + return 0; } -void cppISteamGameServer_SteamGameServer002_GSUpdateStatus2( struct cppISteamGameServer_SteamGameServer002_GSUpdateStatus2_params *params ) +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; params->_ret = iface->GSUpdateStatus2( params->cPlayers, params->cPlayersMax, params->cBotPlayers, params->pchServerName, params->pSpectatorServerName, params->pchMapName ); + return 0; } -void cppISteamGameServer_SteamGameServer002_GSCreateUnauthenticatedUser( struct cppISteamGameServer_SteamGameServer002_GSCreateUnauthenticatedUser_params *params ) +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; params->_ret = iface->GSCreateUnauthenticatedUser( params->pSteamID ); + return 0; } -void cppISteamGameServer_SteamGameServer002_GSSetUserData( struct cppISteamGameServer_SteamGameServer002_GSSetUserData_params *params ) +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; params->_ret = iface->GSSetUserData( params->steamID, params->pPlayerName, params->nFrags ); + return 0; } -void cppISteamGameServer_SteamGameServer002_GSUpdateSpectatorPort( struct cppISteamGameServer_SteamGameServer002_GSUpdateSpectatorPort_params *params ) +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; iface->GSUpdateSpectatorPort( params->unSpectatorPort ); + return 0; } -void cppISteamGameServer_SteamGameServer002_GSSetGameType( struct cppISteamGameServer_SteamGameServer002_GSSetGameType_params *params ) +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; iface->GSSetGameType( params->pchType ); + return 0; } diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer002.h b/lsteamclient/cppISteamGameServer_SteamGameServer002.h deleted file mode 100644 index a2f890b9..00000000 --- a/lsteamclient/cppISteamGameServer_SteamGameServer002.h +++ /dev/null @@ -1,217 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamGameServer_SteamGameServer002_LogOn_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer002_LogOn( struct cppISteamGameServer_SteamGameServer002_LogOn_params *params ); - -struct cppISteamGameServer_SteamGameServer002_LogOff_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer002_LogOff( struct cppISteamGameServer_SteamGameServer002_LogOff_params *params ); - -struct cppISteamGameServer_SteamGameServer002_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamGameServer_SteamGameServer002_BLoggedOn( struct cppISteamGameServer_SteamGameServer002_BLoggedOn_params *params ); - -struct cppISteamGameServer_SteamGameServer002_GSSetSpawnCount_params -{ - void *linux_side; - uint32_t ucSpawn; -}; -extern void cppISteamGameServer_SteamGameServer002_GSSetSpawnCount( struct cppISteamGameServer_SteamGameServer002_GSSetSpawnCount_params *params ); - -struct cppISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionKeyToSendToNewClient_params -{ - void *linux_side; - bool _ret; - void *pvEncryptionKey; - uint32_t *pcbEncryptionKey; - uint32_t cbMaxEncryptionKey; -}; -extern void cppISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionKeyToSendToNewClient( struct cppISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionKeyToSendToNewClient_params *params ); - -struct cppISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect_params -{ - void *linux_side; - bool _ret; - uint32_t unUserID; - const void *pvRawKey; - uint32_t unKeyLen; - uint32_t unIPPublic; - uint16_t usPort; - const void *pvCookie; - uint32_t cubCookie; -}; -extern void cppISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect( struct cppISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect_params *params ); - -struct cppISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect_params -{ - void *linux_side; - bool _ret; - CSteamID steamID; - uint32_t unIPPublic; - const void *pvCookie; - uint32_t cubCookie; -}; -extern void cppISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect( struct cppISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect_params *params ); - -struct cppISteamGameServer_SteamGameServer002_GSRemoveUserConnect_params -{ - void *linux_side; - bool _ret; - uint32_t unUserID; -}; -extern void cppISteamGameServer_SteamGameServer002_GSRemoveUserConnect( struct cppISteamGameServer_SteamGameServer002_GSRemoveUserConnect_params *params ); - -struct cppISteamGameServer_SteamGameServer002_GSSendUserDisconnect_params -{ - void *linux_side; - bool _ret; - CSteamID steamID; - uint32_t unUserID; -}; -extern void cppISteamGameServer_SteamGameServer002_GSSendUserDisconnect( struct cppISteamGameServer_SteamGameServer002_GSSendUserDisconnect_params *params ); - -struct cppISteamGameServer_SteamGameServer002_GSSendUserStatusResponse_params -{ - void *linux_side; - bool _ret; - CSteamID steamID; - int32_t nSecondsConnected; - int32_t nSecondsSinceLast; -}; -extern void cppISteamGameServer_SteamGameServer002_GSSendUserStatusResponse( struct cppISteamGameServer_SteamGameServer002_GSSendUserStatusResponse_params *params ); - -struct cppISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus_params -{ - void *linux_side; - bool _ret; - 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; -}; -extern void cppISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus( struct cppISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus_params *params ); - -struct cppISteamGameServer_SteamGameServer002_GSUpdateStatus_params -{ - void *linux_side; - bool _ret; - int32_t cPlayers; - int32_t cPlayersMax; - int32_t cBotPlayers; - const char *pchServerName; - const char *pchMapName; -}; -extern void cppISteamGameServer_SteamGameServer002_GSUpdateStatus( struct cppISteamGameServer_SteamGameServer002_GSUpdateStatus_params *params ); - -struct cppISteamGameServer_SteamGameServer002_BSecure_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamGameServer_SteamGameServer002_BSecure( struct cppISteamGameServer_SteamGameServer002_BSecure_params *params ); - -struct cppISteamGameServer_SteamGameServer002_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamGameServer_SteamGameServer002_GetSteamID( struct cppISteamGameServer_SteamGameServer002_GetSteamID_params *params ); - -struct cppISteamGameServer_SteamGameServer002_GSSetServerType_params -{ - void *linux_side; - bool _ret; - int32_t nGameAppId; - uint32_t unServerFlags; - uint32_t unGameIP; - uint32_t unGamePort; - const char *pchGameDir; - const char *pchVersion; -}; -extern void cppISteamGameServer_SteamGameServer002_GSSetServerType( struct cppISteamGameServer_SteamGameServer002_GSSetServerType_params *params ); - -struct cppISteamGameServer_SteamGameServer002_GSSetServerType2_params -{ - void *linux_side; - bool _ret; - int32_t nGameAppId; - uint32_t unServerFlags; - uint32_t unGameIP; - uint16_t unGamePort; - uint16_t unSpectatorPort; - uint16_t usQueryPort; - const char *pchGameDir; - const char *pchVersion; - bool bLANMode; -}; -extern void cppISteamGameServer_SteamGameServer002_GSSetServerType2( struct cppISteamGameServer_SteamGameServer002_GSSetServerType2_params *params ); - -struct cppISteamGameServer_SteamGameServer002_GSUpdateStatus2_params -{ - void *linux_side; - bool _ret; - int32_t cPlayers; - int32_t cPlayersMax; - int32_t cBotPlayers; - const char *pchServerName; - const char *pSpectatorServerName; - const char *pchMapName; -}; -extern void cppISteamGameServer_SteamGameServer002_GSUpdateStatus2( struct cppISteamGameServer_SteamGameServer002_GSUpdateStatus2_params *params ); - -struct cppISteamGameServer_SteamGameServer002_GSCreateUnauthenticatedUser_params -{ - void *linux_side; - bool _ret; - CSteamID *pSteamID; -}; -extern void cppISteamGameServer_SteamGameServer002_GSCreateUnauthenticatedUser( struct cppISteamGameServer_SteamGameServer002_GSCreateUnauthenticatedUser_params *params ); - -struct cppISteamGameServer_SteamGameServer002_GSSetUserData_params -{ - void *linux_side; - bool _ret; - CSteamID steamID; - const char *pPlayerName; - uint32_t nFrags; -}; -extern void cppISteamGameServer_SteamGameServer002_GSSetUserData( struct cppISteamGameServer_SteamGameServer002_GSSetUserData_params *params ); - -struct cppISteamGameServer_SteamGameServer002_GSUpdateSpectatorPort_params -{ - void *linux_side; - uint16_t unSpectatorPort; -}; -extern void cppISteamGameServer_SteamGameServer002_GSUpdateSpectatorPort( struct cppISteamGameServer_SteamGameServer002_GSUpdateSpectatorPort_params *params ); - -struct cppISteamGameServer_SteamGameServer002_GSSetGameType_params -{ - void *linux_side; - const char *pchType; -}; -extern void cppISteamGameServer_SteamGameServer002_GSSetGameType( struct cppISteamGameServer_SteamGameServer002_GSSetGameType_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer003.cpp b/lsteamclient/cppISteamGameServer_SteamGameServer003.cpp index 12b77542..f580d2ee 100644 --- a/lsteamclient/cppISteamGameServer_SteamGameServer003.cpp +++ b/lsteamclient/cppISteamGameServer_SteamGameServer003.cpp @@ -1,106 +1,139 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamGameServer_SteamGameServer003.h" -void cppISteamGameServer_SteamGameServer003_LogOn( struct cppISteamGameServer_SteamGameServer003_LogOn_params *params ) +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; iface->LogOn( ); + return 0; } -void cppISteamGameServer_SteamGameServer003_LogOff( struct cppISteamGameServer_SteamGameServer003_LogOff_params *params ) +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; iface->LogOff( ); + return 0; } -void cppISteamGameServer_SteamGameServer003_BLoggedOn( struct cppISteamGameServer_SteamGameServer003_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamGameServer_SteamGameServer003_BSecure( struct cppISteamGameServer_SteamGameServer003_BSecure_params *params ) +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; params->_ret = iface->BSecure( ); + return 0; } -void cppISteamGameServer_SteamGameServer003_GetSteamID( struct cppISteamGameServer_SteamGameServer003_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionKeyToSendToNewClient( struct cppISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionKeyToSendToNewClient_params *params ) +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; params->_ret = iface->GSGetSteam2GetEncryptionKeyToSendToNewClient( params->pvEncryptionKey, params->pcbEncryptionKey, params->cbMaxEncryptionKey ); + return 0; } -void cppISteamGameServer_SteamGameServer003_GSSendUserConnect( struct cppISteamGameServer_SteamGameServer003_GSSendUserConnect_params *params ) +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; params->_ret = iface->GSSendUserConnect( params->unUserID, params->unIPPublic, params->usPort, params->pvCookie, params->cubCookie ); + return 0; } -void cppISteamGameServer_SteamGameServer003_GSRemoveUserConnect( struct cppISteamGameServer_SteamGameServer003_GSRemoveUserConnect_params *params ) +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; params->_ret = iface->GSRemoveUserConnect( params->unUserID ); + return 0; } -void cppISteamGameServer_SteamGameServer003_GSSendUserDisconnect( struct cppISteamGameServer_SteamGameServer003_GSSendUserDisconnect_params *params ) +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; params->_ret = iface->GSSendUserDisconnect( params->steamID, params->unUserID ); + return 0; } -void cppISteamGameServer_SteamGameServer003_GSSetSpawnCount( struct cppISteamGameServer_SteamGameServer003_GSSetSpawnCount_params *params ) +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; iface->GSSetSpawnCount( params->ucSpawn ); + return 0; } -void cppISteamGameServer_SteamGameServer003_GSSetServerType( struct cppISteamGameServer_SteamGameServer003_GSSetServerType_params *params ) +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; params->_ret = iface->GSSetServerType( params->nGameAppId, params->unServerFlags, params->unGameIP, params->unGamePort, params->unSpectatorPort, params->usQueryPort, params->pchGameDir, params->pchVersion, params->bLANMode ); + return 0; } -void cppISteamGameServer_SteamGameServer003_GSUpdateStatus( struct cppISteamGameServer_SteamGameServer003_GSUpdateStatus_params *params ) +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; params->_ret = iface->GSUpdateStatus( params->cPlayers, params->cPlayersMax, params->cBotPlayers, params->pchServerName, params->pSpectatorServerName, params->pchMapName ); + return 0; } -void cppISteamGameServer_SteamGameServer003_GSCreateUnauthenticatedUser( struct cppISteamGameServer_SteamGameServer003_GSCreateUnauthenticatedUser_params *params ) +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; params->_ret = iface->GSCreateUnauthenticatedUser( params->pSteamID ); + return 0; } -void cppISteamGameServer_SteamGameServer003_GSSetUserData( struct cppISteamGameServer_SteamGameServer003_GSSetUserData_params *params ) +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; params->_ret = iface->GSSetUserData( params->steamID, params->pPlayerName, params->nFrags ); + return 0; } -void cppISteamGameServer_SteamGameServer003_GSUpdateSpectatorPort( struct cppISteamGameServer_SteamGameServer003_GSUpdateSpectatorPort_params *params ) +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; iface->GSUpdateSpectatorPort( params->unSpectatorPort ); + return 0; } -void cppISteamGameServer_SteamGameServer003_GSSetGameType( struct cppISteamGameServer_SteamGameServer003_GSSetGameType_params *params ) +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; iface->GSSetGameType( params->pchType ); + return 0; } -void cppISteamGameServer_SteamGameServer003_GSGetUserAchievementStatus( struct cppISteamGameServer_SteamGameServer003_GSGetUserAchievementStatus_params *params ) +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; params->_ret = iface->GSGetUserAchievementStatus( params->steamID, params->pchAchievementName ); + return 0; } diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer003.h b/lsteamclient/cppISteamGameServer_SteamGameServer003.h deleted file mode 100644 index c4c45f84..00000000 --- a/lsteamclient/cppISteamGameServer_SteamGameServer003.h +++ /dev/null @@ -1,161 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamGameServer_SteamGameServer003_LogOn_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer003_LogOn( struct cppISteamGameServer_SteamGameServer003_LogOn_params *params ); - -struct cppISteamGameServer_SteamGameServer003_LogOff_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer003_LogOff( struct cppISteamGameServer_SteamGameServer003_LogOff_params *params ); - -struct cppISteamGameServer_SteamGameServer003_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamGameServer_SteamGameServer003_BLoggedOn( struct cppISteamGameServer_SteamGameServer003_BLoggedOn_params *params ); - -struct cppISteamGameServer_SteamGameServer003_BSecure_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamGameServer_SteamGameServer003_BSecure( struct cppISteamGameServer_SteamGameServer003_BSecure_params *params ); - -struct cppISteamGameServer_SteamGameServer003_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamGameServer_SteamGameServer003_GetSteamID( struct cppISteamGameServer_SteamGameServer003_GetSteamID_params *params ); - -struct cppISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionKeyToSendToNewClient_params -{ - void *linux_side; - bool _ret; - void *pvEncryptionKey; - uint32_t *pcbEncryptionKey; - uint32_t cbMaxEncryptionKey; -}; -extern void cppISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionKeyToSendToNewClient( struct cppISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionKeyToSendToNewClient_params *params ); - -struct cppISteamGameServer_SteamGameServer003_GSSendUserConnect_params -{ - void *linux_side; - bool _ret; - uint32_t unUserID; - uint32_t unIPPublic; - uint16_t usPort; - const void *pvCookie; - uint32_t cubCookie; -}; -extern void cppISteamGameServer_SteamGameServer003_GSSendUserConnect( struct cppISteamGameServer_SteamGameServer003_GSSendUserConnect_params *params ); - -struct cppISteamGameServer_SteamGameServer003_GSRemoveUserConnect_params -{ - void *linux_side; - bool _ret; - uint32_t unUserID; -}; -extern void cppISteamGameServer_SteamGameServer003_GSRemoveUserConnect( struct cppISteamGameServer_SteamGameServer003_GSRemoveUserConnect_params *params ); - -struct cppISteamGameServer_SteamGameServer003_GSSendUserDisconnect_params -{ - void *linux_side; - bool _ret; - CSteamID steamID; - uint32_t unUserID; -}; -extern void cppISteamGameServer_SteamGameServer003_GSSendUserDisconnect( struct cppISteamGameServer_SteamGameServer003_GSSendUserDisconnect_params *params ); - -struct cppISteamGameServer_SteamGameServer003_GSSetSpawnCount_params -{ - void *linux_side; - uint32_t ucSpawn; -}; -extern void cppISteamGameServer_SteamGameServer003_GSSetSpawnCount( struct cppISteamGameServer_SteamGameServer003_GSSetSpawnCount_params *params ); - -struct cppISteamGameServer_SteamGameServer003_GSSetServerType_params -{ - void *linux_side; - bool _ret; - int32_t nGameAppId; - uint32_t unServerFlags; - uint32_t unGameIP; - uint16_t unGamePort; - uint16_t unSpectatorPort; - uint16_t usQueryPort; - const char *pchGameDir; - const char *pchVersion; - bool bLANMode; -}; -extern void cppISteamGameServer_SteamGameServer003_GSSetServerType( struct cppISteamGameServer_SteamGameServer003_GSSetServerType_params *params ); - -struct cppISteamGameServer_SteamGameServer003_GSUpdateStatus_params -{ - void *linux_side; - bool _ret; - int32_t cPlayers; - int32_t cPlayersMax; - int32_t cBotPlayers; - const char *pchServerName; - const char *pSpectatorServerName; - const char *pchMapName; -}; -extern void cppISteamGameServer_SteamGameServer003_GSUpdateStatus( struct cppISteamGameServer_SteamGameServer003_GSUpdateStatus_params *params ); - -struct cppISteamGameServer_SteamGameServer003_GSCreateUnauthenticatedUser_params -{ - void *linux_side; - bool _ret; - CSteamID *pSteamID; -}; -extern void cppISteamGameServer_SteamGameServer003_GSCreateUnauthenticatedUser( struct cppISteamGameServer_SteamGameServer003_GSCreateUnauthenticatedUser_params *params ); - -struct cppISteamGameServer_SteamGameServer003_GSSetUserData_params -{ - void *linux_side; - bool _ret; - CSteamID steamID; - const char *pPlayerName; - uint32_t nFrags; -}; -extern void cppISteamGameServer_SteamGameServer003_GSSetUserData( struct cppISteamGameServer_SteamGameServer003_GSSetUserData_params *params ); - -struct cppISteamGameServer_SteamGameServer003_GSUpdateSpectatorPort_params -{ - void *linux_side; - uint16_t unSpectatorPort; -}; -extern void cppISteamGameServer_SteamGameServer003_GSUpdateSpectatorPort( struct cppISteamGameServer_SteamGameServer003_GSUpdateSpectatorPort_params *params ); - -struct cppISteamGameServer_SteamGameServer003_GSSetGameType_params -{ - void *linux_side; - const char *pchType; -}; -extern void cppISteamGameServer_SteamGameServer003_GSSetGameType( struct cppISteamGameServer_SteamGameServer003_GSSetGameType_params *params ); - -struct cppISteamGameServer_SteamGameServer003_GSGetUserAchievementStatus_params -{ - void *linux_side; - bool _ret; - CSteamID steamID; - const char *pchAchievementName; -}; -extern void cppISteamGameServer_SteamGameServer003_GSGetUserAchievementStatus( struct cppISteamGameServer_SteamGameServer003_GSGetUserAchievementStatus_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer004.cpp b/lsteamclient/cppISteamGameServer_SteamGameServer004.cpp index 7242fba5..0a7e844f 100644 --- a/lsteamclient/cppISteamGameServer_SteamGameServer004.cpp +++ b/lsteamclient/cppISteamGameServer_SteamGameServer004.cpp @@ -1,88 +1,115 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamGameServer_SteamGameServer004.h" -void cppISteamGameServer_SteamGameServer004_LogOn( struct cppISteamGameServer_SteamGameServer004_LogOn_params *params ) +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; iface->LogOn( ); + return 0; } -void cppISteamGameServer_SteamGameServer004_LogOff( struct cppISteamGameServer_SteamGameServer004_LogOff_params *params ) +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; iface->LogOff( ); + return 0; } -void cppISteamGameServer_SteamGameServer004_BLoggedOn( struct cppISteamGameServer_SteamGameServer004_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamGameServer_SteamGameServer004_BSecure( struct cppISteamGameServer_SteamGameServer004_BSecure_params *params ) +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; params->_ret = iface->BSecure( ); + return 0; } -void cppISteamGameServer_SteamGameServer004_GetSteamID( struct cppISteamGameServer_SteamGameServer004_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamGameServer_SteamGameServer004_SendUserConnectAndAuthenticate( struct cppISteamGameServer_SteamGameServer004_SendUserConnectAndAuthenticate_params *params ) +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; iface->SendUserConnectAndAuthenticate( params->steamIDUser, params->unIPClient, params->pvAuthBlob, params->cubAuthBlobSize ); + return 0; } -void cppISteamGameServer_SteamGameServer004_CreateUnauthenticatedUserConnection( struct cppISteamGameServer_SteamGameServer004_CreateUnauthenticatedUserConnection_params *params ) +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; *params->_ret = iface->CreateUnauthenticatedUserConnection( ); + return 0; } -void cppISteamGameServer_SteamGameServer004_SendUserDisconnect( struct cppISteamGameServer_SteamGameServer004_SendUserDisconnect_params *params ) +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; iface->SendUserDisconnect( params->steamIDUser ); + return 0; } -void cppISteamGameServer_SteamGameServer004_BUpdateUserData( struct cppISteamGameServer_SteamGameServer004_BUpdateUserData_params *params ) +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; params->_ret = iface->BUpdateUserData( params->steamIDUser, params->pchPlayerName, params->uScore ); + return 0; } -void cppISteamGameServer_SteamGameServer004_BSetServerType( struct cppISteamGameServer_SteamGameServer004_BSetServerType_params *params ) +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; params->_ret = iface->BSetServerType( params->nGameAppId, params->unServerFlags, params->unGameIP, params->unGamePort, params->unSpectatorPort, params->usQueryPort, params->pchGameDir, params->pchVersion, params->bLANMode ); + return 0; } -void cppISteamGameServer_SteamGameServer004_UpdateServerStatus( struct cppISteamGameServer_SteamGameServer004_UpdateServerStatus_params *params ) +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; iface->UpdateServerStatus( params->cPlayers, params->cPlayersMax, params->cBotPlayers, params->pchServerName, params->pSpectatorServerName, params->pchMapName ); + return 0; } -void cppISteamGameServer_SteamGameServer004_UpdateSpectatorPort( struct cppISteamGameServer_SteamGameServer004_UpdateSpectatorPort_params *params ) +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; iface->UpdateSpectatorPort( params->unSpectatorPort ); + return 0; } -void cppISteamGameServer_SteamGameServer004_SetGameType( struct cppISteamGameServer_SteamGameServer004_SetGameType_params *params ) +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; iface->SetGameType( params->pchGameType ); + return 0; } -void cppISteamGameServer_SteamGameServer004_BGetUserAchievementStatus( struct cppISteamGameServer_SteamGameServer004_BGetUserAchievementStatus_params *params ) +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; params->_ret = iface->BGetUserAchievementStatus( params->steamID, params->pchAchievementName ); + return 0; } diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer004.h b/lsteamclient/cppISteamGameServer_SteamGameServer004.h deleted file mode 100644 index d5f99312..00000000 --- a/lsteamclient/cppISteamGameServer_SteamGameServer004.h +++ /dev/null @@ -1,130 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamGameServer_SteamGameServer004_LogOn_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer004_LogOn( struct cppISteamGameServer_SteamGameServer004_LogOn_params *params ); - -struct cppISteamGameServer_SteamGameServer004_LogOff_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer004_LogOff( struct cppISteamGameServer_SteamGameServer004_LogOff_params *params ); - -struct cppISteamGameServer_SteamGameServer004_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamGameServer_SteamGameServer004_BLoggedOn( struct cppISteamGameServer_SteamGameServer004_BLoggedOn_params *params ); - -struct cppISteamGameServer_SteamGameServer004_BSecure_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamGameServer_SteamGameServer004_BSecure( struct cppISteamGameServer_SteamGameServer004_BSecure_params *params ); - -struct cppISteamGameServer_SteamGameServer004_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamGameServer_SteamGameServer004_GetSteamID( struct cppISteamGameServer_SteamGameServer004_GetSteamID_params *params ); - -struct cppISteamGameServer_SteamGameServer004_SendUserConnectAndAuthenticate_params -{ - void *linux_side; - CSteamID steamIDUser; - uint32_t unIPClient; - void *pvAuthBlob; - uint32_t cubAuthBlobSize; -}; -extern void cppISteamGameServer_SteamGameServer004_SendUserConnectAndAuthenticate( struct cppISteamGameServer_SteamGameServer004_SendUserConnectAndAuthenticate_params *params ); - -struct cppISteamGameServer_SteamGameServer004_CreateUnauthenticatedUserConnection_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamGameServer_SteamGameServer004_CreateUnauthenticatedUserConnection( struct cppISteamGameServer_SteamGameServer004_CreateUnauthenticatedUserConnection_params *params ); - -struct cppISteamGameServer_SteamGameServer004_SendUserDisconnect_params -{ - void *linux_side; - CSteamID steamIDUser; -}; -extern void cppISteamGameServer_SteamGameServer004_SendUserDisconnect( struct cppISteamGameServer_SteamGameServer004_SendUserDisconnect_params *params ); - -struct cppISteamGameServer_SteamGameServer004_BUpdateUserData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchPlayerName; - uint32_t uScore; -}; -extern void cppISteamGameServer_SteamGameServer004_BUpdateUserData( struct cppISteamGameServer_SteamGameServer004_BUpdateUserData_params *params ); - -struct cppISteamGameServer_SteamGameServer004_BSetServerType_params -{ - void *linux_side; - bool _ret; - int32_t nGameAppId; - uint32_t unServerFlags; - uint32_t unGameIP; - uint16_t unGamePort; - uint16_t unSpectatorPort; - uint16_t usQueryPort; - const char *pchGameDir; - const char *pchVersion; - bool bLANMode; -}; -extern void cppISteamGameServer_SteamGameServer004_BSetServerType( struct cppISteamGameServer_SteamGameServer004_BSetServerType_params *params ); - -struct cppISteamGameServer_SteamGameServer004_UpdateServerStatus_params -{ - void *linux_side; - int32_t cPlayers; - int32_t cPlayersMax; - int32_t cBotPlayers; - const char *pchServerName; - const char *pSpectatorServerName; - const char *pchMapName; -}; -extern void cppISteamGameServer_SteamGameServer004_UpdateServerStatus( struct cppISteamGameServer_SteamGameServer004_UpdateServerStatus_params *params ); - -struct cppISteamGameServer_SteamGameServer004_UpdateSpectatorPort_params -{ - void *linux_side; - uint16_t unSpectatorPort; -}; -extern void cppISteamGameServer_SteamGameServer004_UpdateSpectatorPort( struct cppISteamGameServer_SteamGameServer004_UpdateSpectatorPort_params *params ); - -struct cppISteamGameServer_SteamGameServer004_SetGameType_params -{ - void *linux_side; - const char *pchGameType; -}; -extern void cppISteamGameServer_SteamGameServer004_SetGameType( struct cppISteamGameServer_SteamGameServer004_SetGameType_params *params ); - -struct cppISteamGameServer_SteamGameServer004_BGetUserAchievementStatus_params -{ - void *linux_side; - bool _ret; - CSteamID steamID; - const char *pchAchievementName; -}; -extern void cppISteamGameServer_SteamGameServer004_BGetUserAchievementStatus( struct cppISteamGameServer_SteamGameServer004_BGetUserAchievementStatus_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer005.cpp b/lsteamclient/cppISteamGameServer_SteamGameServer005.cpp index 9e0e7b15..4ed38903 100644 --- a/lsteamclient/cppISteamGameServer_SteamGameServer005.cpp +++ b/lsteamclient/cppISteamGameServer_SteamGameServer005.cpp @@ -1,88 +1,115 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamGameServer_SteamGameServer005.h" -void cppISteamGameServer_SteamGameServer005_LogOn( struct cppISteamGameServer_SteamGameServer005_LogOn_params *params ) +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; iface->LogOn( ); + return 0; } -void cppISteamGameServer_SteamGameServer005_LogOff( struct cppISteamGameServer_SteamGameServer005_LogOff_params *params ) +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; iface->LogOff( ); + return 0; } -void cppISteamGameServer_SteamGameServer005_BLoggedOn( struct cppISteamGameServer_SteamGameServer005_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamGameServer_SteamGameServer005_BSecure( struct cppISteamGameServer_SteamGameServer005_BSecure_params *params ) +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; params->_ret = iface->BSecure( ); + return 0; } -void cppISteamGameServer_SteamGameServer005_GetSteamID( struct cppISteamGameServer_SteamGameServer005_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamGameServer_SteamGameServer005_SendUserConnectAndAuthenticate( struct cppISteamGameServer_SteamGameServer005_SendUserConnectAndAuthenticate_params *params ) +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; params->_ret = iface->SendUserConnectAndAuthenticate( params->unIPClient, params->pvAuthBlob, params->cubAuthBlobSize, params->pSteamIDUser ); + return 0; } -void cppISteamGameServer_SteamGameServer005_CreateUnauthenticatedUserConnection( struct cppISteamGameServer_SteamGameServer005_CreateUnauthenticatedUserConnection_params *params ) +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; *params->_ret = iface->CreateUnauthenticatedUserConnection( ); + return 0; } -void cppISteamGameServer_SteamGameServer005_SendUserDisconnect( struct cppISteamGameServer_SteamGameServer005_SendUserDisconnect_params *params ) +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; iface->SendUserDisconnect( params->steamIDUser ); + return 0; } -void cppISteamGameServer_SteamGameServer005_BUpdateUserData( struct cppISteamGameServer_SteamGameServer005_BUpdateUserData_params *params ) +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; params->_ret = iface->BUpdateUserData( params->steamIDUser, params->pchPlayerName, params->uScore ); + return 0; } -void cppISteamGameServer_SteamGameServer005_BSetServerType( struct cppISteamGameServer_SteamGameServer005_BSetServerType_params *params ) +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; params->_ret = iface->BSetServerType( params->unServerFlags, params->unGameIP, params->unGamePort, params->unSpectatorPort, params->usQueryPort, params->pchGameDir, params->pchVersion, params->bLANMode ); + return 0; } -void cppISteamGameServer_SteamGameServer005_UpdateServerStatus( struct cppISteamGameServer_SteamGameServer005_UpdateServerStatus_params *params ) +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; iface->UpdateServerStatus( params->cPlayers, params->cPlayersMax, params->cBotPlayers, params->pchServerName, params->pSpectatorServerName, params->pchMapName ); + return 0; } -void cppISteamGameServer_SteamGameServer005_UpdateSpectatorPort( struct cppISteamGameServer_SteamGameServer005_UpdateSpectatorPort_params *params ) +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; iface->UpdateSpectatorPort( params->unSpectatorPort ); + return 0; } -void cppISteamGameServer_SteamGameServer005_SetGameType( struct cppISteamGameServer_SteamGameServer005_SetGameType_params *params ) +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; iface->SetGameType( params->pchGameType ); + return 0; } -void cppISteamGameServer_SteamGameServer005_BGetUserAchievementStatus( struct cppISteamGameServer_SteamGameServer005_BGetUserAchievementStatus_params *params ) +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; params->_ret = iface->BGetUserAchievementStatus( params->steamID, params->pchAchievementName ); + return 0; } diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer005.h b/lsteamclient/cppISteamGameServer_SteamGameServer005.h deleted file mode 100644 index 203d4026..00000000 --- a/lsteamclient/cppISteamGameServer_SteamGameServer005.h +++ /dev/null @@ -1,130 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamGameServer_SteamGameServer005_LogOn_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer005_LogOn( struct cppISteamGameServer_SteamGameServer005_LogOn_params *params ); - -struct cppISteamGameServer_SteamGameServer005_LogOff_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer005_LogOff( struct cppISteamGameServer_SteamGameServer005_LogOff_params *params ); - -struct cppISteamGameServer_SteamGameServer005_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamGameServer_SteamGameServer005_BLoggedOn( struct cppISteamGameServer_SteamGameServer005_BLoggedOn_params *params ); - -struct cppISteamGameServer_SteamGameServer005_BSecure_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamGameServer_SteamGameServer005_BSecure( struct cppISteamGameServer_SteamGameServer005_BSecure_params *params ); - -struct cppISteamGameServer_SteamGameServer005_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamGameServer_SteamGameServer005_GetSteamID( struct cppISteamGameServer_SteamGameServer005_GetSteamID_params *params ); - -struct cppISteamGameServer_SteamGameServer005_SendUserConnectAndAuthenticate_params -{ - void *linux_side; - bool _ret; - uint32_t unIPClient; - const void *pvAuthBlob; - uint32_t cubAuthBlobSize; - CSteamID *pSteamIDUser; -}; -extern void cppISteamGameServer_SteamGameServer005_SendUserConnectAndAuthenticate( struct cppISteamGameServer_SteamGameServer005_SendUserConnectAndAuthenticate_params *params ); - -struct cppISteamGameServer_SteamGameServer005_CreateUnauthenticatedUserConnection_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamGameServer_SteamGameServer005_CreateUnauthenticatedUserConnection( struct cppISteamGameServer_SteamGameServer005_CreateUnauthenticatedUserConnection_params *params ); - -struct cppISteamGameServer_SteamGameServer005_SendUserDisconnect_params -{ - void *linux_side; - CSteamID steamIDUser; -}; -extern void cppISteamGameServer_SteamGameServer005_SendUserDisconnect( struct cppISteamGameServer_SteamGameServer005_SendUserDisconnect_params *params ); - -struct cppISteamGameServer_SteamGameServer005_BUpdateUserData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchPlayerName; - uint32_t uScore; -}; -extern void cppISteamGameServer_SteamGameServer005_BUpdateUserData( struct cppISteamGameServer_SteamGameServer005_BUpdateUserData_params *params ); - -struct cppISteamGameServer_SteamGameServer005_BSetServerType_params -{ - void *linux_side; - bool _ret; - uint32_t unServerFlags; - uint32_t unGameIP; - uint16_t unGamePort; - uint16_t unSpectatorPort; - uint16_t usQueryPort; - const char *pchGameDir; - const char *pchVersion; - bool bLANMode; -}; -extern void cppISteamGameServer_SteamGameServer005_BSetServerType( struct cppISteamGameServer_SteamGameServer005_BSetServerType_params *params ); - -struct cppISteamGameServer_SteamGameServer005_UpdateServerStatus_params -{ - void *linux_side; - int32_t cPlayers; - int32_t cPlayersMax; - int32_t cBotPlayers; - const char *pchServerName; - const char *pSpectatorServerName; - const char *pchMapName; -}; -extern void cppISteamGameServer_SteamGameServer005_UpdateServerStatus( struct cppISteamGameServer_SteamGameServer005_UpdateServerStatus_params *params ); - -struct cppISteamGameServer_SteamGameServer005_UpdateSpectatorPort_params -{ - void *linux_side; - uint16_t unSpectatorPort; -}; -extern void cppISteamGameServer_SteamGameServer005_UpdateSpectatorPort( struct cppISteamGameServer_SteamGameServer005_UpdateSpectatorPort_params *params ); - -struct cppISteamGameServer_SteamGameServer005_SetGameType_params -{ - void *linux_side; - const char *pchGameType; -}; -extern void cppISteamGameServer_SteamGameServer005_SetGameType( struct cppISteamGameServer_SteamGameServer005_SetGameType_params *params ); - -struct cppISteamGameServer_SteamGameServer005_BGetUserAchievementStatus_params -{ - void *linux_side; - bool _ret; - CSteamID steamID; - const char *pchAchievementName; -}; -extern void cppISteamGameServer_SteamGameServer005_BGetUserAchievementStatus( struct cppISteamGameServer_SteamGameServer005_BGetUserAchievementStatus_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer008.cpp b/lsteamclient/cppISteamGameServer_SteamGameServer008.cpp index 1d3ae6d8..a96b94a1 100644 --- a/lsteamclient/cppISteamGameServer_SteamGameServer008.cpp +++ b/lsteamclient/cppISteamGameServer_SteamGameServer008.cpp @@ -1,106 +1,139 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamGameServer_SteamGameServer008.h" -void cppISteamGameServer_SteamGameServer008_LogOn( struct cppISteamGameServer_SteamGameServer008_LogOn_params *params ) +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; iface->LogOn( ); + return 0; } -void cppISteamGameServer_SteamGameServer008_LogOff( struct cppISteamGameServer_SteamGameServer008_LogOff_params *params ) +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; iface->LogOff( ); + return 0; } -void cppISteamGameServer_SteamGameServer008_BLoggedOn( struct cppISteamGameServer_SteamGameServer008_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamGameServer_SteamGameServer008_BSecure( struct cppISteamGameServer_SteamGameServer008_BSecure_params *params ) +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; params->_ret = iface->BSecure( ); + return 0; } -void cppISteamGameServer_SteamGameServer008_GetSteamID( struct cppISteamGameServer_SteamGameServer008_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamGameServer_SteamGameServer008_SendUserConnectAndAuthenticate( struct cppISteamGameServer_SteamGameServer008_SendUserConnectAndAuthenticate_params *params ) +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; params->_ret = iface->SendUserConnectAndAuthenticate( params->unIPClient, params->pvAuthBlob, params->cubAuthBlobSize, params->pSteamIDUser ); + return 0; } -void cppISteamGameServer_SteamGameServer008_CreateUnauthenticatedUserConnection( struct cppISteamGameServer_SteamGameServer008_CreateUnauthenticatedUserConnection_params *params ) +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; *params->_ret = iface->CreateUnauthenticatedUserConnection( ); + return 0; } -void cppISteamGameServer_SteamGameServer008_SendUserDisconnect( struct cppISteamGameServer_SteamGameServer008_SendUserDisconnect_params *params ) +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; iface->SendUserDisconnect( params->steamIDUser ); + return 0; } -void cppISteamGameServer_SteamGameServer008_BUpdateUserData( struct cppISteamGameServer_SteamGameServer008_BUpdateUserData_params *params ) +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; params->_ret = iface->BUpdateUserData( params->steamIDUser, params->pchPlayerName, params->uScore ); + return 0; } -void cppISteamGameServer_SteamGameServer008_BSetServerType( struct cppISteamGameServer_SteamGameServer008_BSetServerType_params *params ) +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; params->_ret = iface->BSetServerType( params->unServerFlags, params->unGameIP, params->unGamePort, params->unSpectatorPort, params->usQueryPort, params->pchGameDir, params->pchVersion, params->bLANMode ); + return 0; } -void cppISteamGameServer_SteamGameServer008_UpdateServerStatus( struct cppISteamGameServer_SteamGameServer008_UpdateServerStatus_params *params ) +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; iface->UpdateServerStatus( params->cPlayers, params->cPlayersMax, params->cBotPlayers, params->pchServerName, params->pSpectatorServerName, params->pchMapName ); + return 0; } -void cppISteamGameServer_SteamGameServer008_UpdateSpectatorPort( struct cppISteamGameServer_SteamGameServer008_UpdateSpectatorPort_params *params ) +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; iface->UpdateSpectatorPort( params->unSpectatorPort ); + return 0; } -void cppISteamGameServer_SteamGameServer008_SetGameType( struct cppISteamGameServer_SteamGameServer008_SetGameType_params *params ) +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; iface->SetGameType( params->pchGameType ); + return 0; } -void cppISteamGameServer_SteamGameServer008_BGetUserAchievementStatus( struct cppISteamGameServer_SteamGameServer008_BGetUserAchievementStatus_params *params ) +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; params->_ret = iface->BGetUserAchievementStatus( params->steamID, params->pchAchievementName ); + return 0; } -void cppISteamGameServer_SteamGameServer008_GetGameplayStats( struct cppISteamGameServer_SteamGameServer008_GetGameplayStats_params *params ) +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; iface->GetGameplayStats( ); + return 0; } -void cppISteamGameServer_SteamGameServer008_RequestUserGroupStatus( struct cppISteamGameServer_SteamGameServer008_RequestUserGroupStatus_params *params ) +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; params->_ret = iface->RequestUserGroupStatus( params->steamIDUser, params->steamIDGroup ); + return 0; } -void cppISteamGameServer_SteamGameServer008_GetPublicIP( struct cppISteamGameServer_SteamGameServer008_GetPublicIP_params *params ) +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; params->_ret = iface->GetPublicIP( ); + return 0; } diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer008.h b/lsteamclient/cppISteamGameServer_SteamGameServer008.h deleted file mode 100644 index 14c0f323..00000000 --- a/lsteamclient/cppISteamGameServer_SteamGameServer008.h +++ /dev/null @@ -1,152 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamGameServer_SteamGameServer008_LogOn_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer008_LogOn( struct cppISteamGameServer_SteamGameServer008_LogOn_params *params ); - -struct cppISteamGameServer_SteamGameServer008_LogOff_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer008_LogOff( struct cppISteamGameServer_SteamGameServer008_LogOff_params *params ); - -struct cppISteamGameServer_SteamGameServer008_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamGameServer_SteamGameServer008_BLoggedOn( struct cppISteamGameServer_SteamGameServer008_BLoggedOn_params *params ); - -struct cppISteamGameServer_SteamGameServer008_BSecure_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamGameServer_SteamGameServer008_BSecure( struct cppISteamGameServer_SteamGameServer008_BSecure_params *params ); - -struct cppISteamGameServer_SteamGameServer008_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamGameServer_SteamGameServer008_GetSteamID( struct cppISteamGameServer_SteamGameServer008_GetSteamID_params *params ); - -struct cppISteamGameServer_SteamGameServer008_SendUserConnectAndAuthenticate_params -{ - void *linux_side; - bool _ret; - uint32_t unIPClient; - const void *pvAuthBlob; - uint32_t cubAuthBlobSize; - CSteamID *pSteamIDUser; -}; -extern void cppISteamGameServer_SteamGameServer008_SendUserConnectAndAuthenticate( struct cppISteamGameServer_SteamGameServer008_SendUserConnectAndAuthenticate_params *params ); - -struct cppISteamGameServer_SteamGameServer008_CreateUnauthenticatedUserConnection_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamGameServer_SteamGameServer008_CreateUnauthenticatedUserConnection( struct cppISteamGameServer_SteamGameServer008_CreateUnauthenticatedUserConnection_params *params ); - -struct cppISteamGameServer_SteamGameServer008_SendUserDisconnect_params -{ - void *linux_side; - CSteamID steamIDUser; -}; -extern void cppISteamGameServer_SteamGameServer008_SendUserDisconnect( struct cppISteamGameServer_SteamGameServer008_SendUserDisconnect_params *params ); - -struct cppISteamGameServer_SteamGameServer008_BUpdateUserData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchPlayerName; - uint32_t uScore; -}; -extern void cppISteamGameServer_SteamGameServer008_BUpdateUserData( struct cppISteamGameServer_SteamGameServer008_BUpdateUserData_params *params ); - -struct cppISteamGameServer_SteamGameServer008_BSetServerType_params -{ - void *linux_side; - bool _ret; - uint32_t unServerFlags; - uint32_t unGameIP; - uint16_t unGamePort; - uint16_t unSpectatorPort; - uint16_t usQueryPort; - const char *pchGameDir; - const char *pchVersion; - bool bLANMode; -}; -extern void cppISteamGameServer_SteamGameServer008_BSetServerType( struct cppISteamGameServer_SteamGameServer008_BSetServerType_params *params ); - -struct cppISteamGameServer_SteamGameServer008_UpdateServerStatus_params -{ - void *linux_side; - int32_t cPlayers; - int32_t cPlayersMax; - int32_t cBotPlayers; - const char *pchServerName; - const char *pSpectatorServerName; - const char *pchMapName; -}; -extern void cppISteamGameServer_SteamGameServer008_UpdateServerStatus( struct cppISteamGameServer_SteamGameServer008_UpdateServerStatus_params *params ); - -struct cppISteamGameServer_SteamGameServer008_UpdateSpectatorPort_params -{ - void *linux_side; - uint16_t unSpectatorPort; -}; -extern void cppISteamGameServer_SteamGameServer008_UpdateSpectatorPort( struct cppISteamGameServer_SteamGameServer008_UpdateSpectatorPort_params *params ); - -struct cppISteamGameServer_SteamGameServer008_SetGameType_params -{ - void *linux_side; - const char *pchGameType; -}; -extern void cppISteamGameServer_SteamGameServer008_SetGameType( struct cppISteamGameServer_SteamGameServer008_SetGameType_params *params ); - -struct cppISteamGameServer_SteamGameServer008_BGetUserAchievementStatus_params -{ - void *linux_side; - bool _ret; - CSteamID steamID; - const char *pchAchievementName; -}; -extern void cppISteamGameServer_SteamGameServer008_BGetUserAchievementStatus( struct cppISteamGameServer_SteamGameServer008_BGetUserAchievementStatus_params *params ); - -struct cppISteamGameServer_SteamGameServer008_GetGameplayStats_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer008_GetGameplayStats( struct cppISteamGameServer_SteamGameServer008_GetGameplayStats_params *params ); - -struct cppISteamGameServer_SteamGameServer008_RequestUserGroupStatus_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - CSteamID steamIDGroup; -}; -extern void cppISteamGameServer_SteamGameServer008_RequestUserGroupStatus( struct cppISteamGameServer_SteamGameServer008_RequestUserGroupStatus_params *params ); - -struct cppISteamGameServer_SteamGameServer008_GetPublicIP_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamGameServer_SteamGameServer008_GetPublicIP( struct cppISteamGameServer_SteamGameServer008_GetPublicIP_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer009.cpp b/lsteamclient/cppISteamGameServer_SteamGameServer009.cpp index 0c83bf3b..814d0fc0 100644 --- a/lsteamclient/cppISteamGameServer_SteamGameServer009.cpp +++ b/lsteamclient/cppISteamGameServer_SteamGameServer009.cpp @@ -1,118 +1,155 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamGameServer_SteamGameServer009.h" -void cppISteamGameServer_SteamGameServer009_LogOn( struct cppISteamGameServer_SteamGameServer009_LogOn_params *params ) +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; iface->LogOn( ); + return 0; } -void cppISteamGameServer_SteamGameServer009_LogOff( struct cppISteamGameServer_SteamGameServer009_LogOff_params *params ) +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; iface->LogOff( ); + return 0; } -void cppISteamGameServer_SteamGameServer009_BLoggedOn( struct cppISteamGameServer_SteamGameServer009_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamGameServer_SteamGameServer009_BSecure( struct cppISteamGameServer_SteamGameServer009_BSecure_params *params ) +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; params->_ret = iface->BSecure( ); + return 0; } -void cppISteamGameServer_SteamGameServer009_GetSteamID( struct cppISteamGameServer_SteamGameServer009_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamGameServer_SteamGameServer009_SendUserConnectAndAuthenticate( struct cppISteamGameServer_SteamGameServer009_SendUserConnectAndAuthenticate_params *params ) +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; params->_ret = iface->SendUserConnectAndAuthenticate( params->unIPClient, params->pvAuthBlob, params->cubAuthBlobSize, params->pSteamIDUser ); + return 0; } -void cppISteamGameServer_SteamGameServer009_CreateUnauthenticatedUserConnection( struct cppISteamGameServer_SteamGameServer009_CreateUnauthenticatedUserConnection_params *params ) +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; *params->_ret = iface->CreateUnauthenticatedUserConnection( ); + return 0; } -void cppISteamGameServer_SteamGameServer009_SendUserDisconnect( struct cppISteamGameServer_SteamGameServer009_SendUserDisconnect_params *params ) +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; iface->SendUserDisconnect( params->steamIDUser ); + return 0; } -void cppISteamGameServer_SteamGameServer009_BUpdateUserData( struct cppISteamGameServer_SteamGameServer009_BUpdateUserData_params *params ) +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; params->_ret = iface->BUpdateUserData( params->steamIDUser, params->pchPlayerName, params->uScore ); + return 0; } -void cppISteamGameServer_SteamGameServer009_BSetServerType( struct cppISteamGameServer_SteamGameServer009_BSetServerType_params *params ) +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; params->_ret = iface->BSetServerType( params->unServerFlags, params->unGameIP, params->unGamePort, params->unSpectatorPort, params->usQueryPort, params->pchGameDir, params->pchVersion, params->bLANMode ); + return 0; } -void cppISteamGameServer_SteamGameServer009_UpdateServerStatus( struct cppISteamGameServer_SteamGameServer009_UpdateServerStatus_params *params ) +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; iface->UpdateServerStatus( params->cPlayers, params->cPlayersMax, params->cBotPlayers, params->pchServerName, params->pSpectatorServerName, params->pchMapName ); + return 0; } -void cppISteamGameServer_SteamGameServer009_UpdateSpectatorPort( struct cppISteamGameServer_SteamGameServer009_UpdateSpectatorPort_params *params ) +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; iface->UpdateSpectatorPort( params->unSpectatorPort ); + return 0; } -void cppISteamGameServer_SteamGameServer009_SetGameType( struct cppISteamGameServer_SteamGameServer009_SetGameType_params *params ) +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; iface->SetGameType( params->pchGameType ); + return 0; } -void cppISteamGameServer_SteamGameServer009_BGetUserAchievementStatus( struct cppISteamGameServer_SteamGameServer009_BGetUserAchievementStatus_params *params ) +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; params->_ret = iface->BGetUserAchievementStatus( params->steamID, params->pchAchievementName ); + return 0; } -void cppISteamGameServer_SteamGameServer009_GetGameplayStats( struct cppISteamGameServer_SteamGameServer009_GetGameplayStats_params *params ) +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; iface->GetGameplayStats( ); + return 0; } -void cppISteamGameServer_SteamGameServer009_RequestUserGroupStatus( struct cppISteamGameServer_SteamGameServer009_RequestUserGroupStatus_params *params ) +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; params->_ret = iface->RequestUserGroupStatus( params->steamIDUser, params->steamIDGroup ); + return 0; } -void cppISteamGameServer_SteamGameServer009_GetPublicIP( struct cppISteamGameServer_SteamGameServer009_GetPublicIP_params *params ) +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; params->_ret = iface->GetPublicIP( ); + return 0; } -void cppISteamGameServer_SteamGameServer009_SetGameData( struct cppISteamGameServer_SteamGameServer009_SetGameData_params *params ) +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; iface->SetGameData( params->pchGameData ); + return 0; } -void cppISteamGameServer_SteamGameServer009_UserHasLicenseForApp( struct cppISteamGameServer_SteamGameServer009_UserHasLicenseForApp_params *params ) +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; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); + return 0; } diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer009.h b/lsteamclient/cppISteamGameServer_SteamGameServer009.h deleted file mode 100644 index 072dc3e3..00000000 --- a/lsteamclient/cppISteamGameServer_SteamGameServer009.h +++ /dev/null @@ -1,168 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamGameServer_SteamGameServer009_LogOn_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer009_LogOn( struct cppISteamGameServer_SteamGameServer009_LogOn_params *params ); - -struct cppISteamGameServer_SteamGameServer009_LogOff_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer009_LogOff( struct cppISteamGameServer_SteamGameServer009_LogOff_params *params ); - -struct cppISteamGameServer_SteamGameServer009_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamGameServer_SteamGameServer009_BLoggedOn( struct cppISteamGameServer_SteamGameServer009_BLoggedOn_params *params ); - -struct cppISteamGameServer_SteamGameServer009_BSecure_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamGameServer_SteamGameServer009_BSecure( struct cppISteamGameServer_SteamGameServer009_BSecure_params *params ); - -struct cppISteamGameServer_SteamGameServer009_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamGameServer_SteamGameServer009_GetSteamID( struct cppISteamGameServer_SteamGameServer009_GetSteamID_params *params ); - -struct cppISteamGameServer_SteamGameServer009_SendUserConnectAndAuthenticate_params -{ - void *linux_side; - bool _ret; - uint32_t unIPClient; - const void *pvAuthBlob; - uint32_t cubAuthBlobSize; - CSteamID *pSteamIDUser; -}; -extern void cppISteamGameServer_SteamGameServer009_SendUserConnectAndAuthenticate( struct cppISteamGameServer_SteamGameServer009_SendUserConnectAndAuthenticate_params *params ); - -struct cppISteamGameServer_SteamGameServer009_CreateUnauthenticatedUserConnection_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamGameServer_SteamGameServer009_CreateUnauthenticatedUserConnection( struct cppISteamGameServer_SteamGameServer009_CreateUnauthenticatedUserConnection_params *params ); - -struct cppISteamGameServer_SteamGameServer009_SendUserDisconnect_params -{ - void *linux_side; - CSteamID steamIDUser; -}; -extern void cppISteamGameServer_SteamGameServer009_SendUserDisconnect( struct cppISteamGameServer_SteamGameServer009_SendUserDisconnect_params *params ); - -struct cppISteamGameServer_SteamGameServer009_BUpdateUserData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchPlayerName; - uint32_t uScore; -}; -extern void cppISteamGameServer_SteamGameServer009_BUpdateUserData( struct cppISteamGameServer_SteamGameServer009_BUpdateUserData_params *params ); - -struct cppISteamGameServer_SteamGameServer009_BSetServerType_params -{ - void *linux_side; - bool _ret; - uint32_t unServerFlags; - uint32_t unGameIP; - uint16_t unGamePort; - uint16_t unSpectatorPort; - uint16_t usQueryPort; - const char *pchGameDir; - const char *pchVersion; - bool bLANMode; -}; -extern void cppISteamGameServer_SteamGameServer009_BSetServerType( struct cppISteamGameServer_SteamGameServer009_BSetServerType_params *params ); - -struct cppISteamGameServer_SteamGameServer009_UpdateServerStatus_params -{ - void *linux_side; - int32_t cPlayers; - int32_t cPlayersMax; - int32_t cBotPlayers; - const char *pchServerName; - const char *pSpectatorServerName; - const char *pchMapName; -}; -extern void cppISteamGameServer_SteamGameServer009_UpdateServerStatus( struct cppISteamGameServer_SteamGameServer009_UpdateServerStatus_params *params ); - -struct cppISteamGameServer_SteamGameServer009_UpdateSpectatorPort_params -{ - void *linux_side; - uint16_t unSpectatorPort; -}; -extern void cppISteamGameServer_SteamGameServer009_UpdateSpectatorPort( struct cppISteamGameServer_SteamGameServer009_UpdateSpectatorPort_params *params ); - -struct cppISteamGameServer_SteamGameServer009_SetGameType_params -{ - void *linux_side; - const char *pchGameType; -}; -extern void cppISteamGameServer_SteamGameServer009_SetGameType( struct cppISteamGameServer_SteamGameServer009_SetGameType_params *params ); - -struct cppISteamGameServer_SteamGameServer009_BGetUserAchievementStatus_params -{ - void *linux_side; - bool _ret; - CSteamID steamID; - const char *pchAchievementName; -}; -extern void cppISteamGameServer_SteamGameServer009_BGetUserAchievementStatus( struct cppISteamGameServer_SteamGameServer009_BGetUserAchievementStatus_params *params ); - -struct cppISteamGameServer_SteamGameServer009_GetGameplayStats_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer009_GetGameplayStats( struct cppISteamGameServer_SteamGameServer009_GetGameplayStats_params *params ); - -struct cppISteamGameServer_SteamGameServer009_RequestUserGroupStatus_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - CSteamID steamIDGroup; -}; -extern void cppISteamGameServer_SteamGameServer009_RequestUserGroupStatus( struct cppISteamGameServer_SteamGameServer009_RequestUserGroupStatus_params *params ); - -struct cppISteamGameServer_SteamGameServer009_GetPublicIP_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamGameServer_SteamGameServer009_GetPublicIP( struct cppISteamGameServer_SteamGameServer009_GetPublicIP_params *params ); - -struct cppISteamGameServer_SteamGameServer009_SetGameData_params -{ - void *linux_side; - const char *pchGameData; -}; -extern void cppISteamGameServer_SteamGameServer009_SetGameData( struct cppISteamGameServer_SteamGameServer009_SetGameData_params *params ); - -struct cppISteamGameServer_SteamGameServer009_UserHasLicenseForApp_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamID; - uint32_t appID; -}; -extern void cppISteamGameServer_SteamGameServer009_UserHasLicenseForApp( struct cppISteamGameServer_SteamGameServer009_UserHasLicenseForApp_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer010.cpp b/lsteamclient/cppISteamGameServer_SteamGameServer010.cpp index 20140bd2..11bd305f 100644 --- a/lsteamclient/cppISteamGameServer_SteamGameServer010.cpp +++ b/lsteamclient/cppISteamGameServer_SteamGameServer010.cpp @@ -1,142 +1,187 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamGameServer_SteamGameServer010.h" -void cppISteamGameServer_SteamGameServer010_LogOn( struct cppISteamGameServer_SteamGameServer010_LogOn_params *params ) +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; iface->LogOn( ); + return 0; } -void cppISteamGameServer_SteamGameServer010_LogOff( struct cppISteamGameServer_SteamGameServer010_LogOff_params *params ) +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; iface->LogOff( ); + return 0; } -void cppISteamGameServer_SteamGameServer010_BLoggedOn( struct cppISteamGameServer_SteamGameServer010_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamGameServer_SteamGameServer010_BSecure( struct cppISteamGameServer_SteamGameServer010_BSecure_params *params ) +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; params->_ret = iface->BSecure( ); + return 0; } -void cppISteamGameServer_SteamGameServer010_GetSteamID( struct cppISteamGameServer_SteamGameServer010_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamGameServer_SteamGameServer010_SendUserConnectAndAuthenticate( struct cppISteamGameServer_SteamGameServer010_SendUserConnectAndAuthenticate_params *params ) +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; params->_ret = iface->SendUserConnectAndAuthenticate( params->unIPClient, params->pvAuthBlob, params->cubAuthBlobSize, params->pSteamIDUser ); + return 0; } -void cppISteamGameServer_SteamGameServer010_CreateUnauthenticatedUserConnection( struct cppISteamGameServer_SteamGameServer010_CreateUnauthenticatedUserConnection_params *params ) +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; *params->_ret = iface->CreateUnauthenticatedUserConnection( ); + return 0; } -void cppISteamGameServer_SteamGameServer010_SendUserDisconnect( struct cppISteamGameServer_SteamGameServer010_SendUserDisconnect_params *params ) +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; iface->SendUserDisconnect( params->steamIDUser ); + return 0; } -void cppISteamGameServer_SteamGameServer010_BUpdateUserData( struct cppISteamGameServer_SteamGameServer010_BUpdateUserData_params *params ) +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; params->_ret = iface->BUpdateUserData( params->steamIDUser, params->pchPlayerName, params->uScore ); + return 0; } -void cppISteamGameServer_SteamGameServer010_BSetServerType( struct cppISteamGameServer_SteamGameServer010_BSetServerType_params *params ) +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; params->_ret = iface->BSetServerType( params->unServerFlags, params->unGameIP, params->unGamePort, params->unSpectatorPort, params->usQueryPort, params->pchGameDir, params->pchVersion, params->bLANMode ); + return 0; } -void cppISteamGameServer_SteamGameServer010_UpdateServerStatus( struct cppISteamGameServer_SteamGameServer010_UpdateServerStatus_params *params ) +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; iface->UpdateServerStatus( params->cPlayers, params->cPlayersMax, params->cBotPlayers, params->pchServerName, params->pSpectatorServerName, params->pchMapName ); + return 0; } -void cppISteamGameServer_SteamGameServer010_UpdateSpectatorPort( struct cppISteamGameServer_SteamGameServer010_UpdateSpectatorPort_params *params ) +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; iface->UpdateSpectatorPort( params->unSpectatorPort ); + return 0; } -void cppISteamGameServer_SteamGameServer010_SetGameTags( struct cppISteamGameServer_SteamGameServer010_SetGameTags_params *params ) +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; iface->SetGameTags( params->pchGameTags ); + return 0; } -void cppISteamGameServer_SteamGameServer010_GetGameplayStats( struct cppISteamGameServer_SteamGameServer010_GetGameplayStats_params *params ) +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; iface->GetGameplayStats( ); + return 0; } -void cppISteamGameServer_SteamGameServer010_GetServerReputation( struct cppISteamGameServer_SteamGameServer010_GetServerReputation_params *params ) +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; params->_ret = iface->GetServerReputation( ); + return 0; } -void cppISteamGameServer_SteamGameServer010_RequestUserGroupStatus( struct cppISteamGameServer_SteamGameServer010_RequestUserGroupStatus_params *params ) +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; params->_ret = iface->RequestUserGroupStatus( params->steamIDUser, params->steamIDGroup ); + return 0; } -void cppISteamGameServer_SteamGameServer010_GetPublicIP( struct cppISteamGameServer_SteamGameServer010_GetPublicIP_params *params ) +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; params->_ret = iface->GetPublicIP( ); + return 0; } -void cppISteamGameServer_SteamGameServer010_SetGameData( struct cppISteamGameServer_SteamGameServer010_SetGameData_params *params ) +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; iface->SetGameData( params->pchGameData ); + return 0; } -void cppISteamGameServer_SteamGameServer010_UserHasLicenseForApp( struct cppISteamGameServer_SteamGameServer010_UserHasLicenseForApp_params *params ) +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; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); + return 0; } -void cppISteamGameServer_SteamGameServer010_GetAuthSessionTicket( struct cppISteamGameServer_SteamGameServer010_GetAuthSessionTicket_params *params ) +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; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); + return 0; } -void cppISteamGameServer_SteamGameServer010_BeginAuthSession( struct cppISteamGameServer_SteamGameServer010_BeginAuthSession_params *params ) +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; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); + return 0; } -void cppISteamGameServer_SteamGameServer010_EndAuthSession( struct cppISteamGameServer_SteamGameServer010_EndAuthSession_params *params ) +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; iface->EndAuthSession( params->steamID ); + return 0; } -void cppISteamGameServer_SteamGameServer010_CancelAuthTicket( struct cppISteamGameServer_SteamGameServer010_CancelAuthTicket_params *params ) +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; iface->CancelAuthTicket( params->hAuthTicket ); + return 0; } diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer010.h b/lsteamclient/cppISteamGameServer_SteamGameServer010.h deleted file mode 100644 index 48d7b404..00000000 --- a/lsteamclient/cppISteamGameServer_SteamGameServer010.h +++ /dev/null @@ -1,200 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamGameServer_SteamGameServer010_LogOn_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer010_LogOn( struct cppISteamGameServer_SteamGameServer010_LogOn_params *params ); - -struct cppISteamGameServer_SteamGameServer010_LogOff_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer010_LogOff( struct cppISteamGameServer_SteamGameServer010_LogOff_params *params ); - -struct cppISteamGameServer_SteamGameServer010_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamGameServer_SteamGameServer010_BLoggedOn( struct cppISteamGameServer_SteamGameServer010_BLoggedOn_params *params ); - -struct cppISteamGameServer_SteamGameServer010_BSecure_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamGameServer_SteamGameServer010_BSecure( struct cppISteamGameServer_SteamGameServer010_BSecure_params *params ); - -struct cppISteamGameServer_SteamGameServer010_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamGameServer_SteamGameServer010_GetSteamID( struct cppISteamGameServer_SteamGameServer010_GetSteamID_params *params ); - -struct cppISteamGameServer_SteamGameServer010_SendUserConnectAndAuthenticate_params -{ - void *linux_side; - bool _ret; - uint32_t unIPClient; - const void *pvAuthBlob; - uint32_t cubAuthBlobSize; - CSteamID *pSteamIDUser; -}; -extern void cppISteamGameServer_SteamGameServer010_SendUserConnectAndAuthenticate( struct cppISteamGameServer_SteamGameServer010_SendUserConnectAndAuthenticate_params *params ); - -struct cppISteamGameServer_SteamGameServer010_CreateUnauthenticatedUserConnection_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamGameServer_SteamGameServer010_CreateUnauthenticatedUserConnection( struct cppISteamGameServer_SteamGameServer010_CreateUnauthenticatedUserConnection_params *params ); - -struct cppISteamGameServer_SteamGameServer010_SendUserDisconnect_params -{ - void *linux_side; - CSteamID steamIDUser; -}; -extern void cppISteamGameServer_SteamGameServer010_SendUserDisconnect( struct cppISteamGameServer_SteamGameServer010_SendUserDisconnect_params *params ); - -struct cppISteamGameServer_SteamGameServer010_BUpdateUserData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchPlayerName; - uint32_t uScore; -}; -extern void cppISteamGameServer_SteamGameServer010_BUpdateUserData( struct cppISteamGameServer_SteamGameServer010_BUpdateUserData_params *params ); - -struct cppISteamGameServer_SteamGameServer010_BSetServerType_params -{ - void *linux_side; - bool _ret; - uint32_t unServerFlags; - uint32_t unGameIP; - uint16_t unGamePort; - uint16_t unSpectatorPort; - uint16_t usQueryPort; - const char *pchGameDir; - const char *pchVersion; - bool bLANMode; -}; -extern void cppISteamGameServer_SteamGameServer010_BSetServerType( struct cppISteamGameServer_SteamGameServer010_BSetServerType_params *params ); - -struct cppISteamGameServer_SteamGameServer010_UpdateServerStatus_params -{ - void *linux_side; - int32_t cPlayers; - int32_t cPlayersMax; - int32_t cBotPlayers; - const char *pchServerName; - const char *pSpectatorServerName; - const char *pchMapName; -}; -extern void cppISteamGameServer_SteamGameServer010_UpdateServerStatus( struct cppISteamGameServer_SteamGameServer010_UpdateServerStatus_params *params ); - -struct cppISteamGameServer_SteamGameServer010_UpdateSpectatorPort_params -{ - void *linux_side; - uint16_t unSpectatorPort; -}; -extern void cppISteamGameServer_SteamGameServer010_UpdateSpectatorPort( struct cppISteamGameServer_SteamGameServer010_UpdateSpectatorPort_params *params ); - -struct cppISteamGameServer_SteamGameServer010_SetGameTags_params -{ - void *linux_side; - const char *pchGameTags; -}; -extern void cppISteamGameServer_SteamGameServer010_SetGameTags( struct cppISteamGameServer_SteamGameServer010_SetGameTags_params *params ); - -struct cppISteamGameServer_SteamGameServer010_GetGameplayStats_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer010_GetGameplayStats( struct cppISteamGameServer_SteamGameServer010_GetGameplayStats_params *params ); - -struct cppISteamGameServer_SteamGameServer010_GetServerReputation_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamGameServer_SteamGameServer010_GetServerReputation( struct cppISteamGameServer_SteamGameServer010_GetServerReputation_params *params ); - -struct cppISteamGameServer_SteamGameServer010_RequestUserGroupStatus_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - CSteamID steamIDGroup; -}; -extern void cppISteamGameServer_SteamGameServer010_RequestUserGroupStatus( struct cppISteamGameServer_SteamGameServer010_RequestUserGroupStatus_params *params ); - -struct cppISteamGameServer_SteamGameServer010_GetPublicIP_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamGameServer_SteamGameServer010_GetPublicIP( struct cppISteamGameServer_SteamGameServer010_GetPublicIP_params *params ); - -struct cppISteamGameServer_SteamGameServer010_SetGameData_params -{ - void *linux_side; - const char *pchGameData; -}; -extern void cppISteamGameServer_SteamGameServer010_SetGameData( struct cppISteamGameServer_SteamGameServer010_SetGameData_params *params ); - -struct cppISteamGameServer_SteamGameServer010_UserHasLicenseForApp_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamID; - uint32_t appID; -}; -extern void cppISteamGameServer_SteamGameServer010_UserHasLicenseForApp( struct cppISteamGameServer_SteamGameServer010_UserHasLicenseForApp_params *params ); - -struct cppISteamGameServer_SteamGameServer010_GetAuthSessionTicket_params -{ - void *linux_side; - uint32_t _ret; - void *pTicket; - int32_t cbMaxTicket; - uint32_t *pcbTicket; -}; -extern void cppISteamGameServer_SteamGameServer010_GetAuthSessionTicket( struct cppISteamGameServer_SteamGameServer010_GetAuthSessionTicket_params *params ); - -struct cppISteamGameServer_SteamGameServer010_BeginAuthSession_params -{ - void *linux_side; - uint32_t _ret; - const void *pAuthTicket; - int32_t cbAuthTicket; - CSteamID steamID; -}; -extern void cppISteamGameServer_SteamGameServer010_BeginAuthSession( struct cppISteamGameServer_SteamGameServer010_BeginAuthSession_params *params ); - -struct cppISteamGameServer_SteamGameServer010_EndAuthSession_params -{ - void *linux_side; - CSteamID steamID; -}; -extern void cppISteamGameServer_SteamGameServer010_EndAuthSession( struct cppISteamGameServer_SteamGameServer010_EndAuthSession_params *params ); - -struct cppISteamGameServer_SteamGameServer010_CancelAuthTicket_params -{ - void *linux_side; - uint32_t hAuthTicket; -}; -extern void cppISteamGameServer_SteamGameServer010_CancelAuthTicket( struct cppISteamGameServer_SteamGameServer010_CancelAuthTicket_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer011.cpp b/lsteamclient/cppISteamGameServer_SteamGameServer011.cpp index 3e034bcd..309d29dd 100644 --- a/lsteamclient/cppISteamGameServer_SteamGameServer011.cpp +++ b/lsteamclient/cppISteamGameServer_SteamGameServer011.cpp @@ -1,268 +1,355 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamGameServer_SteamGameServer011.h" -void cppISteamGameServer_SteamGameServer011_InitGameServer( struct cppISteamGameServer_SteamGameServer011_InitGameServer_params *params ) +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; params->_ret = iface->InitGameServer( params->unIP, params->usGamePort, params->usQueryPort, params->unFlags, params->nGameAppId, params->pchVersionString ); + return 0; } -void cppISteamGameServer_SteamGameServer011_SetProduct( struct cppISteamGameServer_SteamGameServer011_SetProduct_params *params ) +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; iface->SetProduct( params->pszProduct ); + return 0; } -void cppISteamGameServer_SteamGameServer011_SetGameDescription( struct cppISteamGameServer_SteamGameServer011_SetGameDescription_params *params ) +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; iface->SetGameDescription( params->pszGameDescription ); + return 0; } -void cppISteamGameServer_SteamGameServer011_SetModDir( struct cppISteamGameServer_SteamGameServer011_SetModDir_params *params ) +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; iface->SetModDir( params->pszModDir ); + return 0; } -void cppISteamGameServer_SteamGameServer011_SetDedicatedServer( struct cppISteamGameServer_SteamGameServer011_SetDedicatedServer_params *params ) +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; iface->SetDedicatedServer( params->bDedicated ); + return 0; } -void cppISteamGameServer_SteamGameServer011_LogOn( struct cppISteamGameServer_SteamGameServer011_LogOn_params *params ) +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; iface->LogOn( params->pszAccountName, params->pszPassword ); + return 0; } -void cppISteamGameServer_SteamGameServer011_LogOnAnonymous( struct cppISteamGameServer_SteamGameServer011_LogOnAnonymous_params *params ) +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; iface->LogOnAnonymous( ); + return 0; } -void cppISteamGameServer_SteamGameServer011_LogOff( struct cppISteamGameServer_SteamGameServer011_LogOff_params *params ) +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; iface->LogOff( ); + return 0; } -void cppISteamGameServer_SteamGameServer011_BLoggedOn( struct cppISteamGameServer_SteamGameServer011_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamGameServer_SteamGameServer011_BSecure( struct cppISteamGameServer_SteamGameServer011_BSecure_params *params ) +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; params->_ret = iface->BSecure( ); + return 0; } -void cppISteamGameServer_SteamGameServer011_GetSteamID( struct cppISteamGameServer_SteamGameServer011_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamGameServer_SteamGameServer011_WasRestartRequested( struct cppISteamGameServer_SteamGameServer011_WasRestartRequested_params *params ) +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; params->_ret = iface->WasRestartRequested( ); + return 0; } -void cppISteamGameServer_SteamGameServer011_SetMaxPlayerCount( struct cppISteamGameServer_SteamGameServer011_SetMaxPlayerCount_params *params ) +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; iface->SetMaxPlayerCount( params->cPlayersMax ); + return 0; } -void cppISteamGameServer_SteamGameServer011_SetBotPlayerCount( struct cppISteamGameServer_SteamGameServer011_SetBotPlayerCount_params *params ) +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; iface->SetBotPlayerCount( params->cBotplayers ); + return 0; } -void cppISteamGameServer_SteamGameServer011_SetServerName( struct cppISteamGameServer_SteamGameServer011_SetServerName_params *params ) +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; iface->SetServerName( params->pszServerName ); + return 0; } -void cppISteamGameServer_SteamGameServer011_SetMapName( struct cppISteamGameServer_SteamGameServer011_SetMapName_params *params ) +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; iface->SetMapName( params->pszMapName ); + return 0; } -void cppISteamGameServer_SteamGameServer011_SetPasswordProtected( struct cppISteamGameServer_SteamGameServer011_SetPasswordProtected_params *params ) +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; iface->SetPasswordProtected( params->bPasswordProtected ); + return 0; } -void cppISteamGameServer_SteamGameServer011_SetSpectatorPort( struct cppISteamGameServer_SteamGameServer011_SetSpectatorPort_params *params ) +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; iface->SetSpectatorPort( params->unSpectatorPort ); + return 0; } -void cppISteamGameServer_SteamGameServer011_SetSpectatorServerName( struct cppISteamGameServer_SteamGameServer011_SetSpectatorServerName_params *params ) +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; iface->SetSpectatorServerName( params->pszSpectatorServerName ); + return 0; } -void cppISteamGameServer_SteamGameServer011_ClearAllKeyValues( struct cppISteamGameServer_SteamGameServer011_ClearAllKeyValues_params *params ) +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; iface->ClearAllKeyValues( ); + return 0; } -void cppISteamGameServer_SteamGameServer011_SetKeyValue( struct cppISteamGameServer_SteamGameServer011_SetKeyValue_params *params ) +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; iface->SetKeyValue( params->pKey, params->pValue ); + return 0; } -void cppISteamGameServer_SteamGameServer011_SetGameTags( struct cppISteamGameServer_SteamGameServer011_SetGameTags_params *params ) +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; iface->SetGameTags( params->pchGameTags ); + return 0; } -void cppISteamGameServer_SteamGameServer011_SetGameData( struct cppISteamGameServer_SteamGameServer011_SetGameData_params *params ) +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; iface->SetGameData( params->pchGameData ); + return 0; } -void cppISteamGameServer_SteamGameServer011_SetRegion( struct cppISteamGameServer_SteamGameServer011_SetRegion_params *params ) +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; iface->SetRegion( params->pszRegion ); + return 0; } -void cppISteamGameServer_SteamGameServer011_SendUserConnectAndAuthenticate( struct cppISteamGameServer_SteamGameServer011_SendUserConnectAndAuthenticate_params *params ) +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; params->_ret = iface->SendUserConnectAndAuthenticate( params->unIPClient, params->pvAuthBlob, params->cubAuthBlobSize, params->pSteamIDUser ); + return 0; } -void cppISteamGameServer_SteamGameServer011_CreateUnauthenticatedUserConnection( struct cppISteamGameServer_SteamGameServer011_CreateUnauthenticatedUserConnection_params *params ) +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; *params->_ret = iface->CreateUnauthenticatedUserConnection( ); + return 0; } -void cppISteamGameServer_SteamGameServer011_SendUserDisconnect( struct cppISteamGameServer_SteamGameServer011_SendUserDisconnect_params *params ) +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; iface->SendUserDisconnect( params->steamIDUser ); + return 0; } -void cppISteamGameServer_SteamGameServer011_BUpdateUserData( struct cppISteamGameServer_SteamGameServer011_BUpdateUserData_params *params ) +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; params->_ret = iface->BUpdateUserData( params->steamIDUser, params->pchPlayerName, params->uScore ); + return 0; } -void cppISteamGameServer_SteamGameServer011_GetAuthSessionTicket( struct cppISteamGameServer_SteamGameServer011_GetAuthSessionTicket_params *params ) +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; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); + return 0; } -void cppISteamGameServer_SteamGameServer011_BeginAuthSession( struct cppISteamGameServer_SteamGameServer011_BeginAuthSession_params *params ) +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; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); + return 0; } -void cppISteamGameServer_SteamGameServer011_EndAuthSession( struct cppISteamGameServer_SteamGameServer011_EndAuthSession_params *params ) +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; iface->EndAuthSession( params->steamID ); + return 0; } -void cppISteamGameServer_SteamGameServer011_CancelAuthTicket( struct cppISteamGameServer_SteamGameServer011_CancelAuthTicket_params *params ) +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; iface->CancelAuthTicket( params->hAuthTicket ); + return 0; } -void cppISteamGameServer_SteamGameServer011_UserHasLicenseForApp( struct cppISteamGameServer_SteamGameServer011_UserHasLicenseForApp_params *params ) +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; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); + return 0; } -void cppISteamGameServer_SteamGameServer011_RequestUserGroupStatus( struct cppISteamGameServer_SteamGameServer011_RequestUserGroupStatus_params *params ) +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; params->_ret = iface->RequestUserGroupStatus( params->steamIDUser, params->steamIDGroup ); + return 0; } -void cppISteamGameServer_SteamGameServer011_GetGameplayStats( struct cppISteamGameServer_SteamGameServer011_GetGameplayStats_params *params ) +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; iface->GetGameplayStats( ); + return 0; } -void cppISteamGameServer_SteamGameServer011_GetServerReputation( struct cppISteamGameServer_SteamGameServer011_GetServerReputation_params *params ) +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; params->_ret = iface->GetServerReputation( ); + return 0; } -void cppISteamGameServer_SteamGameServer011_GetPublicIP( struct cppISteamGameServer_SteamGameServer011_GetPublicIP_params *params ) +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; params->_ret = iface->GetPublicIP( ); + return 0; } -void cppISteamGameServer_SteamGameServer011_HandleIncomingPacket( struct cppISteamGameServer_SteamGameServer011_HandleIncomingPacket_params *params ) +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; params->_ret = iface->HandleIncomingPacket( params->pData, params->cbData, params->srcIP, params->srcPort ); + return 0; } -void cppISteamGameServer_SteamGameServer011_GetNextOutgoingPacket( struct cppISteamGameServer_SteamGameServer011_GetNextOutgoingPacket_params *params ) +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; params->_ret = iface->GetNextOutgoingPacket( params->pOut, params->cbMaxOut, params->pNetAdr, params->pPort ); + return 0; } -void cppISteamGameServer_SteamGameServer011_EnableHeartbeats( struct cppISteamGameServer_SteamGameServer011_EnableHeartbeats_params *params ) +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; iface->EnableHeartbeats( params->bActive ); + return 0; } -void cppISteamGameServer_SteamGameServer011_SetHeartbeatInterval( struct cppISteamGameServer_SteamGameServer011_SetHeartbeatInterval_params *params ) +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; iface->SetHeartbeatInterval( params->iHeartbeatInterval ); + return 0; } -void cppISteamGameServer_SteamGameServer011_ForceHeartbeat( struct cppISteamGameServer_SteamGameServer011_ForceHeartbeat_params *params ) +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; iface->ForceHeartbeat( ); + return 0; } -void cppISteamGameServer_SteamGameServer011_AssociateWithClan( struct cppISteamGameServer_SteamGameServer011_AssociateWithClan_params *params ) +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; params->_ret = iface->AssociateWithClan( params->steamIDClan ); + return 0; } -void cppISteamGameServer_SteamGameServer011_ComputeNewPlayerCompatibility( struct cppISteamGameServer_SteamGameServer011_ComputeNewPlayerCompatibility_params *params ) +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; params->_ret = iface->ComputeNewPlayerCompatibility( params->steamIDNewPlayer ); + return 0; } diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer011.h b/lsteamclient/cppISteamGameServer_SteamGameServer011.h deleted file mode 100644 index c997f98f..00000000 --- a/lsteamclient/cppISteamGameServer_SteamGameServer011.h +++ /dev/null @@ -1,350 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamGameServer_SteamGameServer011_InitGameServer_params -{ - void *linux_side; - bool _ret; - uint32_t unIP; - uint16_t usGamePort; - uint16_t usQueryPort; - uint32_t unFlags; - uint32_t nGameAppId; - const char *pchVersionString; -}; -extern void cppISteamGameServer_SteamGameServer011_InitGameServer( struct cppISteamGameServer_SteamGameServer011_InitGameServer_params *params ); - -struct cppISteamGameServer_SteamGameServer011_SetProduct_params -{ - void *linux_side; - const char *pszProduct; -}; -extern void cppISteamGameServer_SteamGameServer011_SetProduct( struct cppISteamGameServer_SteamGameServer011_SetProduct_params *params ); - -struct cppISteamGameServer_SteamGameServer011_SetGameDescription_params -{ - void *linux_side; - const char *pszGameDescription; -}; -extern void cppISteamGameServer_SteamGameServer011_SetGameDescription( struct cppISteamGameServer_SteamGameServer011_SetGameDescription_params *params ); - -struct cppISteamGameServer_SteamGameServer011_SetModDir_params -{ - void *linux_side; - const char *pszModDir; -}; -extern void cppISteamGameServer_SteamGameServer011_SetModDir( struct cppISteamGameServer_SteamGameServer011_SetModDir_params *params ); - -struct cppISteamGameServer_SteamGameServer011_SetDedicatedServer_params -{ - void *linux_side; - bool bDedicated; -}; -extern void cppISteamGameServer_SteamGameServer011_SetDedicatedServer( struct cppISteamGameServer_SteamGameServer011_SetDedicatedServer_params *params ); - -struct cppISteamGameServer_SteamGameServer011_LogOn_params -{ - void *linux_side; - const char *pszAccountName; - const char *pszPassword; -}; -extern void cppISteamGameServer_SteamGameServer011_LogOn( struct cppISteamGameServer_SteamGameServer011_LogOn_params *params ); - -struct cppISteamGameServer_SteamGameServer011_LogOnAnonymous_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer011_LogOnAnonymous( struct cppISteamGameServer_SteamGameServer011_LogOnAnonymous_params *params ); - -struct cppISteamGameServer_SteamGameServer011_LogOff_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer011_LogOff( struct cppISteamGameServer_SteamGameServer011_LogOff_params *params ); - -struct cppISteamGameServer_SteamGameServer011_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamGameServer_SteamGameServer011_BLoggedOn( struct cppISteamGameServer_SteamGameServer011_BLoggedOn_params *params ); - -struct cppISteamGameServer_SteamGameServer011_BSecure_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamGameServer_SteamGameServer011_BSecure( struct cppISteamGameServer_SteamGameServer011_BSecure_params *params ); - -struct cppISteamGameServer_SteamGameServer011_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamGameServer_SteamGameServer011_GetSteamID( struct cppISteamGameServer_SteamGameServer011_GetSteamID_params *params ); - -struct cppISteamGameServer_SteamGameServer011_WasRestartRequested_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamGameServer_SteamGameServer011_WasRestartRequested( struct cppISteamGameServer_SteamGameServer011_WasRestartRequested_params *params ); - -struct cppISteamGameServer_SteamGameServer011_SetMaxPlayerCount_params -{ - void *linux_side; - int32_t cPlayersMax; -}; -extern void cppISteamGameServer_SteamGameServer011_SetMaxPlayerCount( struct cppISteamGameServer_SteamGameServer011_SetMaxPlayerCount_params *params ); - -struct cppISteamGameServer_SteamGameServer011_SetBotPlayerCount_params -{ - void *linux_side; - int32_t cBotplayers; -}; -extern void cppISteamGameServer_SteamGameServer011_SetBotPlayerCount( struct cppISteamGameServer_SteamGameServer011_SetBotPlayerCount_params *params ); - -struct cppISteamGameServer_SteamGameServer011_SetServerName_params -{ - void *linux_side; - const char *pszServerName; -}; -extern void cppISteamGameServer_SteamGameServer011_SetServerName( struct cppISteamGameServer_SteamGameServer011_SetServerName_params *params ); - -struct cppISteamGameServer_SteamGameServer011_SetMapName_params -{ - void *linux_side; - const char *pszMapName; -}; -extern void cppISteamGameServer_SteamGameServer011_SetMapName( struct cppISteamGameServer_SteamGameServer011_SetMapName_params *params ); - -struct cppISteamGameServer_SteamGameServer011_SetPasswordProtected_params -{ - void *linux_side; - bool bPasswordProtected; -}; -extern void cppISteamGameServer_SteamGameServer011_SetPasswordProtected( struct cppISteamGameServer_SteamGameServer011_SetPasswordProtected_params *params ); - -struct cppISteamGameServer_SteamGameServer011_SetSpectatorPort_params -{ - void *linux_side; - uint16_t unSpectatorPort; -}; -extern void cppISteamGameServer_SteamGameServer011_SetSpectatorPort( struct cppISteamGameServer_SteamGameServer011_SetSpectatorPort_params *params ); - -struct cppISteamGameServer_SteamGameServer011_SetSpectatorServerName_params -{ - void *linux_side; - const char *pszSpectatorServerName; -}; -extern void cppISteamGameServer_SteamGameServer011_SetSpectatorServerName( struct cppISteamGameServer_SteamGameServer011_SetSpectatorServerName_params *params ); - -struct cppISteamGameServer_SteamGameServer011_ClearAllKeyValues_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer011_ClearAllKeyValues( struct cppISteamGameServer_SteamGameServer011_ClearAllKeyValues_params *params ); - -struct cppISteamGameServer_SteamGameServer011_SetKeyValue_params -{ - void *linux_side; - const char *pKey; - const char *pValue; -}; -extern void cppISteamGameServer_SteamGameServer011_SetKeyValue( struct cppISteamGameServer_SteamGameServer011_SetKeyValue_params *params ); - -struct cppISteamGameServer_SteamGameServer011_SetGameTags_params -{ - void *linux_side; - const char *pchGameTags; -}; -extern void cppISteamGameServer_SteamGameServer011_SetGameTags( struct cppISteamGameServer_SteamGameServer011_SetGameTags_params *params ); - -struct cppISteamGameServer_SteamGameServer011_SetGameData_params -{ - void *linux_side; - const char *pchGameData; -}; -extern void cppISteamGameServer_SteamGameServer011_SetGameData( struct cppISteamGameServer_SteamGameServer011_SetGameData_params *params ); - -struct cppISteamGameServer_SteamGameServer011_SetRegion_params -{ - void *linux_side; - const char *pszRegion; -}; -extern void cppISteamGameServer_SteamGameServer011_SetRegion( struct cppISteamGameServer_SteamGameServer011_SetRegion_params *params ); - -struct cppISteamGameServer_SteamGameServer011_SendUserConnectAndAuthenticate_params -{ - void *linux_side; - bool _ret; - uint32_t unIPClient; - const void *pvAuthBlob; - uint32_t cubAuthBlobSize; - CSteamID *pSteamIDUser; -}; -extern void cppISteamGameServer_SteamGameServer011_SendUserConnectAndAuthenticate( struct cppISteamGameServer_SteamGameServer011_SendUserConnectAndAuthenticate_params *params ); - -struct cppISteamGameServer_SteamGameServer011_CreateUnauthenticatedUserConnection_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamGameServer_SteamGameServer011_CreateUnauthenticatedUserConnection( struct cppISteamGameServer_SteamGameServer011_CreateUnauthenticatedUserConnection_params *params ); - -struct cppISteamGameServer_SteamGameServer011_SendUserDisconnect_params -{ - void *linux_side; - CSteamID steamIDUser; -}; -extern void cppISteamGameServer_SteamGameServer011_SendUserDisconnect( struct cppISteamGameServer_SteamGameServer011_SendUserDisconnect_params *params ); - -struct cppISteamGameServer_SteamGameServer011_BUpdateUserData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchPlayerName; - uint32_t uScore; -}; -extern void cppISteamGameServer_SteamGameServer011_BUpdateUserData( struct cppISteamGameServer_SteamGameServer011_BUpdateUserData_params *params ); - -struct cppISteamGameServer_SteamGameServer011_GetAuthSessionTicket_params -{ - void *linux_side; - uint32_t _ret; - void *pTicket; - int32_t cbMaxTicket; - uint32_t *pcbTicket; -}; -extern void cppISteamGameServer_SteamGameServer011_GetAuthSessionTicket( struct cppISteamGameServer_SteamGameServer011_GetAuthSessionTicket_params *params ); - -struct cppISteamGameServer_SteamGameServer011_BeginAuthSession_params -{ - void *linux_side; - uint32_t _ret; - const void *pAuthTicket; - int32_t cbAuthTicket; - CSteamID steamID; -}; -extern void cppISteamGameServer_SteamGameServer011_BeginAuthSession( struct cppISteamGameServer_SteamGameServer011_BeginAuthSession_params *params ); - -struct cppISteamGameServer_SteamGameServer011_EndAuthSession_params -{ - void *linux_side; - CSteamID steamID; -}; -extern void cppISteamGameServer_SteamGameServer011_EndAuthSession( struct cppISteamGameServer_SteamGameServer011_EndAuthSession_params *params ); - -struct cppISteamGameServer_SteamGameServer011_CancelAuthTicket_params -{ - void *linux_side; - uint32_t hAuthTicket; -}; -extern void cppISteamGameServer_SteamGameServer011_CancelAuthTicket( struct cppISteamGameServer_SteamGameServer011_CancelAuthTicket_params *params ); - -struct cppISteamGameServer_SteamGameServer011_UserHasLicenseForApp_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamID; - uint32_t appID; -}; -extern void cppISteamGameServer_SteamGameServer011_UserHasLicenseForApp( struct cppISteamGameServer_SteamGameServer011_UserHasLicenseForApp_params *params ); - -struct cppISteamGameServer_SteamGameServer011_RequestUserGroupStatus_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - CSteamID steamIDGroup; -}; -extern void cppISteamGameServer_SteamGameServer011_RequestUserGroupStatus( struct cppISteamGameServer_SteamGameServer011_RequestUserGroupStatus_params *params ); - -struct cppISteamGameServer_SteamGameServer011_GetGameplayStats_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer011_GetGameplayStats( struct cppISteamGameServer_SteamGameServer011_GetGameplayStats_params *params ); - -struct cppISteamGameServer_SteamGameServer011_GetServerReputation_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamGameServer_SteamGameServer011_GetServerReputation( struct cppISteamGameServer_SteamGameServer011_GetServerReputation_params *params ); - -struct cppISteamGameServer_SteamGameServer011_GetPublicIP_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamGameServer_SteamGameServer011_GetPublicIP( struct cppISteamGameServer_SteamGameServer011_GetPublicIP_params *params ); - -struct cppISteamGameServer_SteamGameServer011_HandleIncomingPacket_params -{ - void *linux_side; - bool _ret; - const void *pData; - int32_t cbData; - uint32_t srcIP; - uint16_t srcPort; -}; -extern void cppISteamGameServer_SteamGameServer011_HandleIncomingPacket( struct cppISteamGameServer_SteamGameServer011_HandleIncomingPacket_params *params ); - -struct cppISteamGameServer_SteamGameServer011_GetNextOutgoingPacket_params -{ - void *linux_side; - int32_t _ret; - void *pOut; - int32_t cbMaxOut; - uint32_t *pNetAdr; - uint16_t *pPort; -}; -extern void cppISteamGameServer_SteamGameServer011_GetNextOutgoingPacket( struct cppISteamGameServer_SteamGameServer011_GetNextOutgoingPacket_params *params ); - -struct cppISteamGameServer_SteamGameServer011_EnableHeartbeats_params -{ - void *linux_side; - bool bActive; -}; -extern void cppISteamGameServer_SteamGameServer011_EnableHeartbeats( struct cppISteamGameServer_SteamGameServer011_EnableHeartbeats_params *params ); - -struct cppISteamGameServer_SteamGameServer011_SetHeartbeatInterval_params -{ - void *linux_side; - int32_t iHeartbeatInterval; -}; -extern void cppISteamGameServer_SteamGameServer011_SetHeartbeatInterval( struct cppISteamGameServer_SteamGameServer011_SetHeartbeatInterval_params *params ); - -struct cppISteamGameServer_SteamGameServer011_ForceHeartbeat_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer011_ForceHeartbeat( struct cppISteamGameServer_SteamGameServer011_ForceHeartbeat_params *params ); - -struct cppISteamGameServer_SteamGameServer011_AssociateWithClan_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamGameServer_SteamGameServer011_AssociateWithClan( struct cppISteamGameServer_SteamGameServer011_AssociateWithClan_params *params ); - -struct cppISteamGameServer_SteamGameServer011_ComputeNewPlayerCompatibility_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDNewPlayer; -}; -extern void cppISteamGameServer_SteamGameServer011_ComputeNewPlayerCompatibility( struct cppISteamGameServer_SteamGameServer011_ComputeNewPlayerCompatibility_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer012.cpp b/lsteamclient/cppISteamGameServer_SteamGameServer012.cpp index 13d73b2c..5afc01ae 100644 --- a/lsteamclient/cppISteamGameServer_SteamGameServer012.cpp +++ b/lsteamclient/cppISteamGameServer_SteamGameServer012.cpp @@ -1,268 +1,355 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamGameServer_SteamGameServer012.h" -void cppISteamGameServer_SteamGameServer012_InitGameServer( struct cppISteamGameServer_SteamGameServer012_InitGameServer_params *params ) +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; params->_ret = iface->InitGameServer( params->unIP, params->usGamePort, params->usQueryPort, params->unFlags, params->nGameAppId, params->pchVersionString ); + return 0; } -void cppISteamGameServer_SteamGameServer012_SetProduct( struct cppISteamGameServer_SteamGameServer012_SetProduct_params *params ) +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; iface->SetProduct( params->pszProduct ); + return 0; } -void cppISteamGameServer_SteamGameServer012_SetGameDescription( struct cppISteamGameServer_SteamGameServer012_SetGameDescription_params *params ) +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; iface->SetGameDescription( params->pszGameDescription ); + return 0; } -void cppISteamGameServer_SteamGameServer012_SetModDir( struct cppISteamGameServer_SteamGameServer012_SetModDir_params *params ) +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; iface->SetModDir( params->pszModDir ); + return 0; } -void cppISteamGameServer_SteamGameServer012_SetDedicatedServer( struct cppISteamGameServer_SteamGameServer012_SetDedicatedServer_params *params ) +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; iface->SetDedicatedServer( params->bDedicated ); + return 0; } -void cppISteamGameServer_SteamGameServer012_LogOn( struct cppISteamGameServer_SteamGameServer012_LogOn_params *params ) +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; iface->LogOn( params->pszToken ); + return 0; } -void cppISteamGameServer_SteamGameServer012_LogOnAnonymous( struct cppISteamGameServer_SteamGameServer012_LogOnAnonymous_params *params ) +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; iface->LogOnAnonymous( ); + return 0; } -void cppISteamGameServer_SteamGameServer012_LogOff( struct cppISteamGameServer_SteamGameServer012_LogOff_params *params ) +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; iface->LogOff( ); + return 0; } -void cppISteamGameServer_SteamGameServer012_BLoggedOn( struct cppISteamGameServer_SteamGameServer012_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamGameServer_SteamGameServer012_BSecure( struct cppISteamGameServer_SteamGameServer012_BSecure_params *params ) +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; params->_ret = iface->BSecure( ); + return 0; } -void cppISteamGameServer_SteamGameServer012_GetSteamID( struct cppISteamGameServer_SteamGameServer012_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamGameServer_SteamGameServer012_WasRestartRequested( struct cppISteamGameServer_SteamGameServer012_WasRestartRequested_params *params ) +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; params->_ret = iface->WasRestartRequested( ); + return 0; } -void cppISteamGameServer_SteamGameServer012_SetMaxPlayerCount( struct cppISteamGameServer_SteamGameServer012_SetMaxPlayerCount_params *params ) +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; iface->SetMaxPlayerCount( params->cPlayersMax ); + return 0; } -void cppISteamGameServer_SteamGameServer012_SetBotPlayerCount( struct cppISteamGameServer_SteamGameServer012_SetBotPlayerCount_params *params ) +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; iface->SetBotPlayerCount( params->cBotplayers ); + return 0; } -void cppISteamGameServer_SteamGameServer012_SetServerName( struct cppISteamGameServer_SteamGameServer012_SetServerName_params *params ) +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; iface->SetServerName( params->pszServerName ); + return 0; } -void cppISteamGameServer_SteamGameServer012_SetMapName( struct cppISteamGameServer_SteamGameServer012_SetMapName_params *params ) +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; iface->SetMapName( params->pszMapName ); + return 0; } -void cppISteamGameServer_SteamGameServer012_SetPasswordProtected( struct cppISteamGameServer_SteamGameServer012_SetPasswordProtected_params *params ) +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; iface->SetPasswordProtected( params->bPasswordProtected ); + return 0; } -void cppISteamGameServer_SteamGameServer012_SetSpectatorPort( struct cppISteamGameServer_SteamGameServer012_SetSpectatorPort_params *params ) +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; iface->SetSpectatorPort( params->unSpectatorPort ); + return 0; } -void cppISteamGameServer_SteamGameServer012_SetSpectatorServerName( struct cppISteamGameServer_SteamGameServer012_SetSpectatorServerName_params *params ) +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; iface->SetSpectatorServerName( params->pszSpectatorServerName ); + return 0; } -void cppISteamGameServer_SteamGameServer012_ClearAllKeyValues( struct cppISteamGameServer_SteamGameServer012_ClearAllKeyValues_params *params ) +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; iface->ClearAllKeyValues( ); + return 0; } -void cppISteamGameServer_SteamGameServer012_SetKeyValue( struct cppISteamGameServer_SteamGameServer012_SetKeyValue_params *params ) +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; iface->SetKeyValue( params->pKey, params->pValue ); + return 0; } -void cppISteamGameServer_SteamGameServer012_SetGameTags( struct cppISteamGameServer_SteamGameServer012_SetGameTags_params *params ) +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; iface->SetGameTags( params->pchGameTags ); + return 0; } -void cppISteamGameServer_SteamGameServer012_SetGameData( struct cppISteamGameServer_SteamGameServer012_SetGameData_params *params ) +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; iface->SetGameData( params->pchGameData ); + return 0; } -void cppISteamGameServer_SteamGameServer012_SetRegion( struct cppISteamGameServer_SteamGameServer012_SetRegion_params *params ) +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; iface->SetRegion( params->pszRegion ); + return 0; } -void cppISteamGameServer_SteamGameServer012_SendUserConnectAndAuthenticate( struct cppISteamGameServer_SteamGameServer012_SendUserConnectAndAuthenticate_params *params ) +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; params->_ret = iface->SendUserConnectAndAuthenticate( params->unIPClient, params->pvAuthBlob, params->cubAuthBlobSize, params->pSteamIDUser ); + return 0; } -void cppISteamGameServer_SteamGameServer012_CreateUnauthenticatedUserConnection( struct cppISteamGameServer_SteamGameServer012_CreateUnauthenticatedUserConnection_params *params ) +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; *params->_ret = iface->CreateUnauthenticatedUserConnection( ); + return 0; } -void cppISteamGameServer_SteamGameServer012_SendUserDisconnect( struct cppISteamGameServer_SteamGameServer012_SendUserDisconnect_params *params ) +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; iface->SendUserDisconnect( params->steamIDUser ); + return 0; } -void cppISteamGameServer_SteamGameServer012_BUpdateUserData( struct cppISteamGameServer_SteamGameServer012_BUpdateUserData_params *params ) +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; params->_ret = iface->BUpdateUserData( params->steamIDUser, params->pchPlayerName, params->uScore ); + return 0; } -void cppISteamGameServer_SteamGameServer012_GetAuthSessionTicket( struct cppISteamGameServer_SteamGameServer012_GetAuthSessionTicket_params *params ) +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; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); + return 0; } -void cppISteamGameServer_SteamGameServer012_BeginAuthSession( struct cppISteamGameServer_SteamGameServer012_BeginAuthSession_params *params ) +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; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); + return 0; } -void cppISteamGameServer_SteamGameServer012_EndAuthSession( struct cppISteamGameServer_SteamGameServer012_EndAuthSession_params *params ) +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; iface->EndAuthSession( params->steamID ); + return 0; } -void cppISteamGameServer_SteamGameServer012_CancelAuthTicket( struct cppISteamGameServer_SteamGameServer012_CancelAuthTicket_params *params ) +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; iface->CancelAuthTicket( params->hAuthTicket ); + return 0; } -void cppISteamGameServer_SteamGameServer012_UserHasLicenseForApp( struct cppISteamGameServer_SteamGameServer012_UserHasLicenseForApp_params *params ) +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; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); + return 0; } -void cppISteamGameServer_SteamGameServer012_RequestUserGroupStatus( struct cppISteamGameServer_SteamGameServer012_RequestUserGroupStatus_params *params ) +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; params->_ret = iface->RequestUserGroupStatus( params->steamIDUser, params->steamIDGroup ); + return 0; } -void cppISteamGameServer_SteamGameServer012_GetGameplayStats( struct cppISteamGameServer_SteamGameServer012_GetGameplayStats_params *params ) +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; iface->GetGameplayStats( ); + return 0; } -void cppISteamGameServer_SteamGameServer012_GetServerReputation( struct cppISteamGameServer_SteamGameServer012_GetServerReputation_params *params ) +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; params->_ret = iface->GetServerReputation( ); + return 0; } -void cppISteamGameServer_SteamGameServer012_GetPublicIP( struct cppISteamGameServer_SteamGameServer012_GetPublicIP_params *params ) +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; params->_ret = iface->GetPublicIP( ); + return 0; } -void cppISteamGameServer_SteamGameServer012_HandleIncomingPacket( struct cppISteamGameServer_SteamGameServer012_HandleIncomingPacket_params *params ) +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; params->_ret = iface->HandleIncomingPacket( params->pData, params->cbData, params->srcIP, params->srcPort ); + return 0; } -void cppISteamGameServer_SteamGameServer012_GetNextOutgoingPacket( struct cppISteamGameServer_SteamGameServer012_GetNextOutgoingPacket_params *params ) +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; params->_ret = iface->GetNextOutgoingPacket( params->pOut, params->cbMaxOut, params->pNetAdr, params->pPort ); + return 0; } -void cppISteamGameServer_SteamGameServer012_EnableHeartbeats( struct cppISteamGameServer_SteamGameServer012_EnableHeartbeats_params *params ) +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; iface->EnableHeartbeats( params->bActive ); + return 0; } -void cppISteamGameServer_SteamGameServer012_SetHeartbeatInterval( struct cppISteamGameServer_SteamGameServer012_SetHeartbeatInterval_params *params ) +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; iface->SetHeartbeatInterval( params->iHeartbeatInterval ); + return 0; } -void cppISteamGameServer_SteamGameServer012_ForceHeartbeat( struct cppISteamGameServer_SteamGameServer012_ForceHeartbeat_params *params ) +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; iface->ForceHeartbeat( ); + return 0; } -void cppISteamGameServer_SteamGameServer012_AssociateWithClan( struct cppISteamGameServer_SteamGameServer012_AssociateWithClan_params *params ) +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; params->_ret = iface->AssociateWithClan( params->steamIDClan ); + return 0; } -void cppISteamGameServer_SteamGameServer012_ComputeNewPlayerCompatibility( struct cppISteamGameServer_SteamGameServer012_ComputeNewPlayerCompatibility_params *params ) +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; params->_ret = iface->ComputeNewPlayerCompatibility( params->steamIDNewPlayer ); + return 0; } diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer012.h b/lsteamclient/cppISteamGameServer_SteamGameServer012.h deleted file mode 100644 index 03788d6c..00000000 --- a/lsteamclient/cppISteamGameServer_SteamGameServer012.h +++ /dev/null @@ -1,349 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamGameServer_SteamGameServer012_InitGameServer_params -{ - void *linux_side; - bool _ret; - uint32_t unIP; - uint16_t usGamePort; - uint16_t usQueryPort; - uint32_t unFlags; - uint32_t nGameAppId; - const char *pchVersionString; -}; -extern void cppISteamGameServer_SteamGameServer012_InitGameServer( struct cppISteamGameServer_SteamGameServer012_InitGameServer_params *params ); - -struct cppISteamGameServer_SteamGameServer012_SetProduct_params -{ - void *linux_side; - const char *pszProduct; -}; -extern void cppISteamGameServer_SteamGameServer012_SetProduct( struct cppISteamGameServer_SteamGameServer012_SetProduct_params *params ); - -struct cppISteamGameServer_SteamGameServer012_SetGameDescription_params -{ - void *linux_side; - const char *pszGameDescription; -}; -extern void cppISteamGameServer_SteamGameServer012_SetGameDescription( struct cppISteamGameServer_SteamGameServer012_SetGameDescription_params *params ); - -struct cppISteamGameServer_SteamGameServer012_SetModDir_params -{ - void *linux_side; - const char *pszModDir; -}; -extern void cppISteamGameServer_SteamGameServer012_SetModDir( struct cppISteamGameServer_SteamGameServer012_SetModDir_params *params ); - -struct cppISteamGameServer_SteamGameServer012_SetDedicatedServer_params -{ - void *linux_side; - bool bDedicated; -}; -extern void cppISteamGameServer_SteamGameServer012_SetDedicatedServer( struct cppISteamGameServer_SteamGameServer012_SetDedicatedServer_params *params ); - -struct cppISteamGameServer_SteamGameServer012_LogOn_params -{ - void *linux_side; - const char *pszToken; -}; -extern void cppISteamGameServer_SteamGameServer012_LogOn( struct cppISteamGameServer_SteamGameServer012_LogOn_params *params ); - -struct cppISteamGameServer_SteamGameServer012_LogOnAnonymous_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer012_LogOnAnonymous( struct cppISteamGameServer_SteamGameServer012_LogOnAnonymous_params *params ); - -struct cppISteamGameServer_SteamGameServer012_LogOff_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer012_LogOff( struct cppISteamGameServer_SteamGameServer012_LogOff_params *params ); - -struct cppISteamGameServer_SteamGameServer012_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamGameServer_SteamGameServer012_BLoggedOn( struct cppISteamGameServer_SteamGameServer012_BLoggedOn_params *params ); - -struct cppISteamGameServer_SteamGameServer012_BSecure_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamGameServer_SteamGameServer012_BSecure( struct cppISteamGameServer_SteamGameServer012_BSecure_params *params ); - -struct cppISteamGameServer_SteamGameServer012_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamGameServer_SteamGameServer012_GetSteamID( struct cppISteamGameServer_SteamGameServer012_GetSteamID_params *params ); - -struct cppISteamGameServer_SteamGameServer012_WasRestartRequested_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamGameServer_SteamGameServer012_WasRestartRequested( struct cppISteamGameServer_SteamGameServer012_WasRestartRequested_params *params ); - -struct cppISteamGameServer_SteamGameServer012_SetMaxPlayerCount_params -{ - void *linux_side; - int32_t cPlayersMax; -}; -extern void cppISteamGameServer_SteamGameServer012_SetMaxPlayerCount( struct cppISteamGameServer_SteamGameServer012_SetMaxPlayerCount_params *params ); - -struct cppISteamGameServer_SteamGameServer012_SetBotPlayerCount_params -{ - void *linux_side; - int32_t cBotplayers; -}; -extern void cppISteamGameServer_SteamGameServer012_SetBotPlayerCount( struct cppISteamGameServer_SteamGameServer012_SetBotPlayerCount_params *params ); - -struct cppISteamGameServer_SteamGameServer012_SetServerName_params -{ - void *linux_side; - const char *pszServerName; -}; -extern void cppISteamGameServer_SteamGameServer012_SetServerName( struct cppISteamGameServer_SteamGameServer012_SetServerName_params *params ); - -struct cppISteamGameServer_SteamGameServer012_SetMapName_params -{ - void *linux_side; - const char *pszMapName; -}; -extern void cppISteamGameServer_SteamGameServer012_SetMapName( struct cppISteamGameServer_SteamGameServer012_SetMapName_params *params ); - -struct cppISteamGameServer_SteamGameServer012_SetPasswordProtected_params -{ - void *linux_side; - bool bPasswordProtected; -}; -extern void cppISteamGameServer_SteamGameServer012_SetPasswordProtected( struct cppISteamGameServer_SteamGameServer012_SetPasswordProtected_params *params ); - -struct cppISteamGameServer_SteamGameServer012_SetSpectatorPort_params -{ - void *linux_side; - uint16_t unSpectatorPort; -}; -extern void cppISteamGameServer_SteamGameServer012_SetSpectatorPort( struct cppISteamGameServer_SteamGameServer012_SetSpectatorPort_params *params ); - -struct cppISteamGameServer_SteamGameServer012_SetSpectatorServerName_params -{ - void *linux_side; - const char *pszSpectatorServerName; -}; -extern void cppISteamGameServer_SteamGameServer012_SetSpectatorServerName( struct cppISteamGameServer_SteamGameServer012_SetSpectatorServerName_params *params ); - -struct cppISteamGameServer_SteamGameServer012_ClearAllKeyValues_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer012_ClearAllKeyValues( struct cppISteamGameServer_SteamGameServer012_ClearAllKeyValues_params *params ); - -struct cppISteamGameServer_SteamGameServer012_SetKeyValue_params -{ - void *linux_side; - const char *pKey; - const char *pValue; -}; -extern void cppISteamGameServer_SteamGameServer012_SetKeyValue( struct cppISteamGameServer_SteamGameServer012_SetKeyValue_params *params ); - -struct cppISteamGameServer_SteamGameServer012_SetGameTags_params -{ - void *linux_side; - const char *pchGameTags; -}; -extern void cppISteamGameServer_SteamGameServer012_SetGameTags( struct cppISteamGameServer_SteamGameServer012_SetGameTags_params *params ); - -struct cppISteamGameServer_SteamGameServer012_SetGameData_params -{ - void *linux_side; - const char *pchGameData; -}; -extern void cppISteamGameServer_SteamGameServer012_SetGameData( struct cppISteamGameServer_SteamGameServer012_SetGameData_params *params ); - -struct cppISteamGameServer_SteamGameServer012_SetRegion_params -{ - void *linux_side; - const char *pszRegion; -}; -extern void cppISteamGameServer_SteamGameServer012_SetRegion( struct cppISteamGameServer_SteamGameServer012_SetRegion_params *params ); - -struct cppISteamGameServer_SteamGameServer012_SendUserConnectAndAuthenticate_params -{ - void *linux_side; - bool _ret; - uint32_t unIPClient; - const void *pvAuthBlob; - uint32_t cubAuthBlobSize; - CSteamID *pSteamIDUser; -}; -extern void cppISteamGameServer_SteamGameServer012_SendUserConnectAndAuthenticate( struct cppISteamGameServer_SteamGameServer012_SendUserConnectAndAuthenticate_params *params ); - -struct cppISteamGameServer_SteamGameServer012_CreateUnauthenticatedUserConnection_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamGameServer_SteamGameServer012_CreateUnauthenticatedUserConnection( struct cppISteamGameServer_SteamGameServer012_CreateUnauthenticatedUserConnection_params *params ); - -struct cppISteamGameServer_SteamGameServer012_SendUserDisconnect_params -{ - void *linux_side; - CSteamID steamIDUser; -}; -extern void cppISteamGameServer_SteamGameServer012_SendUserDisconnect( struct cppISteamGameServer_SteamGameServer012_SendUserDisconnect_params *params ); - -struct cppISteamGameServer_SteamGameServer012_BUpdateUserData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchPlayerName; - uint32_t uScore; -}; -extern void cppISteamGameServer_SteamGameServer012_BUpdateUserData( struct cppISteamGameServer_SteamGameServer012_BUpdateUserData_params *params ); - -struct cppISteamGameServer_SteamGameServer012_GetAuthSessionTicket_params -{ - void *linux_side; - uint32_t _ret; - void *pTicket; - int32_t cbMaxTicket; - uint32_t *pcbTicket; -}; -extern void cppISteamGameServer_SteamGameServer012_GetAuthSessionTicket( struct cppISteamGameServer_SteamGameServer012_GetAuthSessionTicket_params *params ); - -struct cppISteamGameServer_SteamGameServer012_BeginAuthSession_params -{ - void *linux_side; - uint32_t _ret; - const void *pAuthTicket; - int32_t cbAuthTicket; - CSteamID steamID; -}; -extern void cppISteamGameServer_SteamGameServer012_BeginAuthSession( struct cppISteamGameServer_SteamGameServer012_BeginAuthSession_params *params ); - -struct cppISteamGameServer_SteamGameServer012_EndAuthSession_params -{ - void *linux_side; - CSteamID steamID; -}; -extern void cppISteamGameServer_SteamGameServer012_EndAuthSession( struct cppISteamGameServer_SteamGameServer012_EndAuthSession_params *params ); - -struct cppISteamGameServer_SteamGameServer012_CancelAuthTicket_params -{ - void *linux_side; - uint32_t hAuthTicket; -}; -extern void cppISteamGameServer_SteamGameServer012_CancelAuthTicket( struct cppISteamGameServer_SteamGameServer012_CancelAuthTicket_params *params ); - -struct cppISteamGameServer_SteamGameServer012_UserHasLicenseForApp_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamID; - uint32_t appID; -}; -extern void cppISteamGameServer_SteamGameServer012_UserHasLicenseForApp( struct cppISteamGameServer_SteamGameServer012_UserHasLicenseForApp_params *params ); - -struct cppISteamGameServer_SteamGameServer012_RequestUserGroupStatus_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - CSteamID steamIDGroup; -}; -extern void cppISteamGameServer_SteamGameServer012_RequestUserGroupStatus( struct cppISteamGameServer_SteamGameServer012_RequestUserGroupStatus_params *params ); - -struct cppISteamGameServer_SteamGameServer012_GetGameplayStats_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer012_GetGameplayStats( struct cppISteamGameServer_SteamGameServer012_GetGameplayStats_params *params ); - -struct cppISteamGameServer_SteamGameServer012_GetServerReputation_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamGameServer_SteamGameServer012_GetServerReputation( struct cppISteamGameServer_SteamGameServer012_GetServerReputation_params *params ); - -struct cppISteamGameServer_SteamGameServer012_GetPublicIP_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamGameServer_SteamGameServer012_GetPublicIP( struct cppISteamGameServer_SteamGameServer012_GetPublicIP_params *params ); - -struct cppISteamGameServer_SteamGameServer012_HandleIncomingPacket_params -{ - void *linux_side; - bool _ret; - const void *pData; - int32_t cbData; - uint32_t srcIP; - uint16_t srcPort; -}; -extern void cppISteamGameServer_SteamGameServer012_HandleIncomingPacket( struct cppISteamGameServer_SteamGameServer012_HandleIncomingPacket_params *params ); - -struct cppISteamGameServer_SteamGameServer012_GetNextOutgoingPacket_params -{ - void *linux_side; - int32_t _ret; - void *pOut; - int32_t cbMaxOut; - uint32_t *pNetAdr; - uint16_t *pPort; -}; -extern void cppISteamGameServer_SteamGameServer012_GetNextOutgoingPacket( struct cppISteamGameServer_SteamGameServer012_GetNextOutgoingPacket_params *params ); - -struct cppISteamGameServer_SteamGameServer012_EnableHeartbeats_params -{ - void *linux_side; - bool bActive; -}; -extern void cppISteamGameServer_SteamGameServer012_EnableHeartbeats( struct cppISteamGameServer_SteamGameServer012_EnableHeartbeats_params *params ); - -struct cppISteamGameServer_SteamGameServer012_SetHeartbeatInterval_params -{ - void *linux_side; - int32_t iHeartbeatInterval; -}; -extern void cppISteamGameServer_SteamGameServer012_SetHeartbeatInterval( struct cppISteamGameServer_SteamGameServer012_SetHeartbeatInterval_params *params ); - -struct cppISteamGameServer_SteamGameServer012_ForceHeartbeat_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer012_ForceHeartbeat( struct cppISteamGameServer_SteamGameServer012_ForceHeartbeat_params *params ); - -struct cppISteamGameServer_SteamGameServer012_AssociateWithClan_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamGameServer_SteamGameServer012_AssociateWithClan( struct cppISteamGameServer_SteamGameServer012_AssociateWithClan_params *params ); - -struct cppISteamGameServer_SteamGameServer012_ComputeNewPlayerCompatibility_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDNewPlayer; -}; -extern void cppISteamGameServer_SteamGameServer012_ComputeNewPlayerCompatibility( struct cppISteamGameServer_SteamGameServer012_ComputeNewPlayerCompatibility_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer013.cpp b/lsteamclient/cppISteamGameServer_SteamGameServer013.cpp index e4843fad..f06e47e3 100644 --- a/lsteamclient/cppISteamGameServer_SteamGameServer013.cpp +++ b/lsteamclient/cppISteamGameServer_SteamGameServer013.cpp @@ -1,268 +1,355 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamGameServer_SteamGameServer013.h" -void cppISteamGameServer_SteamGameServer013_InitGameServer( struct cppISteamGameServer_SteamGameServer013_InitGameServer_params *params ) +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; params->_ret = iface->InitGameServer( params->unIP, params->usGamePort, params->usQueryPort, params->unFlags, params->nGameAppId, params->pchVersionString ); + return 0; } -void cppISteamGameServer_SteamGameServer013_SetProduct( struct cppISteamGameServer_SteamGameServer013_SetProduct_params *params ) +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; iface->SetProduct( params->pszProduct ); + return 0; } -void cppISteamGameServer_SteamGameServer013_SetGameDescription( struct cppISteamGameServer_SteamGameServer013_SetGameDescription_params *params ) +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; iface->SetGameDescription( params->pszGameDescription ); + return 0; } -void cppISteamGameServer_SteamGameServer013_SetModDir( struct cppISteamGameServer_SteamGameServer013_SetModDir_params *params ) +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; iface->SetModDir( params->pszModDir ); + return 0; } -void cppISteamGameServer_SteamGameServer013_SetDedicatedServer( struct cppISteamGameServer_SteamGameServer013_SetDedicatedServer_params *params ) +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; iface->SetDedicatedServer( params->bDedicated ); + return 0; } -void cppISteamGameServer_SteamGameServer013_LogOn( struct cppISteamGameServer_SteamGameServer013_LogOn_params *params ) +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; iface->LogOn( params->pszToken ); + return 0; } -void cppISteamGameServer_SteamGameServer013_LogOnAnonymous( struct cppISteamGameServer_SteamGameServer013_LogOnAnonymous_params *params ) +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; iface->LogOnAnonymous( ); + return 0; } -void cppISteamGameServer_SteamGameServer013_LogOff( struct cppISteamGameServer_SteamGameServer013_LogOff_params *params ) +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; iface->LogOff( ); + return 0; } -void cppISteamGameServer_SteamGameServer013_BLoggedOn( struct cppISteamGameServer_SteamGameServer013_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamGameServer_SteamGameServer013_BSecure( struct cppISteamGameServer_SteamGameServer013_BSecure_params *params ) +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; params->_ret = iface->BSecure( ); + return 0; } -void cppISteamGameServer_SteamGameServer013_GetSteamID( struct cppISteamGameServer_SteamGameServer013_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamGameServer_SteamGameServer013_WasRestartRequested( struct cppISteamGameServer_SteamGameServer013_WasRestartRequested_params *params ) +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; params->_ret = iface->WasRestartRequested( ); + return 0; } -void cppISteamGameServer_SteamGameServer013_SetMaxPlayerCount( struct cppISteamGameServer_SteamGameServer013_SetMaxPlayerCount_params *params ) +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; iface->SetMaxPlayerCount( params->cPlayersMax ); + return 0; } -void cppISteamGameServer_SteamGameServer013_SetBotPlayerCount( struct cppISteamGameServer_SteamGameServer013_SetBotPlayerCount_params *params ) +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; iface->SetBotPlayerCount( params->cBotplayers ); + return 0; } -void cppISteamGameServer_SteamGameServer013_SetServerName( struct cppISteamGameServer_SteamGameServer013_SetServerName_params *params ) +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; iface->SetServerName( params->pszServerName ); + return 0; } -void cppISteamGameServer_SteamGameServer013_SetMapName( struct cppISteamGameServer_SteamGameServer013_SetMapName_params *params ) +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; iface->SetMapName( params->pszMapName ); + return 0; } -void cppISteamGameServer_SteamGameServer013_SetPasswordProtected( struct cppISteamGameServer_SteamGameServer013_SetPasswordProtected_params *params ) +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; iface->SetPasswordProtected( params->bPasswordProtected ); + return 0; } -void cppISteamGameServer_SteamGameServer013_SetSpectatorPort( struct cppISteamGameServer_SteamGameServer013_SetSpectatorPort_params *params ) +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; iface->SetSpectatorPort( params->unSpectatorPort ); + return 0; } -void cppISteamGameServer_SteamGameServer013_SetSpectatorServerName( struct cppISteamGameServer_SteamGameServer013_SetSpectatorServerName_params *params ) +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; iface->SetSpectatorServerName( params->pszSpectatorServerName ); + return 0; } -void cppISteamGameServer_SteamGameServer013_ClearAllKeyValues( struct cppISteamGameServer_SteamGameServer013_ClearAllKeyValues_params *params ) +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; iface->ClearAllKeyValues( ); + return 0; } -void cppISteamGameServer_SteamGameServer013_SetKeyValue( struct cppISteamGameServer_SteamGameServer013_SetKeyValue_params *params ) +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; iface->SetKeyValue( params->pKey, params->pValue ); + return 0; } -void cppISteamGameServer_SteamGameServer013_SetGameTags( struct cppISteamGameServer_SteamGameServer013_SetGameTags_params *params ) +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; iface->SetGameTags( params->pchGameTags ); + return 0; } -void cppISteamGameServer_SteamGameServer013_SetGameData( struct cppISteamGameServer_SteamGameServer013_SetGameData_params *params ) +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; iface->SetGameData( params->pchGameData ); + return 0; } -void cppISteamGameServer_SteamGameServer013_SetRegion( struct cppISteamGameServer_SteamGameServer013_SetRegion_params *params ) +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; iface->SetRegion( params->pszRegion ); + return 0; } -void cppISteamGameServer_SteamGameServer013_SendUserConnectAndAuthenticate( struct cppISteamGameServer_SteamGameServer013_SendUserConnectAndAuthenticate_params *params ) +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; params->_ret = iface->SendUserConnectAndAuthenticate( params->unIPClient, params->pvAuthBlob, params->cubAuthBlobSize, params->pSteamIDUser ); + return 0; } -void cppISteamGameServer_SteamGameServer013_CreateUnauthenticatedUserConnection( struct cppISteamGameServer_SteamGameServer013_CreateUnauthenticatedUserConnection_params *params ) +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; *params->_ret = iface->CreateUnauthenticatedUserConnection( ); + return 0; } -void cppISteamGameServer_SteamGameServer013_SendUserDisconnect( struct cppISteamGameServer_SteamGameServer013_SendUserDisconnect_params *params ) +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; iface->SendUserDisconnect( params->steamIDUser ); + return 0; } -void cppISteamGameServer_SteamGameServer013_BUpdateUserData( struct cppISteamGameServer_SteamGameServer013_BUpdateUserData_params *params ) +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; params->_ret = iface->BUpdateUserData( params->steamIDUser, params->pchPlayerName, params->uScore ); + return 0; } -void cppISteamGameServer_SteamGameServer013_GetAuthSessionTicket( struct cppISteamGameServer_SteamGameServer013_GetAuthSessionTicket_params *params ) +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; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); + return 0; } -void cppISteamGameServer_SteamGameServer013_BeginAuthSession( struct cppISteamGameServer_SteamGameServer013_BeginAuthSession_params *params ) +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; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); + return 0; } -void cppISteamGameServer_SteamGameServer013_EndAuthSession( struct cppISteamGameServer_SteamGameServer013_EndAuthSession_params *params ) +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; iface->EndAuthSession( params->steamID ); + return 0; } -void cppISteamGameServer_SteamGameServer013_CancelAuthTicket( struct cppISteamGameServer_SteamGameServer013_CancelAuthTicket_params *params ) +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; iface->CancelAuthTicket( params->hAuthTicket ); + return 0; } -void cppISteamGameServer_SteamGameServer013_UserHasLicenseForApp( struct cppISteamGameServer_SteamGameServer013_UserHasLicenseForApp_params *params ) +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; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); + return 0; } -void cppISteamGameServer_SteamGameServer013_RequestUserGroupStatus( struct cppISteamGameServer_SteamGameServer013_RequestUserGroupStatus_params *params ) +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; params->_ret = iface->RequestUserGroupStatus( params->steamIDUser, params->steamIDGroup ); + return 0; } -void cppISteamGameServer_SteamGameServer013_GetGameplayStats( struct cppISteamGameServer_SteamGameServer013_GetGameplayStats_params *params ) +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; iface->GetGameplayStats( ); + return 0; } -void cppISteamGameServer_SteamGameServer013_GetServerReputation( struct cppISteamGameServer_SteamGameServer013_GetServerReputation_params *params ) +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; params->_ret = iface->GetServerReputation( ); + return 0; } -void cppISteamGameServer_SteamGameServer013_GetPublicIP( struct cppISteamGameServer_SteamGameServer013_GetPublicIP_params *params ) +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; *params->_ret = iface->GetPublicIP( ); + return 0; } -void cppISteamGameServer_SteamGameServer013_HandleIncomingPacket( struct cppISteamGameServer_SteamGameServer013_HandleIncomingPacket_params *params ) +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; params->_ret = iface->HandleIncomingPacket( params->pData, params->cbData, params->srcIP, params->srcPort ); + return 0; } -void cppISteamGameServer_SteamGameServer013_GetNextOutgoingPacket( struct cppISteamGameServer_SteamGameServer013_GetNextOutgoingPacket_params *params ) +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; params->_ret = iface->GetNextOutgoingPacket( params->pOut, params->cbMaxOut, params->pNetAdr, params->pPort ); + return 0; } -void cppISteamGameServer_SteamGameServer013_EnableHeartbeats( struct cppISteamGameServer_SteamGameServer013_EnableHeartbeats_params *params ) +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; iface->EnableHeartbeats( params->bActive ); + return 0; } -void cppISteamGameServer_SteamGameServer013_SetHeartbeatInterval( struct cppISteamGameServer_SteamGameServer013_SetHeartbeatInterval_params *params ) +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; iface->SetHeartbeatInterval( params->iHeartbeatInterval ); + return 0; } -void cppISteamGameServer_SteamGameServer013_ForceHeartbeat( struct cppISteamGameServer_SteamGameServer013_ForceHeartbeat_params *params ) +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; iface->ForceHeartbeat( ); + return 0; } -void cppISteamGameServer_SteamGameServer013_AssociateWithClan( struct cppISteamGameServer_SteamGameServer013_AssociateWithClan_params *params ) +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; params->_ret = iface->AssociateWithClan( params->steamIDClan ); + return 0; } -void cppISteamGameServer_SteamGameServer013_ComputeNewPlayerCompatibility( struct cppISteamGameServer_SteamGameServer013_ComputeNewPlayerCompatibility_params *params ) +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; params->_ret = iface->ComputeNewPlayerCompatibility( params->steamIDNewPlayer ); + return 0; } diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer013.h b/lsteamclient/cppISteamGameServer_SteamGameServer013.h deleted file mode 100644 index 23e43119..00000000 --- a/lsteamclient/cppISteamGameServer_SteamGameServer013.h +++ /dev/null @@ -1,349 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamGameServer_SteamGameServer013_InitGameServer_params -{ - void *linux_side; - bool _ret; - uint32_t unIP; - uint16_t usGamePort; - uint16_t usQueryPort; - uint32_t unFlags; - uint32_t nGameAppId; - const char *pchVersionString; -}; -extern void cppISteamGameServer_SteamGameServer013_InitGameServer( struct cppISteamGameServer_SteamGameServer013_InitGameServer_params *params ); - -struct cppISteamGameServer_SteamGameServer013_SetProduct_params -{ - void *linux_side; - const char *pszProduct; -}; -extern void cppISteamGameServer_SteamGameServer013_SetProduct( struct cppISteamGameServer_SteamGameServer013_SetProduct_params *params ); - -struct cppISteamGameServer_SteamGameServer013_SetGameDescription_params -{ - void *linux_side; - const char *pszGameDescription; -}; -extern void cppISteamGameServer_SteamGameServer013_SetGameDescription( struct cppISteamGameServer_SteamGameServer013_SetGameDescription_params *params ); - -struct cppISteamGameServer_SteamGameServer013_SetModDir_params -{ - void *linux_side; - const char *pszModDir; -}; -extern void cppISteamGameServer_SteamGameServer013_SetModDir( struct cppISteamGameServer_SteamGameServer013_SetModDir_params *params ); - -struct cppISteamGameServer_SteamGameServer013_SetDedicatedServer_params -{ - void *linux_side; - bool bDedicated; -}; -extern void cppISteamGameServer_SteamGameServer013_SetDedicatedServer( struct cppISteamGameServer_SteamGameServer013_SetDedicatedServer_params *params ); - -struct cppISteamGameServer_SteamGameServer013_LogOn_params -{ - void *linux_side; - const char *pszToken; -}; -extern void cppISteamGameServer_SteamGameServer013_LogOn( struct cppISteamGameServer_SteamGameServer013_LogOn_params *params ); - -struct cppISteamGameServer_SteamGameServer013_LogOnAnonymous_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer013_LogOnAnonymous( struct cppISteamGameServer_SteamGameServer013_LogOnAnonymous_params *params ); - -struct cppISteamGameServer_SteamGameServer013_LogOff_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer013_LogOff( struct cppISteamGameServer_SteamGameServer013_LogOff_params *params ); - -struct cppISteamGameServer_SteamGameServer013_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamGameServer_SteamGameServer013_BLoggedOn( struct cppISteamGameServer_SteamGameServer013_BLoggedOn_params *params ); - -struct cppISteamGameServer_SteamGameServer013_BSecure_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamGameServer_SteamGameServer013_BSecure( struct cppISteamGameServer_SteamGameServer013_BSecure_params *params ); - -struct cppISteamGameServer_SteamGameServer013_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamGameServer_SteamGameServer013_GetSteamID( struct cppISteamGameServer_SteamGameServer013_GetSteamID_params *params ); - -struct cppISteamGameServer_SteamGameServer013_WasRestartRequested_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamGameServer_SteamGameServer013_WasRestartRequested( struct cppISteamGameServer_SteamGameServer013_WasRestartRequested_params *params ); - -struct cppISteamGameServer_SteamGameServer013_SetMaxPlayerCount_params -{ - void *linux_side; - int32_t cPlayersMax; -}; -extern void cppISteamGameServer_SteamGameServer013_SetMaxPlayerCount( struct cppISteamGameServer_SteamGameServer013_SetMaxPlayerCount_params *params ); - -struct cppISteamGameServer_SteamGameServer013_SetBotPlayerCount_params -{ - void *linux_side; - int32_t cBotplayers; -}; -extern void cppISteamGameServer_SteamGameServer013_SetBotPlayerCount( struct cppISteamGameServer_SteamGameServer013_SetBotPlayerCount_params *params ); - -struct cppISteamGameServer_SteamGameServer013_SetServerName_params -{ - void *linux_side; - const char *pszServerName; -}; -extern void cppISteamGameServer_SteamGameServer013_SetServerName( struct cppISteamGameServer_SteamGameServer013_SetServerName_params *params ); - -struct cppISteamGameServer_SteamGameServer013_SetMapName_params -{ - void *linux_side; - const char *pszMapName; -}; -extern void cppISteamGameServer_SteamGameServer013_SetMapName( struct cppISteamGameServer_SteamGameServer013_SetMapName_params *params ); - -struct cppISteamGameServer_SteamGameServer013_SetPasswordProtected_params -{ - void *linux_side; - bool bPasswordProtected; -}; -extern void cppISteamGameServer_SteamGameServer013_SetPasswordProtected( struct cppISteamGameServer_SteamGameServer013_SetPasswordProtected_params *params ); - -struct cppISteamGameServer_SteamGameServer013_SetSpectatorPort_params -{ - void *linux_side; - uint16_t unSpectatorPort; -}; -extern void cppISteamGameServer_SteamGameServer013_SetSpectatorPort( struct cppISteamGameServer_SteamGameServer013_SetSpectatorPort_params *params ); - -struct cppISteamGameServer_SteamGameServer013_SetSpectatorServerName_params -{ - void *linux_side; - const char *pszSpectatorServerName; -}; -extern void cppISteamGameServer_SteamGameServer013_SetSpectatorServerName( struct cppISteamGameServer_SteamGameServer013_SetSpectatorServerName_params *params ); - -struct cppISteamGameServer_SteamGameServer013_ClearAllKeyValues_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer013_ClearAllKeyValues( struct cppISteamGameServer_SteamGameServer013_ClearAllKeyValues_params *params ); - -struct cppISteamGameServer_SteamGameServer013_SetKeyValue_params -{ - void *linux_side; - const char *pKey; - const char *pValue; -}; -extern void cppISteamGameServer_SteamGameServer013_SetKeyValue( struct cppISteamGameServer_SteamGameServer013_SetKeyValue_params *params ); - -struct cppISteamGameServer_SteamGameServer013_SetGameTags_params -{ - void *linux_side; - const char *pchGameTags; -}; -extern void cppISteamGameServer_SteamGameServer013_SetGameTags( struct cppISteamGameServer_SteamGameServer013_SetGameTags_params *params ); - -struct cppISteamGameServer_SteamGameServer013_SetGameData_params -{ - void *linux_side; - const char *pchGameData; -}; -extern void cppISteamGameServer_SteamGameServer013_SetGameData( struct cppISteamGameServer_SteamGameServer013_SetGameData_params *params ); - -struct cppISteamGameServer_SteamGameServer013_SetRegion_params -{ - void *linux_side; - const char *pszRegion; -}; -extern void cppISteamGameServer_SteamGameServer013_SetRegion( struct cppISteamGameServer_SteamGameServer013_SetRegion_params *params ); - -struct cppISteamGameServer_SteamGameServer013_SendUserConnectAndAuthenticate_params -{ - void *linux_side; - bool _ret; - uint32_t unIPClient; - const void *pvAuthBlob; - uint32_t cubAuthBlobSize; - CSteamID *pSteamIDUser; -}; -extern void cppISteamGameServer_SteamGameServer013_SendUserConnectAndAuthenticate( struct cppISteamGameServer_SteamGameServer013_SendUserConnectAndAuthenticate_params *params ); - -struct cppISteamGameServer_SteamGameServer013_CreateUnauthenticatedUserConnection_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamGameServer_SteamGameServer013_CreateUnauthenticatedUserConnection( struct cppISteamGameServer_SteamGameServer013_CreateUnauthenticatedUserConnection_params *params ); - -struct cppISteamGameServer_SteamGameServer013_SendUserDisconnect_params -{ - void *linux_side; - CSteamID steamIDUser; -}; -extern void cppISteamGameServer_SteamGameServer013_SendUserDisconnect( struct cppISteamGameServer_SteamGameServer013_SendUserDisconnect_params *params ); - -struct cppISteamGameServer_SteamGameServer013_BUpdateUserData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchPlayerName; - uint32_t uScore; -}; -extern void cppISteamGameServer_SteamGameServer013_BUpdateUserData( struct cppISteamGameServer_SteamGameServer013_BUpdateUserData_params *params ); - -struct cppISteamGameServer_SteamGameServer013_GetAuthSessionTicket_params -{ - void *linux_side; - uint32_t _ret; - void *pTicket; - int32_t cbMaxTicket; - uint32_t *pcbTicket; -}; -extern void cppISteamGameServer_SteamGameServer013_GetAuthSessionTicket( struct cppISteamGameServer_SteamGameServer013_GetAuthSessionTicket_params *params ); - -struct cppISteamGameServer_SteamGameServer013_BeginAuthSession_params -{ - void *linux_side; - uint32_t _ret; - const void *pAuthTicket; - int32_t cbAuthTicket; - CSteamID steamID; -}; -extern void cppISteamGameServer_SteamGameServer013_BeginAuthSession( struct cppISteamGameServer_SteamGameServer013_BeginAuthSession_params *params ); - -struct cppISteamGameServer_SteamGameServer013_EndAuthSession_params -{ - void *linux_side; - CSteamID steamID; -}; -extern void cppISteamGameServer_SteamGameServer013_EndAuthSession( struct cppISteamGameServer_SteamGameServer013_EndAuthSession_params *params ); - -struct cppISteamGameServer_SteamGameServer013_CancelAuthTicket_params -{ - void *linux_side; - uint32_t hAuthTicket; -}; -extern void cppISteamGameServer_SteamGameServer013_CancelAuthTicket( struct cppISteamGameServer_SteamGameServer013_CancelAuthTicket_params *params ); - -struct cppISteamGameServer_SteamGameServer013_UserHasLicenseForApp_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamID; - uint32_t appID; -}; -extern void cppISteamGameServer_SteamGameServer013_UserHasLicenseForApp( struct cppISteamGameServer_SteamGameServer013_UserHasLicenseForApp_params *params ); - -struct cppISteamGameServer_SteamGameServer013_RequestUserGroupStatus_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - CSteamID steamIDGroup; -}; -extern void cppISteamGameServer_SteamGameServer013_RequestUserGroupStatus( struct cppISteamGameServer_SteamGameServer013_RequestUserGroupStatus_params *params ); - -struct cppISteamGameServer_SteamGameServer013_GetGameplayStats_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer013_GetGameplayStats( struct cppISteamGameServer_SteamGameServer013_GetGameplayStats_params *params ); - -struct cppISteamGameServer_SteamGameServer013_GetServerReputation_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamGameServer_SteamGameServer013_GetServerReputation( struct cppISteamGameServer_SteamGameServer013_GetServerReputation_params *params ); - -struct cppISteamGameServer_SteamGameServer013_GetPublicIP_params -{ - void *linux_side; - SteamIPAddress_t *_ret; -}; -extern void cppISteamGameServer_SteamGameServer013_GetPublicIP( struct cppISteamGameServer_SteamGameServer013_GetPublicIP_params *params ); - -struct cppISteamGameServer_SteamGameServer013_HandleIncomingPacket_params -{ - void *linux_side; - bool _ret; - const void *pData; - int32_t cbData; - uint32_t srcIP; - uint16_t srcPort; -}; -extern void cppISteamGameServer_SteamGameServer013_HandleIncomingPacket( struct cppISteamGameServer_SteamGameServer013_HandleIncomingPacket_params *params ); - -struct cppISteamGameServer_SteamGameServer013_GetNextOutgoingPacket_params -{ - void *linux_side; - int32_t _ret; - void *pOut; - int32_t cbMaxOut; - uint32_t *pNetAdr; - uint16_t *pPort; -}; -extern void cppISteamGameServer_SteamGameServer013_GetNextOutgoingPacket( struct cppISteamGameServer_SteamGameServer013_GetNextOutgoingPacket_params *params ); - -struct cppISteamGameServer_SteamGameServer013_EnableHeartbeats_params -{ - void *linux_side; - bool bActive; -}; -extern void cppISteamGameServer_SteamGameServer013_EnableHeartbeats( struct cppISteamGameServer_SteamGameServer013_EnableHeartbeats_params *params ); - -struct cppISteamGameServer_SteamGameServer013_SetHeartbeatInterval_params -{ - void *linux_side; - int32_t iHeartbeatInterval; -}; -extern void cppISteamGameServer_SteamGameServer013_SetHeartbeatInterval( struct cppISteamGameServer_SteamGameServer013_SetHeartbeatInterval_params *params ); - -struct cppISteamGameServer_SteamGameServer013_ForceHeartbeat_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer013_ForceHeartbeat( struct cppISteamGameServer_SteamGameServer013_ForceHeartbeat_params *params ); - -struct cppISteamGameServer_SteamGameServer013_AssociateWithClan_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamGameServer_SteamGameServer013_AssociateWithClan( struct cppISteamGameServer_SteamGameServer013_AssociateWithClan_params *params ); - -struct cppISteamGameServer_SteamGameServer013_ComputeNewPlayerCompatibility_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDNewPlayer; -}; -extern void cppISteamGameServer_SteamGameServer013_ComputeNewPlayerCompatibility( struct cppISteamGameServer_SteamGameServer013_ComputeNewPlayerCompatibility_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer014.cpp b/lsteamclient/cppISteamGameServer_SteamGameServer014.cpp index 90f82bd4..3e026a5b 100644 --- a/lsteamclient/cppISteamGameServer_SteamGameServer014.cpp +++ b/lsteamclient/cppISteamGameServer_SteamGameServer014.cpp @@ -1,268 +1,355 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamGameServer_SteamGameServer014.h" -void cppISteamGameServer_SteamGameServer014_InitGameServer( struct cppISteamGameServer_SteamGameServer014_InitGameServer_params *params ) +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; params->_ret = iface->InitGameServer( params->unIP, params->usGamePort, params->usQueryPort, params->unFlags, params->nGameAppId, params->pchVersionString ); + return 0; } -void cppISteamGameServer_SteamGameServer014_SetProduct( struct cppISteamGameServer_SteamGameServer014_SetProduct_params *params ) +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; iface->SetProduct( params->pszProduct ); + return 0; } -void cppISteamGameServer_SteamGameServer014_SetGameDescription( struct cppISteamGameServer_SteamGameServer014_SetGameDescription_params *params ) +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; iface->SetGameDescription( params->pszGameDescription ); + return 0; } -void cppISteamGameServer_SteamGameServer014_SetModDir( struct cppISteamGameServer_SteamGameServer014_SetModDir_params *params ) +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; iface->SetModDir( params->pszModDir ); + return 0; } -void cppISteamGameServer_SteamGameServer014_SetDedicatedServer( struct cppISteamGameServer_SteamGameServer014_SetDedicatedServer_params *params ) +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; iface->SetDedicatedServer( params->bDedicated ); + return 0; } -void cppISteamGameServer_SteamGameServer014_LogOn( struct cppISteamGameServer_SteamGameServer014_LogOn_params *params ) +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; iface->LogOn( params->pszToken ); + return 0; } -void cppISteamGameServer_SteamGameServer014_LogOnAnonymous( struct cppISteamGameServer_SteamGameServer014_LogOnAnonymous_params *params ) +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; iface->LogOnAnonymous( ); + return 0; } -void cppISteamGameServer_SteamGameServer014_LogOff( struct cppISteamGameServer_SteamGameServer014_LogOff_params *params ) +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; iface->LogOff( ); + return 0; } -void cppISteamGameServer_SteamGameServer014_BLoggedOn( struct cppISteamGameServer_SteamGameServer014_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamGameServer_SteamGameServer014_BSecure( struct cppISteamGameServer_SteamGameServer014_BSecure_params *params ) +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; params->_ret = iface->BSecure( ); + return 0; } -void cppISteamGameServer_SteamGameServer014_GetSteamID( struct cppISteamGameServer_SteamGameServer014_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamGameServer_SteamGameServer014_WasRestartRequested( struct cppISteamGameServer_SteamGameServer014_WasRestartRequested_params *params ) +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; params->_ret = iface->WasRestartRequested( ); + return 0; } -void cppISteamGameServer_SteamGameServer014_SetMaxPlayerCount( struct cppISteamGameServer_SteamGameServer014_SetMaxPlayerCount_params *params ) +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; iface->SetMaxPlayerCount( params->cPlayersMax ); + return 0; } -void cppISteamGameServer_SteamGameServer014_SetBotPlayerCount( struct cppISteamGameServer_SteamGameServer014_SetBotPlayerCount_params *params ) +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; iface->SetBotPlayerCount( params->cBotplayers ); + return 0; } -void cppISteamGameServer_SteamGameServer014_SetServerName( struct cppISteamGameServer_SteamGameServer014_SetServerName_params *params ) +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; iface->SetServerName( params->pszServerName ); + return 0; } -void cppISteamGameServer_SteamGameServer014_SetMapName( struct cppISteamGameServer_SteamGameServer014_SetMapName_params *params ) +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; iface->SetMapName( params->pszMapName ); + return 0; } -void cppISteamGameServer_SteamGameServer014_SetPasswordProtected( struct cppISteamGameServer_SteamGameServer014_SetPasswordProtected_params *params ) +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; iface->SetPasswordProtected( params->bPasswordProtected ); + return 0; } -void cppISteamGameServer_SteamGameServer014_SetSpectatorPort( struct cppISteamGameServer_SteamGameServer014_SetSpectatorPort_params *params ) +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; iface->SetSpectatorPort( params->unSpectatorPort ); + return 0; } -void cppISteamGameServer_SteamGameServer014_SetSpectatorServerName( struct cppISteamGameServer_SteamGameServer014_SetSpectatorServerName_params *params ) +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; iface->SetSpectatorServerName( params->pszSpectatorServerName ); + return 0; } -void cppISteamGameServer_SteamGameServer014_ClearAllKeyValues( struct cppISteamGameServer_SteamGameServer014_ClearAllKeyValues_params *params ) +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; iface->ClearAllKeyValues( ); + return 0; } -void cppISteamGameServer_SteamGameServer014_SetKeyValue( struct cppISteamGameServer_SteamGameServer014_SetKeyValue_params *params ) +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; iface->SetKeyValue( params->pKey, params->pValue ); + return 0; } -void cppISteamGameServer_SteamGameServer014_SetGameTags( struct cppISteamGameServer_SteamGameServer014_SetGameTags_params *params ) +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; iface->SetGameTags( params->pchGameTags ); + return 0; } -void cppISteamGameServer_SteamGameServer014_SetGameData( struct cppISteamGameServer_SteamGameServer014_SetGameData_params *params ) +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; iface->SetGameData( params->pchGameData ); + return 0; } -void cppISteamGameServer_SteamGameServer014_SetRegion( struct cppISteamGameServer_SteamGameServer014_SetRegion_params *params ) +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; iface->SetRegion( params->pszRegion ); + return 0; } -void cppISteamGameServer_SteamGameServer014_SetAdvertiseServerActive( struct cppISteamGameServer_SteamGameServer014_SetAdvertiseServerActive_params *params ) +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; iface->SetAdvertiseServerActive( params->bActive ); + return 0; } -void cppISteamGameServer_SteamGameServer014_GetAuthSessionTicket( struct cppISteamGameServer_SteamGameServer014_GetAuthSessionTicket_params *params ) +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; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); + return 0; } -void cppISteamGameServer_SteamGameServer014_BeginAuthSession( struct cppISteamGameServer_SteamGameServer014_BeginAuthSession_params *params ) +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; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); + return 0; } -void cppISteamGameServer_SteamGameServer014_EndAuthSession( struct cppISteamGameServer_SteamGameServer014_EndAuthSession_params *params ) +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; iface->EndAuthSession( params->steamID ); + return 0; } -void cppISteamGameServer_SteamGameServer014_CancelAuthTicket( struct cppISteamGameServer_SteamGameServer014_CancelAuthTicket_params *params ) +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; iface->CancelAuthTicket( params->hAuthTicket ); + return 0; } -void cppISteamGameServer_SteamGameServer014_UserHasLicenseForApp( struct cppISteamGameServer_SteamGameServer014_UserHasLicenseForApp_params *params ) +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; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); + return 0; } -void cppISteamGameServer_SteamGameServer014_RequestUserGroupStatus( struct cppISteamGameServer_SteamGameServer014_RequestUserGroupStatus_params *params ) +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; params->_ret = iface->RequestUserGroupStatus( params->steamIDUser, params->steamIDGroup ); + return 0; } -void cppISteamGameServer_SteamGameServer014_GetGameplayStats( struct cppISteamGameServer_SteamGameServer014_GetGameplayStats_params *params ) +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; iface->GetGameplayStats( ); + return 0; } -void cppISteamGameServer_SteamGameServer014_GetServerReputation( struct cppISteamGameServer_SteamGameServer014_GetServerReputation_params *params ) +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; params->_ret = iface->GetServerReputation( ); + return 0; } -void cppISteamGameServer_SteamGameServer014_GetPublicIP( struct cppISteamGameServer_SteamGameServer014_GetPublicIP_params *params ) +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; *params->_ret = iface->GetPublicIP( ); + return 0; } -void cppISteamGameServer_SteamGameServer014_HandleIncomingPacket( struct cppISteamGameServer_SteamGameServer014_HandleIncomingPacket_params *params ) +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; params->_ret = iface->HandleIncomingPacket( params->pData, params->cbData, params->srcIP, params->srcPort ); + return 0; } -void cppISteamGameServer_SteamGameServer014_GetNextOutgoingPacket( struct cppISteamGameServer_SteamGameServer014_GetNextOutgoingPacket_params *params ) +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; params->_ret = iface->GetNextOutgoingPacket( params->pOut, params->cbMaxOut, params->pNetAdr, params->pPort ); + return 0; } -void cppISteamGameServer_SteamGameServer014_AssociateWithClan( struct cppISteamGameServer_SteamGameServer014_AssociateWithClan_params *params ) +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; params->_ret = iface->AssociateWithClan( params->steamIDClan ); + return 0; } -void cppISteamGameServer_SteamGameServer014_ComputeNewPlayerCompatibility( struct cppISteamGameServer_SteamGameServer014_ComputeNewPlayerCompatibility_params *params ) +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; params->_ret = iface->ComputeNewPlayerCompatibility( params->steamIDNewPlayer ); + return 0; } -void cppISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEPRECATED( struct cppISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEPRECATED_params *params ) +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; params->_ret = iface->SendUserConnectAndAuthenticate_DEPRECATED( params->unIPClient, params->pvAuthBlob, params->cubAuthBlobSize, params->pSteamIDUser ); + return 0; } -void cppISteamGameServer_SteamGameServer014_CreateUnauthenticatedUserConnection( struct cppISteamGameServer_SteamGameServer014_CreateUnauthenticatedUserConnection_params *params ) +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; *params->_ret = iface->CreateUnauthenticatedUserConnection( ); + return 0; } -void cppISteamGameServer_SteamGameServer014_SendUserDisconnect_DEPRECATED( struct cppISteamGameServer_SteamGameServer014_SendUserDisconnect_DEPRECATED_params *params ) +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; iface->SendUserDisconnect_DEPRECATED( params->steamIDUser ); + return 0; } -void cppISteamGameServer_SteamGameServer014_BUpdateUserData( struct cppISteamGameServer_SteamGameServer014_BUpdateUserData_params *params ) +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; params->_ret = iface->BUpdateUserData( params->steamIDUser, params->pchPlayerName, params->uScore ); + return 0; } -void cppISteamGameServer_SteamGameServer014_SetMasterServerHeartbeatInterval_DEPRECATED( struct cppISteamGameServer_SteamGameServer014_SetMasterServerHeartbeatInterval_DEPRECATED_params *params ) +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; iface->SetMasterServerHeartbeatInterval_DEPRECATED( params->iHeartbeatInterval ); + return 0; } -void cppISteamGameServer_SteamGameServer014_ForceMasterServerHeartbeat_DEPRECATED( struct cppISteamGameServer_SteamGameServer014_ForceMasterServerHeartbeat_DEPRECATED_params *params ) +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; iface->ForceMasterServerHeartbeat_DEPRECATED( ); + return 0; } diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer014.h b/lsteamclient/cppISteamGameServer_SteamGameServer014.h deleted file mode 100644 index bf22c736..00000000 --- a/lsteamclient/cppISteamGameServer_SteamGameServer014.h +++ /dev/null @@ -1,349 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamGameServer_SteamGameServer014_InitGameServer_params -{ - void *linux_side; - bool _ret; - uint32_t unIP; - uint16_t usGamePort; - uint16_t usQueryPort; - uint32_t unFlags; - uint32_t nGameAppId; - const char *pchVersionString; -}; -extern void cppISteamGameServer_SteamGameServer014_InitGameServer( struct cppISteamGameServer_SteamGameServer014_InitGameServer_params *params ); - -struct cppISteamGameServer_SteamGameServer014_SetProduct_params -{ - void *linux_side; - const char *pszProduct; -}; -extern void cppISteamGameServer_SteamGameServer014_SetProduct( struct cppISteamGameServer_SteamGameServer014_SetProduct_params *params ); - -struct cppISteamGameServer_SteamGameServer014_SetGameDescription_params -{ - void *linux_side; - const char *pszGameDescription; -}; -extern void cppISteamGameServer_SteamGameServer014_SetGameDescription( struct cppISteamGameServer_SteamGameServer014_SetGameDescription_params *params ); - -struct cppISteamGameServer_SteamGameServer014_SetModDir_params -{ - void *linux_side; - const char *pszModDir; -}; -extern void cppISteamGameServer_SteamGameServer014_SetModDir( struct cppISteamGameServer_SteamGameServer014_SetModDir_params *params ); - -struct cppISteamGameServer_SteamGameServer014_SetDedicatedServer_params -{ - void *linux_side; - bool bDedicated; -}; -extern void cppISteamGameServer_SteamGameServer014_SetDedicatedServer( struct cppISteamGameServer_SteamGameServer014_SetDedicatedServer_params *params ); - -struct cppISteamGameServer_SteamGameServer014_LogOn_params -{ - void *linux_side; - const char *pszToken; -}; -extern void cppISteamGameServer_SteamGameServer014_LogOn( struct cppISteamGameServer_SteamGameServer014_LogOn_params *params ); - -struct cppISteamGameServer_SteamGameServer014_LogOnAnonymous_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer014_LogOnAnonymous( struct cppISteamGameServer_SteamGameServer014_LogOnAnonymous_params *params ); - -struct cppISteamGameServer_SteamGameServer014_LogOff_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer014_LogOff( struct cppISteamGameServer_SteamGameServer014_LogOff_params *params ); - -struct cppISteamGameServer_SteamGameServer014_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamGameServer_SteamGameServer014_BLoggedOn( struct cppISteamGameServer_SteamGameServer014_BLoggedOn_params *params ); - -struct cppISteamGameServer_SteamGameServer014_BSecure_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamGameServer_SteamGameServer014_BSecure( struct cppISteamGameServer_SteamGameServer014_BSecure_params *params ); - -struct cppISteamGameServer_SteamGameServer014_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamGameServer_SteamGameServer014_GetSteamID( struct cppISteamGameServer_SteamGameServer014_GetSteamID_params *params ); - -struct cppISteamGameServer_SteamGameServer014_WasRestartRequested_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamGameServer_SteamGameServer014_WasRestartRequested( struct cppISteamGameServer_SteamGameServer014_WasRestartRequested_params *params ); - -struct cppISteamGameServer_SteamGameServer014_SetMaxPlayerCount_params -{ - void *linux_side; - int32_t cPlayersMax; -}; -extern void cppISteamGameServer_SteamGameServer014_SetMaxPlayerCount( struct cppISteamGameServer_SteamGameServer014_SetMaxPlayerCount_params *params ); - -struct cppISteamGameServer_SteamGameServer014_SetBotPlayerCount_params -{ - void *linux_side; - int32_t cBotplayers; -}; -extern void cppISteamGameServer_SteamGameServer014_SetBotPlayerCount( struct cppISteamGameServer_SteamGameServer014_SetBotPlayerCount_params *params ); - -struct cppISteamGameServer_SteamGameServer014_SetServerName_params -{ - void *linux_side; - const char *pszServerName; -}; -extern void cppISteamGameServer_SteamGameServer014_SetServerName( struct cppISteamGameServer_SteamGameServer014_SetServerName_params *params ); - -struct cppISteamGameServer_SteamGameServer014_SetMapName_params -{ - void *linux_side; - const char *pszMapName; -}; -extern void cppISteamGameServer_SteamGameServer014_SetMapName( struct cppISteamGameServer_SteamGameServer014_SetMapName_params *params ); - -struct cppISteamGameServer_SteamGameServer014_SetPasswordProtected_params -{ - void *linux_side; - bool bPasswordProtected; -}; -extern void cppISteamGameServer_SteamGameServer014_SetPasswordProtected( struct cppISteamGameServer_SteamGameServer014_SetPasswordProtected_params *params ); - -struct cppISteamGameServer_SteamGameServer014_SetSpectatorPort_params -{ - void *linux_side; - uint16_t unSpectatorPort; -}; -extern void cppISteamGameServer_SteamGameServer014_SetSpectatorPort( struct cppISteamGameServer_SteamGameServer014_SetSpectatorPort_params *params ); - -struct cppISteamGameServer_SteamGameServer014_SetSpectatorServerName_params -{ - void *linux_side; - const char *pszSpectatorServerName; -}; -extern void cppISteamGameServer_SteamGameServer014_SetSpectatorServerName( struct cppISteamGameServer_SteamGameServer014_SetSpectatorServerName_params *params ); - -struct cppISteamGameServer_SteamGameServer014_ClearAllKeyValues_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer014_ClearAllKeyValues( struct cppISteamGameServer_SteamGameServer014_ClearAllKeyValues_params *params ); - -struct cppISteamGameServer_SteamGameServer014_SetKeyValue_params -{ - void *linux_side; - const char *pKey; - const char *pValue; -}; -extern void cppISteamGameServer_SteamGameServer014_SetKeyValue( struct cppISteamGameServer_SteamGameServer014_SetKeyValue_params *params ); - -struct cppISteamGameServer_SteamGameServer014_SetGameTags_params -{ - void *linux_side; - const char *pchGameTags; -}; -extern void cppISteamGameServer_SteamGameServer014_SetGameTags( struct cppISteamGameServer_SteamGameServer014_SetGameTags_params *params ); - -struct cppISteamGameServer_SteamGameServer014_SetGameData_params -{ - void *linux_side; - const char *pchGameData; -}; -extern void cppISteamGameServer_SteamGameServer014_SetGameData( struct cppISteamGameServer_SteamGameServer014_SetGameData_params *params ); - -struct cppISteamGameServer_SteamGameServer014_SetRegion_params -{ - void *linux_side; - const char *pszRegion; -}; -extern void cppISteamGameServer_SteamGameServer014_SetRegion( struct cppISteamGameServer_SteamGameServer014_SetRegion_params *params ); - -struct cppISteamGameServer_SteamGameServer014_SetAdvertiseServerActive_params -{ - void *linux_side; - bool bActive; -}; -extern void cppISteamGameServer_SteamGameServer014_SetAdvertiseServerActive( struct cppISteamGameServer_SteamGameServer014_SetAdvertiseServerActive_params *params ); - -struct cppISteamGameServer_SteamGameServer014_GetAuthSessionTicket_params -{ - void *linux_side; - uint32_t _ret; - void *pTicket; - int32_t cbMaxTicket; - uint32_t *pcbTicket; -}; -extern void cppISteamGameServer_SteamGameServer014_GetAuthSessionTicket( struct cppISteamGameServer_SteamGameServer014_GetAuthSessionTicket_params *params ); - -struct cppISteamGameServer_SteamGameServer014_BeginAuthSession_params -{ - void *linux_side; - uint32_t _ret; - const void *pAuthTicket; - int32_t cbAuthTicket; - CSteamID steamID; -}; -extern void cppISteamGameServer_SteamGameServer014_BeginAuthSession( struct cppISteamGameServer_SteamGameServer014_BeginAuthSession_params *params ); - -struct cppISteamGameServer_SteamGameServer014_EndAuthSession_params -{ - void *linux_side; - CSteamID steamID; -}; -extern void cppISteamGameServer_SteamGameServer014_EndAuthSession( struct cppISteamGameServer_SteamGameServer014_EndAuthSession_params *params ); - -struct cppISteamGameServer_SteamGameServer014_CancelAuthTicket_params -{ - void *linux_side; - uint32_t hAuthTicket; -}; -extern void cppISteamGameServer_SteamGameServer014_CancelAuthTicket( struct cppISteamGameServer_SteamGameServer014_CancelAuthTicket_params *params ); - -struct cppISteamGameServer_SteamGameServer014_UserHasLicenseForApp_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamID; - uint32_t appID; -}; -extern void cppISteamGameServer_SteamGameServer014_UserHasLicenseForApp( struct cppISteamGameServer_SteamGameServer014_UserHasLicenseForApp_params *params ); - -struct cppISteamGameServer_SteamGameServer014_RequestUserGroupStatus_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - CSteamID steamIDGroup; -}; -extern void cppISteamGameServer_SteamGameServer014_RequestUserGroupStatus( struct cppISteamGameServer_SteamGameServer014_RequestUserGroupStatus_params *params ); - -struct cppISteamGameServer_SteamGameServer014_GetGameplayStats_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer014_GetGameplayStats( struct cppISteamGameServer_SteamGameServer014_GetGameplayStats_params *params ); - -struct cppISteamGameServer_SteamGameServer014_GetServerReputation_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamGameServer_SteamGameServer014_GetServerReputation( struct cppISteamGameServer_SteamGameServer014_GetServerReputation_params *params ); - -struct cppISteamGameServer_SteamGameServer014_GetPublicIP_params -{ - void *linux_side; - SteamIPAddress_t *_ret; -}; -extern void cppISteamGameServer_SteamGameServer014_GetPublicIP( struct cppISteamGameServer_SteamGameServer014_GetPublicIP_params *params ); - -struct cppISteamGameServer_SteamGameServer014_HandleIncomingPacket_params -{ - void *linux_side; - bool _ret; - const void *pData; - int32_t cbData; - uint32_t srcIP; - uint16_t srcPort; -}; -extern void cppISteamGameServer_SteamGameServer014_HandleIncomingPacket( struct cppISteamGameServer_SteamGameServer014_HandleIncomingPacket_params *params ); - -struct cppISteamGameServer_SteamGameServer014_GetNextOutgoingPacket_params -{ - void *linux_side; - int32_t _ret; - void *pOut; - int32_t cbMaxOut; - uint32_t *pNetAdr; - uint16_t *pPort; -}; -extern void cppISteamGameServer_SteamGameServer014_GetNextOutgoingPacket( struct cppISteamGameServer_SteamGameServer014_GetNextOutgoingPacket_params *params ); - -struct cppISteamGameServer_SteamGameServer014_AssociateWithClan_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamGameServer_SteamGameServer014_AssociateWithClan( struct cppISteamGameServer_SteamGameServer014_AssociateWithClan_params *params ); - -struct cppISteamGameServer_SteamGameServer014_ComputeNewPlayerCompatibility_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDNewPlayer; -}; -extern void cppISteamGameServer_SteamGameServer014_ComputeNewPlayerCompatibility( struct cppISteamGameServer_SteamGameServer014_ComputeNewPlayerCompatibility_params *params ); - -struct cppISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEPRECATED_params -{ - void *linux_side; - bool _ret; - uint32_t unIPClient; - const void *pvAuthBlob; - uint32_t cubAuthBlobSize; - CSteamID *pSteamIDUser; -}; -extern void cppISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEPRECATED( struct cppISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEPRECATED_params *params ); - -struct cppISteamGameServer_SteamGameServer014_CreateUnauthenticatedUserConnection_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamGameServer_SteamGameServer014_CreateUnauthenticatedUserConnection( struct cppISteamGameServer_SteamGameServer014_CreateUnauthenticatedUserConnection_params *params ); - -struct cppISteamGameServer_SteamGameServer014_SendUserDisconnect_DEPRECATED_params -{ - void *linux_side; - CSteamID steamIDUser; -}; -extern void cppISteamGameServer_SteamGameServer014_SendUserDisconnect_DEPRECATED( struct cppISteamGameServer_SteamGameServer014_SendUserDisconnect_DEPRECATED_params *params ); - -struct cppISteamGameServer_SteamGameServer014_BUpdateUserData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchPlayerName; - uint32_t uScore; -}; -extern void cppISteamGameServer_SteamGameServer014_BUpdateUserData( struct cppISteamGameServer_SteamGameServer014_BUpdateUserData_params *params ); - -struct cppISteamGameServer_SteamGameServer014_SetMasterServerHeartbeatInterval_DEPRECATED_params -{ - void *linux_side; - int32_t iHeartbeatInterval; -}; -extern void cppISteamGameServer_SteamGameServer014_SetMasterServerHeartbeatInterval_DEPRECATED( struct cppISteamGameServer_SteamGameServer014_SetMasterServerHeartbeatInterval_DEPRECATED_params *params ); - -struct cppISteamGameServer_SteamGameServer014_ForceMasterServerHeartbeat_DEPRECATED_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer014_ForceMasterServerHeartbeat_DEPRECATED( struct cppISteamGameServer_SteamGameServer014_ForceMasterServerHeartbeat_DEPRECATED_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer015.cpp b/lsteamclient/cppISteamGameServer_SteamGameServer015.cpp index 6bf715be..64fe0520 100644 --- a/lsteamclient/cppISteamGameServer_SteamGameServer015.cpp +++ b/lsteamclient/cppISteamGameServer_SteamGameServer015.cpp @@ -1,268 +1,355 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamGameServer_SteamGameServer015.h" -void cppISteamGameServer_SteamGameServer015_InitGameServer( struct cppISteamGameServer_SteamGameServer015_InitGameServer_params *params ) +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; params->_ret = iface->InitGameServer( params->unIP, params->usGamePort, params->usQueryPort, params->unFlags, params->nGameAppId, params->pchVersionString ); + return 0; } -void cppISteamGameServer_SteamGameServer015_SetProduct( struct cppISteamGameServer_SteamGameServer015_SetProduct_params *params ) +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; iface->SetProduct( params->pszProduct ); + return 0; } -void cppISteamGameServer_SteamGameServer015_SetGameDescription( struct cppISteamGameServer_SteamGameServer015_SetGameDescription_params *params ) +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; iface->SetGameDescription( params->pszGameDescription ); + return 0; } -void cppISteamGameServer_SteamGameServer015_SetModDir( struct cppISteamGameServer_SteamGameServer015_SetModDir_params *params ) +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; iface->SetModDir( params->pszModDir ); + return 0; } -void cppISteamGameServer_SteamGameServer015_SetDedicatedServer( struct cppISteamGameServer_SteamGameServer015_SetDedicatedServer_params *params ) +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; iface->SetDedicatedServer( params->bDedicated ); + return 0; } -void cppISteamGameServer_SteamGameServer015_LogOn( struct cppISteamGameServer_SteamGameServer015_LogOn_params *params ) +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; iface->LogOn( params->pszToken ); + return 0; } -void cppISteamGameServer_SteamGameServer015_LogOnAnonymous( struct cppISteamGameServer_SteamGameServer015_LogOnAnonymous_params *params ) +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; iface->LogOnAnonymous( ); + return 0; } -void cppISteamGameServer_SteamGameServer015_LogOff( struct cppISteamGameServer_SteamGameServer015_LogOff_params *params ) +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; iface->LogOff( ); + return 0; } -void cppISteamGameServer_SteamGameServer015_BLoggedOn( struct cppISteamGameServer_SteamGameServer015_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamGameServer_SteamGameServer015_BSecure( struct cppISteamGameServer_SteamGameServer015_BSecure_params *params ) +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; params->_ret = iface->BSecure( ); + return 0; } -void cppISteamGameServer_SteamGameServer015_GetSteamID( struct cppISteamGameServer_SteamGameServer015_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamGameServer_SteamGameServer015_WasRestartRequested( struct cppISteamGameServer_SteamGameServer015_WasRestartRequested_params *params ) +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; params->_ret = iface->WasRestartRequested( ); + return 0; } -void cppISteamGameServer_SteamGameServer015_SetMaxPlayerCount( struct cppISteamGameServer_SteamGameServer015_SetMaxPlayerCount_params *params ) +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; iface->SetMaxPlayerCount( params->cPlayersMax ); + return 0; } -void cppISteamGameServer_SteamGameServer015_SetBotPlayerCount( struct cppISteamGameServer_SteamGameServer015_SetBotPlayerCount_params *params ) +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; iface->SetBotPlayerCount( params->cBotplayers ); + return 0; } -void cppISteamGameServer_SteamGameServer015_SetServerName( struct cppISteamGameServer_SteamGameServer015_SetServerName_params *params ) +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; iface->SetServerName( params->pszServerName ); + return 0; } -void cppISteamGameServer_SteamGameServer015_SetMapName( struct cppISteamGameServer_SteamGameServer015_SetMapName_params *params ) +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; iface->SetMapName( params->pszMapName ); + return 0; } -void cppISteamGameServer_SteamGameServer015_SetPasswordProtected( struct cppISteamGameServer_SteamGameServer015_SetPasswordProtected_params *params ) +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; iface->SetPasswordProtected( params->bPasswordProtected ); + return 0; } -void cppISteamGameServer_SteamGameServer015_SetSpectatorPort( struct cppISteamGameServer_SteamGameServer015_SetSpectatorPort_params *params ) +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; iface->SetSpectatorPort( params->unSpectatorPort ); + return 0; } -void cppISteamGameServer_SteamGameServer015_SetSpectatorServerName( struct cppISteamGameServer_SteamGameServer015_SetSpectatorServerName_params *params ) +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; iface->SetSpectatorServerName( params->pszSpectatorServerName ); + return 0; } -void cppISteamGameServer_SteamGameServer015_ClearAllKeyValues( struct cppISteamGameServer_SteamGameServer015_ClearAllKeyValues_params *params ) +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; iface->ClearAllKeyValues( ); + return 0; } -void cppISteamGameServer_SteamGameServer015_SetKeyValue( struct cppISteamGameServer_SteamGameServer015_SetKeyValue_params *params ) +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; iface->SetKeyValue( params->pKey, params->pValue ); + return 0; } -void cppISteamGameServer_SteamGameServer015_SetGameTags( struct cppISteamGameServer_SteamGameServer015_SetGameTags_params *params ) +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; iface->SetGameTags( params->pchGameTags ); + return 0; } -void cppISteamGameServer_SteamGameServer015_SetGameData( struct cppISteamGameServer_SteamGameServer015_SetGameData_params *params ) +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; iface->SetGameData( params->pchGameData ); + return 0; } -void cppISteamGameServer_SteamGameServer015_SetRegion( struct cppISteamGameServer_SteamGameServer015_SetRegion_params *params ) +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; iface->SetRegion( params->pszRegion ); + return 0; } -void cppISteamGameServer_SteamGameServer015_SetAdvertiseServerActive( struct cppISteamGameServer_SteamGameServer015_SetAdvertiseServerActive_params *params ) +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; iface->SetAdvertiseServerActive( params->bActive ); + return 0; } -void cppISteamGameServer_SteamGameServer015_GetAuthSessionTicket( struct cppISteamGameServer_SteamGameServer015_GetAuthSessionTicket_params *params ) +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; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket, params->pSnid ); + return 0; } -void cppISteamGameServer_SteamGameServer015_BeginAuthSession( struct cppISteamGameServer_SteamGameServer015_BeginAuthSession_params *params ) +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; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); + return 0; } -void cppISteamGameServer_SteamGameServer015_EndAuthSession( struct cppISteamGameServer_SteamGameServer015_EndAuthSession_params *params ) +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; iface->EndAuthSession( params->steamID ); + return 0; } -void cppISteamGameServer_SteamGameServer015_CancelAuthTicket( struct cppISteamGameServer_SteamGameServer015_CancelAuthTicket_params *params ) +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; iface->CancelAuthTicket( params->hAuthTicket ); + return 0; } -void cppISteamGameServer_SteamGameServer015_UserHasLicenseForApp( struct cppISteamGameServer_SteamGameServer015_UserHasLicenseForApp_params *params ) +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; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); + return 0; } -void cppISteamGameServer_SteamGameServer015_RequestUserGroupStatus( struct cppISteamGameServer_SteamGameServer015_RequestUserGroupStatus_params *params ) +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; params->_ret = iface->RequestUserGroupStatus( params->steamIDUser, params->steamIDGroup ); + return 0; } -void cppISteamGameServer_SteamGameServer015_GetGameplayStats( struct cppISteamGameServer_SteamGameServer015_GetGameplayStats_params *params ) +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; iface->GetGameplayStats( ); + return 0; } -void cppISteamGameServer_SteamGameServer015_GetServerReputation( struct cppISteamGameServer_SteamGameServer015_GetServerReputation_params *params ) +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; params->_ret = iface->GetServerReputation( ); + return 0; } -void cppISteamGameServer_SteamGameServer015_GetPublicIP( struct cppISteamGameServer_SteamGameServer015_GetPublicIP_params *params ) +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; *params->_ret = iface->GetPublicIP( ); + return 0; } -void cppISteamGameServer_SteamGameServer015_HandleIncomingPacket( struct cppISteamGameServer_SteamGameServer015_HandleIncomingPacket_params *params ) +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; params->_ret = iface->HandleIncomingPacket( params->pData, params->cbData, params->srcIP, params->srcPort ); + return 0; } -void cppISteamGameServer_SteamGameServer015_GetNextOutgoingPacket( struct cppISteamGameServer_SteamGameServer015_GetNextOutgoingPacket_params *params ) +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; params->_ret = iface->GetNextOutgoingPacket( params->pOut, params->cbMaxOut, params->pNetAdr, params->pPort ); + return 0; } -void cppISteamGameServer_SteamGameServer015_AssociateWithClan( struct cppISteamGameServer_SteamGameServer015_AssociateWithClan_params *params ) +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; params->_ret = iface->AssociateWithClan( params->steamIDClan ); + return 0; } -void cppISteamGameServer_SteamGameServer015_ComputeNewPlayerCompatibility( struct cppISteamGameServer_SteamGameServer015_ComputeNewPlayerCompatibility_params *params ) +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; params->_ret = iface->ComputeNewPlayerCompatibility( params->steamIDNewPlayer ); + return 0; } -void cppISteamGameServer_SteamGameServer015_SendUserConnectAndAuthenticate_DEPRECATED( struct cppISteamGameServer_SteamGameServer015_SendUserConnectAndAuthenticate_DEPRECATED_params *params ) +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; params->_ret = iface->SendUserConnectAndAuthenticate_DEPRECATED( params->unIPClient, params->pvAuthBlob, params->cubAuthBlobSize, params->pSteamIDUser ); + return 0; } -void cppISteamGameServer_SteamGameServer015_CreateUnauthenticatedUserConnection( struct cppISteamGameServer_SteamGameServer015_CreateUnauthenticatedUserConnection_params *params ) +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; *params->_ret = iface->CreateUnauthenticatedUserConnection( ); + return 0; } -void cppISteamGameServer_SteamGameServer015_SendUserDisconnect_DEPRECATED( struct cppISteamGameServer_SteamGameServer015_SendUserDisconnect_DEPRECATED_params *params ) +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; iface->SendUserDisconnect_DEPRECATED( params->steamIDUser ); + return 0; } -void cppISteamGameServer_SteamGameServer015_BUpdateUserData( struct cppISteamGameServer_SteamGameServer015_BUpdateUserData_params *params ) +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; params->_ret = iface->BUpdateUserData( params->steamIDUser, params->pchPlayerName, params->uScore ); + return 0; } -void cppISteamGameServer_SteamGameServer015_SetMasterServerHeartbeatInterval_DEPRECATED( struct cppISteamGameServer_SteamGameServer015_SetMasterServerHeartbeatInterval_DEPRECATED_params *params ) +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; iface->SetMasterServerHeartbeatInterval_DEPRECATED( params->iHeartbeatInterval ); + return 0; } -void cppISteamGameServer_SteamGameServer015_ForceMasterServerHeartbeat_DEPRECATED( struct cppISteamGameServer_SteamGameServer015_ForceMasterServerHeartbeat_DEPRECATED_params *params ) +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; iface->ForceMasterServerHeartbeat_DEPRECATED( ); + return 0; } diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer015.h b/lsteamclient/cppISteamGameServer_SteamGameServer015.h deleted file mode 100644 index 4b4ba70f..00000000 --- a/lsteamclient/cppISteamGameServer_SteamGameServer015.h +++ /dev/null @@ -1,350 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamGameServer_SteamGameServer015_InitGameServer_params -{ - void *linux_side; - bool _ret; - uint32_t unIP; - uint16_t usGamePort; - uint16_t usQueryPort; - uint32_t unFlags; - uint32_t nGameAppId; - const char *pchVersionString; -}; -extern void cppISteamGameServer_SteamGameServer015_InitGameServer( struct cppISteamGameServer_SteamGameServer015_InitGameServer_params *params ); - -struct cppISteamGameServer_SteamGameServer015_SetProduct_params -{ - void *linux_side; - const char *pszProduct; -}; -extern void cppISteamGameServer_SteamGameServer015_SetProduct( struct cppISteamGameServer_SteamGameServer015_SetProduct_params *params ); - -struct cppISteamGameServer_SteamGameServer015_SetGameDescription_params -{ - void *linux_side; - const char *pszGameDescription; -}; -extern void cppISteamGameServer_SteamGameServer015_SetGameDescription( struct cppISteamGameServer_SteamGameServer015_SetGameDescription_params *params ); - -struct cppISteamGameServer_SteamGameServer015_SetModDir_params -{ - void *linux_side; - const char *pszModDir; -}; -extern void cppISteamGameServer_SteamGameServer015_SetModDir( struct cppISteamGameServer_SteamGameServer015_SetModDir_params *params ); - -struct cppISteamGameServer_SteamGameServer015_SetDedicatedServer_params -{ - void *linux_side; - bool bDedicated; -}; -extern void cppISteamGameServer_SteamGameServer015_SetDedicatedServer( struct cppISteamGameServer_SteamGameServer015_SetDedicatedServer_params *params ); - -struct cppISteamGameServer_SteamGameServer015_LogOn_params -{ - void *linux_side; - const char *pszToken; -}; -extern void cppISteamGameServer_SteamGameServer015_LogOn( struct cppISteamGameServer_SteamGameServer015_LogOn_params *params ); - -struct cppISteamGameServer_SteamGameServer015_LogOnAnonymous_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer015_LogOnAnonymous( struct cppISteamGameServer_SteamGameServer015_LogOnAnonymous_params *params ); - -struct cppISteamGameServer_SteamGameServer015_LogOff_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer015_LogOff( struct cppISteamGameServer_SteamGameServer015_LogOff_params *params ); - -struct cppISteamGameServer_SteamGameServer015_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamGameServer_SteamGameServer015_BLoggedOn( struct cppISteamGameServer_SteamGameServer015_BLoggedOn_params *params ); - -struct cppISteamGameServer_SteamGameServer015_BSecure_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamGameServer_SteamGameServer015_BSecure( struct cppISteamGameServer_SteamGameServer015_BSecure_params *params ); - -struct cppISteamGameServer_SteamGameServer015_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamGameServer_SteamGameServer015_GetSteamID( struct cppISteamGameServer_SteamGameServer015_GetSteamID_params *params ); - -struct cppISteamGameServer_SteamGameServer015_WasRestartRequested_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamGameServer_SteamGameServer015_WasRestartRequested( struct cppISteamGameServer_SteamGameServer015_WasRestartRequested_params *params ); - -struct cppISteamGameServer_SteamGameServer015_SetMaxPlayerCount_params -{ - void *linux_side; - int32_t cPlayersMax; -}; -extern void cppISteamGameServer_SteamGameServer015_SetMaxPlayerCount( struct cppISteamGameServer_SteamGameServer015_SetMaxPlayerCount_params *params ); - -struct cppISteamGameServer_SteamGameServer015_SetBotPlayerCount_params -{ - void *linux_side; - int32_t cBotplayers; -}; -extern void cppISteamGameServer_SteamGameServer015_SetBotPlayerCount( struct cppISteamGameServer_SteamGameServer015_SetBotPlayerCount_params *params ); - -struct cppISteamGameServer_SteamGameServer015_SetServerName_params -{ - void *linux_side; - const char *pszServerName; -}; -extern void cppISteamGameServer_SteamGameServer015_SetServerName( struct cppISteamGameServer_SteamGameServer015_SetServerName_params *params ); - -struct cppISteamGameServer_SteamGameServer015_SetMapName_params -{ - void *linux_side; - const char *pszMapName; -}; -extern void cppISteamGameServer_SteamGameServer015_SetMapName( struct cppISteamGameServer_SteamGameServer015_SetMapName_params *params ); - -struct cppISteamGameServer_SteamGameServer015_SetPasswordProtected_params -{ - void *linux_side; - bool bPasswordProtected; -}; -extern void cppISteamGameServer_SteamGameServer015_SetPasswordProtected( struct cppISteamGameServer_SteamGameServer015_SetPasswordProtected_params *params ); - -struct cppISteamGameServer_SteamGameServer015_SetSpectatorPort_params -{ - void *linux_side; - uint16_t unSpectatorPort; -}; -extern void cppISteamGameServer_SteamGameServer015_SetSpectatorPort( struct cppISteamGameServer_SteamGameServer015_SetSpectatorPort_params *params ); - -struct cppISteamGameServer_SteamGameServer015_SetSpectatorServerName_params -{ - void *linux_side; - const char *pszSpectatorServerName; -}; -extern void cppISteamGameServer_SteamGameServer015_SetSpectatorServerName( struct cppISteamGameServer_SteamGameServer015_SetSpectatorServerName_params *params ); - -struct cppISteamGameServer_SteamGameServer015_ClearAllKeyValues_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer015_ClearAllKeyValues( struct cppISteamGameServer_SteamGameServer015_ClearAllKeyValues_params *params ); - -struct cppISteamGameServer_SteamGameServer015_SetKeyValue_params -{ - void *linux_side; - const char *pKey; - const char *pValue; -}; -extern void cppISteamGameServer_SteamGameServer015_SetKeyValue( struct cppISteamGameServer_SteamGameServer015_SetKeyValue_params *params ); - -struct cppISteamGameServer_SteamGameServer015_SetGameTags_params -{ - void *linux_side; - const char *pchGameTags; -}; -extern void cppISteamGameServer_SteamGameServer015_SetGameTags( struct cppISteamGameServer_SteamGameServer015_SetGameTags_params *params ); - -struct cppISteamGameServer_SteamGameServer015_SetGameData_params -{ - void *linux_side; - const char *pchGameData; -}; -extern void cppISteamGameServer_SteamGameServer015_SetGameData( struct cppISteamGameServer_SteamGameServer015_SetGameData_params *params ); - -struct cppISteamGameServer_SteamGameServer015_SetRegion_params -{ - void *linux_side; - const char *pszRegion; -}; -extern void cppISteamGameServer_SteamGameServer015_SetRegion( struct cppISteamGameServer_SteamGameServer015_SetRegion_params *params ); - -struct cppISteamGameServer_SteamGameServer015_SetAdvertiseServerActive_params -{ - void *linux_side; - bool bActive; -}; -extern void cppISteamGameServer_SteamGameServer015_SetAdvertiseServerActive( struct cppISteamGameServer_SteamGameServer015_SetAdvertiseServerActive_params *params ); - -struct cppISteamGameServer_SteamGameServer015_GetAuthSessionTicket_params -{ - void *linux_side; - uint32_t _ret; - void *pTicket; - int32_t cbMaxTicket; - uint32_t *pcbTicket; - const SteamNetworkingIdentity_144 *pSnid; -}; -extern void cppISteamGameServer_SteamGameServer015_GetAuthSessionTicket( struct cppISteamGameServer_SteamGameServer015_GetAuthSessionTicket_params *params ); - -struct cppISteamGameServer_SteamGameServer015_BeginAuthSession_params -{ - void *linux_side; - uint32_t _ret; - const void *pAuthTicket; - int32_t cbAuthTicket; - CSteamID steamID; -}; -extern void cppISteamGameServer_SteamGameServer015_BeginAuthSession( struct cppISteamGameServer_SteamGameServer015_BeginAuthSession_params *params ); - -struct cppISteamGameServer_SteamGameServer015_EndAuthSession_params -{ - void *linux_side; - CSteamID steamID; -}; -extern void cppISteamGameServer_SteamGameServer015_EndAuthSession( struct cppISteamGameServer_SteamGameServer015_EndAuthSession_params *params ); - -struct cppISteamGameServer_SteamGameServer015_CancelAuthTicket_params -{ - void *linux_side; - uint32_t hAuthTicket; -}; -extern void cppISteamGameServer_SteamGameServer015_CancelAuthTicket( struct cppISteamGameServer_SteamGameServer015_CancelAuthTicket_params *params ); - -struct cppISteamGameServer_SteamGameServer015_UserHasLicenseForApp_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamID; - uint32_t appID; -}; -extern void cppISteamGameServer_SteamGameServer015_UserHasLicenseForApp( struct cppISteamGameServer_SteamGameServer015_UserHasLicenseForApp_params *params ); - -struct cppISteamGameServer_SteamGameServer015_RequestUserGroupStatus_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - CSteamID steamIDGroup; -}; -extern void cppISteamGameServer_SteamGameServer015_RequestUserGroupStatus( struct cppISteamGameServer_SteamGameServer015_RequestUserGroupStatus_params *params ); - -struct cppISteamGameServer_SteamGameServer015_GetGameplayStats_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer015_GetGameplayStats( struct cppISteamGameServer_SteamGameServer015_GetGameplayStats_params *params ); - -struct cppISteamGameServer_SteamGameServer015_GetServerReputation_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamGameServer_SteamGameServer015_GetServerReputation( struct cppISteamGameServer_SteamGameServer015_GetServerReputation_params *params ); - -struct cppISteamGameServer_SteamGameServer015_GetPublicIP_params -{ - void *linux_side; - SteamIPAddress_t *_ret; -}; -extern void cppISteamGameServer_SteamGameServer015_GetPublicIP( struct cppISteamGameServer_SteamGameServer015_GetPublicIP_params *params ); - -struct cppISteamGameServer_SteamGameServer015_HandleIncomingPacket_params -{ - void *linux_side; - bool _ret; - const void *pData; - int32_t cbData; - uint32_t srcIP; - uint16_t srcPort; -}; -extern void cppISteamGameServer_SteamGameServer015_HandleIncomingPacket( struct cppISteamGameServer_SteamGameServer015_HandleIncomingPacket_params *params ); - -struct cppISteamGameServer_SteamGameServer015_GetNextOutgoingPacket_params -{ - void *linux_side; - int32_t _ret; - void *pOut; - int32_t cbMaxOut; - uint32_t *pNetAdr; - uint16_t *pPort; -}; -extern void cppISteamGameServer_SteamGameServer015_GetNextOutgoingPacket( struct cppISteamGameServer_SteamGameServer015_GetNextOutgoingPacket_params *params ); - -struct cppISteamGameServer_SteamGameServer015_AssociateWithClan_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDClan; -}; -extern void cppISteamGameServer_SteamGameServer015_AssociateWithClan( struct cppISteamGameServer_SteamGameServer015_AssociateWithClan_params *params ); - -struct cppISteamGameServer_SteamGameServer015_ComputeNewPlayerCompatibility_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDNewPlayer; -}; -extern void cppISteamGameServer_SteamGameServer015_ComputeNewPlayerCompatibility( struct cppISteamGameServer_SteamGameServer015_ComputeNewPlayerCompatibility_params *params ); - -struct cppISteamGameServer_SteamGameServer015_SendUserConnectAndAuthenticate_DEPRECATED_params -{ - void *linux_side; - bool _ret; - uint32_t unIPClient; - const void *pvAuthBlob; - uint32_t cubAuthBlobSize; - CSteamID *pSteamIDUser; -}; -extern void cppISteamGameServer_SteamGameServer015_SendUserConnectAndAuthenticate_DEPRECATED( struct cppISteamGameServer_SteamGameServer015_SendUserConnectAndAuthenticate_DEPRECATED_params *params ); - -struct cppISteamGameServer_SteamGameServer015_CreateUnauthenticatedUserConnection_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamGameServer_SteamGameServer015_CreateUnauthenticatedUserConnection( struct cppISteamGameServer_SteamGameServer015_CreateUnauthenticatedUserConnection_params *params ); - -struct cppISteamGameServer_SteamGameServer015_SendUserDisconnect_DEPRECATED_params -{ - void *linux_side; - CSteamID steamIDUser; -}; -extern void cppISteamGameServer_SteamGameServer015_SendUserDisconnect_DEPRECATED( struct cppISteamGameServer_SteamGameServer015_SendUserDisconnect_DEPRECATED_params *params ); - -struct cppISteamGameServer_SteamGameServer015_BUpdateUserData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchPlayerName; - uint32_t uScore; -}; -extern void cppISteamGameServer_SteamGameServer015_BUpdateUserData( struct cppISteamGameServer_SteamGameServer015_BUpdateUserData_params *params ); - -struct cppISteamGameServer_SteamGameServer015_SetMasterServerHeartbeatInterval_DEPRECATED_params -{ - void *linux_side; - int32_t iHeartbeatInterval; -}; -extern void cppISteamGameServer_SteamGameServer015_SetMasterServerHeartbeatInterval_DEPRECATED( struct cppISteamGameServer_SteamGameServer015_SetMasterServerHeartbeatInterval_DEPRECATED_params *params ); - -struct cppISteamGameServer_SteamGameServer015_ForceMasterServerHeartbeat_DEPRECATED_params -{ - void *linux_side; -}; -extern void cppISteamGameServer_SteamGameServer015_ForceMasterServerHeartbeat_DEPRECATED( struct cppISteamGameServer_SteamGameServer015_ForceMasterServerHeartbeat_DEPRECATED_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamGameStats_SteamGameStats001.cpp b/lsteamclient/cppISteamGameStats_SteamGameStats001.cpp index 55680621..48fb6f4f 100644 --- a/lsteamclient/cppISteamGameStats_SteamGameStats001.cpp +++ b/lsteamclient/cppISteamGameStats_SteamGameStats001.cpp @@ -1,82 +1,107 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamGameStats_SteamGameStats001.h" -void cppISteamGameStats_SteamGameStats001_GetNewSession( struct cppISteamGameStats_SteamGameStats001_GetNewSession_params *params ) +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; params->_ret = iface->GetNewSession( params->nAccountType, params->ulAccountID, params->nAppID, params->rtTimeStarted ); + return 0; } -void cppISteamGameStats_SteamGameStats001_EndSession( struct cppISteamGameStats_SteamGameStats001_EndSession_params *params ) +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; params->_ret = iface->EndSession( params->ulSessionID, params->rtTimeEnded, params->nReasonCode ); + return 0; } -void cppISteamGameStats_SteamGameStats001_AddSessionAttributeInt( struct cppISteamGameStats_SteamGameStats001_AddSessionAttributeInt_params *params ) +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; params->_ret = iface->AddSessionAttributeInt( params->ulSessionID, params->pstrName, params->nData ); + return 0; } -void cppISteamGameStats_SteamGameStats001_AddSessionAttributeString( struct cppISteamGameStats_SteamGameStats001_AddSessionAttributeString_params *params ) +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; params->_ret = iface->AddSessionAttributeString( params->ulSessionID, params->pstrName, params->pstrData ); + return 0; } -void cppISteamGameStats_SteamGameStats001_AddSessionAttributeFloat( struct cppISteamGameStats_SteamGameStats001_AddSessionAttributeFloat_params *params ) +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; params->_ret = iface->AddSessionAttributeFloat( params->ulSessionID, params->pstrName, params->fData ); + return 0; } -void cppISteamGameStats_SteamGameStats001_AddNewRow( struct cppISteamGameStats_SteamGameStats001_AddNewRow_params *params ) +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; params->_ret = iface->AddNewRow( params->pulRowID, params->ulSessionID, params->pstrTableName ); + return 0; } -void cppISteamGameStats_SteamGameStats001_CommitRow( struct cppISteamGameStats_SteamGameStats001_CommitRow_params *params ) +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; params->_ret = iface->CommitRow( params->ulRowID ); + return 0; } -void cppISteamGameStats_SteamGameStats001_CommitOutstandingRows( struct cppISteamGameStats_SteamGameStats001_CommitOutstandingRows_params *params ) +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; params->_ret = iface->CommitOutstandingRows( params->ulSessionID ); + return 0; } -void cppISteamGameStats_SteamGameStats001_AddRowAttributeInt( struct cppISteamGameStats_SteamGameStats001_AddRowAttributeInt_params *params ) +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; params->_ret = iface->AddRowAttributeInt( params->ulRowID, params->pstrName, params->nData ); + return 0; } -void cppISteamGameStats_SteamGameStats001_AddRowAtributeString( struct cppISteamGameStats_SteamGameStats001_AddRowAtributeString_params *params ) +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; params->_ret = iface->AddRowAtributeString( params->ulRowID, params->pstrName, params->pstrData ); + return 0; } -void cppISteamGameStats_SteamGameStats001_AddRowAttributeFloat( struct cppISteamGameStats_SteamGameStats001_AddRowAttributeFloat_params *params ) +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; params->_ret = iface->AddRowAttributeFloat( params->ulRowID, params->pstrName, params->fData ); + return 0; } -void cppISteamGameStats_SteamGameStats001_AddSessionAttributeInt64( struct cppISteamGameStats_SteamGameStats001_AddSessionAttributeInt64_params *params ) +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; params->_ret = iface->AddSessionAttributeInt64( params->ulSessionID, params->pstrName, params->llData ); + return 0; } -void cppISteamGameStats_SteamGameStats001_AddRowAttributeInt64( struct cppISteamGameStats_SteamGameStats001_AddRowAttributeInt64_params *params ) +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; params->_ret = iface->AddRowAttributeInt64( params->ulRowID, params->pstrName, params->llData ); + return 0; } diff --git a/lsteamclient/cppISteamGameStats_SteamGameStats001.h b/lsteamclient/cppISteamGameStats_SteamGameStats001.h deleted file mode 100644 index 899d4856..00000000 --- a/lsteamclient/cppISteamGameStats_SteamGameStats001.h +++ /dev/null @@ -1,139 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamGameStats_SteamGameStats001_GetNewSession_params -{ - void *linux_side; - uint64_t _ret; - int8_t nAccountType; - uint64_t ulAccountID; - int32_t nAppID; - uint32_t rtTimeStarted; -}; -extern void cppISteamGameStats_SteamGameStats001_GetNewSession( struct cppISteamGameStats_SteamGameStats001_GetNewSession_params *params ); - -struct cppISteamGameStats_SteamGameStats001_EndSession_params -{ - void *linux_side; - uint64_t _ret; - uint64_t ulSessionID; - uint32_t rtTimeEnded; - int32_t nReasonCode; -}; -extern void cppISteamGameStats_SteamGameStats001_EndSession( struct cppISteamGameStats_SteamGameStats001_EndSession_params *params ); - -struct cppISteamGameStats_SteamGameStats001_AddSessionAttributeInt_params -{ - void *linux_side; - uint32_t _ret; - uint64_t ulSessionID; - const char *pstrName; - int32_t nData; -}; -extern void cppISteamGameStats_SteamGameStats001_AddSessionAttributeInt( struct cppISteamGameStats_SteamGameStats001_AddSessionAttributeInt_params *params ); - -struct cppISteamGameStats_SteamGameStats001_AddSessionAttributeString_params -{ - void *linux_side; - uint32_t _ret; - uint64_t ulSessionID; - const char *pstrName; - const char *pstrData; -}; -extern void cppISteamGameStats_SteamGameStats001_AddSessionAttributeString( struct cppISteamGameStats_SteamGameStats001_AddSessionAttributeString_params *params ); - -struct cppISteamGameStats_SteamGameStats001_AddSessionAttributeFloat_params -{ - void *linux_side; - uint32_t _ret; - uint64_t ulSessionID; - const char *pstrName; - float fData; -}; -extern void cppISteamGameStats_SteamGameStats001_AddSessionAttributeFloat( struct cppISteamGameStats_SteamGameStats001_AddSessionAttributeFloat_params *params ); - -struct cppISteamGameStats_SteamGameStats001_AddNewRow_params -{ - void *linux_side; - uint32_t _ret; - uint64_t *pulRowID; - uint64_t ulSessionID; - const char *pstrTableName; -}; -extern void cppISteamGameStats_SteamGameStats001_AddNewRow( struct cppISteamGameStats_SteamGameStats001_AddNewRow_params *params ); - -struct cppISteamGameStats_SteamGameStats001_CommitRow_params -{ - void *linux_side; - uint32_t _ret; - uint64_t ulRowID; -}; -extern void cppISteamGameStats_SteamGameStats001_CommitRow( struct cppISteamGameStats_SteamGameStats001_CommitRow_params *params ); - -struct cppISteamGameStats_SteamGameStats001_CommitOutstandingRows_params -{ - void *linux_side; - uint32_t _ret; - uint64_t ulSessionID; -}; -extern void cppISteamGameStats_SteamGameStats001_CommitOutstandingRows( struct cppISteamGameStats_SteamGameStats001_CommitOutstandingRows_params *params ); - -struct cppISteamGameStats_SteamGameStats001_AddRowAttributeInt_params -{ - void *linux_side; - uint32_t _ret; - uint64_t ulRowID; - const char *pstrName; - int32_t nData; -}; -extern void cppISteamGameStats_SteamGameStats001_AddRowAttributeInt( struct cppISteamGameStats_SteamGameStats001_AddRowAttributeInt_params *params ); - -struct cppISteamGameStats_SteamGameStats001_AddRowAtributeString_params -{ - void *linux_side; - uint32_t _ret; - uint64_t ulRowID; - const char *pstrName; - const char *pstrData; -}; -extern void cppISteamGameStats_SteamGameStats001_AddRowAtributeString( struct cppISteamGameStats_SteamGameStats001_AddRowAtributeString_params *params ); - -struct cppISteamGameStats_SteamGameStats001_AddRowAttributeFloat_params -{ - void *linux_side; - uint32_t _ret; - uint64_t ulRowID; - const char *pstrName; - float fData; -}; -extern void cppISteamGameStats_SteamGameStats001_AddRowAttributeFloat( struct cppISteamGameStats_SteamGameStats001_AddRowAttributeFloat_params *params ); - -struct cppISteamGameStats_SteamGameStats001_AddSessionAttributeInt64_params -{ - void *linux_side; - uint32_t _ret; - uint64_t ulSessionID; - const char *pstrName; - int64_t llData; -}; -extern void cppISteamGameStats_SteamGameStats001_AddSessionAttributeInt64( struct cppISteamGameStats_SteamGameStats001_AddSessionAttributeInt64_params *params ); - -struct cppISteamGameStats_SteamGameStats001_AddRowAttributeInt64_params -{ - void *linux_side; - uint32_t _ret; - uint64_t ulRowID; - const char *pstrName; - int64_t llData; -}; -extern void cppISteamGameStats_SteamGameStats001_AddRowAttributeInt64( struct cppISteamGameStats_SteamGameStats001_AddRowAttributeInt64_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001.cpp b/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001.cpp index d748b03b..3207d2be 100644 --- a/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001.cpp +++ b/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001.cpp @@ -1,198 +1,261 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001.h" -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Init( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Init_params *params ) +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; params->_ret = iface->Init( ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Shutdown( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Shutdown_params *params ) +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; params->_ret = iface->Shutdown( ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CreateBrowser( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CreateBrowser_params *params ) +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; params->_ret = iface->CreateBrowser( params->pchUserAgent, params->pchUserCSS ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_RemoveBrowser( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_RemoveBrowser_params *params ) +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; iface->RemoveBrowser( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_LoadURL( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_LoadURL_params *params ) +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; iface->LoadURL( params->unBrowserHandle, params->pchURL, params->pchPostData ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetSize( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetSize_params *params ) +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; iface->SetSize( params->unBrowserHandle, params->unWidth, params->unHeight ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopLoad( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopLoad_params *params ) +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; iface->StopLoad( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Reload( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Reload_params *params ) +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; iface->Reload( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoBack( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoBack_params *params ) +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; iface->GoBack( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoForward( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoForward_params *params ) +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; iface->GoForward( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AddHeader( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AddHeader_params *params ) +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; iface->AddHeader( params->unBrowserHandle, params->pchKey, params->pchValue ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ExecuteJavascript( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ExecuteJavascript_params *params ) +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; iface->ExecuteJavascript( params->unBrowserHandle, params->pchScript ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseUp( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseUp_params *params ) +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; iface->MouseUp( params->unBrowserHandle, params->eMouseButton ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDown( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDown_params *params ) +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; iface->MouseDown( params->unBrowserHandle, params->eMouseButton ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDoubleClick( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDoubleClick_params *params ) +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; iface->MouseDoubleClick( params->unBrowserHandle, params->eMouseButton ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseMove( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseMove_params *params ) +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; iface->MouseMove( params->unBrowserHandle, params->x, params->y ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseWheel( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseWheel_params *params ) +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; iface->MouseWheel( params->unBrowserHandle, params->nDelta ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyDown( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyDown_params *params ) +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; uint32_t u_nNativeKeyCode = manual_convert_nNativeKeyCode( params->nNativeKeyCode ); iface->KeyDown( params->unBrowserHandle, u_nNativeKeyCode, params->eHTMLKeyModifiers ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyUp( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyUp_params *params ) +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; uint32_t u_nNativeKeyCode = manual_convert_nNativeKeyCode( params->nNativeKeyCode ); iface->KeyUp( params->unBrowserHandle, u_nNativeKeyCode, params->eHTMLKeyModifiers ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyChar( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyChar_params *params ) +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; iface->KeyChar( params->unBrowserHandle, params->cUnicodeChar, params->eHTMLKeyModifiers ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetHorizontalScroll( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetHorizontalScroll_params *params ) +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; iface->SetHorizontalScroll( params->unBrowserHandle, params->nAbsolutePixelScroll ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetVerticalScroll( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetVerticalScroll_params *params ) +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; iface->SetVerticalScroll( params->unBrowserHandle, params->nAbsolutePixelScroll ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetKeyFocus( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetKeyFocus_params *params ) +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; iface->SetKeyFocus( params->unBrowserHandle, params->bHasKeyFocus ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ViewSource( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ViewSource_params *params ) +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; iface->ViewSource( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CopyToClipboard( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CopyToClipboard_params *params ) +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; iface->CopyToClipboard( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_PasteFromClipboard( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_PasteFromClipboard_params *params ) +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; iface->PasteFromClipboard( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Find( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Find_params *params ) +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; iface->Find( params->unBrowserHandle, params->pchSearchStr, params->bCurrentlyInFind, params->bReverse ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopFind( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopFind_params *params ) +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; iface->StopFind( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GetLinkAtPosition( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GetLinkAtPosition_params *params ) +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; iface->GetLinkAtPosition( params->unBrowserHandle, params->x, params->y ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AllowStartRequest( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AllowStartRequest_params *params ) +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; iface->AllowStartRequest( params->unBrowserHandle, params->bAllowed ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_JSDialogResponse( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_JSDialogResponse_params *params ) +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; iface->JSDialogResponse( params->unBrowserHandle, params->bResult ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_FileLoadDialogResponse( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_FileLoadDialogResponse_params *params ) +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; iface->FileLoadDialogResponse( params->unBrowserHandle, params->pchSelectedFiles ); + return 0; } diff --git a/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001.h b/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001.h deleted file mode 100644 index 6f711946..00000000 --- a/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001.h +++ /dev/null @@ -1,268 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Init_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Init( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Init_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Shutdown_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Shutdown( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Shutdown_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CreateBrowser_params -{ - void *linux_side; - uint64_t _ret; - const char *pchUserAgent; - const char *pchUserCSS; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CreateBrowser( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CreateBrowser_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_RemoveBrowser_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_RemoveBrowser( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_RemoveBrowser_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_LoadURL_params -{ - void *linux_side; - uint32_t unBrowserHandle; - const char *pchURL; - const char *pchPostData; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_LoadURL( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_LoadURL_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetSize_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t unWidth; - uint32_t unHeight; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetSize( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetSize_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopLoad_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopLoad( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopLoad_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Reload_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Reload( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Reload_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoBack_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoBack( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoBack_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoForward_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoForward( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoForward_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AddHeader_params -{ - void *linux_side; - uint32_t unBrowserHandle; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AddHeader( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AddHeader_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ExecuteJavascript_params -{ - void *linux_side; - uint32_t unBrowserHandle; - const char *pchScript; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ExecuteJavascript( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ExecuteJavascript_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseUp_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t eMouseButton; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseUp( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseUp_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDown_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t eMouseButton; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDown( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDown_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDoubleClick_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t eMouseButton; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDoubleClick( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDoubleClick_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseMove_params -{ - void *linux_side; - uint32_t unBrowserHandle; - int32_t x; - int32_t y; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseMove( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseMove_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseWheel_params -{ - void *linux_side; - uint32_t unBrowserHandle; - int32_t nDelta; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseWheel( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseWheel_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyDown_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t nNativeKeyCode; - uint32_t eHTMLKeyModifiers; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyDown( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyDown_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyUp_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t nNativeKeyCode; - uint32_t eHTMLKeyModifiers; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyUp( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyUp_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyChar_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t cUnicodeChar; - uint32_t eHTMLKeyModifiers; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyChar( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyChar_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetHorizontalScroll_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t nAbsolutePixelScroll; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetHorizontalScroll( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetHorizontalScroll_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetVerticalScroll_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t nAbsolutePixelScroll; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetVerticalScroll( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetVerticalScroll_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetKeyFocus_params -{ - void *linux_side; - uint32_t unBrowserHandle; - bool bHasKeyFocus; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetKeyFocus( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetKeyFocus_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ViewSource_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ViewSource( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ViewSource_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CopyToClipboard_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CopyToClipboard( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CopyToClipboard_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_PasteFromClipboard_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_PasteFromClipboard( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_PasteFromClipboard_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Find_params -{ - void *linux_side; - uint32_t unBrowserHandle; - const char *pchSearchStr; - bool bCurrentlyInFind; - bool bReverse; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Find( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Find_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopFind_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopFind( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopFind_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GetLinkAtPosition_params -{ - void *linux_side; - uint32_t unBrowserHandle; - int32_t x; - int32_t y; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GetLinkAtPosition( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GetLinkAtPosition_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AllowStartRequest_params -{ - void *linux_side; - uint32_t unBrowserHandle; - bool bAllowed; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AllowStartRequest( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AllowStartRequest_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_JSDialogResponse_params -{ - void *linux_side; - uint32_t unBrowserHandle; - bool bResult; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_JSDialogResponse( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_JSDialogResponse_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_FileLoadDialogResponse_params -{ - void *linux_side; - uint32_t unBrowserHandle; - const char **pchSelectedFiles; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_FileLoadDialogResponse( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_FileLoadDialogResponse_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002.cpp b/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002.cpp index db114a17..87c83c26 100644 --- a/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002.cpp +++ b/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002.cpp @@ -1,210 +1,277 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002.h" -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Init( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Init_params *params ) +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; params->_ret = iface->Init( ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Shutdown( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Shutdown_params *params ) +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; params->_ret = iface->Shutdown( ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CreateBrowser( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CreateBrowser_params *params ) +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; params->_ret = iface->CreateBrowser( params->pchUserAgent, params->pchUserCSS ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_RemoveBrowser( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_RemoveBrowser_params *params ) +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; iface->RemoveBrowser( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_LoadURL( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_LoadURL_params *params ) +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; iface->LoadURL( params->unBrowserHandle, params->pchURL, params->pchPostData ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetSize( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetSize_params *params ) +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; iface->SetSize( params->unBrowserHandle, params->unWidth, params->unHeight ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopLoad( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopLoad_params *params ) +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; iface->StopLoad( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Reload( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Reload_params *params ) +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; iface->Reload( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoBack( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoBack_params *params ) +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; iface->GoBack( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoForward( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoForward_params *params ) +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; iface->GoForward( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AddHeader( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AddHeader_params *params ) +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; iface->AddHeader( params->unBrowserHandle, params->pchKey, params->pchValue ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ExecuteJavascript( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ExecuteJavascript_params *params ) +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; iface->ExecuteJavascript( params->unBrowserHandle, params->pchScript ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseUp( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseUp_params *params ) +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; iface->MouseUp( params->unBrowserHandle, params->eMouseButton ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDown( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDown_params *params ) +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; iface->MouseDown( params->unBrowserHandle, params->eMouseButton ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDoubleClick( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDoubleClick_params *params ) +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; iface->MouseDoubleClick( params->unBrowserHandle, params->eMouseButton ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseMove( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseMove_params *params ) +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; iface->MouseMove( params->unBrowserHandle, params->x, params->y ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseWheel( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseWheel_params *params ) +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; iface->MouseWheel( params->unBrowserHandle, params->nDelta ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyDown( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyDown_params *params ) +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; uint32_t u_nNativeKeyCode = manual_convert_nNativeKeyCode( params->nNativeKeyCode ); iface->KeyDown( params->unBrowserHandle, u_nNativeKeyCode, params->eHTMLKeyModifiers ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyUp( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyUp_params *params ) +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; uint32_t u_nNativeKeyCode = manual_convert_nNativeKeyCode( params->nNativeKeyCode ); iface->KeyUp( params->unBrowserHandle, u_nNativeKeyCode, params->eHTMLKeyModifiers ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyChar( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyChar_params *params ) +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; iface->KeyChar( params->unBrowserHandle, params->cUnicodeChar, params->eHTMLKeyModifiers ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetHorizontalScroll( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetHorizontalScroll_params *params ) +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; iface->SetHorizontalScroll( params->unBrowserHandle, params->nAbsolutePixelScroll ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetVerticalScroll( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetVerticalScroll_params *params ) +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; iface->SetVerticalScroll( params->unBrowserHandle, params->nAbsolutePixelScroll ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetKeyFocus( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetKeyFocus_params *params ) +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; iface->SetKeyFocus( params->unBrowserHandle, params->bHasKeyFocus ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ViewSource( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ViewSource_params *params ) +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; iface->ViewSource( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CopyToClipboard( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CopyToClipboard_params *params ) +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; iface->CopyToClipboard( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_PasteFromClipboard( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_PasteFromClipboard_params *params ) +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; iface->PasteFromClipboard( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Find( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Find_params *params ) +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; iface->Find( params->unBrowserHandle, params->pchSearchStr, params->bCurrentlyInFind, params->bReverse ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopFind( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopFind_params *params ) +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; iface->StopFind( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GetLinkAtPosition( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GetLinkAtPosition_params *params ) +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; iface->GetLinkAtPosition( params->unBrowserHandle, params->x, params->y ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetCookie( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetCookie_params *params ) +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; iface->SetCookie( params->pchHostname, params->pchKey, params->pchValue, params->pchPath, params->nExpires, params->bSecure, params->bHTTPOnly ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetPageScaleFactor( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetPageScaleFactor_params *params ) +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; iface->SetPageScaleFactor( params->unBrowserHandle, params->flZoom, params->nPointX, params->nPointY ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AllowStartRequest( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AllowStartRequest_params *params ) +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; iface->AllowStartRequest( params->unBrowserHandle, params->bAllowed ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_JSDialogResponse( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_JSDialogResponse_params *params ) +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; iface->JSDialogResponse( params->unBrowserHandle, params->bResult ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_FileLoadDialogResponse( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_FileLoadDialogResponse_params *params ) +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; iface->FileLoadDialogResponse( params->unBrowserHandle, params->pchSelectedFiles ); + return 0; } diff --git a/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002.h b/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002.h deleted file mode 100644 index 6a252e41..00000000 --- a/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002.h +++ /dev/null @@ -1,291 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Init_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Init( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Init_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Shutdown_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Shutdown( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Shutdown_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CreateBrowser_params -{ - void *linux_side; - uint64_t _ret; - const char *pchUserAgent; - const char *pchUserCSS; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CreateBrowser( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CreateBrowser_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_RemoveBrowser_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_RemoveBrowser( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_RemoveBrowser_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_LoadURL_params -{ - void *linux_side; - uint32_t unBrowserHandle; - const char *pchURL; - const char *pchPostData; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_LoadURL( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_LoadURL_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetSize_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t unWidth; - uint32_t unHeight; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetSize( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetSize_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopLoad_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopLoad( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopLoad_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Reload_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Reload( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Reload_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoBack_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoBack( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoBack_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoForward_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoForward( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoForward_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AddHeader_params -{ - void *linux_side; - uint32_t unBrowserHandle; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AddHeader( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AddHeader_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ExecuteJavascript_params -{ - void *linux_side; - uint32_t unBrowserHandle; - const char *pchScript; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ExecuteJavascript( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ExecuteJavascript_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseUp_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t eMouseButton; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseUp( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseUp_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDown_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t eMouseButton; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDown( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDown_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDoubleClick_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t eMouseButton; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDoubleClick( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDoubleClick_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseMove_params -{ - void *linux_side; - uint32_t unBrowserHandle; - int32_t x; - int32_t y; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseMove( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseMove_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseWheel_params -{ - void *linux_side; - uint32_t unBrowserHandle; - int32_t nDelta; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseWheel( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseWheel_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyDown_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t nNativeKeyCode; - uint32_t eHTMLKeyModifiers; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyDown( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyDown_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyUp_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t nNativeKeyCode; - uint32_t eHTMLKeyModifiers; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyUp( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyUp_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyChar_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t cUnicodeChar; - uint32_t eHTMLKeyModifiers; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyChar( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyChar_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetHorizontalScroll_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t nAbsolutePixelScroll; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetHorizontalScroll( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetHorizontalScroll_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetVerticalScroll_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t nAbsolutePixelScroll; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetVerticalScroll( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetVerticalScroll_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetKeyFocus_params -{ - void *linux_side; - uint32_t unBrowserHandle; - bool bHasKeyFocus; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetKeyFocus( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetKeyFocus_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ViewSource_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ViewSource( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ViewSource_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CopyToClipboard_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CopyToClipboard( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CopyToClipboard_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_PasteFromClipboard_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_PasteFromClipboard( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_PasteFromClipboard_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Find_params -{ - void *linux_side; - uint32_t unBrowserHandle; - const char *pchSearchStr; - bool bCurrentlyInFind; - bool bReverse; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Find( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Find_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopFind_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopFind( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopFind_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GetLinkAtPosition_params -{ - void *linux_side; - uint32_t unBrowserHandle; - int32_t x; - int32_t y; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GetLinkAtPosition( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GetLinkAtPosition_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetCookie_params -{ - void *linux_side; - const char *pchHostname; - const char *pchKey; - const char *pchValue; - const char *pchPath; - uint32_t nExpires; - bool bSecure; - bool bHTTPOnly; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetCookie( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetCookie_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetPageScaleFactor_params -{ - void *linux_side; - uint32_t unBrowserHandle; - float flZoom; - int32_t nPointX; - int32_t nPointY; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetPageScaleFactor( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetPageScaleFactor_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AllowStartRequest_params -{ - void *linux_side; - uint32_t unBrowserHandle; - bool bAllowed; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AllowStartRequest( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AllowStartRequest_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_JSDialogResponse_params -{ - void *linux_side; - uint32_t unBrowserHandle; - bool bResult; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_JSDialogResponse( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_JSDialogResponse_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_FileLoadDialogResponse_params -{ - void *linux_side; - uint32_t unBrowserHandle; - const char **pchSelectedFiles; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_FileLoadDialogResponse( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_FileLoadDialogResponse_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003.cpp b/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003.cpp index 594eddbc..a336beec 100644 --- a/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003.cpp +++ b/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003.cpp @@ -1,216 +1,285 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003.h" -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Init( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Init_params *params ) +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; params->_ret = iface->Init( ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Shutdown( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Shutdown_params *params ) +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; params->_ret = iface->Shutdown( ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CreateBrowser( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CreateBrowser_params *params ) +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; params->_ret = iface->CreateBrowser( params->pchUserAgent, params->pchUserCSS ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_RemoveBrowser( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_RemoveBrowser_params *params ) +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; iface->RemoveBrowser( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_LoadURL( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_LoadURL_params *params ) +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; iface->LoadURL( params->unBrowserHandle, params->pchURL, params->pchPostData ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetSize( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetSize_params *params ) +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; iface->SetSize( params->unBrowserHandle, params->unWidth, params->unHeight ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopLoad( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopLoad_params *params ) +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; iface->StopLoad( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Reload( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Reload_params *params ) +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; iface->Reload( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoBack( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoBack_params *params ) +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; iface->GoBack( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoForward( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoForward_params *params ) +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; iface->GoForward( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AddHeader( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AddHeader_params *params ) +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; iface->AddHeader( params->unBrowserHandle, params->pchKey, params->pchValue ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ExecuteJavascript( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ExecuteJavascript_params *params ) +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; iface->ExecuteJavascript( params->unBrowserHandle, params->pchScript ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseUp( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseUp_params *params ) +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; iface->MouseUp( params->unBrowserHandle, params->eMouseButton ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDown( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDown_params *params ) +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; iface->MouseDown( params->unBrowserHandle, params->eMouseButton ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDoubleClick( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDoubleClick_params *params ) +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; iface->MouseDoubleClick( params->unBrowserHandle, params->eMouseButton ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseMove( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseMove_params *params ) +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; iface->MouseMove( params->unBrowserHandle, params->x, params->y ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseWheel( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseWheel_params *params ) +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; iface->MouseWheel( params->unBrowserHandle, params->nDelta ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyDown( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyDown_params *params ) +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; uint32_t u_nNativeKeyCode = manual_convert_nNativeKeyCode( params->nNativeKeyCode ); iface->KeyDown( params->unBrowserHandle, u_nNativeKeyCode, params->eHTMLKeyModifiers ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyUp( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyUp_params *params ) +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; uint32_t u_nNativeKeyCode = manual_convert_nNativeKeyCode( params->nNativeKeyCode ); iface->KeyUp( params->unBrowserHandle, u_nNativeKeyCode, params->eHTMLKeyModifiers ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyChar( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyChar_params *params ) +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; iface->KeyChar( params->unBrowserHandle, params->cUnicodeChar, params->eHTMLKeyModifiers ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetHorizontalScroll( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetHorizontalScroll_params *params ) +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; iface->SetHorizontalScroll( params->unBrowserHandle, params->nAbsolutePixelScroll ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetVerticalScroll( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetVerticalScroll_params *params ) +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; iface->SetVerticalScroll( params->unBrowserHandle, params->nAbsolutePixelScroll ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetKeyFocus( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetKeyFocus_params *params ) +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; iface->SetKeyFocus( params->unBrowserHandle, params->bHasKeyFocus ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ViewSource( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ViewSource_params *params ) +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; iface->ViewSource( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CopyToClipboard( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CopyToClipboard_params *params ) +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; iface->CopyToClipboard( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_PasteFromClipboard( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_PasteFromClipboard_params *params ) +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; iface->PasteFromClipboard( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Find( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Find_params *params ) +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; iface->Find( params->unBrowserHandle, params->pchSearchStr, params->bCurrentlyInFind, params->bReverse ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopFind( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopFind_params *params ) +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; iface->StopFind( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GetLinkAtPosition( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GetLinkAtPosition_params *params ) +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; iface->GetLinkAtPosition( params->unBrowserHandle, params->x, params->y ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetCookie( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetCookie_params *params ) +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; iface->SetCookie( params->pchHostname, params->pchKey, params->pchValue, params->pchPath, params->nExpires, params->bSecure, params->bHTTPOnly ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetPageScaleFactor( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetPageScaleFactor_params *params ) +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; iface->SetPageScaleFactor( params->unBrowserHandle, params->flZoom, params->nPointX, params->nPointY ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetBackgroundMode( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetBackgroundMode_params *params ) +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; iface->SetBackgroundMode( params->unBrowserHandle, params->bBackgroundMode ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AllowStartRequest( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AllowStartRequest_params *params ) +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; iface->AllowStartRequest( params->unBrowserHandle, params->bAllowed ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_JSDialogResponse( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_JSDialogResponse_params *params ) +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; iface->JSDialogResponse( params->unBrowserHandle, params->bResult ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_FileLoadDialogResponse( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_FileLoadDialogResponse_params *params ) +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; iface->FileLoadDialogResponse( params->unBrowserHandle, params->pchSelectedFiles ); + return 0; } diff --git a/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003.h b/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003.h deleted file mode 100644 index 78707e87..00000000 --- a/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003.h +++ /dev/null @@ -1,299 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Init_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Init( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Init_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Shutdown_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Shutdown( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Shutdown_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CreateBrowser_params -{ - void *linux_side; - uint64_t _ret; - const char *pchUserAgent; - const char *pchUserCSS; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CreateBrowser( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CreateBrowser_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_RemoveBrowser_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_RemoveBrowser( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_RemoveBrowser_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_LoadURL_params -{ - void *linux_side; - uint32_t unBrowserHandle; - const char *pchURL; - const char *pchPostData; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_LoadURL( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_LoadURL_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetSize_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t unWidth; - uint32_t unHeight; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetSize( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetSize_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopLoad_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopLoad( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopLoad_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Reload_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Reload( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Reload_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoBack_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoBack( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoBack_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoForward_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoForward( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoForward_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AddHeader_params -{ - void *linux_side; - uint32_t unBrowserHandle; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AddHeader( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AddHeader_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ExecuteJavascript_params -{ - void *linux_side; - uint32_t unBrowserHandle; - const char *pchScript; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ExecuteJavascript( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ExecuteJavascript_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseUp_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t eMouseButton; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseUp( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseUp_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDown_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t eMouseButton; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDown( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDown_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDoubleClick_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t eMouseButton; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDoubleClick( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDoubleClick_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseMove_params -{ - void *linux_side; - uint32_t unBrowserHandle; - int32_t x; - int32_t y; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseMove( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseMove_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseWheel_params -{ - void *linux_side; - uint32_t unBrowserHandle; - int32_t nDelta; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseWheel( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseWheel_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyDown_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t nNativeKeyCode; - uint32_t eHTMLKeyModifiers; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyDown( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyDown_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyUp_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t nNativeKeyCode; - uint32_t eHTMLKeyModifiers; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyUp( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyUp_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyChar_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t cUnicodeChar; - uint32_t eHTMLKeyModifiers; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyChar( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyChar_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetHorizontalScroll_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t nAbsolutePixelScroll; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetHorizontalScroll( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetHorizontalScroll_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetVerticalScroll_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t nAbsolutePixelScroll; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetVerticalScroll( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetVerticalScroll_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetKeyFocus_params -{ - void *linux_side; - uint32_t unBrowserHandle; - bool bHasKeyFocus; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetKeyFocus( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetKeyFocus_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ViewSource_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ViewSource( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ViewSource_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CopyToClipboard_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CopyToClipboard( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CopyToClipboard_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_PasteFromClipboard_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_PasteFromClipboard( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_PasteFromClipboard_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Find_params -{ - void *linux_side; - uint32_t unBrowserHandle; - const char *pchSearchStr; - bool bCurrentlyInFind; - bool bReverse; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Find( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Find_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopFind_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopFind( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopFind_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GetLinkAtPosition_params -{ - void *linux_side; - uint32_t unBrowserHandle; - int32_t x; - int32_t y; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GetLinkAtPosition( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GetLinkAtPosition_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetCookie_params -{ - void *linux_side; - const char *pchHostname; - const char *pchKey; - const char *pchValue; - const char *pchPath; - uint32_t nExpires; - bool bSecure; - bool bHTTPOnly; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetCookie( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetCookie_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetPageScaleFactor_params -{ - void *linux_side; - uint32_t unBrowserHandle; - float flZoom; - int32_t nPointX; - int32_t nPointY; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetPageScaleFactor( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetPageScaleFactor_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetBackgroundMode_params -{ - void *linux_side; - uint32_t unBrowserHandle; - bool bBackgroundMode; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetBackgroundMode( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetBackgroundMode_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AllowStartRequest_params -{ - void *linux_side; - uint32_t unBrowserHandle; - bool bAllowed; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AllowStartRequest( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AllowStartRequest_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_JSDialogResponse_params -{ - void *linux_side; - uint32_t unBrowserHandle; - bool bResult; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_JSDialogResponse( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_JSDialogResponse_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_FileLoadDialogResponse_params -{ - void *linux_side; - uint32_t unBrowserHandle; - const char **pchSelectedFiles; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_FileLoadDialogResponse( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_FileLoadDialogResponse_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004.cpp b/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004.cpp index 2aa8a0bb..3234e94f 100644 --- a/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004.cpp +++ b/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004.cpp @@ -1,222 +1,293 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004.h" -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Init( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Init_params *params ) +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; params->_ret = iface->Init( ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Shutdown( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Shutdown_params *params ) +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; params->_ret = iface->Shutdown( ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CreateBrowser( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CreateBrowser_params *params ) +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; params->_ret = iface->CreateBrowser( params->pchUserAgent, params->pchUserCSS ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_RemoveBrowser( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_RemoveBrowser_params *params ) +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; iface->RemoveBrowser( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_LoadURL( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_LoadURL_params *params ) +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; iface->LoadURL( params->unBrowserHandle, params->pchURL, params->pchPostData ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetSize( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetSize_params *params ) +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; iface->SetSize( params->unBrowserHandle, params->unWidth, params->unHeight ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopLoad( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopLoad_params *params ) +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; iface->StopLoad( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Reload( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Reload_params *params ) +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; iface->Reload( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoBack( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoBack_params *params ) +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; iface->GoBack( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoForward( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoForward_params *params ) +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; iface->GoForward( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AddHeader( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AddHeader_params *params ) +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; iface->AddHeader( params->unBrowserHandle, params->pchKey, params->pchValue ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ExecuteJavascript( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ExecuteJavascript_params *params ) +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; iface->ExecuteJavascript( params->unBrowserHandle, params->pchScript ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseUp( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseUp_params *params ) +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; iface->MouseUp( params->unBrowserHandle, params->eMouseButton ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDown( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDown_params *params ) +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; iface->MouseDown( params->unBrowserHandle, params->eMouseButton ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDoubleClick( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDoubleClick_params *params ) +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; iface->MouseDoubleClick( params->unBrowserHandle, params->eMouseButton ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseMove( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseMove_params *params ) +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; iface->MouseMove( params->unBrowserHandle, params->x, params->y ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseWheel( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseWheel_params *params ) +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; iface->MouseWheel( params->unBrowserHandle, params->nDelta ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyDown( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyDown_params *params ) +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; uint32_t u_nNativeKeyCode = manual_convert_nNativeKeyCode( params->nNativeKeyCode ); iface->KeyDown( params->unBrowserHandle, u_nNativeKeyCode, params->eHTMLKeyModifiers ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyUp( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyUp_params *params ) +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; uint32_t u_nNativeKeyCode = manual_convert_nNativeKeyCode( params->nNativeKeyCode ); iface->KeyUp( params->unBrowserHandle, u_nNativeKeyCode, params->eHTMLKeyModifiers ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyChar( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyChar_params *params ) +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; iface->KeyChar( params->unBrowserHandle, params->cUnicodeChar, params->eHTMLKeyModifiers ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetHorizontalScroll( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetHorizontalScroll_params *params ) +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; iface->SetHorizontalScroll( params->unBrowserHandle, params->nAbsolutePixelScroll ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetVerticalScroll( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetVerticalScroll_params *params ) +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; iface->SetVerticalScroll( params->unBrowserHandle, params->nAbsolutePixelScroll ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetKeyFocus( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetKeyFocus_params *params ) +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; iface->SetKeyFocus( params->unBrowserHandle, params->bHasKeyFocus ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ViewSource( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ViewSource_params *params ) +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; iface->ViewSource( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CopyToClipboard( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CopyToClipboard_params *params ) +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; iface->CopyToClipboard( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_PasteFromClipboard( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_PasteFromClipboard_params *params ) +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; iface->PasteFromClipboard( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Find( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Find_params *params ) +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; iface->Find( params->unBrowserHandle, params->pchSearchStr, params->bCurrentlyInFind, params->bReverse ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopFind( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopFind_params *params ) +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; iface->StopFind( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GetLinkAtPosition( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GetLinkAtPosition_params *params ) +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; iface->GetLinkAtPosition( params->unBrowserHandle, params->x, params->y ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetCookie( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetCookie_params *params ) +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; iface->SetCookie( params->pchHostname, params->pchKey, params->pchValue, params->pchPath, params->nExpires, params->bSecure, params->bHTTPOnly ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetPageScaleFactor( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetPageScaleFactor_params *params ) +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; iface->SetPageScaleFactor( params->unBrowserHandle, params->flZoom, params->nPointX, params->nPointY ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetBackgroundMode( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetBackgroundMode_params *params ) +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; iface->SetBackgroundMode( params->unBrowserHandle, params->bBackgroundMode ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetDPIScalingFactor( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetDPIScalingFactor_params *params ) +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; iface->SetDPIScalingFactor( params->unBrowserHandle, params->flDPIScaling ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AllowStartRequest( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AllowStartRequest_params *params ) +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; iface->AllowStartRequest( params->unBrowserHandle, params->bAllowed ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_JSDialogResponse( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_JSDialogResponse_params *params ) +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; iface->JSDialogResponse( params->unBrowserHandle, params->bResult ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_FileLoadDialogResponse( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_FileLoadDialogResponse_params *params ) +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; iface->FileLoadDialogResponse( params->unBrowserHandle, params->pchSelectedFiles ); + return 0; } diff --git a/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004.h b/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004.h deleted file mode 100644 index da6988da..00000000 --- a/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004.h +++ /dev/null @@ -1,307 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Init_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Init( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Init_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Shutdown_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Shutdown( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Shutdown_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CreateBrowser_params -{ - void *linux_side; - uint64_t _ret; - const char *pchUserAgent; - const char *pchUserCSS; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CreateBrowser( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CreateBrowser_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_RemoveBrowser_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_RemoveBrowser( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_RemoveBrowser_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_LoadURL_params -{ - void *linux_side; - uint32_t unBrowserHandle; - const char *pchURL; - const char *pchPostData; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_LoadURL( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_LoadURL_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetSize_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t unWidth; - uint32_t unHeight; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetSize( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetSize_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopLoad_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopLoad( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopLoad_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Reload_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Reload( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Reload_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoBack_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoBack( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoBack_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoForward_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoForward( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoForward_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AddHeader_params -{ - void *linux_side; - uint32_t unBrowserHandle; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AddHeader( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AddHeader_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ExecuteJavascript_params -{ - void *linux_side; - uint32_t unBrowserHandle; - const char *pchScript; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ExecuteJavascript( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ExecuteJavascript_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseUp_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t eMouseButton; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseUp( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseUp_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDown_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t eMouseButton; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDown( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDown_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDoubleClick_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t eMouseButton; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDoubleClick( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDoubleClick_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseMove_params -{ - void *linux_side; - uint32_t unBrowserHandle; - int32_t x; - int32_t y; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseMove( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseMove_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseWheel_params -{ - void *linux_side; - uint32_t unBrowserHandle; - int32_t nDelta; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseWheel( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseWheel_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyDown_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t nNativeKeyCode; - uint32_t eHTMLKeyModifiers; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyDown( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyDown_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyUp_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t nNativeKeyCode; - uint32_t eHTMLKeyModifiers; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyUp( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyUp_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyChar_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t cUnicodeChar; - uint32_t eHTMLKeyModifiers; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyChar( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyChar_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetHorizontalScroll_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t nAbsolutePixelScroll; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetHorizontalScroll( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetHorizontalScroll_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetVerticalScroll_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t nAbsolutePixelScroll; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetVerticalScroll( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetVerticalScroll_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetKeyFocus_params -{ - void *linux_side; - uint32_t unBrowserHandle; - bool bHasKeyFocus; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetKeyFocus( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetKeyFocus_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ViewSource_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ViewSource( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ViewSource_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CopyToClipboard_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CopyToClipboard( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CopyToClipboard_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_PasteFromClipboard_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_PasteFromClipboard( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_PasteFromClipboard_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Find_params -{ - void *linux_side; - uint32_t unBrowserHandle; - const char *pchSearchStr; - bool bCurrentlyInFind; - bool bReverse; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Find( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Find_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopFind_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopFind( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopFind_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GetLinkAtPosition_params -{ - void *linux_side; - uint32_t unBrowserHandle; - int32_t x; - int32_t y; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GetLinkAtPosition( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GetLinkAtPosition_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetCookie_params -{ - void *linux_side; - const char *pchHostname; - const char *pchKey; - const char *pchValue; - const char *pchPath; - uint32_t nExpires; - bool bSecure; - bool bHTTPOnly; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetCookie( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetCookie_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetPageScaleFactor_params -{ - void *linux_side; - uint32_t unBrowserHandle; - float flZoom; - int32_t nPointX; - int32_t nPointY; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetPageScaleFactor( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetPageScaleFactor_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetBackgroundMode_params -{ - void *linux_side; - uint32_t unBrowserHandle; - bool bBackgroundMode; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetBackgroundMode( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetBackgroundMode_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetDPIScalingFactor_params -{ - void *linux_side; - uint32_t unBrowserHandle; - float flDPIScaling; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetDPIScalingFactor( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetDPIScalingFactor_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AllowStartRequest_params -{ - void *linux_side; - uint32_t unBrowserHandle; - bool bAllowed; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AllowStartRequest( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AllowStartRequest_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_JSDialogResponse_params -{ - void *linux_side; - uint32_t unBrowserHandle; - bool bResult; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_JSDialogResponse( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_JSDialogResponse_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_FileLoadDialogResponse_params -{ - void *linux_side; - uint32_t unBrowserHandle; - const char **pchSelectedFiles; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_FileLoadDialogResponse( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_FileLoadDialogResponse_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005.cpp b/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005.cpp index 7072ec70..dbf24bba 100644 --- a/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005.cpp +++ b/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005.cpp @@ -1,228 +1,301 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005.h" -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Init( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Init_params *params ) +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; params->_ret = iface->Init( ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Shutdown( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Shutdown_params *params ) +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; params->_ret = iface->Shutdown( ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CreateBrowser( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CreateBrowser_params *params ) +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; params->_ret = iface->CreateBrowser( params->pchUserAgent, params->pchUserCSS ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_RemoveBrowser( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_RemoveBrowser_params *params ) +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; iface->RemoveBrowser( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_LoadURL( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_LoadURL_params *params ) +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; iface->LoadURL( params->unBrowserHandle, params->pchURL, params->pchPostData ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetSize( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetSize_params *params ) +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; iface->SetSize( params->unBrowserHandle, params->unWidth, params->unHeight ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopLoad( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopLoad_params *params ) +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; iface->StopLoad( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Reload( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Reload_params *params ) +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; iface->Reload( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoBack( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoBack_params *params ) +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; iface->GoBack( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoForward( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoForward_params *params ) +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; iface->GoForward( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AddHeader( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AddHeader_params *params ) +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; iface->AddHeader( params->unBrowserHandle, params->pchKey, params->pchValue ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ExecuteJavascript( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ExecuteJavascript_params *params ) +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; iface->ExecuteJavascript( params->unBrowserHandle, params->pchScript ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseUp( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseUp_params *params ) +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; iface->MouseUp( params->unBrowserHandle, params->eMouseButton ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDown( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDown_params *params ) +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; iface->MouseDown( params->unBrowserHandle, params->eMouseButton ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDoubleClick( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDoubleClick_params *params ) +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; iface->MouseDoubleClick( params->unBrowserHandle, params->eMouseButton ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseMove( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseMove_params *params ) +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; iface->MouseMove( params->unBrowserHandle, params->x, params->y ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseWheel( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseWheel_params *params ) +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; iface->MouseWheel( params->unBrowserHandle, params->nDelta ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyDown( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyDown_params *params ) +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; uint32_t u_nNativeKeyCode = manual_convert_nNativeKeyCode( params->nNativeKeyCode ); iface->KeyDown( params->unBrowserHandle, u_nNativeKeyCode, params->eHTMLKeyModifiers, params->bIsSystemKey ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyUp( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyUp_params *params ) +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; uint32_t u_nNativeKeyCode = manual_convert_nNativeKeyCode( params->nNativeKeyCode ); iface->KeyUp( params->unBrowserHandle, u_nNativeKeyCode, params->eHTMLKeyModifiers ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyChar( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyChar_params *params ) +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; iface->KeyChar( params->unBrowserHandle, params->cUnicodeChar, params->eHTMLKeyModifiers ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetHorizontalScroll( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetHorizontalScroll_params *params ) +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; iface->SetHorizontalScroll( params->unBrowserHandle, params->nAbsolutePixelScroll ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetVerticalScroll( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetVerticalScroll_params *params ) +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; iface->SetVerticalScroll( params->unBrowserHandle, params->nAbsolutePixelScroll ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetKeyFocus( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetKeyFocus_params *params ) +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; iface->SetKeyFocus( params->unBrowserHandle, params->bHasKeyFocus ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ViewSource( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ViewSource_params *params ) +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; iface->ViewSource( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CopyToClipboard( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CopyToClipboard_params *params ) +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; iface->CopyToClipboard( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_PasteFromClipboard( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_PasteFromClipboard_params *params ) +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; iface->PasteFromClipboard( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Find( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Find_params *params ) +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; iface->Find( params->unBrowserHandle, params->pchSearchStr, params->bCurrentlyInFind, params->bReverse ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopFind( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopFind_params *params ) +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; iface->StopFind( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GetLinkAtPosition( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GetLinkAtPosition_params *params ) +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; iface->GetLinkAtPosition( params->unBrowserHandle, params->x, params->y ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetCookie( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetCookie_params *params ) +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; iface->SetCookie( params->pchHostname, params->pchKey, params->pchValue, params->pchPath, params->nExpires, params->bSecure, params->bHTTPOnly ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetPageScaleFactor( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetPageScaleFactor_params *params ) +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; iface->SetPageScaleFactor( params->unBrowserHandle, params->flZoom, params->nPointX, params->nPointY ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetBackgroundMode( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetBackgroundMode_params *params ) +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; iface->SetBackgroundMode( params->unBrowserHandle, params->bBackgroundMode ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetDPIScalingFactor( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetDPIScalingFactor_params *params ) +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; iface->SetDPIScalingFactor( params->unBrowserHandle, params->flDPIScaling ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_OpenDeveloperTools( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_OpenDeveloperTools_params *params ) +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; iface->OpenDeveloperTools( params->unBrowserHandle ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AllowStartRequest( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AllowStartRequest_params *params ) +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; iface->AllowStartRequest( params->unBrowserHandle, params->bAllowed ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_JSDialogResponse( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_JSDialogResponse_params *params ) +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; iface->JSDialogResponse( params->unBrowserHandle, params->bResult ); + return 0; } -void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_FileLoadDialogResponse( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_FileLoadDialogResponse_params *params ) +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; iface->FileLoadDialogResponse( params->unBrowserHandle, params->pchSelectedFiles ); + return 0; } diff --git a/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005.h b/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005.h deleted file mode 100644 index 14695b3e..00000000 --- a/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005.h +++ /dev/null @@ -1,315 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Init_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Init( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Init_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Shutdown_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Shutdown( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Shutdown_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CreateBrowser_params -{ - void *linux_side; - uint64_t _ret; - const char *pchUserAgent; - const char *pchUserCSS; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CreateBrowser( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CreateBrowser_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_RemoveBrowser_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_RemoveBrowser( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_RemoveBrowser_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_LoadURL_params -{ - void *linux_side; - uint32_t unBrowserHandle; - const char *pchURL; - const char *pchPostData; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_LoadURL( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_LoadURL_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetSize_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t unWidth; - uint32_t unHeight; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetSize( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetSize_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopLoad_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopLoad( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopLoad_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Reload_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Reload( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Reload_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoBack_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoBack( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoBack_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoForward_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoForward( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoForward_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AddHeader_params -{ - void *linux_side; - uint32_t unBrowserHandle; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AddHeader( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AddHeader_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ExecuteJavascript_params -{ - void *linux_side; - uint32_t unBrowserHandle; - const char *pchScript; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ExecuteJavascript( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ExecuteJavascript_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseUp_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t eMouseButton; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseUp( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseUp_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDown_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t eMouseButton; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDown( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDown_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDoubleClick_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t eMouseButton; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDoubleClick( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDoubleClick_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseMove_params -{ - void *linux_side; - uint32_t unBrowserHandle; - int32_t x; - int32_t y; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseMove( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseMove_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseWheel_params -{ - void *linux_side; - uint32_t unBrowserHandle; - int32_t nDelta; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseWheel( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseWheel_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyDown_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t nNativeKeyCode; - uint32_t eHTMLKeyModifiers; - bool bIsSystemKey; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyDown( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyDown_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyUp_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t nNativeKeyCode; - uint32_t eHTMLKeyModifiers; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyUp( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyUp_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyChar_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t cUnicodeChar; - uint32_t eHTMLKeyModifiers; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyChar( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyChar_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetHorizontalScroll_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t nAbsolutePixelScroll; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetHorizontalScroll( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetHorizontalScroll_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetVerticalScroll_params -{ - void *linux_side; - uint32_t unBrowserHandle; - uint32_t nAbsolutePixelScroll; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetVerticalScroll( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetVerticalScroll_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetKeyFocus_params -{ - void *linux_side; - uint32_t unBrowserHandle; - bool bHasKeyFocus; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetKeyFocus( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetKeyFocus_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ViewSource_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ViewSource( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ViewSource_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CopyToClipboard_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CopyToClipboard( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CopyToClipboard_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_PasteFromClipboard_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_PasteFromClipboard( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_PasteFromClipboard_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Find_params -{ - void *linux_side; - uint32_t unBrowserHandle; - const char *pchSearchStr; - bool bCurrentlyInFind; - bool bReverse; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Find( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Find_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopFind_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopFind( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopFind_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GetLinkAtPosition_params -{ - void *linux_side; - uint32_t unBrowserHandle; - int32_t x; - int32_t y; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GetLinkAtPosition( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GetLinkAtPosition_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetCookie_params -{ - void *linux_side; - const char *pchHostname; - const char *pchKey; - const char *pchValue; - const char *pchPath; - uint32_t nExpires; - bool bSecure; - bool bHTTPOnly; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetCookie( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetCookie_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetPageScaleFactor_params -{ - void *linux_side; - uint32_t unBrowserHandle; - float flZoom; - int32_t nPointX; - int32_t nPointY; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetPageScaleFactor( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetPageScaleFactor_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetBackgroundMode_params -{ - void *linux_side; - uint32_t unBrowserHandle; - bool bBackgroundMode; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetBackgroundMode( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetBackgroundMode_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetDPIScalingFactor_params -{ - void *linux_side; - uint32_t unBrowserHandle; - float flDPIScaling; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetDPIScalingFactor( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetDPIScalingFactor_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_OpenDeveloperTools_params -{ - void *linux_side; - uint32_t unBrowserHandle; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_OpenDeveloperTools( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_OpenDeveloperTools_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AllowStartRequest_params -{ - void *linux_side; - uint32_t unBrowserHandle; - bool bAllowed; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AllowStartRequest( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AllowStartRequest_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_JSDialogResponse_params -{ - void *linux_side; - uint32_t unBrowserHandle; - bool bResult; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_JSDialogResponse( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_JSDialogResponse_params *params ); - -struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_FileLoadDialogResponse_params -{ - void *linux_side; - uint32_t unBrowserHandle; - const char **pchSelectedFiles; -}; -extern void cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_FileLoadDialogResponse( struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_FileLoadDialogResponse_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001.cpp b/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001.cpp index 007e2959..ae9b0885 100644 --- a/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001.cpp +++ b/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001.cpp @@ -1,94 +1,123 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001.h" -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_CreateHTTPRequest( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_CreateHTTPRequest_params *params ) +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; params->_ret = iface->CreateHTTPRequest( params->eHTTPRequestMethod, params->pchAbsoluteURL ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestContextValue( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestContextValue_params *params ) +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; params->_ret = iface->SetHTTPRequestContextValue( params->hRequest, params->ulContextValue ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetworkActivityTimeout( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetworkActivityTimeout_params *params ) +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; params->_ret = iface->SetHTTPRequestNetworkActivityTimeout( params->hRequest, params->unTimeoutSeconds ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeaderValue( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeaderValue_params *params ) +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; params->_ret = iface->SetHTTPRequestHeaderValue( params->hRequest, params->pchHeaderName, params->pchHeaderValue ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOrPostParameter( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOrPostParameter_params *params ) +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; params->_ret = iface->SetHTTPRequestGetOrPostParameter( params->hRequest, params->pchParamName, params->pchParamValue ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest_params *params ) +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; params->_ret = iface->SendHTTPRequest( params->hRequest, params->pCallHandle ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_DeferHTTPRequest( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_DeferHTTPRequest_params *params ) +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; params->_ret = iface->DeferHTTPRequest( params->hRequest ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_PrioritizeHTTPRequest( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_PrioritizeHTTPRequest_params *params ) +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; params->_ret = iface->PrioritizeHTTPRequest( params->hRequest ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderSize( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderSize_params *params ) +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; params->_ret = iface->GetHTTPResponseHeaderSize( params->hRequest, params->pchHeaderName, params->unResponseHeaderSize ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderValue( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderValue_params *params ) +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; params->_ret = iface->GetHTTPResponseHeaderValue( params->hRequest, params->pchHeaderName, params->pHeaderValueBuffer, params->unBufferSize ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodySize( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodySize_params *params ) +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; params->_ret = iface->GetHTTPResponseBodySize( params->hRequest, params->unBodySize ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodyData( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodyData_params *params ) +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; params->_ret = iface->GetHTTPResponseBodyData( params->hRequest, params->pBodyDataBuffer, params->unBufferSize ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_ReleaseHTTPRequest( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_ReleaseHTTPRequest_params *params ) +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; params->_ret = iface->ReleaseHTTPRequest( params->hRequest ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProgressPct( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProgressPct_params *params ) +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; params->_ret = iface->GetHTTPDownloadProgressPct( params->hRequest, params->pflPercentOut ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestRawPostBody( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestRawPostBody_params *params ) +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; params->_ret = iface->SetHTTPRequestRawPostBody( params->hRequest, params->pchContentType, params->pubBody, params->unBodyLen ); + return 0; } diff --git a/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001.h b/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001.h deleted file mode 100644 index 21348330..00000000 --- a/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001.h +++ /dev/null @@ -1,152 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_CreateHTTPRequest_params -{ - void *linux_side; - uint32_t _ret; - uint32_t eHTTPRequestMethod; - const char *pchAbsoluteURL; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_CreateHTTPRequest( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_CreateHTTPRequest_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestContextValue_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - uint64_t ulContextValue; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestContextValue( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestContextValue_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetworkActivityTimeout_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - uint32_t unTimeoutSeconds; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetworkActivityTimeout( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetworkActivityTimeout_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeaderValue_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - const char *pchHeaderName; - const char *pchHeaderValue; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeaderValue( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeaderValue_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOrPostParameter_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - const char *pchParamName; - const char *pchParamValue; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOrPostParameter( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOrPostParameter_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - uint64_t *pCallHandle; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_DeferHTTPRequest_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_DeferHTTPRequest( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_DeferHTTPRequest_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_PrioritizeHTTPRequest_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_PrioritizeHTTPRequest( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_PrioritizeHTTPRequest_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderSize_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - const char *pchHeaderName; - uint32_t *unResponseHeaderSize; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderSize( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderSize_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderValue_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - const char *pchHeaderName; - uint8_t *pHeaderValueBuffer; - uint32_t unBufferSize; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderValue( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderValue_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodySize_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - uint32_t *unBodySize; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodySize( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodySize_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodyData_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - uint8_t *pBodyDataBuffer; - uint32_t unBufferSize; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodyData( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodyData_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_ReleaseHTTPRequest_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_ReleaseHTTPRequest( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_ReleaseHTTPRequest_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProgressPct_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - float *pflPercentOut; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProgressPct( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProgressPct_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestRawPostBody_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - const char *pchContentType; - uint8_t *pubBody; - uint32_t unBodyLen; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestRawPostBody( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestRawPostBody_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002.cpp b/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002.cpp index 412172e0..95202078 100644 --- a/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002.cpp +++ b/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002.cpp @@ -1,154 +1,203 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002.h" -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateHTTPRequest( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateHTTPRequest_params *params ) +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; params->_ret = iface->CreateHTTPRequest( params->eHTTPRequestMethod, params->pchAbsoluteURL ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestContextValue( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestContextValue_params *params ) +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; params->_ret = iface->SetHTTPRequestContextValue( params->hRequest, params->ulContextValue ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetworkActivityTimeout( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetworkActivityTimeout_params *params ) +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; params->_ret = iface->SetHTTPRequestNetworkActivityTimeout( params->hRequest, params->unTimeoutSeconds ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeaderValue( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeaderValue_params *params ) +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; params->_ret = iface->SetHTTPRequestHeaderValue( params->hRequest, params->pchHeaderName, params->pchHeaderValue ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOrPostParameter( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOrPostParameter_params *params ) +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; params->_ret = iface->SetHTTPRequestGetOrPostParameter( params->hRequest, params->pchParamName, params->pchParamValue ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest_params *params ) +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; params->_ret = iface->SendHTTPRequest( params->hRequest, params->pCallHandle ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAndStreamResponse( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAndStreamResponse_params *params ) +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; params->_ret = iface->SendHTTPRequestAndStreamResponse( params->hRequest, params->pCallHandle ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_DeferHTTPRequest( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_DeferHTTPRequest_params *params ) +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; params->_ret = iface->DeferHTTPRequest( params->hRequest ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_PrioritizeHTTPRequest( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_PrioritizeHTTPRequest_params *params ) +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; params->_ret = iface->PrioritizeHTTPRequest( params->hRequest ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderSize( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderSize_params *params ) +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; params->_ret = iface->GetHTTPResponseHeaderSize( params->hRequest, params->pchHeaderName, params->unResponseHeaderSize ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderValue( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderValue_params *params ) +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; params->_ret = iface->GetHTTPResponseHeaderValue( params->hRequest, params->pchHeaderName, params->pHeaderValueBuffer, params->unBufferSize ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodySize( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodySize_params *params ) +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; params->_ret = iface->GetHTTPResponseBodySize( params->hRequest, params->unBodySize ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodyData( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodyData_params *params ) +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; params->_ret = iface->GetHTTPResponseBodyData( params->hRequest, params->pBodyDataBuffer, params->unBufferSize ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingResponseBodyData( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingResponseBodyData_params *params ) +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; params->_ret = iface->GetHTTPStreamingResponseBodyData( params->hRequest, params->cOffset, params->pBodyDataBuffer, params->unBufferSize ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseHTTPRequest( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseHTTPRequest_params *params ) +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; params->_ret = iface->ReleaseHTTPRequest( params->hRequest ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadProgressPct( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadProgressPct_params *params ) +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; params->_ret = iface->GetHTTPDownloadProgressPct( params->hRequest, params->pflPercentOut ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRawPostBody( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRawPostBody_params *params ) +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; params->_ret = iface->SetHTTPRequestRawPostBody( params->hRequest, params->pchContentType, params->pubBody, params->unBodyLen ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateCookieContainer( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateCookieContainer_params *params ) +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; params->_ret = iface->CreateCookieContainer( params->bAllowResponsesToModify ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseCookieContainer( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseCookieContainer_params *params ) +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; params->_ret = iface->ReleaseCookieContainer( params->hCookieContainer ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie_params *params ) +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; params->_ret = iface->SetCookie( params->hCookieContainer, params->pchHost, params->pchUrl, params->pchCookie ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCookieContainer( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCookieContainer_params *params ) +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; params->_ret = iface->SetHTTPRequestCookieContainer( params->hRequest, params->hCookieContainer ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUserAgentInfo( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUserAgentInfo_params *params ) +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; params->_ret = iface->SetHTTPRequestUserAgentInfo( params->hRequest, params->pchUserAgentInfo ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRequiresVerifiedCertificate( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRequiresVerifiedCertificate_params *params ) +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; params->_ret = iface->SetHTTPRequestRequiresVerifiedCertificate( params->hRequest, params->bRequireVerifiedCertificate ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsoluteTimeoutMS( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsoluteTimeoutMS_params *params ) +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; params->_ret = iface->SetHTTPRequestAbsoluteTimeoutMS( params->hRequest, params->unMilliseconds ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPRequestWasTimedOut( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPRequestWasTimedOut_params *params ) +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; params->_ret = iface->GetHTTPRequestWasTimedOut( params->hRequest, params->pbWasTimedOut ); + return 0; } diff --git a/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002.h b/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002.h deleted file mode 100644 index 2d511906..00000000 --- a/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002.h +++ /dev/null @@ -1,244 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateHTTPRequest_params -{ - void *linux_side; - uint32_t _ret; - uint32_t eHTTPRequestMethod; - const char *pchAbsoluteURL; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateHTTPRequest( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateHTTPRequest_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestContextValue_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - uint64_t ulContextValue; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestContextValue( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestContextValue_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetworkActivityTimeout_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - uint32_t unTimeoutSeconds; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetworkActivityTimeout( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetworkActivityTimeout_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeaderValue_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - const char *pchHeaderName; - const char *pchHeaderValue; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeaderValue( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeaderValue_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOrPostParameter_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - const char *pchParamName; - const char *pchParamValue; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOrPostParameter( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOrPostParameter_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - uint64_t *pCallHandle; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAndStreamResponse_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - uint64_t *pCallHandle; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAndStreamResponse( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAndStreamResponse_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_DeferHTTPRequest_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_DeferHTTPRequest( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_DeferHTTPRequest_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_PrioritizeHTTPRequest_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_PrioritizeHTTPRequest( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_PrioritizeHTTPRequest_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderSize_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - const char *pchHeaderName; - uint32_t *unResponseHeaderSize; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderSize( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderSize_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderValue_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - const char *pchHeaderName; - uint8_t *pHeaderValueBuffer; - uint32_t unBufferSize; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderValue( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderValue_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodySize_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - uint32_t *unBodySize; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodySize( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodySize_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodyData_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - uint8_t *pBodyDataBuffer; - uint32_t unBufferSize; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodyData( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodyData_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingResponseBodyData_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - uint32_t cOffset; - uint8_t *pBodyDataBuffer; - uint32_t unBufferSize; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingResponseBodyData( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingResponseBodyData_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseHTTPRequest_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseHTTPRequest( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseHTTPRequest_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadProgressPct_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - float *pflPercentOut; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadProgressPct( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadProgressPct_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRawPostBody_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - const char *pchContentType; - uint8_t *pubBody; - uint32_t unBodyLen; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRawPostBody( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRawPostBody_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateCookieContainer_params -{ - void *linux_side; - uint32_t _ret; - bool bAllowResponsesToModify; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateCookieContainer( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateCookieContainer_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseCookieContainer_params -{ - void *linux_side; - bool _ret; - uint32_t hCookieContainer; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseCookieContainer( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseCookieContainer_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie_params -{ - void *linux_side; - bool _ret; - uint32_t hCookieContainer; - const char *pchHost; - const char *pchUrl; - const char *pchCookie; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCookieContainer_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - uint32_t hCookieContainer; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCookieContainer( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCookieContainer_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUserAgentInfo_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - const char *pchUserAgentInfo; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUserAgentInfo( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUserAgentInfo_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRequiresVerifiedCertificate_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - bool bRequireVerifiedCertificate; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRequiresVerifiedCertificate( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRequiresVerifiedCertificate_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsoluteTimeoutMS_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - uint32_t unMilliseconds; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsoluteTimeoutMS( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsoluteTimeoutMS_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPRequestWasTimedOut_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - bool *pbWasTimedOut; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPRequestWasTimedOut( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPRequestWasTimedOut_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003.cpp b/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003.cpp index a07b54d0..80e9daa4 100644 --- a/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003.cpp +++ b/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003.cpp @@ -1,154 +1,203 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003.h" -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateHTTPRequest( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateHTTPRequest_params *params ) +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; params->_ret = iface->CreateHTTPRequest( params->eHTTPRequestMethod, params->pchAbsoluteURL ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestContextValue( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestContextValue_params *params ) +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; params->_ret = iface->SetHTTPRequestContextValue( params->hRequest, params->ulContextValue ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetworkActivityTimeout( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetworkActivityTimeout_params *params ) +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; params->_ret = iface->SetHTTPRequestNetworkActivityTimeout( params->hRequest, params->unTimeoutSeconds ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeaderValue( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeaderValue_params *params ) +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; params->_ret = iface->SetHTTPRequestHeaderValue( params->hRequest, params->pchHeaderName, params->pchHeaderValue ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOrPostParameter( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOrPostParameter_params *params ) +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; params->_ret = iface->SetHTTPRequestGetOrPostParameter( params->hRequest, params->pchParamName, params->pchParamValue ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest_params *params ) +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; params->_ret = iface->SendHTTPRequest( params->hRequest, params->pCallHandle ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAndStreamResponse( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAndStreamResponse_params *params ) +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; params->_ret = iface->SendHTTPRequestAndStreamResponse( params->hRequest, params->pCallHandle ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_DeferHTTPRequest( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_DeferHTTPRequest_params *params ) +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; params->_ret = iface->DeferHTTPRequest( params->hRequest ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_PrioritizeHTTPRequest( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_PrioritizeHTTPRequest_params *params ) +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; params->_ret = iface->PrioritizeHTTPRequest( params->hRequest ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderSize( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderSize_params *params ) +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; params->_ret = iface->GetHTTPResponseHeaderSize( params->hRequest, params->pchHeaderName, params->unResponseHeaderSize ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderValue( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderValue_params *params ) +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; params->_ret = iface->GetHTTPResponseHeaderValue( params->hRequest, params->pchHeaderName, params->pHeaderValueBuffer, params->unBufferSize ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodySize( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodySize_params *params ) +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; params->_ret = iface->GetHTTPResponseBodySize( params->hRequest, params->unBodySize ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodyData( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodyData_params *params ) +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; params->_ret = iface->GetHTTPResponseBodyData( params->hRequest, params->pBodyDataBuffer, params->unBufferSize ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingResponseBodyData( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingResponseBodyData_params *params ) +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; params->_ret = iface->GetHTTPStreamingResponseBodyData( params->hRequest, params->cOffset, params->pBodyDataBuffer, params->unBufferSize ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseHTTPRequest( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseHTTPRequest_params *params ) +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; params->_ret = iface->ReleaseHTTPRequest( params->hRequest ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadProgressPct( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadProgressPct_params *params ) +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; params->_ret = iface->GetHTTPDownloadProgressPct( params->hRequest, params->pflPercentOut ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRawPostBody( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRawPostBody_params *params ) +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; params->_ret = iface->SetHTTPRequestRawPostBody( params->hRequest, params->pchContentType, params->pubBody, params->unBodyLen ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateCookieContainer( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateCookieContainer_params *params ) +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; params->_ret = iface->CreateCookieContainer( params->bAllowResponsesToModify ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseCookieContainer( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseCookieContainer_params *params ) +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; params->_ret = iface->ReleaseCookieContainer( params->hCookieContainer ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie_params *params ) +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; params->_ret = iface->SetCookie( params->hCookieContainer, params->pchHost, params->pchUrl, params->pchCookie ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCookieContainer( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCookieContainer_params *params ) +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; params->_ret = iface->SetHTTPRequestCookieContainer( params->hRequest, params->hCookieContainer ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUserAgentInfo( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUserAgentInfo_params *params ) +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; params->_ret = iface->SetHTTPRequestUserAgentInfo( params->hRequest, params->pchUserAgentInfo ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRequiresVerifiedCertificate( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRequiresVerifiedCertificate_params *params ) +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; params->_ret = iface->SetHTTPRequestRequiresVerifiedCertificate( params->hRequest, params->bRequireVerifiedCertificate ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsoluteTimeoutMS( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsoluteTimeoutMS_params *params ) +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; params->_ret = iface->SetHTTPRequestAbsoluteTimeoutMS( params->hRequest, params->unMilliseconds ); + return 0; } -void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPRequestWasTimedOut( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPRequestWasTimedOut_params *params ) +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; params->_ret = iface->GetHTTPRequestWasTimedOut( params->hRequest, params->pbWasTimedOut ); + return 0; } diff --git a/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003.h b/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003.h deleted file mode 100644 index 8fa44627..00000000 --- a/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003.h +++ /dev/null @@ -1,244 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateHTTPRequest_params -{ - void *linux_side; - uint32_t _ret; - uint32_t eHTTPRequestMethod; - const char *pchAbsoluteURL; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateHTTPRequest( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateHTTPRequest_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestContextValue_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - uint64_t ulContextValue; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestContextValue( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestContextValue_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetworkActivityTimeout_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - uint32_t unTimeoutSeconds; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetworkActivityTimeout( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetworkActivityTimeout_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeaderValue_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - const char *pchHeaderName; - const char *pchHeaderValue; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeaderValue( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeaderValue_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOrPostParameter_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - const char *pchParamName; - const char *pchParamValue; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOrPostParameter( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOrPostParameter_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - uint64_t *pCallHandle; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAndStreamResponse_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - uint64_t *pCallHandle; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAndStreamResponse( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAndStreamResponse_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_DeferHTTPRequest_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_DeferHTTPRequest( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_DeferHTTPRequest_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_PrioritizeHTTPRequest_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_PrioritizeHTTPRequest( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_PrioritizeHTTPRequest_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderSize_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - const char *pchHeaderName; - uint32_t *unResponseHeaderSize; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderSize( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderSize_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderValue_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - const char *pchHeaderName; - uint8_t *pHeaderValueBuffer; - uint32_t unBufferSize; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderValue( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderValue_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodySize_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - uint32_t *unBodySize; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodySize( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodySize_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodyData_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - uint8_t *pBodyDataBuffer; - uint32_t unBufferSize; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodyData( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodyData_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingResponseBodyData_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - uint32_t cOffset; - uint8_t *pBodyDataBuffer; - uint32_t unBufferSize; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingResponseBodyData( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingResponseBodyData_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseHTTPRequest_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseHTTPRequest( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseHTTPRequest_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadProgressPct_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - float *pflPercentOut; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadProgressPct( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadProgressPct_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRawPostBody_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - const char *pchContentType; - uint8_t *pubBody; - uint32_t unBodyLen; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRawPostBody( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRawPostBody_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateCookieContainer_params -{ - void *linux_side; - uint32_t _ret; - bool bAllowResponsesToModify; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateCookieContainer( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateCookieContainer_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseCookieContainer_params -{ - void *linux_side; - bool _ret; - uint32_t hCookieContainer; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseCookieContainer( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseCookieContainer_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie_params -{ - void *linux_side; - bool _ret; - uint32_t hCookieContainer; - const char *pchHost; - const char *pchUrl; - const char *pchCookie; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCookieContainer_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - uint32_t hCookieContainer; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCookieContainer( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCookieContainer_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUserAgentInfo_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - const char *pchUserAgentInfo; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUserAgentInfo( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUserAgentInfo_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRequiresVerifiedCertificate_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - bool bRequireVerifiedCertificate; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRequiresVerifiedCertificate( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRequiresVerifiedCertificate_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsoluteTimeoutMS_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - uint32_t unMilliseconds; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsoluteTimeoutMS( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsoluteTimeoutMS_params *params ); - -struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPRequestWasTimedOut_params -{ - void *linux_side; - bool _ret; - uint32_t hRequest; - bool *pbWasTimedOut; -}; -extern void cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPRequestWasTimedOut( struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPRequestWasTimedOut_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamInput_SteamInput001.cpp b/lsteamclient/cppISteamInput_SteamInput001.cpp index da772a94..e3e227e2 100644 --- a/lsteamclient/cppISteamInput_SteamInput001.cpp +++ b/lsteamclient/cppISteamInput_SteamInput001.cpp @@ -1,202 +1,267 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamInput_SteamInput001.h" -void cppISteamInput_SteamInput001_Init( struct cppISteamInput_SteamInput001_Init_params *params ) +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; params->_ret = iface->Init( ); + return 0; } -void cppISteamInput_SteamInput001_Shutdown( struct cppISteamInput_SteamInput001_Shutdown_params *params ) +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; params->_ret = iface->Shutdown( ); + return 0; } -void cppISteamInput_SteamInput001_RunFrame( struct cppISteamInput_SteamInput001_RunFrame_params *params ) +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; iface->RunFrame( ); + return 0; } -void cppISteamInput_SteamInput001_GetConnectedControllers( struct cppISteamInput_SteamInput001_GetConnectedControllers_params *params ) +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; params->_ret = iface->GetConnectedControllers( params->handlesOut ); + return 0; } -void cppISteamInput_SteamInput001_GetActionSetHandle( struct cppISteamInput_SteamInput001_GetActionSetHandle_params *params ) +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; params->_ret = iface->GetActionSetHandle( params->pszActionSetName ); + return 0; } -void cppISteamInput_SteamInput001_ActivateActionSet( struct cppISteamInput_SteamInput001_ActivateActionSet_params *params ) +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; iface->ActivateActionSet( params->inputHandle, params->actionSetHandle ); + return 0; } -void cppISteamInput_SteamInput001_GetCurrentActionSet( struct cppISteamInput_SteamInput001_GetCurrentActionSet_params *params ) +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; params->_ret = iface->GetCurrentActionSet( params->inputHandle ); + return 0; } -void cppISteamInput_SteamInput001_ActivateActionSetLayer( struct cppISteamInput_SteamInput001_ActivateActionSetLayer_params *params ) +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; iface->ActivateActionSetLayer( params->inputHandle, params->actionSetLayerHandle ); + return 0; } -void cppISteamInput_SteamInput001_DeactivateActionSetLayer( struct cppISteamInput_SteamInput001_DeactivateActionSetLayer_params *params ) +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; iface->DeactivateActionSetLayer( params->inputHandle, params->actionSetLayerHandle ); + return 0; } -void cppISteamInput_SteamInput001_DeactivateAllActionSetLayers( struct cppISteamInput_SteamInput001_DeactivateAllActionSetLayers_params *params ) +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; iface->DeactivateAllActionSetLayers( params->inputHandle ); + return 0; } -void cppISteamInput_SteamInput001_GetActiveActionSetLayers( struct cppISteamInput_SteamInput001_GetActiveActionSetLayers_params *params ) +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; params->_ret = iface->GetActiveActionSetLayers( params->inputHandle, params->handlesOut ); + return 0; } -void cppISteamInput_SteamInput001_GetDigitalActionHandle( struct cppISteamInput_SteamInput001_GetDigitalActionHandle_params *params ) +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; params->_ret = iface->GetDigitalActionHandle( params->pszActionName ); + return 0; } -void cppISteamInput_SteamInput001_GetDigitalActionData( struct cppISteamInput_SteamInput001_GetDigitalActionData_params *params ) +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; *params->_ret = iface->GetDigitalActionData( params->inputHandle, params->digitalActionHandle ); + return 0; } -void cppISteamInput_SteamInput001_GetDigitalActionOrigins( struct cppISteamInput_SteamInput001_GetDigitalActionOrigins_params *params ) +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; params->_ret = iface->GetDigitalActionOrigins( params->inputHandle, params->actionSetHandle, params->digitalActionHandle, params->originsOut ); + return 0; } -void cppISteamInput_SteamInput001_GetAnalogActionHandle( struct cppISteamInput_SteamInput001_GetAnalogActionHandle_params *params ) +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; params->_ret = iface->GetAnalogActionHandle( params->pszActionName ); + return 0; } -void cppISteamInput_SteamInput001_GetAnalogActionData( struct cppISteamInput_SteamInput001_GetAnalogActionData_params *params ) +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; *params->_ret = iface->GetAnalogActionData( params->inputHandle, params->analogActionHandle ); + return 0; } -void cppISteamInput_SteamInput001_GetAnalogActionOrigins( struct cppISteamInput_SteamInput001_GetAnalogActionOrigins_params *params ) +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; params->_ret = iface->GetAnalogActionOrigins( params->inputHandle, params->actionSetHandle, params->analogActionHandle, params->originsOut ); + return 0; } -void cppISteamInput_SteamInput001_GetStringForActionOrigin( struct cppISteamInput_SteamInput001_GetStringForActionOrigin_params *params ) +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; params->_ret = iface->GetStringForActionOrigin( params->eOrigin ); + return 0; } -void cppISteamInput_SteamInput001_StopAnalogActionMomentum( struct cppISteamInput_SteamInput001_StopAnalogActionMomentum_params *params ) +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; iface->StopAnalogActionMomentum( params->inputHandle, params->eAction ); + return 0; } -void cppISteamInput_SteamInput001_GetMotionData( struct cppISteamInput_SteamInput001_GetMotionData_params *params ) +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; *params->_ret = iface->GetMotionData( params->inputHandle ); + return 0; } -void cppISteamInput_SteamInput001_TriggerVibration( struct cppISteamInput_SteamInput001_TriggerVibration_params *params ) +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; iface->TriggerVibration( params->inputHandle, params->usLeftSpeed, params->usRightSpeed ); + return 0; } -void cppISteamInput_SteamInput001_SetLEDColor( struct cppISteamInput_SteamInput001_SetLEDColor_params *params ) +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; iface->SetLEDColor( params->inputHandle, params->nColorR, params->nColorG, params->nColorB, params->nFlags ); + return 0; } -void cppISteamInput_SteamInput001_TriggerHapticPulse( struct cppISteamInput_SteamInput001_TriggerHapticPulse_params *params ) +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; iface->TriggerHapticPulse( params->inputHandle, params->eTargetPad, params->usDurationMicroSec ); + return 0; } -void cppISteamInput_SteamInput001_TriggerRepeatedHapticPulse( struct cppISteamInput_SteamInput001_TriggerRepeatedHapticPulse_params *params ) +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; iface->TriggerRepeatedHapticPulse( params->inputHandle, params->eTargetPad, params->usDurationMicroSec, params->usOffMicroSec, params->unRepeat, params->nFlags ); + return 0; } -void cppISteamInput_SteamInput001_ShowBindingPanel( struct cppISteamInput_SteamInput001_ShowBindingPanel_params *params ) +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; params->_ret = iface->ShowBindingPanel( params->inputHandle ); + return 0; } -void cppISteamInput_SteamInput001_GetInputTypeForHandle( struct cppISteamInput_SteamInput001_GetInputTypeForHandle_params *params ) +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; params->_ret = iface->GetInputTypeForHandle( params->inputHandle ); + return 0; } -void cppISteamInput_SteamInput001_GetControllerForGamepadIndex( struct cppISteamInput_SteamInput001_GetControllerForGamepadIndex_params *params ) +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; params->_ret = iface->GetControllerForGamepadIndex( params->nIndex ); + return 0; } -void cppISteamInput_SteamInput001_GetGamepadIndexForController( struct cppISteamInput_SteamInput001_GetGamepadIndexForController_params *params ) +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; params->_ret = iface->GetGamepadIndexForController( params->ulinputHandle ); + return 0; } -void cppISteamInput_SteamInput001_GetStringForXboxOrigin( struct cppISteamInput_SteamInput001_GetStringForXboxOrigin_params *params ) +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; params->_ret = iface->GetStringForXboxOrigin( params->eOrigin ); + return 0; } -void cppISteamInput_SteamInput001_GetActionOriginFromXboxOrigin( struct cppISteamInput_SteamInput001_GetActionOriginFromXboxOrigin_params *params ) +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; params->_ret = iface->GetActionOriginFromXboxOrigin( params->inputHandle, params->eOrigin ); + return 0; } -void cppISteamInput_SteamInput001_TranslateActionOrigin( struct cppISteamInput_SteamInput001_TranslateActionOrigin_params *params ) +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; params->_ret = iface->TranslateActionOrigin( params->eDestinationInputType, params->eSourceOrigin ); + return 0; } -void cppISteamInput_SteamInput001_GetDeviceBindingRevision( struct cppISteamInput_SteamInput001_GetDeviceBindingRevision_params *params ) +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; params->_ret = iface->GetDeviceBindingRevision( params->inputHandle, params->pMajor, params->pMinor ); + return 0; } -void cppISteamInput_SteamInput001_GetRemotePlaySessionID( struct cppISteamInput_SteamInput001_GetRemotePlaySessionID_params *params ) +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; params->_ret = iface->GetRemotePlaySessionID( params->inputHandle ); + return 0; } diff --git a/lsteamclient/cppISteamInput_SteamInput001.h b/lsteamclient/cppISteamInput_SteamInput001.h deleted file mode 100644 index 745d869f..00000000 --- a/lsteamclient/cppISteamInput_SteamInput001.h +++ /dev/null @@ -1,309 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamInput_SteamInput001_Init_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamInput_SteamInput001_Init( struct cppISteamInput_SteamInput001_Init_params *params ); - -struct cppISteamInput_SteamInput001_Shutdown_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamInput_SteamInput001_Shutdown( struct cppISteamInput_SteamInput001_Shutdown_params *params ); - -struct cppISteamInput_SteamInput001_RunFrame_params -{ - void *linux_side; -}; -extern void cppISteamInput_SteamInput001_RunFrame( struct cppISteamInput_SteamInput001_RunFrame_params *params ); - -struct cppISteamInput_SteamInput001_GetConnectedControllers_params -{ - void *linux_side; - int32_t _ret; - uint64_t *handlesOut; -}; -extern void cppISteamInput_SteamInput001_GetConnectedControllers( struct cppISteamInput_SteamInput001_GetConnectedControllers_params *params ); - -struct cppISteamInput_SteamInput001_GetActionSetHandle_params -{ - void *linux_side; - uint64_t _ret; - const char *pszActionSetName; -}; -extern void cppISteamInput_SteamInput001_GetActionSetHandle( struct cppISteamInput_SteamInput001_GetActionSetHandle_params *params ); - -struct cppISteamInput_SteamInput001_ActivateActionSet_params -{ - void *linux_side; - uint64_t inputHandle; - uint64_t actionSetHandle; -}; -extern void cppISteamInput_SteamInput001_ActivateActionSet( struct cppISteamInput_SteamInput001_ActivateActionSet_params *params ); - -struct cppISteamInput_SteamInput001_GetCurrentActionSet_params -{ - void *linux_side; - uint64_t _ret; - uint64_t inputHandle; -}; -extern void cppISteamInput_SteamInput001_GetCurrentActionSet( struct cppISteamInput_SteamInput001_GetCurrentActionSet_params *params ); - -struct cppISteamInput_SteamInput001_ActivateActionSetLayer_params -{ - void *linux_side; - uint64_t inputHandle; - uint64_t actionSetLayerHandle; -}; -extern void cppISteamInput_SteamInput001_ActivateActionSetLayer( struct cppISteamInput_SteamInput001_ActivateActionSetLayer_params *params ); - -struct cppISteamInput_SteamInput001_DeactivateActionSetLayer_params -{ - void *linux_side; - uint64_t inputHandle; - uint64_t actionSetLayerHandle; -}; -extern void cppISteamInput_SteamInput001_DeactivateActionSetLayer( struct cppISteamInput_SteamInput001_DeactivateActionSetLayer_params *params ); - -struct cppISteamInput_SteamInput001_DeactivateAllActionSetLayers_params -{ - void *linux_side; - uint64_t inputHandle; -}; -extern void cppISteamInput_SteamInput001_DeactivateAllActionSetLayers( struct cppISteamInput_SteamInput001_DeactivateAllActionSetLayers_params *params ); - -struct cppISteamInput_SteamInput001_GetActiveActionSetLayers_params -{ - void *linux_side; - int32_t _ret; - uint64_t inputHandle; - uint64_t *handlesOut; -}; -extern void cppISteamInput_SteamInput001_GetActiveActionSetLayers( struct cppISteamInput_SteamInput001_GetActiveActionSetLayers_params *params ); - -struct cppISteamInput_SteamInput001_GetDigitalActionHandle_params -{ - void *linux_side; - uint64_t _ret; - const char *pszActionName; -}; -extern void cppISteamInput_SteamInput001_GetDigitalActionHandle( struct cppISteamInput_SteamInput001_GetDigitalActionHandle_params *params ); - -struct cppISteamInput_SteamInput001_GetDigitalActionData_params -{ - void *linux_side; - InputDigitalActionData_t *_ret; - uint64_t inputHandle; - uint64_t digitalActionHandle; -}; -extern void cppISteamInput_SteamInput001_GetDigitalActionData( struct cppISteamInput_SteamInput001_GetDigitalActionData_params *params ); - -struct cppISteamInput_SteamInput001_GetDigitalActionOrigins_params -{ - void *linux_side; - int32_t _ret; - uint64_t inputHandle; - uint64_t actionSetHandle; - uint64_t digitalActionHandle; - uint32_t *originsOut; -}; -extern void cppISteamInput_SteamInput001_GetDigitalActionOrigins( struct cppISteamInput_SteamInput001_GetDigitalActionOrigins_params *params ); - -struct cppISteamInput_SteamInput001_GetAnalogActionHandle_params -{ - void *linux_side; - uint64_t _ret; - const char *pszActionName; -}; -extern void cppISteamInput_SteamInput001_GetAnalogActionHandle( struct cppISteamInput_SteamInput001_GetAnalogActionHandle_params *params ); - -struct cppISteamInput_SteamInput001_GetAnalogActionData_params -{ - void *linux_side; - InputAnalogActionData_t *_ret; - uint64_t inputHandle; - uint64_t analogActionHandle; -}; -extern void cppISteamInput_SteamInput001_GetAnalogActionData( struct cppISteamInput_SteamInput001_GetAnalogActionData_params *params ); - -struct cppISteamInput_SteamInput001_GetAnalogActionOrigins_params -{ - void *linux_side; - int32_t _ret; - uint64_t inputHandle; - uint64_t actionSetHandle; - uint64_t analogActionHandle; - uint32_t *originsOut; -}; -extern void cppISteamInput_SteamInput001_GetAnalogActionOrigins( struct cppISteamInput_SteamInput001_GetAnalogActionOrigins_params *params ); - -struct cppISteamInput_SteamInput001_GetGlyphForActionOrigin_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; -}; -extern void cppISteamInput_SteamInput001_GetGlyphForActionOrigin( struct cppISteamInput_SteamInput001_GetGlyphForActionOrigin_params *params ); - -struct cppISteamInput_SteamInput001_GetStringForActionOrigin_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; -}; -extern void cppISteamInput_SteamInput001_GetStringForActionOrigin( struct cppISteamInput_SteamInput001_GetStringForActionOrigin_params *params ); - -struct cppISteamInput_SteamInput001_StopAnalogActionMomentum_params -{ - void *linux_side; - uint64_t inputHandle; - uint64_t eAction; -}; -extern void cppISteamInput_SteamInput001_StopAnalogActionMomentum( struct cppISteamInput_SteamInput001_StopAnalogActionMomentum_params *params ); - -struct cppISteamInput_SteamInput001_GetMotionData_params -{ - void *linux_side; - InputMotionData_t *_ret; - uint64_t inputHandle; -}; -extern void cppISteamInput_SteamInput001_GetMotionData( struct cppISteamInput_SteamInput001_GetMotionData_params *params ); - -struct cppISteamInput_SteamInput001_TriggerVibration_params -{ - void *linux_side; - uint64_t inputHandle; - uint16_t usLeftSpeed; - uint16_t usRightSpeed; -}; -extern void cppISteamInput_SteamInput001_TriggerVibration( struct cppISteamInput_SteamInput001_TriggerVibration_params *params ); - -struct cppISteamInput_SteamInput001_SetLEDColor_params -{ - void *linux_side; - uint64_t inputHandle; - uint8_t nColorR; - uint8_t nColorG; - uint8_t nColorB; - uint32_t nFlags; -}; -extern void cppISteamInput_SteamInput001_SetLEDColor( struct cppISteamInput_SteamInput001_SetLEDColor_params *params ); - -struct cppISteamInput_SteamInput001_TriggerHapticPulse_params -{ - void *linux_side; - uint64_t inputHandle; - uint32_t eTargetPad; - uint16_t usDurationMicroSec; -}; -extern void cppISteamInput_SteamInput001_TriggerHapticPulse( struct cppISteamInput_SteamInput001_TriggerHapticPulse_params *params ); - -struct cppISteamInput_SteamInput001_TriggerRepeatedHapticPulse_params -{ - void *linux_side; - uint64_t inputHandle; - uint32_t eTargetPad; - uint16_t usDurationMicroSec; - uint16_t usOffMicroSec; - uint16_t unRepeat; - uint32_t nFlags; -}; -extern void cppISteamInput_SteamInput001_TriggerRepeatedHapticPulse( struct cppISteamInput_SteamInput001_TriggerRepeatedHapticPulse_params *params ); - -struct cppISteamInput_SteamInput001_ShowBindingPanel_params -{ - void *linux_side; - bool _ret; - uint64_t inputHandle; -}; -extern void cppISteamInput_SteamInput001_ShowBindingPanel( struct cppISteamInput_SteamInput001_ShowBindingPanel_params *params ); - -struct cppISteamInput_SteamInput001_GetInputTypeForHandle_params -{ - void *linux_side; - uint32_t _ret; - uint64_t inputHandle; -}; -extern void cppISteamInput_SteamInput001_GetInputTypeForHandle( struct cppISteamInput_SteamInput001_GetInputTypeForHandle_params *params ); - -struct cppISteamInput_SteamInput001_GetControllerForGamepadIndex_params -{ - void *linux_side; - uint64_t _ret; - int32_t nIndex; -}; -extern void cppISteamInput_SteamInput001_GetControllerForGamepadIndex( struct cppISteamInput_SteamInput001_GetControllerForGamepadIndex_params *params ); - -struct cppISteamInput_SteamInput001_GetGamepadIndexForController_params -{ - void *linux_side; - int32_t _ret; - uint64_t ulinputHandle; -}; -extern void cppISteamInput_SteamInput001_GetGamepadIndexForController( struct cppISteamInput_SteamInput001_GetGamepadIndexForController_params *params ); - -struct cppISteamInput_SteamInput001_GetStringForXboxOrigin_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; -}; -extern void cppISteamInput_SteamInput001_GetStringForXboxOrigin( struct cppISteamInput_SteamInput001_GetStringForXboxOrigin_params *params ); - -struct cppISteamInput_SteamInput001_GetGlyphForXboxOrigin_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; -}; -extern void cppISteamInput_SteamInput001_GetGlyphForXboxOrigin( struct cppISteamInput_SteamInput001_GetGlyphForXboxOrigin_params *params ); - -struct cppISteamInput_SteamInput001_GetActionOriginFromXboxOrigin_params -{ - void *linux_side; - uint32_t _ret; - uint64_t inputHandle; - uint32_t eOrigin; -}; -extern void cppISteamInput_SteamInput001_GetActionOriginFromXboxOrigin( struct cppISteamInput_SteamInput001_GetActionOriginFromXboxOrigin_params *params ); - -struct cppISteamInput_SteamInput001_TranslateActionOrigin_params -{ - void *linux_side; - uint32_t _ret; - uint32_t eDestinationInputType; - uint32_t eSourceOrigin; -}; -extern void cppISteamInput_SteamInput001_TranslateActionOrigin( struct cppISteamInput_SteamInput001_TranslateActionOrigin_params *params ); - -struct cppISteamInput_SteamInput001_GetDeviceBindingRevision_params -{ - void *linux_side; - bool _ret; - uint64_t inputHandle; - int32_t *pMajor; - int32_t *pMinor; -}; -extern void cppISteamInput_SteamInput001_GetDeviceBindingRevision( struct cppISteamInput_SteamInput001_GetDeviceBindingRevision_params *params ); - -struct cppISteamInput_SteamInput001_GetRemotePlaySessionID_params -{ - void *linux_side; - uint32_t _ret; - uint64_t inputHandle; -}; -extern void cppISteamInput_SteamInput001_GetRemotePlaySessionID( struct cppISteamInput_SteamInput001_GetRemotePlaySessionID_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamInput_SteamInput002.cpp b/lsteamclient/cppISteamInput_SteamInput002.cpp index d63e97f5..c0082d9b 100644 --- a/lsteamclient/cppISteamInput_SteamInput002.cpp +++ b/lsteamclient/cppISteamInput_SteamInput002.cpp @@ -1,202 +1,267 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamInput_SteamInput002.h" -void cppISteamInput_SteamInput002_Init( struct cppISteamInput_SteamInput002_Init_params *params ) +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; params->_ret = iface->Init( ); + return 0; } -void cppISteamInput_SteamInput002_Shutdown( struct cppISteamInput_SteamInput002_Shutdown_params *params ) +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; params->_ret = iface->Shutdown( ); + return 0; } -void cppISteamInput_SteamInput002_RunFrame( struct cppISteamInput_SteamInput002_RunFrame_params *params ) +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; iface->RunFrame( ); + return 0; } -void cppISteamInput_SteamInput002_GetConnectedControllers( struct cppISteamInput_SteamInput002_GetConnectedControllers_params *params ) +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; params->_ret = iface->GetConnectedControllers( params->handlesOut ); + return 0; } -void cppISteamInput_SteamInput002_GetActionSetHandle( struct cppISteamInput_SteamInput002_GetActionSetHandle_params *params ) +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; params->_ret = iface->GetActionSetHandle( params->pszActionSetName ); + return 0; } -void cppISteamInput_SteamInput002_ActivateActionSet( struct cppISteamInput_SteamInput002_ActivateActionSet_params *params ) +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; iface->ActivateActionSet( params->inputHandle, params->actionSetHandle ); + return 0; } -void cppISteamInput_SteamInput002_GetCurrentActionSet( struct cppISteamInput_SteamInput002_GetCurrentActionSet_params *params ) +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; params->_ret = iface->GetCurrentActionSet( params->inputHandle ); + return 0; } -void cppISteamInput_SteamInput002_ActivateActionSetLayer( struct cppISteamInput_SteamInput002_ActivateActionSetLayer_params *params ) +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; iface->ActivateActionSetLayer( params->inputHandle, params->actionSetLayerHandle ); + return 0; } -void cppISteamInput_SteamInput002_DeactivateActionSetLayer( struct cppISteamInput_SteamInput002_DeactivateActionSetLayer_params *params ) +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; iface->DeactivateActionSetLayer( params->inputHandle, params->actionSetLayerHandle ); + return 0; } -void cppISteamInput_SteamInput002_DeactivateAllActionSetLayers( struct cppISteamInput_SteamInput002_DeactivateAllActionSetLayers_params *params ) +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; iface->DeactivateAllActionSetLayers( params->inputHandle ); + return 0; } -void cppISteamInput_SteamInput002_GetActiveActionSetLayers( struct cppISteamInput_SteamInput002_GetActiveActionSetLayers_params *params ) +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; params->_ret = iface->GetActiveActionSetLayers( params->inputHandle, params->handlesOut ); + return 0; } -void cppISteamInput_SteamInput002_GetDigitalActionHandle( struct cppISteamInput_SteamInput002_GetDigitalActionHandle_params *params ) +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; params->_ret = iface->GetDigitalActionHandle( params->pszActionName ); + return 0; } -void cppISteamInput_SteamInput002_GetDigitalActionData( struct cppISteamInput_SteamInput002_GetDigitalActionData_params *params ) +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; *params->_ret = iface->GetDigitalActionData( params->inputHandle, params->digitalActionHandle ); + return 0; } -void cppISteamInput_SteamInput002_GetDigitalActionOrigins( struct cppISteamInput_SteamInput002_GetDigitalActionOrigins_params *params ) +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; params->_ret = iface->GetDigitalActionOrigins( params->inputHandle, params->actionSetHandle, params->digitalActionHandle, params->originsOut ); + return 0; } -void cppISteamInput_SteamInput002_GetAnalogActionHandle( struct cppISteamInput_SteamInput002_GetAnalogActionHandle_params *params ) +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; params->_ret = iface->GetAnalogActionHandle( params->pszActionName ); + return 0; } -void cppISteamInput_SteamInput002_GetAnalogActionData( struct cppISteamInput_SteamInput002_GetAnalogActionData_params *params ) +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; *params->_ret = iface->GetAnalogActionData( params->inputHandle, params->analogActionHandle ); + return 0; } -void cppISteamInput_SteamInput002_GetAnalogActionOrigins( struct cppISteamInput_SteamInput002_GetAnalogActionOrigins_params *params ) +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; params->_ret = iface->GetAnalogActionOrigins( params->inputHandle, params->actionSetHandle, params->analogActionHandle, params->originsOut ); + return 0; } -void cppISteamInput_SteamInput002_GetStringForActionOrigin( struct cppISteamInput_SteamInput002_GetStringForActionOrigin_params *params ) +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; params->_ret = iface->GetStringForActionOrigin( params->eOrigin ); + return 0; } -void cppISteamInput_SteamInput002_StopAnalogActionMomentum( struct cppISteamInput_SteamInput002_StopAnalogActionMomentum_params *params ) +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; iface->StopAnalogActionMomentum( params->inputHandle, params->eAction ); + return 0; } -void cppISteamInput_SteamInput002_GetMotionData( struct cppISteamInput_SteamInput002_GetMotionData_params *params ) +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; *params->_ret = iface->GetMotionData( params->inputHandle ); + return 0; } -void cppISteamInput_SteamInput002_TriggerVibration( struct cppISteamInput_SteamInput002_TriggerVibration_params *params ) +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; iface->TriggerVibration( params->inputHandle, params->usLeftSpeed, params->usRightSpeed ); + return 0; } -void cppISteamInput_SteamInput002_SetLEDColor( struct cppISteamInput_SteamInput002_SetLEDColor_params *params ) +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; iface->SetLEDColor( params->inputHandle, params->nColorR, params->nColorG, params->nColorB, params->nFlags ); + return 0; } -void cppISteamInput_SteamInput002_TriggerHapticPulse( struct cppISteamInput_SteamInput002_TriggerHapticPulse_params *params ) +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; iface->TriggerHapticPulse( params->inputHandle, params->eTargetPad, params->usDurationMicroSec ); + return 0; } -void cppISteamInput_SteamInput002_TriggerRepeatedHapticPulse( struct cppISteamInput_SteamInput002_TriggerRepeatedHapticPulse_params *params ) +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; iface->TriggerRepeatedHapticPulse( params->inputHandle, params->eTargetPad, params->usDurationMicroSec, params->usOffMicroSec, params->unRepeat, params->nFlags ); + return 0; } -void cppISteamInput_SteamInput002_ShowBindingPanel( struct cppISteamInput_SteamInput002_ShowBindingPanel_params *params ) +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; params->_ret = iface->ShowBindingPanel( params->inputHandle ); + return 0; } -void cppISteamInput_SteamInput002_GetInputTypeForHandle( struct cppISteamInput_SteamInput002_GetInputTypeForHandle_params *params ) +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; params->_ret = iface->GetInputTypeForHandle( params->inputHandle ); + return 0; } -void cppISteamInput_SteamInput002_GetControllerForGamepadIndex( struct cppISteamInput_SteamInput002_GetControllerForGamepadIndex_params *params ) +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; params->_ret = iface->GetControllerForGamepadIndex( params->nIndex ); + return 0; } -void cppISteamInput_SteamInput002_GetGamepadIndexForController( struct cppISteamInput_SteamInput002_GetGamepadIndexForController_params *params ) +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; params->_ret = iface->GetGamepadIndexForController( params->ulinputHandle ); + return 0; } -void cppISteamInput_SteamInput002_GetStringForXboxOrigin( struct cppISteamInput_SteamInput002_GetStringForXboxOrigin_params *params ) +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; params->_ret = iface->GetStringForXboxOrigin( params->eOrigin ); + return 0; } -void cppISteamInput_SteamInput002_GetActionOriginFromXboxOrigin( struct cppISteamInput_SteamInput002_GetActionOriginFromXboxOrigin_params *params ) +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; params->_ret = iface->GetActionOriginFromXboxOrigin( params->inputHandle, params->eOrigin ); + return 0; } -void cppISteamInput_SteamInput002_TranslateActionOrigin( struct cppISteamInput_SteamInput002_TranslateActionOrigin_params *params ) +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; params->_ret = iface->TranslateActionOrigin( params->eDestinationInputType, params->eSourceOrigin ); + return 0; } -void cppISteamInput_SteamInput002_GetDeviceBindingRevision( struct cppISteamInput_SteamInput002_GetDeviceBindingRevision_params *params ) +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; params->_ret = iface->GetDeviceBindingRevision( params->inputHandle, params->pMajor, params->pMinor ); + return 0; } -void cppISteamInput_SteamInput002_GetRemotePlaySessionID( struct cppISteamInput_SteamInput002_GetRemotePlaySessionID_params *params ) +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; params->_ret = iface->GetRemotePlaySessionID( params->inputHandle ); + return 0; } diff --git a/lsteamclient/cppISteamInput_SteamInput002.h b/lsteamclient/cppISteamInput_SteamInput002.h deleted file mode 100644 index 3973a0bc..00000000 --- a/lsteamclient/cppISteamInput_SteamInput002.h +++ /dev/null @@ -1,309 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamInput_SteamInput002_Init_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamInput_SteamInput002_Init( struct cppISteamInput_SteamInput002_Init_params *params ); - -struct cppISteamInput_SteamInput002_Shutdown_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamInput_SteamInput002_Shutdown( struct cppISteamInput_SteamInput002_Shutdown_params *params ); - -struct cppISteamInput_SteamInput002_RunFrame_params -{ - void *linux_side; -}; -extern void cppISteamInput_SteamInput002_RunFrame( struct cppISteamInput_SteamInput002_RunFrame_params *params ); - -struct cppISteamInput_SteamInput002_GetConnectedControllers_params -{ - void *linux_side; - int32_t _ret; - uint64_t *handlesOut; -}; -extern void cppISteamInput_SteamInput002_GetConnectedControllers( struct cppISteamInput_SteamInput002_GetConnectedControllers_params *params ); - -struct cppISteamInput_SteamInput002_GetActionSetHandle_params -{ - void *linux_side; - uint64_t _ret; - const char *pszActionSetName; -}; -extern void cppISteamInput_SteamInput002_GetActionSetHandle( struct cppISteamInput_SteamInput002_GetActionSetHandle_params *params ); - -struct cppISteamInput_SteamInput002_ActivateActionSet_params -{ - void *linux_side; - uint64_t inputHandle; - uint64_t actionSetHandle; -}; -extern void cppISteamInput_SteamInput002_ActivateActionSet( struct cppISteamInput_SteamInput002_ActivateActionSet_params *params ); - -struct cppISteamInput_SteamInput002_GetCurrentActionSet_params -{ - void *linux_side; - uint64_t _ret; - uint64_t inputHandle; -}; -extern void cppISteamInput_SteamInput002_GetCurrentActionSet( struct cppISteamInput_SteamInput002_GetCurrentActionSet_params *params ); - -struct cppISteamInput_SteamInput002_ActivateActionSetLayer_params -{ - void *linux_side; - uint64_t inputHandle; - uint64_t actionSetLayerHandle; -}; -extern void cppISteamInput_SteamInput002_ActivateActionSetLayer( struct cppISteamInput_SteamInput002_ActivateActionSetLayer_params *params ); - -struct cppISteamInput_SteamInput002_DeactivateActionSetLayer_params -{ - void *linux_side; - uint64_t inputHandle; - uint64_t actionSetLayerHandle; -}; -extern void cppISteamInput_SteamInput002_DeactivateActionSetLayer( struct cppISteamInput_SteamInput002_DeactivateActionSetLayer_params *params ); - -struct cppISteamInput_SteamInput002_DeactivateAllActionSetLayers_params -{ - void *linux_side; - uint64_t inputHandle; -}; -extern void cppISteamInput_SteamInput002_DeactivateAllActionSetLayers( struct cppISteamInput_SteamInput002_DeactivateAllActionSetLayers_params *params ); - -struct cppISteamInput_SteamInput002_GetActiveActionSetLayers_params -{ - void *linux_side; - int32_t _ret; - uint64_t inputHandle; - uint64_t *handlesOut; -}; -extern void cppISteamInput_SteamInput002_GetActiveActionSetLayers( struct cppISteamInput_SteamInput002_GetActiveActionSetLayers_params *params ); - -struct cppISteamInput_SteamInput002_GetDigitalActionHandle_params -{ - void *linux_side; - uint64_t _ret; - const char *pszActionName; -}; -extern void cppISteamInput_SteamInput002_GetDigitalActionHandle( struct cppISteamInput_SteamInput002_GetDigitalActionHandle_params *params ); - -struct cppISteamInput_SteamInput002_GetDigitalActionData_params -{ - void *linux_side; - InputDigitalActionData_t *_ret; - uint64_t inputHandle; - uint64_t digitalActionHandle; -}; -extern void cppISteamInput_SteamInput002_GetDigitalActionData( struct cppISteamInput_SteamInput002_GetDigitalActionData_params *params ); - -struct cppISteamInput_SteamInput002_GetDigitalActionOrigins_params -{ - void *linux_side; - int32_t _ret; - uint64_t inputHandle; - uint64_t actionSetHandle; - uint64_t digitalActionHandle; - uint32_t *originsOut; -}; -extern void cppISteamInput_SteamInput002_GetDigitalActionOrigins( struct cppISteamInput_SteamInput002_GetDigitalActionOrigins_params *params ); - -struct cppISteamInput_SteamInput002_GetAnalogActionHandle_params -{ - void *linux_side; - uint64_t _ret; - const char *pszActionName; -}; -extern void cppISteamInput_SteamInput002_GetAnalogActionHandle( struct cppISteamInput_SteamInput002_GetAnalogActionHandle_params *params ); - -struct cppISteamInput_SteamInput002_GetAnalogActionData_params -{ - void *linux_side; - InputAnalogActionData_t *_ret; - uint64_t inputHandle; - uint64_t analogActionHandle; -}; -extern void cppISteamInput_SteamInput002_GetAnalogActionData( struct cppISteamInput_SteamInput002_GetAnalogActionData_params *params ); - -struct cppISteamInput_SteamInput002_GetAnalogActionOrigins_params -{ - void *linux_side; - int32_t _ret; - uint64_t inputHandle; - uint64_t actionSetHandle; - uint64_t analogActionHandle; - uint32_t *originsOut; -}; -extern void cppISteamInput_SteamInput002_GetAnalogActionOrigins( struct cppISteamInput_SteamInput002_GetAnalogActionOrigins_params *params ); - -struct cppISteamInput_SteamInput002_GetGlyphForActionOrigin_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; -}; -extern void cppISteamInput_SteamInput002_GetGlyphForActionOrigin( struct cppISteamInput_SteamInput002_GetGlyphForActionOrigin_params *params ); - -struct cppISteamInput_SteamInput002_GetStringForActionOrigin_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; -}; -extern void cppISteamInput_SteamInput002_GetStringForActionOrigin( struct cppISteamInput_SteamInput002_GetStringForActionOrigin_params *params ); - -struct cppISteamInput_SteamInput002_StopAnalogActionMomentum_params -{ - void *linux_side; - uint64_t inputHandle; - uint64_t eAction; -}; -extern void cppISteamInput_SteamInput002_StopAnalogActionMomentum( struct cppISteamInput_SteamInput002_StopAnalogActionMomentum_params *params ); - -struct cppISteamInput_SteamInput002_GetMotionData_params -{ - void *linux_side; - InputMotionData_t *_ret; - uint64_t inputHandle; -}; -extern void cppISteamInput_SteamInput002_GetMotionData( struct cppISteamInput_SteamInput002_GetMotionData_params *params ); - -struct cppISteamInput_SteamInput002_TriggerVibration_params -{ - void *linux_side; - uint64_t inputHandle; - uint16_t usLeftSpeed; - uint16_t usRightSpeed; -}; -extern void cppISteamInput_SteamInput002_TriggerVibration( struct cppISteamInput_SteamInput002_TriggerVibration_params *params ); - -struct cppISteamInput_SteamInput002_SetLEDColor_params -{ - void *linux_side; - uint64_t inputHandle; - uint8_t nColorR; - uint8_t nColorG; - uint8_t nColorB; - uint32_t nFlags; -}; -extern void cppISteamInput_SteamInput002_SetLEDColor( struct cppISteamInput_SteamInput002_SetLEDColor_params *params ); - -struct cppISteamInput_SteamInput002_TriggerHapticPulse_params -{ - void *linux_side; - uint64_t inputHandle; - uint32_t eTargetPad; - uint16_t usDurationMicroSec; -}; -extern void cppISteamInput_SteamInput002_TriggerHapticPulse( struct cppISteamInput_SteamInput002_TriggerHapticPulse_params *params ); - -struct cppISteamInput_SteamInput002_TriggerRepeatedHapticPulse_params -{ - void *linux_side; - uint64_t inputHandle; - uint32_t eTargetPad; - uint16_t usDurationMicroSec; - uint16_t usOffMicroSec; - uint16_t unRepeat; - uint32_t nFlags; -}; -extern void cppISteamInput_SteamInput002_TriggerRepeatedHapticPulse( struct cppISteamInput_SteamInput002_TriggerRepeatedHapticPulse_params *params ); - -struct cppISteamInput_SteamInput002_ShowBindingPanel_params -{ - void *linux_side; - bool _ret; - uint64_t inputHandle; -}; -extern void cppISteamInput_SteamInput002_ShowBindingPanel( struct cppISteamInput_SteamInput002_ShowBindingPanel_params *params ); - -struct cppISteamInput_SteamInput002_GetInputTypeForHandle_params -{ - void *linux_side; - uint32_t _ret; - uint64_t inputHandle; -}; -extern void cppISteamInput_SteamInput002_GetInputTypeForHandle( struct cppISteamInput_SteamInput002_GetInputTypeForHandle_params *params ); - -struct cppISteamInput_SteamInput002_GetControllerForGamepadIndex_params -{ - void *linux_side; - uint64_t _ret; - int32_t nIndex; -}; -extern void cppISteamInput_SteamInput002_GetControllerForGamepadIndex( struct cppISteamInput_SteamInput002_GetControllerForGamepadIndex_params *params ); - -struct cppISteamInput_SteamInput002_GetGamepadIndexForController_params -{ - void *linux_side; - int32_t _ret; - uint64_t ulinputHandle; -}; -extern void cppISteamInput_SteamInput002_GetGamepadIndexForController( struct cppISteamInput_SteamInput002_GetGamepadIndexForController_params *params ); - -struct cppISteamInput_SteamInput002_GetStringForXboxOrigin_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; -}; -extern void cppISteamInput_SteamInput002_GetStringForXboxOrigin( struct cppISteamInput_SteamInput002_GetStringForXboxOrigin_params *params ); - -struct cppISteamInput_SteamInput002_GetGlyphForXboxOrigin_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; -}; -extern void cppISteamInput_SteamInput002_GetGlyphForXboxOrigin( struct cppISteamInput_SteamInput002_GetGlyphForXboxOrigin_params *params ); - -struct cppISteamInput_SteamInput002_GetActionOriginFromXboxOrigin_params -{ - void *linux_side; - uint32_t _ret; - uint64_t inputHandle; - uint32_t eOrigin; -}; -extern void cppISteamInput_SteamInput002_GetActionOriginFromXboxOrigin( struct cppISteamInput_SteamInput002_GetActionOriginFromXboxOrigin_params *params ); - -struct cppISteamInput_SteamInput002_TranslateActionOrigin_params -{ - void *linux_side; - uint32_t _ret; - uint32_t eDestinationInputType; - uint32_t eSourceOrigin; -}; -extern void cppISteamInput_SteamInput002_TranslateActionOrigin( struct cppISteamInput_SteamInput002_TranslateActionOrigin_params *params ); - -struct cppISteamInput_SteamInput002_GetDeviceBindingRevision_params -{ - void *linux_side; - bool _ret; - uint64_t inputHandle; - int32_t *pMajor; - int32_t *pMinor; -}; -extern void cppISteamInput_SteamInput002_GetDeviceBindingRevision( struct cppISteamInput_SteamInput002_GetDeviceBindingRevision_params *params ); - -struct cppISteamInput_SteamInput002_GetRemotePlaySessionID_params -{ - void *linux_side; - uint32_t _ret; - uint64_t inputHandle; -}; -extern void cppISteamInput_SteamInput002_GetRemotePlaySessionID( struct cppISteamInput_SteamInput002_GetRemotePlaySessionID_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamInput_SteamInput005.cpp b/lsteamclient/cppISteamInput_SteamInput005.cpp index 2d5fe03d..fd0ecb29 100644 --- a/lsteamclient/cppISteamInput_SteamInput005.cpp +++ b/lsteamclient/cppISteamInput_SteamInput005.cpp @@ -1,256 +1,339 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamInput_SteamInput005.h" -void cppISteamInput_SteamInput005_Init( struct cppISteamInput_SteamInput005_Init_params *params ) +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; params->_ret = iface->Init( params->bExplicitlyCallRunFrame ); + return 0; } -void cppISteamInput_SteamInput005_Shutdown( struct cppISteamInput_SteamInput005_Shutdown_params *params ) +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; params->_ret = iface->Shutdown( ); + return 0; } -void cppISteamInput_SteamInput005_SetInputActionManifestFilePath( struct cppISteamInput_SteamInput005_SetInputActionManifestFilePath_params *params ) +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; params->_ret = iface->SetInputActionManifestFilePath( params->pchInputActionManifestAbsolutePath ); + return 0; } -void cppISteamInput_SteamInput005_RunFrame( struct cppISteamInput_SteamInput005_RunFrame_params *params ) +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; iface->RunFrame( params->bReservedValue ); + return 0; } -void cppISteamInput_SteamInput005_BWaitForData( struct cppISteamInput_SteamInput005_BWaitForData_params *params ) +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; params->_ret = iface->BWaitForData( params->bWaitForever, params->unTimeout ); + return 0; } -void cppISteamInput_SteamInput005_BNewDataAvailable( struct cppISteamInput_SteamInput005_BNewDataAvailable_params *params ) +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; params->_ret = iface->BNewDataAvailable( ); + return 0; } -void cppISteamInput_SteamInput005_GetConnectedControllers( struct cppISteamInput_SteamInput005_GetConnectedControllers_params *params ) +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; params->_ret = iface->GetConnectedControllers( params->handlesOut ); + return 0; } -void cppISteamInput_SteamInput005_EnableDeviceCallbacks( struct cppISteamInput_SteamInput005_EnableDeviceCallbacks_params *params ) +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; iface->EnableDeviceCallbacks( ); + return 0; } -void cppISteamInput_SteamInput005_GetActionSetHandle( struct cppISteamInput_SteamInput005_GetActionSetHandle_params *params ) +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; params->_ret = iface->GetActionSetHandle( params->pszActionSetName ); + return 0; } -void cppISteamInput_SteamInput005_ActivateActionSet( struct cppISteamInput_SteamInput005_ActivateActionSet_params *params ) +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; iface->ActivateActionSet( params->inputHandle, params->actionSetHandle ); + return 0; } -void cppISteamInput_SteamInput005_GetCurrentActionSet( struct cppISteamInput_SteamInput005_GetCurrentActionSet_params *params ) +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; params->_ret = iface->GetCurrentActionSet( params->inputHandle ); + return 0; } -void cppISteamInput_SteamInput005_ActivateActionSetLayer( struct cppISteamInput_SteamInput005_ActivateActionSetLayer_params *params ) +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; iface->ActivateActionSetLayer( params->inputHandle, params->actionSetLayerHandle ); + return 0; } -void cppISteamInput_SteamInput005_DeactivateActionSetLayer( struct cppISteamInput_SteamInput005_DeactivateActionSetLayer_params *params ) +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; iface->DeactivateActionSetLayer( params->inputHandle, params->actionSetLayerHandle ); + return 0; } -void cppISteamInput_SteamInput005_DeactivateAllActionSetLayers( struct cppISteamInput_SteamInput005_DeactivateAllActionSetLayers_params *params ) +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; iface->DeactivateAllActionSetLayers( params->inputHandle ); + return 0; } -void cppISteamInput_SteamInput005_GetActiveActionSetLayers( struct cppISteamInput_SteamInput005_GetActiveActionSetLayers_params *params ) +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; params->_ret = iface->GetActiveActionSetLayers( params->inputHandle, params->handlesOut ); + return 0; } -void cppISteamInput_SteamInput005_GetDigitalActionHandle( struct cppISteamInput_SteamInput005_GetDigitalActionHandle_params *params ) +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; params->_ret = iface->GetDigitalActionHandle( params->pszActionName ); + return 0; } -void cppISteamInput_SteamInput005_GetDigitalActionData( struct cppISteamInput_SteamInput005_GetDigitalActionData_params *params ) +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; *params->_ret = iface->GetDigitalActionData( params->inputHandle, params->digitalActionHandle ); + return 0; } -void cppISteamInput_SteamInput005_GetDigitalActionOrigins( struct cppISteamInput_SteamInput005_GetDigitalActionOrigins_params *params ) +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; params->_ret = iface->GetDigitalActionOrigins( params->inputHandle, params->actionSetHandle, params->digitalActionHandle, params->originsOut ); + return 0; } -void cppISteamInput_SteamInput005_GetStringForDigitalActionName( struct cppISteamInput_SteamInput005_GetStringForDigitalActionName_params *params ) +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; params->_ret = iface->GetStringForDigitalActionName( params->eActionHandle ); + return 0; } -void cppISteamInput_SteamInput005_GetAnalogActionHandle( struct cppISteamInput_SteamInput005_GetAnalogActionHandle_params *params ) +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; params->_ret = iface->GetAnalogActionHandle( params->pszActionName ); + return 0; } -void cppISteamInput_SteamInput005_GetAnalogActionData( struct cppISteamInput_SteamInput005_GetAnalogActionData_params *params ) +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; *params->_ret = iface->GetAnalogActionData( params->inputHandle, params->analogActionHandle ); + return 0; } -void cppISteamInput_SteamInput005_GetAnalogActionOrigins( struct cppISteamInput_SteamInput005_GetAnalogActionOrigins_params *params ) +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; params->_ret = iface->GetAnalogActionOrigins( params->inputHandle, params->actionSetHandle, params->analogActionHandle, params->originsOut ); + return 0; } -void cppISteamInput_SteamInput005_GetStringForActionOrigin( struct cppISteamInput_SteamInput005_GetStringForActionOrigin_params *params ) +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; params->_ret = iface->GetStringForActionOrigin( params->eOrigin ); + return 0; } -void cppISteamInput_SteamInput005_GetStringForAnalogActionName( struct cppISteamInput_SteamInput005_GetStringForAnalogActionName_params *params ) +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; params->_ret = iface->GetStringForAnalogActionName( params->eActionHandle ); + return 0; } -void cppISteamInput_SteamInput005_StopAnalogActionMomentum( struct cppISteamInput_SteamInput005_StopAnalogActionMomentum_params *params ) +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; iface->StopAnalogActionMomentum( params->inputHandle, params->eAction ); + return 0; } -void cppISteamInput_SteamInput005_GetMotionData( struct cppISteamInput_SteamInput005_GetMotionData_params *params ) +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; *params->_ret = iface->GetMotionData( params->inputHandle ); + return 0; } -void cppISteamInput_SteamInput005_TriggerVibration( struct cppISteamInput_SteamInput005_TriggerVibration_params *params ) +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; iface->TriggerVibration( params->inputHandle, params->usLeftSpeed, params->usRightSpeed ); + return 0; } -void cppISteamInput_SteamInput005_TriggerVibrationExtended( struct cppISteamInput_SteamInput005_TriggerVibrationExtended_params *params ) +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; iface->TriggerVibrationExtended( params->inputHandle, params->usLeftSpeed, params->usRightSpeed, params->usLeftTriggerSpeed, params->usRightTriggerSpeed ); + return 0; } -void cppISteamInput_SteamInput005_TriggerSimpleHapticEvent( struct cppISteamInput_SteamInput005_TriggerSimpleHapticEvent_params *params ) +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; iface->TriggerSimpleHapticEvent( params->inputHandle, params->eHapticLocation, params->nIntensity, params->nGainDB, params->nOtherIntensity, params->nOtherGainDB ); + return 0; } -void cppISteamInput_SteamInput005_SetLEDColor( struct cppISteamInput_SteamInput005_SetLEDColor_params *params ) +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; iface->SetLEDColor( params->inputHandle, params->nColorR, params->nColorG, params->nColorB, params->nFlags ); + return 0; } -void cppISteamInput_SteamInput005_Legacy_TriggerHapticPulse( struct cppISteamInput_SteamInput005_Legacy_TriggerHapticPulse_params *params ) +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; iface->Legacy_TriggerHapticPulse( params->inputHandle, params->eTargetPad, params->usDurationMicroSec ); + return 0; } -void cppISteamInput_SteamInput005_Legacy_TriggerRepeatedHapticPulse( struct cppISteamInput_SteamInput005_Legacy_TriggerRepeatedHapticPulse_params *params ) +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; iface->Legacy_TriggerRepeatedHapticPulse( params->inputHandle, params->eTargetPad, params->usDurationMicroSec, params->usOffMicroSec, params->unRepeat, params->nFlags ); + return 0; } -void cppISteamInput_SteamInput005_ShowBindingPanel( struct cppISteamInput_SteamInput005_ShowBindingPanel_params *params ) +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; params->_ret = iface->ShowBindingPanel( params->inputHandle ); + return 0; } -void cppISteamInput_SteamInput005_GetInputTypeForHandle( struct cppISteamInput_SteamInput005_GetInputTypeForHandle_params *params ) +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; params->_ret = iface->GetInputTypeForHandle( params->inputHandle ); + return 0; } -void cppISteamInput_SteamInput005_GetControllerForGamepadIndex( struct cppISteamInput_SteamInput005_GetControllerForGamepadIndex_params *params ) +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; params->_ret = iface->GetControllerForGamepadIndex( params->nIndex ); + return 0; } -void cppISteamInput_SteamInput005_GetGamepadIndexForController( struct cppISteamInput_SteamInput005_GetGamepadIndexForController_params *params ) +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; params->_ret = iface->GetGamepadIndexForController( params->ulinputHandle ); + return 0; } -void cppISteamInput_SteamInput005_GetStringForXboxOrigin( struct cppISteamInput_SteamInput005_GetStringForXboxOrigin_params *params ) +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; params->_ret = iface->GetStringForXboxOrigin( params->eOrigin ); + return 0; } -void cppISteamInput_SteamInput005_GetActionOriginFromXboxOrigin( struct cppISteamInput_SteamInput005_GetActionOriginFromXboxOrigin_params *params ) +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; params->_ret = iface->GetActionOriginFromXboxOrigin( params->inputHandle, params->eOrigin ); + return 0; } -void cppISteamInput_SteamInput005_TranslateActionOrigin( struct cppISteamInput_SteamInput005_TranslateActionOrigin_params *params ) +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; params->_ret = iface->TranslateActionOrigin( params->eDestinationInputType, params->eSourceOrigin ); + return 0; } -void cppISteamInput_SteamInput005_GetDeviceBindingRevision( struct cppISteamInput_SteamInput005_GetDeviceBindingRevision_params *params ) +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; params->_ret = iface->GetDeviceBindingRevision( params->inputHandle, params->pMajor, params->pMinor ); + return 0; } -void cppISteamInput_SteamInput005_GetRemotePlaySessionID( struct cppISteamInput_SteamInput005_GetRemotePlaySessionID_params *params ) +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; params->_ret = iface->GetRemotePlaySessionID( params->inputHandle ); + return 0; } -void cppISteamInput_SteamInput005_GetSessionInputConfigurationSettings( struct cppISteamInput_SteamInput005_GetSessionInputConfigurationSettings_params *params ) +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; params->_ret = iface->GetSessionInputConfigurationSettings( ); + return 0; } diff --git a/lsteamclient/cppISteamInput_SteamInput005.h b/lsteamclient/cppISteamInput_SteamInput005.h deleted file mode 100644 index 561c6442..00000000 --- a/lsteamclient/cppISteamInput_SteamInput005.h +++ /dev/null @@ -1,413 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamInput_SteamInput005_Init_params -{ - void *linux_side; - bool _ret; - bool bExplicitlyCallRunFrame; -}; -extern void cppISteamInput_SteamInput005_Init( struct cppISteamInput_SteamInput005_Init_params *params ); - -struct cppISteamInput_SteamInput005_Shutdown_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamInput_SteamInput005_Shutdown( struct cppISteamInput_SteamInput005_Shutdown_params *params ); - -struct cppISteamInput_SteamInput005_SetInputActionManifestFilePath_params -{ - void *linux_side; - bool _ret; - const char *pchInputActionManifestAbsolutePath; -}; -extern void cppISteamInput_SteamInput005_SetInputActionManifestFilePath( struct cppISteamInput_SteamInput005_SetInputActionManifestFilePath_params *params ); - -struct cppISteamInput_SteamInput005_RunFrame_params -{ - void *linux_side; - bool bReservedValue; -}; -extern void cppISteamInput_SteamInput005_RunFrame( struct cppISteamInput_SteamInput005_RunFrame_params *params ); - -struct cppISteamInput_SteamInput005_BWaitForData_params -{ - void *linux_side; - bool _ret; - bool bWaitForever; - uint32_t unTimeout; -}; -extern void cppISteamInput_SteamInput005_BWaitForData( struct cppISteamInput_SteamInput005_BWaitForData_params *params ); - -struct cppISteamInput_SteamInput005_BNewDataAvailable_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamInput_SteamInput005_BNewDataAvailable( struct cppISteamInput_SteamInput005_BNewDataAvailable_params *params ); - -struct cppISteamInput_SteamInput005_GetConnectedControllers_params -{ - void *linux_side; - int32_t _ret; - uint64_t *handlesOut; -}; -extern void cppISteamInput_SteamInput005_GetConnectedControllers( struct cppISteamInput_SteamInput005_GetConnectedControllers_params *params ); - -struct cppISteamInput_SteamInput005_EnableDeviceCallbacks_params -{ - void *linux_side; -}; -extern void cppISteamInput_SteamInput005_EnableDeviceCallbacks( struct cppISteamInput_SteamInput005_EnableDeviceCallbacks_params *params ); - -struct cppISteamInput_SteamInput005_EnableActionEventCallbacks_params -{ - void *linux_side; - void (*W_STDCALL pCallback)(SteamInputActionEvent_t *); -}; -extern void cppISteamInput_SteamInput005_EnableActionEventCallbacks( struct cppISteamInput_SteamInput005_EnableActionEventCallbacks_params *params ); - -struct cppISteamInput_SteamInput005_GetActionSetHandle_params -{ - void *linux_side; - uint64_t _ret; - const char *pszActionSetName; -}; -extern void cppISteamInput_SteamInput005_GetActionSetHandle( struct cppISteamInput_SteamInput005_GetActionSetHandle_params *params ); - -struct cppISteamInput_SteamInput005_ActivateActionSet_params -{ - void *linux_side; - uint64_t inputHandle; - uint64_t actionSetHandle; -}; -extern void cppISteamInput_SteamInput005_ActivateActionSet( struct cppISteamInput_SteamInput005_ActivateActionSet_params *params ); - -struct cppISteamInput_SteamInput005_GetCurrentActionSet_params -{ - void *linux_side; - uint64_t _ret; - uint64_t inputHandle; -}; -extern void cppISteamInput_SteamInput005_GetCurrentActionSet( struct cppISteamInput_SteamInput005_GetCurrentActionSet_params *params ); - -struct cppISteamInput_SteamInput005_ActivateActionSetLayer_params -{ - void *linux_side; - uint64_t inputHandle; - uint64_t actionSetLayerHandle; -}; -extern void cppISteamInput_SteamInput005_ActivateActionSetLayer( struct cppISteamInput_SteamInput005_ActivateActionSetLayer_params *params ); - -struct cppISteamInput_SteamInput005_DeactivateActionSetLayer_params -{ - void *linux_side; - uint64_t inputHandle; - uint64_t actionSetLayerHandle; -}; -extern void cppISteamInput_SteamInput005_DeactivateActionSetLayer( struct cppISteamInput_SteamInput005_DeactivateActionSetLayer_params *params ); - -struct cppISteamInput_SteamInput005_DeactivateAllActionSetLayers_params -{ - void *linux_side; - uint64_t inputHandle; -}; -extern void cppISteamInput_SteamInput005_DeactivateAllActionSetLayers( struct cppISteamInput_SteamInput005_DeactivateAllActionSetLayers_params *params ); - -struct cppISteamInput_SteamInput005_GetActiveActionSetLayers_params -{ - void *linux_side; - int32_t _ret; - uint64_t inputHandle; - uint64_t *handlesOut; -}; -extern void cppISteamInput_SteamInput005_GetActiveActionSetLayers( struct cppISteamInput_SteamInput005_GetActiveActionSetLayers_params *params ); - -struct cppISteamInput_SteamInput005_GetDigitalActionHandle_params -{ - void *linux_side; - uint64_t _ret; - const char *pszActionName; -}; -extern void cppISteamInput_SteamInput005_GetDigitalActionHandle( struct cppISteamInput_SteamInput005_GetDigitalActionHandle_params *params ); - -struct cppISteamInput_SteamInput005_GetDigitalActionData_params -{ - void *linux_side; - InputDigitalActionData_t *_ret; - uint64_t inputHandle; - uint64_t digitalActionHandle; -}; -extern void cppISteamInput_SteamInput005_GetDigitalActionData( struct cppISteamInput_SteamInput005_GetDigitalActionData_params *params ); - -struct cppISteamInput_SteamInput005_GetDigitalActionOrigins_params -{ - void *linux_side; - int32_t _ret; - uint64_t inputHandle; - uint64_t actionSetHandle; - uint64_t digitalActionHandle; - uint32_t *originsOut; -}; -extern void cppISteamInput_SteamInput005_GetDigitalActionOrigins( struct cppISteamInput_SteamInput005_GetDigitalActionOrigins_params *params ); - -struct cppISteamInput_SteamInput005_GetStringForDigitalActionName_params -{ - void *linux_side; - const char *_ret; - uint64_t eActionHandle; -}; -extern void cppISteamInput_SteamInput005_GetStringForDigitalActionName( struct cppISteamInput_SteamInput005_GetStringForDigitalActionName_params *params ); - -struct cppISteamInput_SteamInput005_GetAnalogActionHandle_params -{ - void *linux_side; - uint64_t _ret; - const char *pszActionName; -}; -extern void cppISteamInput_SteamInput005_GetAnalogActionHandle( struct cppISteamInput_SteamInput005_GetAnalogActionHandle_params *params ); - -struct cppISteamInput_SteamInput005_GetAnalogActionData_params -{ - void *linux_side; - InputAnalogActionData_t *_ret; - uint64_t inputHandle; - uint64_t analogActionHandle; -}; -extern void cppISteamInput_SteamInput005_GetAnalogActionData( struct cppISteamInput_SteamInput005_GetAnalogActionData_params *params ); - -struct cppISteamInput_SteamInput005_GetAnalogActionOrigins_params -{ - void *linux_side; - int32_t _ret; - uint64_t inputHandle; - uint64_t actionSetHandle; - uint64_t analogActionHandle; - uint32_t *originsOut; -}; -extern void cppISteamInput_SteamInput005_GetAnalogActionOrigins( struct cppISteamInput_SteamInput005_GetAnalogActionOrigins_params *params ); - -struct cppISteamInput_SteamInput005_GetGlyphPNGForActionOrigin_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; - uint32_t eSize; - uint32_t unFlags; -}; -extern void cppISteamInput_SteamInput005_GetGlyphPNGForActionOrigin( struct cppISteamInput_SteamInput005_GetGlyphPNGForActionOrigin_params *params ); - -struct cppISteamInput_SteamInput005_GetGlyphSVGForActionOrigin_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; - uint32_t unFlags; -}; -extern void cppISteamInput_SteamInput005_GetGlyphSVGForActionOrigin( struct cppISteamInput_SteamInput005_GetGlyphSVGForActionOrigin_params *params ); - -struct cppISteamInput_SteamInput005_GetGlyphForActionOrigin_Legacy_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; -}; -extern void cppISteamInput_SteamInput005_GetGlyphForActionOrigin_Legacy( struct cppISteamInput_SteamInput005_GetGlyphForActionOrigin_Legacy_params *params ); - -struct cppISteamInput_SteamInput005_GetStringForActionOrigin_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; -}; -extern void cppISteamInput_SteamInput005_GetStringForActionOrigin( struct cppISteamInput_SteamInput005_GetStringForActionOrigin_params *params ); - -struct cppISteamInput_SteamInput005_GetStringForAnalogActionName_params -{ - void *linux_side; - const char *_ret; - uint64_t eActionHandle; -}; -extern void cppISteamInput_SteamInput005_GetStringForAnalogActionName( struct cppISteamInput_SteamInput005_GetStringForAnalogActionName_params *params ); - -struct cppISteamInput_SteamInput005_StopAnalogActionMomentum_params -{ - void *linux_side; - uint64_t inputHandle; - uint64_t eAction; -}; -extern void cppISteamInput_SteamInput005_StopAnalogActionMomentum( struct cppISteamInput_SteamInput005_StopAnalogActionMomentum_params *params ); - -struct cppISteamInput_SteamInput005_GetMotionData_params -{ - void *linux_side; - InputMotionData_t *_ret; - uint64_t inputHandle; -}; -extern void cppISteamInput_SteamInput005_GetMotionData( struct cppISteamInput_SteamInput005_GetMotionData_params *params ); - -struct cppISteamInput_SteamInput005_TriggerVibration_params -{ - void *linux_side; - uint64_t inputHandle; - uint16_t usLeftSpeed; - uint16_t usRightSpeed; -}; -extern void cppISteamInput_SteamInput005_TriggerVibration( struct cppISteamInput_SteamInput005_TriggerVibration_params *params ); - -struct cppISteamInput_SteamInput005_TriggerVibrationExtended_params -{ - void *linux_side; - uint64_t inputHandle; - uint16_t usLeftSpeed; - uint16_t usRightSpeed; - uint16_t usLeftTriggerSpeed; - uint16_t usRightTriggerSpeed; -}; -extern void cppISteamInput_SteamInput005_TriggerVibrationExtended( struct cppISteamInput_SteamInput005_TriggerVibrationExtended_params *params ); - -struct cppISteamInput_SteamInput005_TriggerSimpleHapticEvent_params -{ - void *linux_side; - uint64_t inputHandle; - uint32_t eHapticLocation; - uint8_t nIntensity; - char nGainDB; - uint8_t nOtherIntensity; - char nOtherGainDB; -}; -extern void cppISteamInput_SteamInput005_TriggerSimpleHapticEvent( struct cppISteamInput_SteamInput005_TriggerSimpleHapticEvent_params *params ); - -struct cppISteamInput_SteamInput005_SetLEDColor_params -{ - void *linux_side; - uint64_t inputHandle; - uint8_t nColorR; - uint8_t nColorG; - uint8_t nColorB; - uint32_t nFlags; -}; -extern void cppISteamInput_SteamInput005_SetLEDColor( struct cppISteamInput_SteamInput005_SetLEDColor_params *params ); - -struct cppISteamInput_SteamInput005_Legacy_TriggerHapticPulse_params -{ - void *linux_side; - uint64_t inputHandle; - uint32_t eTargetPad; - uint16_t usDurationMicroSec; -}; -extern void cppISteamInput_SteamInput005_Legacy_TriggerHapticPulse( struct cppISteamInput_SteamInput005_Legacy_TriggerHapticPulse_params *params ); - -struct cppISteamInput_SteamInput005_Legacy_TriggerRepeatedHapticPulse_params -{ - void *linux_side; - uint64_t inputHandle; - uint32_t eTargetPad; - uint16_t usDurationMicroSec; - uint16_t usOffMicroSec; - uint16_t unRepeat; - uint32_t nFlags; -}; -extern void cppISteamInput_SteamInput005_Legacy_TriggerRepeatedHapticPulse( struct cppISteamInput_SteamInput005_Legacy_TriggerRepeatedHapticPulse_params *params ); - -struct cppISteamInput_SteamInput005_ShowBindingPanel_params -{ - void *linux_side; - bool _ret; - uint64_t inputHandle; -}; -extern void cppISteamInput_SteamInput005_ShowBindingPanel( struct cppISteamInput_SteamInput005_ShowBindingPanel_params *params ); - -struct cppISteamInput_SteamInput005_GetInputTypeForHandle_params -{ - void *linux_side; - uint32_t _ret; - uint64_t inputHandle; -}; -extern void cppISteamInput_SteamInput005_GetInputTypeForHandle( struct cppISteamInput_SteamInput005_GetInputTypeForHandle_params *params ); - -struct cppISteamInput_SteamInput005_GetControllerForGamepadIndex_params -{ - void *linux_side; - uint64_t _ret; - int32_t nIndex; -}; -extern void cppISteamInput_SteamInput005_GetControllerForGamepadIndex( struct cppISteamInput_SteamInput005_GetControllerForGamepadIndex_params *params ); - -struct cppISteamInput_SteamInput005_GetGamepadIndexForController_params -{ - void *linux_side; - int32_t _ret; - uint64_t ulinputHandle; -}; -extern void cppISteamInput_SteamInput005_GetGamepadIndexForController( struct cppISteamInput_SteamInput005_GetGamepadIndexForController_params *params ); - -struct cppISteamInput_SteamInput005_GetStringForXboxOrigin_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; -}; -extern void cppISteamInput_SteamInput005_GetStringForXboxOrigin( struct cppISteamInput_SteamInput005_GetStringForXboxOrigin_params *params ); - -struct cppISteamInput_SteamInput005_GetGlyphForXboxOrigin_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; -}; -extern void cppISteamInput_SteamInput005_GetGlyphForXboxOrigin( struct cppISteamInput_SteamInput005_GetGlyphForXboxOrigin_params *params ); - -struct cppISteamInput_SteamInput005_GetActionOriginFromXboxOrigin_params -{ - void *linux_side; - uint32_t _ret; - uint64_t inputHandle; - uint32_t eOrigin; -}; -extern void cppISteamInput_SteamInput005_GetActionOriginFromXboxOrigin( struct cppISteamInput_SteamInput005_GetActionOriginFromXboxOrigin_params *params ); - -struct cppISteamInput_SteamInput005_TranslateActionOrigin_params -{ - void *linux_side; - uint32_t _ret; - uint32_t eDestinationInputType; - uint32_t eSourceOrigin; -}; -extern void cppISteamInput_SteamInput005_TranslateActionOrigin( struct cppISteamInput_SteamInput005_TranslateActionOrigin_params *params ); - -struct cppISteamInput_SteamInput005_GetDeviceBindingRevision_params -{ - void *linux_side; - bool _ret; - uint64_t inputHandle; - int32_t *pMajor; - int32_t *pMinor; -}; -extern void cppISteamInput_SteamInput005_GetDeviceBindingRevision( struct cppISteamInput_SteamInput005_GetDeviceBindingRevision_params *params ); - -struct cppISteamInput_SteamInput005_GetRemotePlaySessionID_params -{ - void *linux_side; - uint32_t _ret; - uint64_t inputHandle; -}; -extern void cppISteamInput_SteamInput005_GetRemotePlaySessionID( struct cppISteamInput_SteamInput005_GetRemotePlaySessionID_params *params ); - -struct cppISteamInput_SteamInput005_GetSessionInputConfigurationSettings_params -{ - void *linux_side; - uint16_t _ret; -}; -extern void cppISteamInput_SteamInput005_GetSessionInputConfigurationSettings( struct cppISteamInput_SteamInput005_GetSessionInputConfigurationSettings_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamInput_SteamInput006.cpp b/lsteamclient/cppISteamInput_SteamInput006.cpp index 5ecc9d2d..a363a37a 100644 --- a/lsteamclient/cppISteamInput_SteamInput006.cpp +++ b/lsteamclient/cppISteamInput_SteamInput006.cpp @@ -1,262 +1,347 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamInput_SteamInput006.h" -void cppISteamInput_SteamInput006_Init( struct cppISteamInput_SteamInput006_Init_params *params ) +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; params->_ret = iface->Init( params->bExplicitlyCallRunFrame ); + return 0; } -void cppISteamInput_SteamInput006_Shutdown( struct cppISteamInput_SteamInput006_Shutdown_params *params ) +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; params->_ret = iface->Shutdown( ); + return 0; } -void cppISteamInput_SteamInput006_SetInputActionManifestFilePath( struct cppISteamInput_SteamInput006_SetInputActionManifestFilePath_params *params ) +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; params->_ret = iface->SetInputActionManifestFilePath( params->pchInputActionManifestAbsolutePath ); + return 0; } -void cppISteamInput_SteamInput006_RunFrame( struct cppISteamInput_SteamInput006_RunFrame_params *params ) +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; iface->RunFrame( params->bReservedValue ); + return 0; } -void cppISteamInput_SteamInput006_BWaitForData( struct cppISteamInput_SteamInput006_BWaitForData_params *params ) +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; params->_ret = iface->BWaitForData( params->bWaitForever, params->unTimeout ); + return 0; } -void cppISteamInput_SteamInput006_BNewDataAvailable( struct cppISteamInput_SteamInput006_BNewDataAvailable_params *params ) +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; params->_ret = iface->BNewDataAvailable( ); + return 0; } -void cppISteamInput_SteamInput006_GetConnectedControllers( struct cppISteamInput_SteamInput006_GetConnectedControllers_params *params ) +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; params->_ret = iface->GetConnectedControllers( params->handlesOut ); + return 0; } -void cppISteamInput_SteamInput006_EnableDeviceCallbacks( struct cppISteamInput_SteamInput006_EnableDeviceCallbacks_params *params ) +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; iface->EnableDeviceCallbacks( ); + return 0; } -void cppISteamInput_SteamInput006_GetActionSetHandle( struct cppISteamInput_SteamInput006_GetActionSetHandle_params *params ) +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; params->_ret = iface->GetActionSetHandle( params->pszActionSetName ); + return 0; } -void cppISteamInput_SteamInput006_ActivateActionSet( struct cppISteamInput_SteamInput006_ActivateActionSet_params *params ) +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; iface->ActivateActionSet( params->inputHandle, params->actionSetHandle ); + return 0; } -void cppISteamInput_SteamInput006_GetCurrentActionSet( struct cppISteamInput_SteamInput006_GetCurrentActionSet_params *params ) +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; params->_ret = iface->GetCurrentActionSet( params->inputHandle ); + return 0; } -void cppISteamInput_SteamInput006_ActivateActionSetLayer( struct cppISteamInput_SteamInput006_ActivateActionSetLayer_params *params ) +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; iface->ActivateActionSetLayer( params->inputHandle, params->actionSetLayerHandle ); + return 0; } -void cppISteamInput_SteamInput006_DeactivateActionSetLayer( struct cppISteamInput_SteamInput006_DeactivateActionSetLayer_params *params ) +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; iface->DeactivateActionSetLayer( params->inputHandle, params->actionSetLayerHandle ); + return 0; } -void cppISteamInput_SteamInput006_DeactivateAllActionSetLayers( struct cppISteamInput_SteamInput006_DeactivateAllActionSetLayers_params *params ) +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; iface->DeactivateAllActionSetLayers( params->inputHandle ); + return 0; } -void cppISteamInput_SteamInput006_GetActiveActionSetLayers( struct cppISteamInput_SteamInput006_GetActiveActionSetLayers_params *params ) +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; params->_ret = iface->GetActiveActionSetLayers( params->inputHandle, params->handlesOut ); + return 0; } -void cppISteamInput_SteamInput006_GetDigitalActionHandle( struct cppISteamInput_SteamInput006_GetDigitalActionHandle_params *params ) +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; params->_ret = iface->GetDigitalActionHandle( params->pszActionName ); + return 0; } -void cppISteamInput_SteamInput006_GetDigitalActionData( struct cppISteamInput_SteamInput006_GetDigitalActionData_params *params ) +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; *params->_ret = iface->GetDigitalActionData( params->inputHandle, params->digitalActionHandle ); + return 0; } -void cppISteamInput_SteamInput006_GetDigitalActionOrigins( struct cppISteamInput_SteamInput006_GetDigitalActionOrigins_params *params ) +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; params->_ret = iface->GetDigitalActionOrigins( params->inputHandle, params->actionSetHandle, params->digitalActionHandle, params->originsOut ); + return 0; } -void cppISteamInput_SteamInput006_GetStringForDigitalActionName( struct cppISteamInput_SteamInput006_GetStringForDigitalActionName_params *params ) +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; params->_ret = iface->GetStringForDigitalActionName( params->eActionHandle ); + return 0; } -void cppISteamInput_SteamInput006_GetAnalogActionHandle( struct cppISteamInput_SteamInput006_GetAnalogActionHandle_params *params ) +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; params->_ret = iface->GetAnalogActionHandle( params->pszActionName ); + return 0; } -void cppISteamInput_SteamInput006_GetAnalogActionData( struct cppISteamInput_SteamInput006_GetAnalogActionData_params *params ) +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; *params->_ret = iface->GetAnalogActionData( params->inputHandle, params->analogActionHandle ); + return 0; } -void cppISteamInput_SteamInput006_GetAnalogActionOrigins( struct cppISteamInput_SteamInput006_GetAnalogActionOrigins_params *params ) +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; params->_ret = iface->GetAnalogActionOrigins( params->inputHandle, params->actionSetHandle, params->analogActionHandle, params->originsOut ); + return 0; } -void cppISteamInput_SteamInput006_GetStringForActionOrigin( struct cppISteamInput_SteamInput006_GetStringForActionOrigin_params *params ) +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; params->_ret = iface->GetStringForActionOrigin( params->eOrigin ); + return 0; } -void cppISteamInput_SteamInput006_GetStringForAnalogActionName( struct cppISteamInput_SteamInput006_GetStringForAnalogActionName_params *params ) +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; params->_ret = iface->GetStringForAnalogActionName( params->eActionHandle ); + return 0; } -void cppISteamInput_SteamInput006_StopAnalogActionMomentum( struct cppISteamInput_SteamInput006_StopAnalogActionMomentum_params *params ) +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; iface->StopAnalogActionMomentum( params->inputHandle, params->eAction ); + return 0; } -void cppISteamInput_SteamInput006_GetMotionData( struct cppISteamInput_SteamInput006_GetMotionData_params *params ) +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; *params->_ret = iface->GetMotionData( params->inputHandle ); + return 0; } -void cppISteamInput_SteamInput006_TriggerVibration( struct cppISteamInput_SteamInput006_TriggerVibration_params *params ) +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; iface->TriggerVibration( params->inputHandle, params->usLeftSpeed, params->usRightSpeed ); + return 0; } -void cppISteamInput_SteamInput006_TriggerVibrationExtended( struct cppISteamInput_SteamInput006_TriggerVibrationExtended_params *params ) +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; iface->TriggerVibrationExtended( params->inputHandle, params->usLeftSpeed, params->usRightSpeed, params->usLeftTriggerSpeed, params->usRightTriggerSpeed ); + return 0; } -void cppISteamInput_SteamInput006_TriggerSimpleHapticEvent( struct cppISteamInput_SteamInput006_TriggerSimpleHapticEvent_params *params ) +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; iface->TriggerSimpleHapticEvent( params->inputHandle, params->eHapticLocation, params->nIntensity, params->nGainDB, params->nOtherIntensity, params->nOtherGainDB ); + return 0; } -void cppISteamInput_SteamInput006_SetLEDColor( struct cppISteamInput_SteamInput006_SetLEDColor_params *params ) +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; iface->SetLEDColor( params->inputHandle, params->nColorR, params->nColorG, params->nColorB, params->nFlags ); + return 0; } -void cppISteamInput_SteamInput006_Legacy_TriggerHapticPulse( struct cppISteamInput_SteamInput006_Legacy_TriggerHapticPulse_params *params ) +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; iface->Legacy_TriggerHapticPulse( params->inputHandle, params->eTargetPad, params->usDurationMicroSec ); + return 0; } -void cppISteamInput_SteamInput006_Legacy_TriggerRepeatedHapticPulse( struct cppISteamInput_SteamInput006_Legacy_TriggerRepeatedHapticPulse_params *params ) +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; iface->Legacy_TriggerRepeatedHapticPulse( params->inputHandle, params->eTargetPad, params->usDurationMicroSec, params->usOffMicroSec, params->unRepeat, params->nFlags ); + return 0; } -void cppISteamInput_SteamInput006_ShowBindingPanel( struct cppISteamInput_SteamInput006_ShowBindingPanel_params *params ) +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; params->_ret = iface->ShowBindingPanel( params->inputHandle ); + return 0; } -void cppISteamInput_SteamInput006_GetInputTypeForHandle( struct cppISteamInput_SteamInput006_GetInputTypeForHandle_params *params ) +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; params->_ret = iface->GetInputTypeForHandle( params->inputHandle ); + return 0; } -void cppISteamInput_SteamInput006_GetControllerForGamepadIndex( struct cppISteamInput_SteamInput006_GetControllerForGamepadIndex_params *params ) +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; params->_ret = iface->GetControllerForGamepadIndex( params->nIndex ); + return 0; } -void cppISteamInput_SteamInput006_GetGamepadIndexForController( struct cppISteamInput_SteamInput006_GetGamepadIndexForController_params *params ) +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; params->_ret = iface->GetGamepadIndexForController( params->ulinputHandle ); + return 0; } -void cppISteamInput_SteamInput006_GetStringForXboxOrigin( struct cppISteamInput_SteamInput006_GetStringForXboxOrigin_params *params ) +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; params->_ret = iface->GetStringForXboxOrigin( params->eOrigin ); + return 0; } -void cppISteamInput_SteamInput006_GetActionOriginFromXboxOrigin( struct cppISteamInput_SteamInput006_GetActionOriginFromXboxOrigin_params *params ) +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; params->_ret = iface->GetActionOriginFromXboxOrigin( params->inputHandle, params->eOrigin ); + return 0; } -void cppISteamInput_SteamInput006_TranslateActionOrigin( struct cppISteamInput_SteamInput006_TranslateActionOrigin_params *params ) +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; params->_ret = iface->TranslateActionOrigin( params->eDestinationInputType, params->eSourceOrigin ); + return 0; } -void cppISteamInput_SteamInput006_GetDeviceBindingRevision( struct cppISteamInput_SteamInput006_GetDeviceBindingRevision_params *params ) +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; params->_ret = iface->GetDeviceBindingRevision( params->inputHandle, params->pMajor, params->pMinor ); + return 0; } -void cppISteamInput_SteamInput006_GetRemotePlaySessionID( struct cppISteamInput_SteamInput006_GetRemotePlaySessionID_params *params ) +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; params->_ret = iface->GetRemotePlaySessionID( params->inputHandle ); + return 0; } -void cppISteamInput_SteamInput006_GetSessionInputConfigurationSettings( struct cppISteamInput_SteamInput006_GetSessionInputConfigurationSettings_params *params ) +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; params->_ret = iface->GetSessionInputConfigurationSettings( ); + return 0; } -void cppISteamInput_SteamInput006_SetDualSenseTriggerEffect( struct cppISteamInput_SteamInput006_SetDualSenseTriggerEffect_params *params ) +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; iface->SetDualSenseTriggerEffect( params->inputHandle, params->pParam ); + return 0; } diff --git a/lsteamclient/cppISteamInput_SteamInput006.h b/lsteamclient/cppISteamInput_SteamInput006.h deleted file mode 100644 index a3149cf2..00000000 --- a/lsteamclient/cppISteamInput_SteamInput006.h +++ /dev/null @@ -1,421 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamInput_SteamInput006_Init_params -{ - void *linux_side; - bool _ret; - bool bExplicitlyCallRunFrame; -}; -extern void cppISteamInput_SteamInput006_Init( struct cppISteamInput_SteamInput006_Init_params *params ); - -struct cppISteamInput_SteamInput006_Shutdown_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamInput_SteamInput006_Shutdown( struct cppISteamInput_SteamInput006_Shutdown_params *params ); - -struct cppISteamInput_SteamInput006_SetInputActionManifestFilePath_params -{ - void *linux_side; - bool _ret; - const char *pchInputActionManifestAbsolutePath; -}; -extern void cppISteamInput_SteamInput006_SetInputActionManifestFilePath( struct cppISteamInput_SteamInput006_SetInputActionManifestFilePath_params *params ); - -struct cppISteamInput_SteamInput006_RunFrame_params -{ - void *linux_side; - bool bReservedValue; -}; -extern void cppISteamInput_SteamInput006_RunFrame( struct cppISteamInput_SteamInput006_RunFrame_params *params ); - -struct cppISteamInput_SteamInput006_BWaitForData_params -{ - void *linux_side; - bool _ret; - bool bWaitForever; - uint32_t unTimeout; -}; -extern void cppISteamInput_SteamInput006_BWaitForData( struct cppISteamInput_SteamInput006_BWaitForData_params *params ); - -struct cppISteamInput_SteamInput006_BNewDataAvailable_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamInput_SteamInput006_BNewDataAvailable( struct cppISteamInput_SteamInput006_BNewDataAvailable_params *params ); - -struct cppISteamInput_SteamInput006_GetConnectedControllers_params -{ - void *linux_side; - int32_t _ret; - uint64_t *handlesOut; -}; -extern void cppISteamInput_SteamInput006_GetConnectedControllers( struct cppISteamInput_SteamInput006_GetConnectedControllers_params *params ); - -struct cppISteamInput_SteamInput006_EnableDeviceCallbacks_params -{ - void *linux_side; -}; -extern void cppISteamInput_SteamInput006_EnableDeviceCallbacks( struct cppISteamInput_SteamInput006_EnableDeviceCallbacks_params *params ); - -struct cppISteamInput_SteamInput006_EnableActionEventCallbacks_params -{ - void *linux_side; - void (*W_STDCALL pCallback)(SteamInputActionEvent_t *); -}; -extern void cppISteamInput_SteamInput006_EnableActionEventCallbacks( struct cppISteamInput_SteamInput006_EnableActionEventCallbacks_params *params ); - -struct cppISteamInput_SteamInput006_GetActionSetHandle_params -{ - void *linux_side; - uint64_t _ret; - const char *pszActionSetName; -}; -extern void cppISteamInput_SteamInput006_GetActionSetHandle( struct cppISteamInput_SteamInput006_GetActionSetHandle_params *params ); - -struct cppISteamInput_SteamInput006_ActivateActionSet_params -{ - void *linux_side; - uint64_t inputHandle; - uint64_t actionSetHandle; -}; -extern void cppISteamInput_SteamInput006_ActivateActionSet( struct cppISteamInput_SteamInput006_ActivateActionSet_params *params ); - -struct cppISteamInput_SteamInput006_GetCurrentActionSet_params -{ - void *linux_side; - uint64_t _ret; - uint64_t inputHandle; -}; -extern void cppISteamInput_SteamInput006_GetCurrentActionSet( struct cppISteamInput_SteamInput006_GetCurrentActionSet_params *params ); - -struct cppISteamInput_SteamInput006_ActivateActionSetLayer_params -{ - void *linux_side; - uint64_t inputHandle; - uint64_t actionSetLayerHandle; -}; -extern void cppISteamInput_SteamInput006_ActivateActionSetLayer( struct cppISteamInput_SteamInput006_ActivateActionSetLayer_params *params ); - -struct cppISteamInput_SteamInput006_DeactivateActionSetLayer_params -{ - void *linux_side; - uint64_t inputHandle; - uint64_t actionSetLayerHandle; -}; -extern void cppISteamInput_SteamInput006_DeactivateActionSetLayer( struct cppISteamInput_SteamInput006_DeactivateActionSetLayer_params *params ); - -struct cppISteamInput_SteamInput006_DeactivateAllActionSetLayers_params -{ - void *linux_side; - uint64_t inputHandle; -}; -extern void cppISteamInput_SteamInput006_DeactivateAllActionSetLayers( struct cppISteamInput_SteamInput006_DeactivateAllActionSetLayers_params *params ); - -struct cppISteamInput_SteamInput006_GetActiveActionSetLayers_params -{ - void *linux_side; - int32_t _ret; - uint64_t inputHandle; - uint64_t *handlesOut; -}; -extern void cppISteamInput_SteamInput006_GetActiveActionSetLayers( struct cppISteamInput_SteamInput006_GetActiveActionSetLayers_params *params ); - -struct cppISteamInput_SteamInput006_GetDigitalActionHandle_params -{ - void *linux_side; - uint64_t _ret; - const char *pszActionName; -}; -extern void cppISteamInput_SteamInput006_GetDigitalActionHandle( struct cppISteamInput_SteamInput006_GetDigitalActionHandle_params *params ); - -struct cppISteamInput_SteamInput006_GetDigitalActionData_params -{ - void *linux_side; - InputDigitalActionData_t *_ret; - uint64_t inputHandle; - uint64_t digitalActionHandle; -}; -extern void cppISteamInput_SteamInput006_GetDigitalActionData( struct cppISteamInput_SteamInput006_GetDigitalActionData_params *params ); - -struct cppISteamInput_SteamInput006_GetDigitalActionOrigins_params -{ - void *linux_side; - int32_t _ret; - uint64_t inputHandle; - uint64_t actionSetHandle; - uint64_t digitalActionHandle; - uint32_t *originsOut; -}; -extern void cppISteamInput_SteamInput006_GetDigitalActionOrigins( struct cppISteamInput_SteamInput006_GetDigitalActionOrigins_params *params ); - -struct cppISteamInput_SteamInput006_GetStringForDigitalActionName_params -{ - void *linux_side; - const char *_ret; - uint64_t eActionHandle; -}; -extern void cppISteamInput_SteamInput006_GetStringForDigitalActionName( struct cppISteamInput_SteamInput006_GetStringForDigitalActionName_params *params ); - -struct cppISteamInput_SteamInput006_GetAnalogActionHandle_params -{ - void *linux_side; - uint64_t _ret; - const char *pszActionName; -}; -extern void cppISteamInput_SteamInput006_GetAnalogActionHandle( struct cppISteamInput_SteamInput006_GetAnalogActionHandle_params *params ); - -struct cppISteamInput_SteamInput006_GetAnalogActionData_params -{ - void *linux_side; - InputAnalogActionData_t *_ret; - uint64_t inputHandle; - uint64_t analogActionHandle; -}; -extern void cppISteamInput_SteamInput006_GetAnalogActionData( struct cppISteamInput_SteamInput006_GetAnalogActionData_params *params ); - -struct cppISteamInput_SteamInput006_GetAnalogActionOrigins_params -{ - void *linux_side; - int32_t _ret; - uint64_t inputHandle; - uint64_t actionSetHandle; - uint64_t analogActionHandle; - uint32_t *originsOut; -}; -extern void cppISteamInput_SteamInput006_GetAnalogActionOrigins( struct cppISteamInput_SteamInput006_GetAnalogActionOrigins_params *params ); - -struct cppISteamInput_SteamInput006_GetGlyphPNGForActionOrigin_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; - uint32_t eSize; - uint32_t unFlags; -}; -extern void cppISteamInput_SteamInput006_GetGlyphPNGForActionOrigin( struct cppISteamInput_SteamInput006_GetGlyphPNGForActionOrigin_params *params ); - -struct cppISteamInput_SteamInput006_GetGlyphSVGForActionOrigin_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; - uint32_t unFlags; -}; -extern void cppISteamInput_SteamInput006_GetGlyphSVGForActionOrigin( struct cppISteamInput_SteamInput006_GetGlyphSVGForActionOrigin_params *params ); - -struct cppISteamInput_SteamInput006_GetGlyphForActionOrigin_Legacy_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; -}; -extern void cppISteamInput_SteamInput006_GetGlyphForActionOrigin_Legacy( struct cppISteamInput_SteamInput006_GetGlyphForActionOrigin_Legacy_params *params ); - -struct cppISteamInput_SteamInput006_GetStringForActionOrigin_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; -}; -extern void cppISteamInput_SteamInput006_GetStringForActionOrigin( struct cppISteamInput_SteamInput006_GetStringForActionOrigin_params *params ); - -struct cppISteamInput_SteamInput006_GetStringForAnalogActionName_params -{ - void *linux_side; - const char *_ret; - uint64_t eActionHandle; -}; -extern void cppISteamInput_SteamInput006_GetStringForAnalogActionName( struct cppISteamInput_SteamInput006_GetStringForAnalogActionName_params *params ); - -struct cppISteamInput_SteamInput006_StopAnalogActionMomentum_params -{ - void *linux_side; - uint64_t inputHandle; - uint64_t eAction; -}; -extern void cppISteamInput_SteamInput006_StopAnalogActionMomentum( struct cppISteamInput_SteamInput006_StopAnalogActionMomentum_params *params ); - -struct cppISteamInput_SteamInput006_GetMotionData_params -{ - void *linux_side; - InputMotionData_t *_ret; - uint64_t inputHandle; -}; -extern void cppISteamInput_SteamInput006_GetMotionData( struct cppISteamInput_SteamInput006_GetMotionData_params *params ); - -struct cppISteamInput_SteamInput006_TriggerVibration_params -{ - void *linux_side; - uint64_t inputHandle; - uint16_t usLeftSpeed; - uint16_t usRightSpeed; -}; -extern void cppISteamInput_SteamInput006_TriggerVibration( struct cppISteamInput_SteamInput006_TriggerVibration_params *params ); - -struct cppISteamInput_SteamInput006_TriggerVibrationExtended_params -{ - void *linux_side; - uint64_t inputHandle; - uint16_t usLeftSpeed; - uint16_t usRightSpeed; - uint16_t usLeftTriggerSpeed; - uint16_t usRightTriggerSpeed; -}; -extern void cppISteamInput_SteamInput006_TriggerVibrationExtended( struct cppISteamInput_SteamInput006_TriggerVibrationExtended_params *params ); - -struct cppISteamInput_SteamInput006_TriggerSimpleHapticEvent_params -{ - void *linux_side; - uint64_t inputHandle; - uint32_t eHapticLocation; - uint8_t nIntensity; - char nGainDB; - uint8_t nOtherIntensity; - char nOtherGainDB; -}; -extern void cppISteamInput_SteamInput006_TriggerSimpleHapticEvent( struct cppISteamInput_SteamInput006_TriggerSimpleHapticEvent_params *params ); - -struct cppISteamInput_SteamInput006_SetLEDColor_params -{ - void *linux_side; - uint64_t inputHandle; - uint8_t nColorR; - uint8_t nColorG; - uint8_t nColorB; - uint32_t nFlags; -}; -extern void cppISteamInput_SteamInput006_SetLEDColor( struct cppISteamInput_SteamInput006_SetLEDColor_params *params ); - -struct cppISteamInput_SteamInput006_Legacy_TriggerHapticPulse_params -{ - void *linux_side; - uint64_t inputHandle; - uint32_t eTargetPad; - uint16_t usDurationMicroSec; -}; -extern void cppISteamInput_SteamInput006_Legacy_TriggerHapticPulse( struct cppISteamInput_SteamInput006_Legacy_TriggerHapticPulse_params *params ); - -struct cppISteamInput_SteamInput006_Legacy_TriggerRepeatedHapticPulse_params -{ - void *linux_side; - uint64_t inputHandle; - uint32_t eTargetPad; - uint16_t usDurationMicroSec; - uint16_t usOffMicroSec; - uint16_t unRepeat; - uint32_t nFlags; -}; -extern void cppISteamInput_SteamInput006_Legacy_TriggerRepeatedHapticPulse( struct cppISteamInput_SteamInput006_Legacy_TriggerRepeatedHapticPulse_params *params ); - -struct cppISteamInput_SteamInput006_ShowBindingPanel_params -{ - void *linux_side; - bool _ret; - uint64_t inputHandle; -}; -extern void cppISteamInput_SteamInput006_ShowBindingPanel( struct cppISteamInput_SteamInput006_ShowBindingPanel_params *params ); - -struct cppISteamInput_SteamInput006_GetInputTypeForHandle_params -{ - void *linux_side; - uint32_t _ret; - uint64_t inputHandle; -}; -extern void cppISteamInput_SteamInput006_GetInputTypeForHandle( struct cppISteamInput_SteamInput006_GetInputTypeForHandle_params *params ); - -struct cppISteamInput_SteamInput006_GetControllerForGamepadIndex_params -{ - void *linux_side; - uint64_t _ret; - int32_t nIndex; -}; -extern void cppISteamInput_SteamInput006_GetControllerForGamepadIndex( struct cppISteamInput_SteamInput006_GetControllerForGamepadIndex_params *params ); - -struct cppISteamInput_SteamInput006_GetGamepadIndexForController_params -{ - void *linux_side; - int32_t _ret; - uint64_t ulinputHandle; -}; -extern void cppISteamInput_SteamInput006_GetGamepadIndexForController( struct cppISteamInput_SteamInput006_GetGamepadIndexForController_params *params ); - -struct cppISteamInput_SteamInput006_GetStringForXboxOrigin_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; -}; -extern void cppISteamInput_SteamInput006_GetStringForXboxOrigin( struct cppISteamInput_SteamInput006_GetStringForXboxOrigin_params *params ); - -struct cppISteamInput_SteamInput006_GetGlyphForXboxOrigin_params -{ - void *linux_side; - const char *_ret; - uint32_t eOrigin; -}; -extern void cppISteamInput_SteamInput006_GetGlyphForXboxOrigin( struct cppISteamInput_SteamInput006_GetGlyphForXboxOrigin_params *params ); - -struct cppISteamInput_SteamInput006_GetActionOriginFromXboxOrigin_params -{ - void *linux_side; - uint32_t _ret; - uint64_t inputHandle; - uint32_t eOrigin; -}; -extern void cppISteamInput_SteamInput006_GetActionOriginFromXboxOrigin( struct cppISteamInput_SteamInput006_GetActionOriginFromXboxOrigin_params *params ); - -struct cppISteamInput_SteamInput006_TranslateActionOrigin_params -{ - void *linux_side; - uint32_t _ret; - uint32_t eDestinationInputType; - uint32_t eSourceOrigin; -}; -extern void cppISteamInput_SteamInput006_TranslateActionOrigin( struct cppISteamInput_SteamInput006_TranslateActionOrigin_params *params ); - -struct cppISteamInput_SteamInput006_GetDeviceBindingRevision_params -{ - void *linux_side; - bool _ret; - uint64_t inputHandle; - int32_t *pMajor; - int32_t *pMinor; -}; -extern void cppISteamInput_SteamInput006_GetDeviceBindingRevision( struct cppISteamInput_SteamInput006_GetDeviceBindingRevision_params *params ); - -struct cppISteamInput_SteamInput006_GetRemotePlaySessionID_params -{ - void *linux_side; - uint32_t _ret; - uint64_t inputHandle; -}; -extern void cppISteamInput_SteamInput006_GetRemotePlaySessionID( struct cppISteamInput_SteamInput006_GetRemotePlaySessionID_params *params ); - -struct cppISteamInput_SteamInput006_GetSessionInputConfigurationSettings_params -{ - void *linux_side; - uint16_t _ret; -}; -extern void cppISteamInput_SteamInput006_GetSessionInputConfigurationSettings( struct cppISteamInput_SteamInput006_GetSessionInputConfigurationSettings_params *params ); - -struct cppISteamInput_SteamInput006_SetDualSenseTriggerEffect_params -{ - void *linux_side; - uint64_t inputHandle; - const ScePadTriggerEffectParam *pParam; -}; -extern void cppISteamInput_SteamInput006_SetDualSenseTriggerEffect( struct cppISteamInput_SteamInput006_SetDualSenseTriggerEffect_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V001.cpp b/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V001.cpp index 63f3300f..04a20ed6 100644 --- a/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V001.cpp +++ b/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V001.cpp @@ -1,148 +1,195 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamInventory_STEAMINVENTORY_INTERFACE_V001.h" -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultStatus( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultStatus_params *params ) +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; params->_ret = iface->GetResultStatus( params->resultHandle ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItems_params *params ) +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; params->_ret = iface->GetResultItems( params->resultHandle, params->pOutItemsArray, params->punOutItemsArraySize ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultTimestamp( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultTimestamp_params *params ) +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; params->_ret = iface->GetResultTimestamp( params->resultHandle ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_CheckResultSteamID( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_CheckResultSteamID_params *params ) +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; params->_ret = iface->CheckResultSteamID( params->resultHandle, params->steamIDExpected ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_DestroyResult( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_DestroyResult_params *params ) +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; iface->DestroyResult( params->resultHandle ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetAllItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetAllItems_params *params ) +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; params->_ret = iface->GetAllItems( params->pResultHandle ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID_params *params ) +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; params->_ret = iface->GetItemsByID( params->pResultHandle, params->pInstanceIDs, params->unCountInstanceIDs ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult_params *params ) +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; params->_ret = iface->SerializeResult( params->resultHandle, params->pOutBuffer, params->punOutBufferSize ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeResult( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeResult_params *params ) +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; params->_ret = iface->DeserializeResult( params->pOutResultHandle, params->pBuffer, params->unBufferSize, params->bRESERVED_MUST_BE_FALSE ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems_params *params ) +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; params->_ret = iface->GenerateItems( params->pResultHandle, params->pArrayItemDefs, params->punArrayQuantity, params->unArrayLength ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GrantPromoItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GrantPromoItems_params *params ) +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; params->_ret = iface->GrantPromoItems( params->pResultHandle ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem_params *params ) +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; params->_ret = iface->AddPromoItem( params->pResultHandle, params->itemDef ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems_params *params ) +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; params->_ret = iface->AddPromoItems( params->pResultHandle, params->pArrayItemDefs, params->unArrayLength ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem_params *params ) +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; params->_ret = iface->ConsumeItem( params->pResultHandle, params->itemConsume, params->unQuantity ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems_params *params ) +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; params->_ret = iface->ExchangeItems( params->pResultHandle, params->pArrayGenerate, params->punArrayGenerateQuantity, params->unArrayGenerateLength, params->pArrayDestroy, params->punArrayDestroyQuantity, params->unArrayDestroyLength ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_TransferItemQuantity( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_TransferItemQuantity_params *params ) +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; params->_ret = iface->TransferItemQuantity( params->pResultHandle, params->itemIdSource, params->unQuantity, params->itemIdDest ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_SendItemDropHeartbeat( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_SendItemDropHeartbeat_params *params ) +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; iface->SendItemDropHeartbeat( ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDrop( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDrop_params *params ) +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; params->_ret = iface->TriggerItemDrop( params->pResultHandle, params->dropListDefinition ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems_params *params ) +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; params->_ret = iface->TradeItems( params->pResultHandle, params->steamIDTradePartner, params->pArrayGive, params->pArrayGiveQuantity, params->nArrayGiveLength, params->pArrayGet, params->pArrayGetQuantity, params->nArrayGetLength ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_LoadItemDefinitions( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_LoadItemDefinitions_params *params ) +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; params->_ret = iface->LoadItemDefinitions( ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionIDs( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionIDs_params *params ) +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; params->_ret = iface->GetItemDefinitionIDs( params->pItemDefIDs, params->punItemDefIDsArraySize ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionProperty( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionProperty_params *params ) +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; params->_ret = iface->GetItemDefinitionProperty( params->iDefinition, params->pchPropertyName, params->pchValueBuffer, params->punValueBufferSizeOut ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_RequestEligiblePromoItemDefinitionsIDs( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_RequestEligiblePromoItemDefinitionsIDs_params *params ) +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; params->_ret = iface->RequestEligiblePromoItemDefinitionsIDs( params->steamID ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetEligiblePromoItemDefinitionIDs( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetEligiblePromoItemDefinitionIDs_params *params ) +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; params->_ret = iface->GetEligiblePromoItemDefinitionIDs( params->steamID, params->pItemDefIDs, params->punItemDefIDsArraySize ); + return 0; } diff --git a/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V001.h b/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V001.h deleted file mode 100644 index 2629742a..00000000 --- a/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V001.h +++ /dev/null @@ -1,241 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultStatus_params -{ - void *linux_side; - uint32_t _ret; - int32_t resultHandle; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultStatus( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultStatus_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItems_params -{ - void *linux_side; - bool _ret; - int32_t resultHandle; - SteamItemDetails_t *pOutItemsArray; - uint32_t *punOutItemsArraySize; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItems_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultTimestamp_params -{ - void *linux_side; - uint32_t _ret; - int32_t resultHandle; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultTimestamp( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultTimestamp_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_CheckResultSteamID_params -{ - void *linux_side; - bool _ret; - int32_t resultHandle; - CSteamID steamIDExpected; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_CheckResultSteamID( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_CheckResultSteamID_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_DestroyResult_params -{ - void *linux_side; - int32_t resultHandle; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_DestroyResult( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_DestroyResult_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetAllItems_params -{ - void *linux_side; - bool _ret; - int32_t *pResultHandle; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetAllItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetAllItems_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID_params -{ - void *linux_side; - bool _ret; - int32_t *pResultHandle; - const uint64_t *pInstanceIDs; - uint32_t unCountInstanceIDs; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult_params -{ - void *linux_side; - bool _ret; - int32_t resultHandle; - void *pOutBuffer; - uint32_t *punOutBufferSize; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeResult_params -{ - void *linux_side; - bool _ret; - int32_t *pOutResultHandle; - const void *pBuffer; - uint32_t unBufferSize; - bool bRESERVED_MUST_BE_FALSE; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeResult( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeResult_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems_params -{ - void *linux_side; - bool _ret; - int32_t *pResultHandle; - const int32_t *pArrayItemDefs; - const uint32_t *punArrayQuantity; - uint32_t unArrayLength; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GrantPromoItems_params -{ - void *linux_side; - bool _ret; - int32_t *pResultHandle; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GrantPromoItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GrantPromoItems_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem_params -{ - void *linux_side; - bool _ret; - int32_t *pResultHandle; - int32_t itemDef; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems_params -{ - void *linux_side; - bool _ret; - int32_t *pResultHandle; - const int32_t *pArrayItemDefs; - uint32_t unArrayLength; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem_params -{ - void *linux_side; - bool _ret; - int32_t *pResultHandle; - uint64_t itemConsume; - uint32_t unQuantity; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems_params -{ - void *linux_side; - bool _ret; - 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; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_TransferItemQuantity_params -{ - void *linux_side; - bool _ret; - int32_t *pResultHandle; - uint64_t itemIdSource; - uint32_t unQuantity; - uint64_t itemIdDest; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_TransferItemQuantity( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_TransferItemQuantity_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_SendItemDropHeartbeat_params -{ - void *linux_side; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_SendItemDropHeartbeat( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_SendItemDropHeartbeat_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDrop_params -{ - void *linux_side; - bool _ret; - int32_t *pResultHandle; - int32_t dropListDefinition; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDrop( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDrop_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems_params -{ - void *linux_side; - bool _ret; - 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; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_LoadItemDefinitions_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_LoadItemDefinitions( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_LoadItemDefinitions_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionIDs_params -{ - void *linux_side; - bool _ret; - int32_t *pItemDefIDs; - uint32_t *punItemDefIDsArraySize; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionIDs( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionIDs_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionProperty_params -{ - void *linux_side; - bool _ret; - int32_t iDefinition; - const char *pchPropertyName; - char *pchValueBuffer; - uint32_t *punValueBufferSizeOut; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionProperty( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionProperty_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_RequestEligiblePromoItemDefinitionsIDs_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamID; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_RequestEligiblePromoItemDefinitionsIDs( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_RequestEligiblePromoItemDefinitionsIDs_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetEligiblePromoItemDefinitionIDs_params -{ - void *linux_side; - bool _ret; - CSteamID steamID; - int32_t *pItemDefIDs; - uint32_t *punItemDefIDsArraySize; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetEligiblePromoItemDefinitionIDs( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetEligiblePromoItemDefinitionIDs_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V002.cpp b/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V002.cpp index 0f12693c..8b0afaa2 100644 --- a/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V002.cpp +++ b/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V002.cpp @@ -1,226 +1,299 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamInventory_STEAMINVENTORY_INTERFACE_V002.h" -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultStatus( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultStatus_params *params ) +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; params->_ret = iface->GetResultStatus( params->resultHandle ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems_params *params ) +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; params->_ret = iface->GetResultItems( params->resultHandle, params->pOutItemsArray, params->punOutItemsArraySize ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItemProperty( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItemProperty_params *params ) +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; params->_ret = iface->GetResultItemProperty( params->resultHandle, params->unItemIndex, params->pchPropertyName, params->pchValueBuffer, params->punValueBufferSizeOut ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultTimestamp( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultTimestamp_params *params ) +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; params->_ret = iface->GetResultTimestamp( params->resultHandle ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_CheckResultSteamID( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_CheckResultSteamID_params *params ) +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; params->_ret = iface->CheckResultSteamID( params->resultHandle, params->steamIDExpected ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_DestroyResult( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_DestroyResult_params *params ) +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; iface->DestroyResult( params->resultHandle ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetAllItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetAllItems_params *params ) +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; params->_ret = iface->GetAllItems( params->pResultHandle ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID_params *params ) +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; params->_ret = iface->GetItemsByID( params->pResultHandle, params->pInstanceIDs, params->unCountInstanceIDs ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult_params *params ) +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; params->_ret = iface->SerializeResult( params->resultHandle, params->pOutBuffer, params->punOutBufferSize ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeResult( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeResult_params *params ) +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; params->_ret = iface->DeserializeResult( params->pOutResultHandle, params->pBuffer, params->unBufferSize, params->bRESERVED_MUST_BE_FALSE ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems_params *params ) +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; params->_ret = iface->GenerateItems( params->pResultHandle, params->pArrayItemDefs, params->punArrayQuantity, params->unArrayLength ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GrantPromoItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GrantPromoItems_params *params ) +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; params->_ret = iface->GrantPromoItems( params->pResultHandle ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem_params *params ) +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; params->_ret = iface->AddPromoItem( params->pResultHandle, params->itemDef ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems_params *params ) +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; params->_ret = iface->AddPromoItems( params->pResultHandle, params->pArrayItemDefs, params->unArrayLength ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem_params *params ) +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; params->_ret = iface->ConsumeItem( params->pResultHandle, params->itemConsume, params->unQuantity ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems_params *params ) +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; params->_ret = iface->ExchangeItems( params->pResultHandle, params->pArrayGenerate, params->punArrayGenerateQuantity, params->unArrayGenerateLength, params->pArrayDestroy, params->punArrayDestroyQuantity, params->unArrayDestroyLength ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_TransferItemQuantity( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_TransferItemQuantity_params *params ) +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; params->_ret = iface->TransferItemQuantity( params->pResultHandle, params->itemIdSource, params->unQuantity, params->itemIdDest ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SendItemDropHeartbeat( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SendItemDropHeartbeat_params *params ) +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; iface->SendItemDropHeartbeat( ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDrop( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDrop_params *params ) +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; params->_ret = iface->TriggerItemDrop( params->pResultHandle, params->dropListDefinition ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems_params *params ) +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; params->_ret = iface->TradeItems( params->pResultHandle, params->steamIDTradePartner, params->pArrayGive, params->pArrayGiveQuantity, params->nArrayGiveLength, params->pArrayGet, params->pArrayGetQuantity, params->nArrayGetLength ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_LoadItemDefinitions( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_LoadItemDefinitions_params *params ) +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; params->_ret = iface->LoadItemDefinitions( ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionIDs( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionIDs_params *params ) +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; params->_ret = iface->GetItemDefinitionIDs( params->pItemDefIDs, params->punItemDefIDsArraySize ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionProperty( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionProperty_params *params ) +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; params->_ret = iface->GetItemDefinitionProperty( params->iDefinition, params->pchPropertyName, params->pchValueBuffer, params->punValueBufferSizeOut ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestEligiblePromoItemDefinitionsIDs( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestEligiblePromoItemDefinitionsIDs_params *params ) +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; params->_ret = iface->RequestEligiblePromoItemDefinitionsIDs( params->steamID ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetEligiblePromoItemDefinitionIDs( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetEligiblePromoItemDefinitionIDs_params *params ) +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; params->_ret = iface->GetEligiblePromoItemDefinitionIDs( params->steamID, params->pItemDefIDs, params->punItemDefIDsArraySize ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartPurchase( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartPurchase_params *params ) +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; params->_ret = iface->StartPurchase( params->pArrayItemDefs, params->punArrayQuantity, params->unArrayLength ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestPrices( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestPrices_params *params ) +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; params->_ret = iface->RequestPrices( ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetNumItemsWithPrices( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetNumItemsWithPrices_params *params ) +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; params->_ret = iface->GetNumItemsWithPrices( ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPrices( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPrices_params *params ) +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; params->_ret = iface->GetItemsWithPrices( params->pArrayItemDefs, params->pPrices, params->unArrayLength ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemPrice( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemPrice_params *params ) +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; params->_ret = iface->GetItemPrice( params->iDefinition, params->pPrice ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartUpdateProperties( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartUpdateProperties_params *params ) +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; params->_ret = iface->StartUpdateProperties( ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty_params *params ) +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; params->_ret = iface->RemoveProperty( params->handle, params->nItemID, params->pchPropertyName ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_params *params ) +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; params->_ret = iface->SetProperty( params->handle, params->nItemID, params->pchPropertyName, params->pchPropertyValue ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2_params *params ) +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; params->_ret = iface->SetProperty( params->handle, params->nItemID, params->pchPropertyName, params->bValue ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3_params *params ) +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; params->_ret = iface->SetProperty( params->handle, params->nItemID, params->pchPropertyName, params->nValue ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4_params *params ) +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; params->_ret = iface->SetProperty( params->handle, params->nItemID, params->pchPropertyName, params->flValue ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SubmitUpdateProperties( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SubmitUpdateProperties_params *params ) +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; params->_ret = iface->SubmitUpdateProperties( params->handle, params->pResultHandle ); + return 0; } diff --git a/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V002.h b/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V002.h deleted file mode 100644 index 54c69450..00000000 --- a/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V002.h +++ /dev/null @@ -1,366 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultStatus_params -{ - void *linux_side; - uint32_t _ret; - int32_t resultHandle; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultStatus( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultStatus_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems_params -{ - void *linux_side; - bool _ret; - int32_t resultHandle; - SteamItemDetails_t *pOutItemsArray; - uint32_t *punOutItemsArraySize; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItemProperty_params -{ - void *linux_side; - bool _ret; - int32_t resultHandle; - uint32_t unItemIndex; - const char *pchPropertyName; - char *pchValueBuffer; - uint32_t *punValueBufferSizeOut; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItemProperty( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItemProperty_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultTimestamp_params -{ - void *linux_side; - uint32_t _ret; - int32_t resultHandle; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultTimestamp( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultTimestamp_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_CheckResultSteamID_params -{ - void *linux_side; - bool _ret; - int32_t resultHandle; - CSteamID steamIDExpected; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_CheckResultSteamID( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_CheckResultSteamID_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_DestroyResult_params -{ - void *linux_side; - int32_t resultHandle; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_DestroyResult( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_DestroyResult_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetAllItems_params -{ - void *linux_side; - bool _ret; - int32_t *pResultHandle; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetAllItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetAllItems_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID_params -{ - void *linux_side; - bool _ret; - int32_t *pResultHandle; - const uint64_t *pInstanceIDs; - uint32_t unCountInstanceIDs; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult_params -{ - void *linux_side; - bool _ret; - int32_t resultHandle; - void *pOutBuffer; - uint32_t *punOutBufferSize; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeResult_params -{ - void *linux_side; - bool _ret; - int32_t *pOutResultHandle; - const void *pBuffer; - uint32_t unBufferSize; - bool bRESERVED_MUST_BE_FALSE; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeResult( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeResult_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems_params -{ - void *linux_side; - bool _ret; - int32_t *pResultHandle; - const int32_t *pArrayItemDefs; - const uint32_t *punArrayQuantity; - uint32_t unArrayLength; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GrantPromoItems_params -{ - void *linux_side; - bool _ret; - int32_t *pResultHandle; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GrantPromoItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GrantPromoItems_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem_params -{ - void *linux_side; - bool _ret; - int32_t *pResultHandle; - int32_t itemDef; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems_params -{ - void *linux_side; - bool _ret; - int32_t *pResultHandle; - const int32_t *pArrayItemDefs; - uint32_t unArrayLength; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem_params -{ - void *linux_side; - bool _ret; - int32_t *pResultHandle; - uint64_t itemConsume; - uint32_t unQuantity; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems_params -{ - void *linux_side; - bool _ret; - 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; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_TransferItemQuantity_params -{ - void *linux_side; - bool _ret; - int32_t *pResultHandle; - uint64_t itemIdSource; - uint32_t unQuantity; - uint64_t itemIdDest; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_TransferItemQuantity( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_TransferItemQuantity_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SendItemDropHeartbeat_params -{ - void *linux_side; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SendItemDropHeartbeat( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SendItemDropHeartbeat_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDrop_params -{ - void *linux_side; - bool _ret; - int32_t *pResultHandle; - int32_t dropListDefinition; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDrop( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDrop_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems_params -{ - void *linux_side; - bool _ret; - 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; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_LoadItemDefinitions_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_LoadItemDefinitions( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_LoadItemDefinitions_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionIDs_params -{ - void *linux_side; - bool _ret; - int32_t *pItemDefIDs; - uint32_t *punItemDefIDsArraySize; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionIDs( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionIDs_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionProperty_params -{ - void *linux_side; - bool _ret; - int32_t iDefinition; - const char *pchPropertyName; - char *pchValueBuffer; - uint32_t *punValueBufferSizeOut; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionProperty( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionProperty_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestEligiblePromoItemDefinitionsIDs_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamID; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestEligiblePromoItemDefinitionsIDs( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestEligiblePromoItemDefinitionsIDs_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetEligiblePromoItemDefinitionIDs_params -{ - void *linux_side; - bool _ret; - CSteamID steamID; - int32_t *pItemDefIDs; - uint32_t *punItemDefIDsArraySize; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetEligiblePromoItemDefinitionIDs( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetEligiblePromoItemDefinitionIDs_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartPurchase_params -{ - void *linux_side; - uint64_t _ret; - const int32_t *pArrayItemDefs; - const uint32_t *punArrayQuantity; - uint32_t unArrayLength; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartPurchase( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartPurchase_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestPrices_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestPrices( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestPrices_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetNumItemsWithPrices_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetNumItemsWithPrices( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetNumItemsWithPrices_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPrices_params -{ - void *linux_side; - bool _ret; - int32_t *pArrayItemDefs; - uint64_t *pPrices; - uint32_t unArrayLength; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPrices( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPrices_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemPrice_params -{ - void *linux_side; - bool _ret; - int32_t iDefinition; - uint64_t *pPrice; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemPrice( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemPrice_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartUpdateProperties_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartUpdateProperties( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartUpdateProperties_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint64_t nItemID; - const char *pchPropertyName; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint64_t nItemID; - const char *pchPropertyName; - const char *pchPropertyValue; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint64_t nItemID; - const char *pchPropertyName; - bool bValue; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint64_t nItemID; - const char *pchPropertyName; - int64_t nValue; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint64_t nItemID; - const char *pchPropertyName; - float flValue; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SubmitUpdateProperties_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - int32_t *pResultHandle; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SubmitUpdateProperties( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SubmitUpdateProperties_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V003.cpp b/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V003.cpp index 7101467c..1540bbfd 100644 --- a/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V003.cpp +++ b/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V003.cpp @@ -1,232 +1,307 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamInventory_STEAMINVENTORY_INTERFACE_V003.h" -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultStatus( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultStatus_params *params ) +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; params->_ret = iface->GetResultStatus( params->resultHandle ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems_params *params ) +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; params->_ret = iface->GetResultItems( params->resultHandle, params->pOutItemsArray, params->punOutItemsArraySize ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItemProperty( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItemProperty_params *params ) +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; params->_ret = iface->GetResultItemProperty( params->resultHandle, params->unItemIndex, params->pchPropertyName, params->pchValueBuffer, params->punValueBufferSizeOut ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultTimestamp( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultTimestamp_params *params ) +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; params->_ret = iface->GetResultTimestamp( params->resultHandle ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_CheckResultSteamID( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_CheckResultSteamID_params *params ) +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; params->_ret = iface->CheckResultSteamID( params->resultHandle, params->steamIDExpected ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_DestroyResult( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_DestroyResult_params *params ) +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; iface->DestroyResult( params->resultHandle ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetAllItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetAllItems_params *params ) +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; params->_ret = iface->GetAllItems( params->pResultHandle ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID_params *params ) +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; params->_ret = iface->GetItemsByID( params->pResultHandle, params->pInstanceIDs, params->unCountInstanceIDs ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult_params *params ) +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; params->_ret = iface->SerializeResult( params->resultHandle, params->pOutBuffer, params->punOutBufferSize ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeResult( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeResult_params *params ) +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; params->_ret = iface->DeserializeResult( params->pOutResultHandle, params->pBuffer, params->unBufferSize, params->bRESERVED_MUST_BE_FALSE ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems_params *params ) +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; params->_ret = iface->GenerateItems( params->pResultHandle, params->pArrayItemDefs, params->punArrayQuantity, params->unArrayLength ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GrantPromoItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GrantPromoItems_params *params ) +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; params->_ret = iface->GrantPromoItems( params->pResultHandle ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem_params *params ) +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; params->_ret = iface->AddPromoItem( params->pResultHandle, params->itemDef ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems_params *params ) +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; params->_ret = iface->AddPromoItems( params->pResultHandle, params->pArrayItemDefs, params->unArrayLength ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem_params *params ) +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; params->_ret = iface->ConsumeItem( params->pResultHandle, params->itemConsume, params->unQuantity ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems_params *params ) +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; params->_ret = iface->ExchangeItems( params->pResultHandle, params->pArrayGenerate, params->punArrayGenerateQuantity, params->unArrayGenerateLength, params->pArrayDestroy, params->punArrayDestroyQuantity, params->unArrayDestroyLength ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_TransferItemQuantity( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_TransferItemQuantity_params *params ) +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; params->_ret = iface->TransferItemQuantity( params->pResultHandle, params->itemIdSource, params->unQuantity, params->itemIdDest ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SendItemDropHeartbeat( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SendItemDropHeartbeat_params *params ) +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; iface->SendItemDropHeartbeat( ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDrop( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDrop_params *params ) +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; params->_ret = iface->TriggerItemDrop( params->pResultHandle, params->dropListDefinition ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems_params *params ) +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; params->_ret = iface->TradeItems( params->pResultHandle, params->steamIDTradePartner, params->pArrayGive, params->pArrayGiveQuantity, params->nArrayGiveLength, params->pArrayGet, params->pArrayGetQuantity, params->nArrayGetLength ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_LoadItemDefinitions( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_LoadItemDefinitions_params *params ) +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; params->_ret = iface->LoadItemDefinitions( ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionIDs( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionIDs_params *params ) +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; params->_ret = iface->GetItemDefinitionIDs( params->pItemDefIDs, params->punItemDefIDsArraySize ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionProperty( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionProperty_params *params ) +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; params->_ret = iface->GetItemDefinitionProperty( params->iDefinition, params->pchPropertyName, params->pchValueBuffer, params->punValueBufferSizeOut ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestEligiblePromoItemDefinitionsIDs( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestEligiblePromoItemDefinitionsIDs_params *params ) +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; params->_ret = iface->RequestEligiblePromoItemDefinitionsIDs( params->steamID ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetEligiblePromoItemDefinitionIDs( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetEligiblePromoItemDefinitionIDs_params *params ) +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; params->_ret = iface->GetEligiblePromoItemDefinitionIDs( params->steamID, params->pItemDefIDs, params->punItemDefIDsArraySize ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartPurchase( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartPurchase_params *params ) +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; params->_ret = iface->StartPurchase( params->pArrayItemDefs, params->punArrayQuantity, params->unArrayLength ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestPrices( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestPrices_params *params ) +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; params->_ret = iface->RequestPrices( ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetNumItemsWithPrices( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetNumItemsWithPrices_params *params ) +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; params->_ret = iface->GetNumItemsWithPrices( ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPrices( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPrices_params *params ) +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; params->_ret = iface->GetItemsWithPrices( params->pArrayItemDefs, params->pCurrentPrices, params->pBasePrices, params->unArrayLength ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemPrice( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemPrice_params *params ) +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; params->_ret = iface->GetItemPrice( params->iDefinition, params->pCurrentPrice, params->pBasePrice ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartUpdateProperties( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartUpdateProperties_params *params ) +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; params->_ret = iface->StartUpdateProperties( ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty_params *params ) +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; params->_ret = iface->RemoveProperty( params->handle, params->nItemID, params->pchPropertyName ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_params *params ) +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; params->_ret = iface->SetProperty( params->handle, params->nItemID, params->pchPropertyName, params->pchPropertyValue ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2_params *params ) +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; params->_ret = iface->SetProperty( params->handle, params->nItemID, params->pchPropertyName, params->bValue ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3_params *params ) +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; params->_ret = iface->SetProperty( params->handle, params->nItemID, params->pchPropertyName, params->nValue ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4_params *params ) +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; params->_ret = iface->SetProperty( params->handle, params->nItemID, params->pchPropertyName, params->flValue ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateProperties( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateProperties_params *params ) +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; params->_ret = iface->SubmitUpdateProperties( params->handle, params->pResultHandle ); + return 0; } -void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_InspectItem( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_InspectItem_params *params ) +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; params->_ret = iface->InspectItem( params->pResultHandle, params->pchItemToken ); + return 0; } diff --git a/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V003.h b/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V003.h deleted file mode 100644 index 92b501f3..00000000 --- a/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V003.h +++ /dev/null @@ -1,377 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultStatus_params -{ - void *linux_side; - uint32_t _ret; - int32_t resultHandle; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultStatus( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultStatus_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems_params -{ - void *linux_side; - bool _ret; - int32_t resultHandle; - SteamItemDetails_t *pOutItemsArray; - uint32_t *punOutItemsArraySize; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItemProperty_params -{ - void *linux_side; - bool _ret; - int32_t resultHandle; - uint32_t unItemIndex; - const char *pchPropertyName; - char *pchValueBuffer; - uint32_t *punValueBufferSizeOut; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItemProperty( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItemProperty_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultTimestamp_params -{ - void *linux_side; - uint32_t _ret; - int32_t resultHandle; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultTimestamp( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultTimestamp_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_CheckResultSteamID_params -{ - void *linux_side; - bool _ret; - int32_t resultHandle; - CSteamID steamIDExpected; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_CheckResultSteamID( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_CheckResultSteamID_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_DestroyResult_params -{ - void *linux_side; - int32_t resultHandle; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_DestroyResult( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_DestroyResult_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetAllItems_params -{ - void *linux_side; - bool _ret; - int32_t *pResultHandle; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetAllItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetAllItems_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID_params -{ - void *linux_side; - bool _ret; - int32_t *pResultHandle; - const uint64_t *pInstanceIDs; - uint32_t unCountInstanceIDs; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult_params -{ - void *linux_side; - bool _ret; - int32_t resultHandle; - void *pOutBuffer; - uint32_t *punOutBufferSize; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeResult_params -{ - void *linux_side; - bool _ret; - int32_t *pOutResultHandle; - const void *pBuffer; - uint32_t unBufferSize; - bool bRESERVED_MUST_BE_FALSE; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeResult( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeResult_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems_params -{ - void *linux_side; - bool _ret; - int32_t *pResultHandle; - const int32_t *pArrayItemDefs; - const uint32_t *punArrayQuantity; - uint32_t unArrayLength; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GrantPromoItems_params -{ - void *linux_side; - bool _ret; - int32_t *pResultHandle; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GrantPromoItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GrantPromoItems_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem_params -{ - void *linux_side; - bool _ret; - int32_t *pResultHandle; - int32_t itemDef; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems_params -{ - void *linux_side; - bool _ret; - int32_t *pResultHandle; - const int32_t *pArrayItemDefs; - uint32_t unArrayLength; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem_params -{ - void *linux_side; - bool _ret; - int32_t *pResultHandle; - uint64_t itemConsume; - uint32_t unQuantity; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems_params -{ - void *linux_side; - bool _ret; - 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; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_TransferItemQuantity_params -{ - void *linux_side; - bool _ret; - int32_t *pResultHandle; - uint64_t itemIdSource; - uint32_t unQuantity; - uint64_t itemIdDest; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_TransferItemQuantity( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_TransferItemQuantity_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SendItemDropHeartbeat_params -{ - void *linux_side; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SendItemDropHeartbeat( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SendItemDropHeartbeat_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDrop_params -{ - void *linux_side; - bool _ret; - int32_t *pResultHandle; - int32_t dropListDefinition; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDrop( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDrop_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems_params -{ - void *linux_side; - bool _ret; - 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; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_LoadItemDefinitions_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_LoadItemDefinitions( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_LoadItemDefinitions_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionIDs_params -{ - void *linux_side; - bool _ret; - int32_t *pItemDefIDs; - uint32_t *punItemDefIDsArraySize; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionIDs( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionIDs_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionProperty_params -{ - void *linux_side; - bool _ret; - int32_t iDefinition; - const char *pchPropertyName; - char *pchValueBuffer; - uint32_t *punValueBufferSizeOut; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionProperty( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionProperty_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestEligiblePromoItemDefinitionsIDs_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamID; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestEligiblePromoItemDefinitionsIDs( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestEligiblePromoItemDefinitionsIDs_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetEligiblePromoItemDefinitionIDs_params -{ - void *linux_side; - bool _ret; - CSteamID steamID; - int32_t *pItemDefIDs; - uint32_t *punItemDefIDsArraySize; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetEligiblePromoItemDefinitionIDs( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetEligiblePromoItemDefinitionIDs_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartPurchase_params -{ - void *linux_side; - uint64_t _ret; - const int32_t *pArrayItemDefs; - const uint32_t *punArrayQuantity; - uint32_t unArrayLength; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartPurchase( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartPurchase_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestPrices_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestPrices( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestPrices_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetNumItemsWithPrices_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetNumItemsWithPrices( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetNumItemsWithPrices_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPrices_params -{ - void *linux_side; - bool _ret; - int32_t *pArrayItemDefs; - uint64_t *pCurrentPrices; - uint64_t *pBasePrices; - uint32_t unArrayLength; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPrices( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPrices_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemPrice_params -{ - void *linux_side; - bool _ret; - int32_t iDefinition; - uint64_t *pCurrentPrice; - uint64_t *pBasePrice; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemPrice( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemPrice_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartUpdateProperties_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartUpdateProperties( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartUpdateProperties_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint64_t nItemID; - const char *pchPropertyName; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint64_t nItemID; - const char *pchPropertyName; - const char *pchPropertyValue; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint64_t nItemID; - const char *pchPropertyName; - bool bValue; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint64_t nItemID; - const char *pchPropertyName; - int64_t nValue; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint64_t nItemID; - const char *pchPropertyName; - float flValue; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateProperties_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - int32_t *pResultHandle; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateProperties( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateProperties_params *params ); - -struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_InspectItem_params -{ - void *linux_side; - bool _ret; - int32_t *pResultHandle; - const char *pchItemToken; -}; -extern void cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_InspectItem( struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_InspectItem_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamMasterServerUpdater_SteamMasterServerUpdater001.cpp b/lsteamclient/cppISteamMasterServerUpdater_SteamMasterServerUpdater001.cpp index 4201eb1a..68788f62 100644 --- a/lsteamclient/cppISteamMasterServerUpdater_SteamMasterServerUpdater001.cpp +++ b/lsteamclient/cppISteamMasterServerUpdater_SteamMasterServerUpdater001.cpp @@ -1,88 +1,115 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamMasterServerUpdater_SteamMasterServerUpdater001.h" -void cppISteamMasterServerUpdater_SteamMasterServerUpdater001_SetActive( struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_SetActive_params *params ) +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; iface->SetActive( params->bActive ); + return 0; } -void cppISteamMasterServerUpdater_SteamMasterServerUpdater001_SetHeartbeatInterval( struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_SetHeartbeatInterval_params *params ) +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; iface->SetHeartbeatInterval( params->iHeartbeatInterval ); + return 0; } -void cppISteamMasterServerUpdater_SteamMasterServerUpdater001_HandleIncomingPacket( struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_HandleIncomingPacket_params *params ) +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; params->_ret = iface->HandleIncomingPacket( params->pData, params->cbData, params->srcIP, params->srcPort ); + return 0; } -void cppISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNextOutgoingPacket( struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNextOutgoingPacket_params *params ) +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; params->_ret = iface->GetNextOutgoingPacket( params->pOut, params->cbMaxOut, params->pNetAdr, params->pPort ); + return 0; } -void cppISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasicServerData( struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasicServerData_params *params ) +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; iface->SetBasicServerData( params->nProtocolVersion, params->bDedicatedServer, params->pRegionName, params->pProductName, params->nMaxReportedClients, params->bPasswordProtected, params->pGameDescription ); + return 0; } -void cppISteamMasterServerUpdater_SteamMasterServerUpdater001_ClearAllKeyValues( struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_ClearAllKeyValues_params *params ) +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; iface->ClearAllKeyValues( ); + return 0; } -void cppISteamMasterServerUpdater_SteamMasterServerUpdater001_SetKeyValue( struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_SetKeyValue_params *params ) +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; iface->SetKeyValue( params->pKey, params->pValue ); + return 0; } -void cppISteamMasterServerUpdater_SteamMasterServerUpdater001_NotifyShutdown( struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_NotifyShutdown_params *params ) +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; iface->NotifyShutdown( ); + return 0; } -void cppISteamMasterServerUpdater_SteamMasterServerUpdater001_WasRestartRequested( struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_WasRestartRequested_params *params ) +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; params->_ret = iface->WasRestartRequested( ); + return 0; } -void cppISteamMasterServerUpdater_SteamMasterServerUpdater001_ForceHeartbeat( struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_ForceHeartbeat_params *params ) +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; iface->ForceHeartbeat( ); + return 0; } -void cppISteamMasterServerUpdater_SteamMasterServerUpdater001_AddMasterServer( struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_AddMasterServer_params *params ) +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; params->_ret = iface->AddMasterServer( params->pServerAddress ); + return 0; } -void cppISteamMasterServerUpdater_SteamMasterServerUpdater001_RemoveMasterServer( struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_RemoveMasterServer_params *params ) +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; params->_ret = iface->RemoveMasterServer( params->pServerAddress ); + return 0; } -void cppISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNumMasterServers( struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNumMasterServers_params *params ) +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; params->_ret = iface->GetNumMasterServers( ); + return 0; } -void cppISteamMasterServerUpdater_SteamMasterServerUpdater001_GetMasterServerAddress( struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_GetMasterServerAddress_params *params ) +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; params->_ret = iface->GetMasterServerAddress( params->iServer, params->pOut, params->outBufferSize ); + return 0; } diff --git a/lsteamclient/cppISteamMasterServerUpdater_SteamMasterServerUpdater001.h b/lsteamclient/cppISteamMasterServerUpdater_SteamMasterServerUpdater001.h deleted file mode 100644 index 602cc3c7..00000000 --- a/lsteamclient/cppISteamMasterServerUpdater_SteamMasterServerUpdater001.h +++ /dev/null @@ -1,127 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_SetActive_params -{ - void *linux_side; - bool bActive; -}; -extern void cppISteamMasterServerUpdater_SteamMasterServerUpdater001_SetActive( struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_SetActive_params *params ); - -struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_SetHeartbeatInterval_params -{ - void *linux_side; - int32_t iHeartbeatInterval; -}; -extern void cppISteamMasterServerUpdater_SteamMasterServerUpdater001_SetHeartbeatInterval( struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_SetHeartbeatInterval_params *params ); - -struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_HandleIncomingPacket_params -{ - void *linux_side; - bool _ret; - const void *pData; - int32_t cbData; - uint32_t srcIP; - uint16_t srcPort; -}; -extern void cppISteamMasterServerUpdater_SteamMasterServerUpdater001_HandleIncomingPacket( struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_HandleIncomingPacket_params *params ); - -struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNextOutgoingPacket_params -{ - void *linux_side; - int32_t _ret; - void *pOut; - int32_t cbMaxOut; - uint32_t *pNetAdr; - uint16_t *pPort; -}; -extern void cppISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNextOutgoingPacket( struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNextOutgoingPacket_params *params ); - -struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasicServerData_params -{ - void *linux_side; - uint16_t nProtocolVersion; - bool bDedicatedServer; - const char *pRegionName; - const char *pProductName; - uint16_t nMaxReportedClients; - bool bPasswordProtected; - const char *pGameDescription; -}; -extern void cppISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasicServerData( struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasicServerData_params *params ); - -struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_ClearAllKeyValues_params -{ - void *linux_side; -}; -extern void cppISteamMasterServerUpdater_SteamMasterServerUpdater001_ClearAllKeyValues( struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_ClearAllKeyValues_params *params ); - -struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_SetKeyValue_params -{ - void *linux_side; - const char *pKey; - const char *pValue; -}; -extern void cppISteamMasterServerUpdater_SteamMasterServerUpdater001_SetKeyValue( struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_SetKeyValue_params *params ); - -struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_NotifyShutdown_params -{ - void *linux_side; -}; -extern void cppISteamMasterServerUpdater_SteamMasterServerUpdater001_NotifyShutdown( struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_NotifyShutdown_params *params ); - -struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_WasRestartRequested_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamMasterServerUpdater_SteamMasterServerUpdater001_WasRestartRequested( struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_WasRestartRequested_params *params ); - -struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_ForceHeartbeat_params -{ - void *linux_side; -}; -extern void cppISteamMasterServerUpdater_SteamMasterServerUpdater001_ForceHeartbeat( struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_ForceHeartbeat_params *params ); - -struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_AddMasterServer_params -{ - void *linux_side; - bool _ret; - const char *pServerAddress; -}; -extern void cppISteamMasterServerUpdater_SteamMasterServerUpdater001_AddMasterServer( struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_AddMasterServer_params *params ); - -struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_RemoveMasterServer_params -{ - void *linux_side; - bool _ret; - const char *pServerAddress; -}; -extern void cppISteamMasterServerUpdater_SteamMasterServerUpdater001_RemoveMasterServer( struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_RemoveMasterServer_params *params ); - -struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNumMasterServers_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNumMasterServers( struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNumMasterServers_params *params ); - -struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_GetMasterServerAddress_params -{ - void *linux_side; - int32_t _ret; - int32_t iServer; - char *pOut; - int32_t outBufferSize; -}; -extern void cppISteamMasterServerUpdater_SteamMasterServerUpdater001_GetMasterServerAddress( struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_GetMasterServerAddress_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamMatchmakingServers_SteamMatchMakingServers001.cpp b/lsteamclient/cppISteamMatchmakingServers_SteamMatchMakingServers001.cpp index d24ddfa4..188ee6c8 100644 --- a/lsteamclient/cppISteamMatchmakingServers_SteamMatchMakingServers001.cpp +++ b/lsteamclient/cppISteamMatchmakingServers_SteamMatchMakingServers001.cpp @@ -1,109 +1,140 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamMatchmakingServers_SteamMatchMakingServers001.h" -void cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestInternetServerList( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestInternetServerList_params *params ) +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; u_ISteamMatchmakingServerListResponse *u_pRequestServersResponse = create_LinuxISteamMatchmakingServerListResponse( params->pRequestServersResponse, "ISteamMatchmakingServers_SteamMatchMakingServers001" ); iface->RequestInternetServerList( params->iApp, params->ppchFilters, params->nFilters, u_pRequestServersResponse ); + return 0; } -void cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestLANServerList( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestLANServerList_params *params ) +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; u_ISteamMatchmakingServerListResponse *u_pRequestServersResponse = create_LinuxISteamMatchmakingServerListResponse( params->pRequestServersResponse, "ISteamMatchmakingServers_SteamMatchMakingServers001" ); iface->RequestLANServerList( params->iApp, u_pRequestServersResponse ); + return 0; } -void cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestFriendsServerList( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestFriendsServerList_params *params ) +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; u_ISteamMatchmakingServerListResponse *u_pRequestServersResponse = create_LinuxISteamMatchmakingServerListResponse( params->pRequestServersResponse, "ISteamMatchmakingServers_SteamMatchMakingServers001" ); iface->RequestFriendsServerList( params->iApp, params->ppchFilters, params->nFilters, u_pRequestServersResponse ); + return 0; } -void cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestFavoritesServerList( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestFavoritesServerList_params *params ) +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; u_ISteamMatchmakingServerListResponse *u_pRequestServersResponse = create_LinuxISteamMatchmakingServerListResponse( params->pRequestServersResponse, "ISteamMatchmakingServers_SteamMatchMakingServers001" ); iface->RequestFavoritesServerList( params->iApp, params->ppchFilters, params->nFilters, u_pRequestServersResponse ); + return 0; } -void cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestHistoryServerList( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestHistoryServerList_params *params ) +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; u_ISteamMatchmakingServerListResponse *u_pRequestServersResponse = create_LinuxISteamMatchmakingServerListResponse( params->pRequestServersResponse, "ISteamMatchmakingServers_SteamMatchMakingServers001" ); iface->RequestHistoryServerList( params->iApp, params->ppchFilters, params->nFilters, u_pRequestServersResponse ); + return 0; } -void cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestSpectatorServerList( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestSpectatorServerList_params *params ) +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; u_ISteamMatchmakingServerListResponse *u_pRequestServersResponse = create_LinuxISteamMatchmakingServerListResponse( params->pRequestServersResponse, "ISteamMatchmakingServers_SteamMatchMakingServers001" ); iface->RequestSpectatorServerList( params->iApp, params->ppchFilters, params->nFilters, u_pRequestServersResponse ); + return 0; } -void cppISteamMatchmakingServers_SteamMatchMakingServers001_GetServerDetails( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_GetServerDetails_params *params ) +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; params->_ret = iface->GetServerDetails( params->eType, params->iServer ); + return 0; } -void cppISteamMatchmakingServers_SteamMatchMakingServers001_CancelQuery( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_CancelQuery_params *params ) +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; iface->CancelQuery( params->eType ); + return 0; } -void cppISteamMatchmakingServers_SteamMatchMakingServers001_RefreshQuery( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RefreshQuery_params *params ) +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; iface->RefreshQuery( params->eType ); + return 0; } -void cppISteamMatchmakingServers_SteamMatchMakingServers001_IsRefreshing( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_IsRefreshing_params *params ) +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; params->_ret = iface->IsRefreshing( params->eType ); + return 0; } -void cppISteamMatchmakingServers_SteamMatchMakingServers001_GetServerCount( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_GetServerCount_params *params ) +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; params->_ret = iface->GetServerCount( params->eType ); + return 0; } -void cppISteamMatchmakingServers_SteamMatchMakingServers001_RefreshServer( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RefreshServer_params *params ) +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; iface->RefreshServer( params->eType, params->iServer ); + return 0; } -void cppISteamMatchmakingServers_SteamMatchMakingServers001_PingServer( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_PingServer_params *params ) +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; u_ISteamMatchmakingPingResponse *u_pRequestServersResponse = create_LinuxISteamMatchmakingPingResponse( params->pRequestServersResponse, "ISteamMatchmakingServers_SteamMatchMakingServers001" ); params->_ret = iface->PingServer( params->unIP, params->usPort, u_pRequestServersResponse ); + return 0; } -void cppISteamMatchmakingServers_SteamMatchMakingServers001_PlayerDetails( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_PlayerDetails_params *params ) +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; u_ISteamMatchmakingPlayersResponse *u_pRequestServersResponse = create_LinuxISteamMatchmakingPlayersResponse( params->pRequestServersResponse, "ISteamMatchmakingServers_SteamMatchMakingServers001" ); params->_ret = iface->PlayerDetails( params->unIP, params->usPort, u_pRequestServersResponse ); + return 0; } -void cppISteamMatchmakingServers_SteamMatchMakingServers001_ServerRules( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_ServerRules_params *params ) +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; u_ISteamMatchmakingRulesResponse *u_pRequestServersResponse = create_LinuxISteamMatchmakingRulesResponse( params->pRequestServersResponse, "ISteamMatchmakingServers_SteamMatchMakingServers001" ); params->_ret = iface->ServerRules( params->unIP, params->usPort, u_pRequestServersResponse ); + return 0; } -void cppISteamMatchmakingServers_SteamMatchMakingServers001_CancelServerQuery( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_CancelServerQuery_params *params ) +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; iface->CancelServerQuery( params->hServerQuery ); + return 0; } diff --git a/lsteamclient/cppISteamMatchmakingServers_SteamMatchMakingServers001.h b/lsteamclient/cppISteamMatchmakingServers_SteamMatchMakingServers001.h deleted file mode 100644 index c45a8a42..00000000 --- a/lsteamclient/cppISteamMatchmakingServers_SteamMatchMakingServers001.h +++ /dev/null @@ -1,154 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestInternetServerList_params -{ - void *linux_side; - uint32_t iApp; - MatchMakingKeyValuePair_t **ppchFilters; - uint32_t nFilters; - w_ISteamMatchmakingServerListResponse *pRequestServersResponse; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestInternetServerList( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestInternetServerList_params *params ); - -struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestLANServerList_params -{ - void *linux_side; - uint32_t iApp; - w_ISteamMatchmakingServerListResponse *pRequestServersResponse; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestLANServerList( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestLANServerList_params *params ); - -struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestFriendsServerList_params -{ - void *linux_side; - uint32_t iApp; - MatchMakingKeyValuePair_t **ppchFilters; - uint32_t nFilters; - w_ISteamMatchmakingServerListResponse *pRequestServersResponse; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestFriendsServerList( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestFriendsServerList_params *params ); - -struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestFavoritesServerList_params -{ - void *linux_side; - uint32_t iApp; - MatchMakingKeyValuePair_t **ppchFilters; - uint32_t nFilters; - w_ISteamMatchmakingServerListResponse *pRequestServersResponse; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestFavoritesServerList( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestFavoritesServerList_params *params ); - -struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestHistoryServerList_params -{ - void *linux_side; - uint32_t iApp; - MatchMakingKeyValuePair_t **ppchFilters; - uint32_t nFilters; - w_ISteamMatchmakingServerListResponse *pRequestServersResponse; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestHistoryServerList( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestHistoryServerList_params *params ); - -struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestSpectatorServerList_params -{ - void *linux_side; - uint32_t iApp; - MatchMakingKeyValuePair_t **ppchFilters; - uint32_t nFilters; - w_ISteamMatchmakingServerListResponse *pRequestServersResponse; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestSpectatorServerList( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestSpectatorServerList_params *params ); - -struct cppISteamMatchmakingServers_SteamMatchMakingServers001_GetServerDetails_params -{ - void *linux_side; - gameserveritem_t_105 *_ret; - uint32_t eType; - int32_t iServer; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers001_GetServerDetails( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_GetServerDetails_params *params ); - -struct cppISteamMatchmakingServers_SteamMatchMakingServers001_CancelQuery_params -{ - void *linux_side; - uint32_t eType; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers001_CancelQuery( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_CancelQuery_params *params ); - -struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RefreshQuery_params -{ - void *linux_side; - uint32_t eType; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers001_RefreshQuery( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RefreshQuery_params *params ); - -struct cppISteamMatchmakingServers_SteamMatchMakingServers001_IsRefreshing_params -{ - void *linux_side; - bool _ret; - uint32_t eType; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers001_IsRefreshing( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_IsRefreshing_params *params ); - -struct cppISteamMatchmakingServers_SteamMatchMakingServers001_GetServerCount_params -{ - void *linux_side; - int32_t _ret; - uint32_t eType; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers001_GetServerCount( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_GetServerCount_params *params ); - -struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RefreshServer_params -{ - void *linux_side; - uint32_t eType; - int32_t iServer; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers001_RefreshServer( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RefreshServer_params *params ); - -struct cppISteamMatchmakingServers_SteamMatchMakingServers001_PingServer_params -{ - void *linux_side; - int32_t _ret; - uint32_t unIP; - uint16_t usPort; - w_ISteamMatchmakingPingResponse *pRequestServersResponse; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers001_PingServer( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_PingServer_params *params ); - -struct cppISteamMatchmakingServers_SteamMatchMakingServers001_PlayerDetails_params -{ - void *linux_side; - int32_t _ret; - uint32_t unIP; - uint16_t usPort; - w_ISteamMatchmakingPlayersResponse *pRequestServersResponse; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers001_PlayerDetails( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_PlayerDetails_params *params ); - -struct cppISteamMatchmakingServers_SteamMatchMakingServers001_ServerRules_params -{ - void *linux_side; - int32_t _ret; - uint32_t unIP; - uint16_t usPort; - w_ISteamMatchmakingRulesResponse *pRequestServersResponse; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers001_ServerRules( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_ServerRules_params *params ); - -struct cppISteamMatchmakingServers_SteamMatchMakingServers001_CancelServerQuery_params -{ - void *linux_side; - int32_t hServerQuery; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers001_CancelServerQuery( struct cppISteamMatchmakingServers_SteamMatchMakingServers001_CancelServerQuery_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamMatchmakingServers_SteamMatchMakingServers002.cpp b/lsteamclient/cppISteamMatchmakingServers_SteamMatchMakingServers002.cpp index dbdd6b92..021a808b 100644 --- a/lsteamclient/cppISteamMatchmakingServers_SteamMatchMakingServers002.cpp +++ b/lsteamclient/cppISteamMatchmakingServers_SteamMatchMakingServers002.cpp @@ -1,115 +1,148 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamMatchmakingServers_SteamMatchMakingServers002.h" -void cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestInternetServerList( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestInternetServerList_params *params ) +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; u_ISteamMatchmakingServerListResponse *u_pRequestServersResponse = create_LinuxISteamMatchmakingServerListResponse( params->pRequestServersResponse, "ISteamMatchmakingServers_SteamMatchMakingServers002" ); params->_ret = iface->RequestInternetServerList( params->iApp, params->ppchFilters, params->nFilters, u_pRequestServersResponse ); + return 0; } -void cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestLANServerList( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestLANServerList_params *params ) +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; u_ISteamMatchmakingServerListResponse *u_pRequestServersResponse = create_LinuxISteamMatchmakingServerListResponse( params->pRequestServersResponse, "ISteamMatchmakingServers_SteamMatchMakingServers002" ); params->_ret = iface->RequestLANServerList( params->iApp, u_pRequestServersResponse ); + return 0; } -void cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestFriendsServerList( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestFriendsServerList_params *params ) +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; u_ISteamMatchmakingServerListResponse *u_pRequestServersResponse = create_LinuxISteamMatchmakingServerListResponse( params->pRequestServersResponse, "ISteamMatchmakingServers_SteamMatchMakingServers002" ); params->_ret = iface->RequestFriendsServerList( params->iApp, params->ppchFilters, params->nFilters, u_pRequestServersResponse ); + return 0; } -void cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestFavoritesServerList( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestFavoritesServerList_params *params ) +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; u_ISteamMatchmakingServerListResponse *u_pRequestServersResponse = create_LinuxISteamMatchmakingServerListResponse( params->pRequestServersResponse, "ISteamMatchmakingServers_SteamMatchMakingServers002" ); params->_ret = iface->RequestFavoritesServerList( params->iApp, params->ppchFilters, params->nFilters, u_pRequestServersResponse ); + return 0; } -void cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestHistoryServerList( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestHistoryServerList_params *params ) +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; u_ISteamMatchmakingServerListResponse *u_pRequestServersResponse = create_LinuxISteamMatchmakingServerListResponse( params->pRequestServersResponse, "ISteamMatchmakingServers_SteamMatchMakingServers002" ); params->_ret = iface->RequestHistoryServerList( params->iApp, params->ppchFilters, params->nFilters, u_pRequestServersResponse ); + return 0; } -void cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestSpectatorServerList( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestSpectatorServerList_params *params ) +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; u_ISteamMatchmakingServerListResponse *u_pRequestServersResponse = create_LinuxISteamMatchmakingServerListResponse( params->pRequestServersResponse, "ISteamMatchmakingServers_SteamMatchMakingServers002" ); params->_ret = iface->RequestSpectatorServerList( params->iApp, params->ppchFilters, params->nFilters, u_pRequestServersResponse ); + return 0; } -void cppISteamMatchmakingServers_SteamMatchMakingServers002_ReleaseRequest( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_ReleaseRequest_params *params ) +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; iface->ReleaseRequest( params->hServerListRequest ); + return 0; } -void cppISteamMatchmakingServers_SteamMatchMakingServers002_GetServerDetails( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_GetServerDetails_params *params ) +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; params->_ret = iface->GetServerDetails( params->hRequest, params->iServer ); + return 0; } -void cppISteamMatchmakingServers_SteamMatchMakingServers002_CancelQuery( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_CancelQuery_params *params ) +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; iface->CancelQuery( params->hRequest ); + return 0; } -void cppISteamMatchmakingServers_SteamMatchMakingServers002_RefreshQuery( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RefreshQuery_params *params ) +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; iface->RefreshQuery( params->hRequest ); + return 0; } -void cppISteamMatchmakingServers_SteamMatchMakingServers002_IsRefreshing( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_IsRefreshing_params *params ) +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; params->_ret = iface->IsRefreshing( params->hRequest ); + return 0; } -void cppISteamMatchmakingServers_SteamMatchMakingServers002_GetServerCount( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_GetServerCount_params *params ) +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; params->_ret = iface->GetServerCount( params->hRequest ); + return 0; } -void cppISteamMatchmakingServers_SteamMatchMakingServers002_RefreshServer( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RefreshServer_params *params ) +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; iface->RefreshServer( params->hRequest, params->iServer ); + return 0; } -void cppISteamMatchmakingServers_SteamMatchMakingServers002_PingServer( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_PingServer_params *params ) +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; u_ISteamMatchmakingPingResponse *u_pRequestServersResponse = create_LinuxISteamMatchmakingPingResponse( params->pRequestServersResponse, "ISteamMatchmakingServers_SteamMatchMakingServers002" ); params->_ret = iface->PingServer( params->unIP, params->usPort, u_pRequestServersResponse ); + return 0; } -void cppISteamMatchmakingServers_SteamMatchMakingServers002_PlayerDetails( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_PlayerDetails_params *params ) +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; u_ISteamMatchmakingPlayersResponse *u_pRequestServersResponse = create_LinuxISteamMatchmakingPlayersResponse( params->pRequestServersResponse, "ISteamMatchmakingServers_SteamMatchMakingServers002" ); params->_ret = iface->PlayerDetails( params->unIP, params->usPort, u_pRequestServersResponse ); + return 0; } -void cppISteamMatchmakingServers_SteamMatchMakingServers002_ServerRules( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_ServerRules_params *params ) +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; u_ISteamMatchmakingRulesResponse *u_pRequestServersResponse = create_LinuxISteamMatchmakingRulesResponse( params->pRequestServersResponse, "ISteamMatchmakingServers_SteamMatchMakingServers002" ); params->_ret = iface->ServerRules( params->unIP, params->usPort, u_pRequestServersResponse ); + return 0; } -void cppISteamMatchmakingServers_SteamMatchMakingServers002_CancelServerQuery( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_CancelServerQuery_params *params ) +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; iface->CancelServerQuery( params->hServerQuery ); + return 0; } diff --git a/lsteamclient/cppISteamMatchmakingServers_SteamMatchMakingServers002.h b/lsteamclient/cppISteamMatchmakingServers_SteamMatchMakingServers002.h deleted file mode 100644 index 77f8fa3a..00000000 --- a/lsteamclient/cppISteamMatchmakingServers_SteamMatchMakingServers002.h +++ /dev/null @@ -1,167 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestInternetServerList_params -{ - void *linux_side; - void *_ret; - uint32_t iApp; - MatchMakingKeyValuePair_t **ppchFilters; - uint32_t nFilters; - w_ISteamMatchmakingServerListResponse *pRequestServersResponse; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestInternetServerList( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestInternetServerList_params *params ); - -struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestLANServerList_params -{ - void *linux_side; - void *_ret; - uint32_t iApp; - w_ISteamMatchmakingServerListResponse *pRequestServersResponse; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestLANServerList( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestLANServerList_params *params ); - -struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestFriendsServerList_params -{ - void *linux_side; - void *_ret; - uint32_t iApp; - MatchMakingKeyValuePair_t **ppchFilters; - uint32_t nFilters; - w_ISteamMatchmakingServerListResponse *pRequestServersResponse; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestFriendsServerList( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestFriendsServerList_params *params ); - -struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestFavoritesServerList_params -{ - void *linux_side; - void *_ret; - uint32_t iApp; - MatchMakingKeyValuePair_t **ppchFilters; - uint32_t nFilters; - w_ISteamMatchmakingServerListResponse *pRequestServersResponse; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestFavoritesServerList( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestFavoritesServerList_params *params ); - -struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestHistoryServerList_params -{ - void *linux_side; - void *_ret; - uint32_t iApp; - MatchMakingKeyValuePair_t **ppchFilters; - uint32_t nFilters; - w_ISteamMatchmakingServerListResponse *pRequestServersResponse; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestHistoryServerList( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestHistoryServerList_params *params ); - -struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestSpectatorServerList_params -{ - void *linux_side; - void *_ret; - uint32_t iApp; - MatchMakingKeyValuePair_t **ppchFilters; - uint32_t nFilters; - w_ISteamMatchmakingServerListResponse *pRequestServersResponse; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestSpectatorServerList( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestSpectatorServerList_params *params ); - -struct cppISteamMatchmakingServers_SteamMatchMakingServers002_ReleaseRequest_params -{ - void *linux_side; - void *hServerListRequest; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers002_ReleaseRequest( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_ReleaseRequest_params *params ); - -struct cppISteamMatchmakingServers_SteamMatchMakingServers002_GetServerDetails_params -{ - void *linux_side; - gameserveritem_t_105 *_ret; - void *hRequest; - int32_t iServer; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers002_GetServerDetails( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_GetServerDetails_params *params ); - -struct cppISteamMatchmakingServers_SteamMatchMakingServers002_CancelQuery_params -{ - void *linux_side; - void *hRequest; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers002_CancelQuery( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_CancelQuery_params *params ); - -struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RefreshQuery_params -{ - void *linux_side; - void *hRequest; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers002_RefreshQuery( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RefreshQuery_params *params ); - -struct cppISteamMatchmakingServers_SteamMatchMakingServers002_IsRefreshing_params -{ - void *linux_side; - bool _ret; - void *hRequest; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers002_IsRefreshing( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_IsRefreshing_params *params ); - -struct cppISteamMatchmakingServers_SteamMatchMakingServers002_GetServerCount_params -{ - void *linux_side; - int32_t _ret; - void *hRequest; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers002_GetServerCount( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_GetServerCount_params *params ); - -struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RefreshServer_params -{ - void *linux_side; - void *hRequest; - int32_t iServer; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers002_RefreshServer( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RefreshServer_params *params ); - -struct cppISteamMatchmakingServers_SteamMatchMakingServers002_PingServer_params -{ - void *linux_side; - int32_t _ret; - uint32_t unIP; - uint16_t usPort; - w_ISteamMatchmakingPingResponse *pRequestServersResponse; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers002_PingServer( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_PingServer_params *params ); - -struct cppISteamMatchmakingServers_SteamMatchMakingServers002_PlayerDetails_params -{ - void *linux_side; - int32_t _ret; - uint32_t unIP; - uint16_t usPort; - w_ISteamMatchmakingPlayersResponse *pRequestServersResponse; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers002_PlayerDetails( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_PlayerDetails_params *params ); - -struct cppISteamMatchmakingServers_SteamMatchMakingServers002_ServerRules_params -{ - void *linux_side; - int32_t _ret; - uint32_t unIP; - uint16_t usPort; - w_ISteamMatchmakingRulesResponse *pRequestServersResponse; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers002_ServerRules( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_ServerRules_params *params ); - -struct cppISteamMatchmakingServers_SteamMatchMakingServers002_CancelServerQuery_params -{ - void *linux_side; - int32_t hServerQuery; -}; -extern void cppISteamMatchmakingServers_SteamMatchMakingServers002_CancelServerQuery( struct cppISteamMatchmakingServers_SteamMatchMakingServers002_CancelServerQuery_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking001.cpp b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking001.cpp index 2c4a969e..3ace300e 100644 --- a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking001.cpp +++ b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking001.cpp @@ -1,136 +1,179 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamMatchmaking_SteamMatchMaking001.h" -void cppISteamMatchmaking_SteamMatchMaking001_GetFavoriteGameCount( struct cppISteamMatchmaking_SteamMatchMaking001_GetFavoriteGameCount_params *params ) +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; params->_ret = iface->GetFavoriteGameCount( ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame_params *params ) +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; params->_ret = iface->GetFavoriteGame( params->iGame, params->pnAppID, params->pnIP, params->pnConnPort, params->punFlags, params->pRTime32LastPlayedOnServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame_params *params ) +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; params->_ret = iface->AddFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->unFlags, params->rTime32LastPlayedOnServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame_params *params ) +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; params->_ret = iface->RemoveFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->unFlags ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame2( struct cppISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame2_params *params ) +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; params->_ret = iface->GetFavoriteGame2( params->iGame, params->pnAppID, params->pnIP, params->pnConnPort, params->pnQueryPort, params->punFlags, params->pRTime32LastPlayedOnServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame2( struct cppISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame2_params *params ) +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; params->_ret = iface->AddFavoriteGame2( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags, params->rTime32LastPlayedOnServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame2( struct cppISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame2_params *params ) +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; params->_ret = iface->RemoveFavoriteGame2( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking001_RequestLobbyList( struct cppISteamMatchmaking_SteamMatchMaking001_RequestLobbyList_params *params ) +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; iface->RequestLobbyList( params->ulGameID, params->pFilters, params->nFilters ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking001_GetLobbyByIndex( struct cppISteamMatchmaking_SteamMatchMaking001_GetLobbyByIndex_params *params ) +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; *params->_ret = iface->GetLobbyByIndex( params->iLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking001_CreateLobby( struct cppISteamMatchmaking_SteamMatchMaking001_CreateLobby_params *params ) +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; iface->CreateLobby( params->ulGameID, params->bPrivate ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking001_JoinLobby( struct cppISteamMatchmaking_SteamMatchMaking001_JoinLobby_params *params ) +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; iface->JoinLobby( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking001_LeaveLobby( struct cppISteamMatchmaking_SteamMatchMaking001_LeaveLobby_params *params ) +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; iface->LeaveLobby( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking001_InviteUserToLobby( struct cppISteamMatchmaking_SteamMatchMaking001_InviteUserToLobby_params *params ) +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; params->_ret = iface->InviteUserToLobby( params->steamIDLobby, params->steamIDInvitee ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking001_GetNumLobbyMembers( struct cppISteamMatchmaking_SteamMatchMaking001_GetNumLobbyMembers_params *params ) +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; params->_ret = iface->GetNumLobbyMembers( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberByIndex( struct cppISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberByIndex_params *params ) +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; *params->_ret = iface->GetLobbyMemberByIndex( params->steamIDLobby, params->iMember ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking001_GetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking001_GetLobbyData_params *params ) +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; params->_ret = iface->GetLobbyData( params->SteamIDLobby, params->pchKey ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking001_SetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking001_SetLobbyData_params *params ) +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; params->_ret = iface->SetLobbyData( params->steamIDLobby, params->pchKey, params->pchValue ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberData_params *params ) +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; params->_ret = iface->GetLobbyMemberData( params->steamIDLobby, params->steamIDUser, params->pchKey ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData_params *params ) +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; params->_ret = iface->SetLobbyMemberData( params->steamIDLobby, params->pchKey, params->pchValue ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMsg( struct cppISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMsg_params *params ) +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; params->_ret = iface->SendLobbyChatMsg( params->steamIDLobby, params->pvMsgBody, params->cubMsgBody ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking001_GetLobbyChatEntry( struct cppISteamMatchmaking_SteamMatchMaking001_GetLobbyChatEntry_params *params ) +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; params->_ret = iface->GetLobbyChatEntry( params->steamIDLobby, params->iChatID, params->pSteamIDUser, params->pvData, params->cubData, params->peChatEntryType ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking001_RequestLobbyData( struct cppISteamMatchmaking_SteamMatchMaking001_RequestLobbyData_params *params ) +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; params->_ret = iface->RequestLobbyData( params->steamIDLobby ); + return 0; } diff --git a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking001.h b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking001.h deleted file mode 100644 index ad3a1a15..00000000 --- a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking001.h +++ /dev/null @@ -1,229 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamMatchmaking_SteamMatchMaking001_GetFavoriteGameCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamMatchmaking_SteamMatchMaking001_GetFavoriteGameCount( struct cppISteamMatchmaking_SteamMatchMaking001_GetFavoriteGameCount_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame_params -{ - void *linux_side; - bool _ret; - int32_t iGame; - uint32_t *pnAppID; - uint32_t *pnIP; - uint16_t *pnConnPort; - uint32_t *punFlags; - uint32_t *pRTime32LastPlayedOnServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame_params -{ - void *linux_side; - int32_t _ret; - uint32_t nAppID; - uint32_t nIP; - uint16_t nConnPort; - uint32_t unFlags; - uint32_t rTime32LastPlayedOnServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame_params -{ - void *linux_side; - bool _ret; - uint32_t nAppID; - uint32_t nIP; - uint16_t nConnPort; - uint32_t unFlags; -}; -extern void cppISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame2_params -{ - void *linux_side; - bool _ret; - int32_t iGame; - uint32_t *pnAppID; - uint32_t *pnIP; - uint16_t *pnConnPort; - uint16_t *pnQueryPort; - uint32_t *punFlags; - uint32_t *pRTime32LastPlayedOnServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame2( struct cppISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame2_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame2_params -{ - void *linux_side; - int32_t _ret; - uint32_t nAppID; - uint32_t nIP; - uint16_t nConnPort; - uint16_t nQueryPort; - uint32_t unFlags; - uint32_t rTime32LastPlayedOnServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame2( struct cppISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame2_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame2_params -{ - void *linux_side; - bool _ret; - uint32_t nAppID; - uint32_t nIP; - uint16_t nConnPort; - uint16_t nQueryPort; - uint32_t unFlags; -}; -extern void cppISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame2( struct cppISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame2_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking001_RequestLobbyList_params -{ - void *linux_side; - uint64_t ulGameID; - MatchMakingKeyValuePair_t *pFilters; - uint32_t nFilters; -}; -extern void cppISteamMatchmaking_SteamMatchMaking001_RequestLobbyList( struct cppISteamMatchmaking_SteamMatchMaking001_RequestLobbyList_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking001_GetLobbyByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking001_GetLobbyByIndex( struct cppISteamMatchmaking_SteamMatchMaking001_GetLobbyByIndex_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking001_CreateLobby_params -{ - void *linux_side; - uint64_t ulGameID; - bool bPrivate; -}; -extern void cppISteamMatchmaking_SteamMatchMaking001_CreateLobby( struct cppISteamMatchmaking_SteamMatchMaking001_CreateLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking001_JoinLobby_params -{ - void *linux_side; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking001_JoinLobby( struct cppISteamMatchmaking_SteamMatchMaking001_JoinLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking001_LeaveLobby_params -{ - void *linux_side; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking001_LeaveLobby( struct cppISteamMatchmaking_SteamMatchMaking001_LeaveLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking001_InviteUserToLobby_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - CSteamID steamIDInvitee; -}; -extern void cppISteamMatchmaking_SteamMatchMaking001_InviteUserToLobby( struct cppISteamMatchmaking_SteamMatchMaking001_InviteUserToLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking001_GetNumLobbyMembers_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking001_GetNumLobbyMembers( struct cppISteamMatchmaking_SteamMatchMaking001_GetNumLobbyMembers_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDLobby; - int32_t iMember; -}; -extern void cppISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberByIndex( struct cppISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberByIndex_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking001_GetLobbyData_params -{ - void *linux_side; - const char *_ret; - CSteamID SteamIDLobby; - const char *pchKey; -}; -extern void cppISteamMatchmaking_SteamMatchMaking001_GetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking001_GetLobbyData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking001_SetLobbyData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamMatchmaking_SteamMatchMaking001_SetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking001_SetLobbyData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberData_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDLobby; - CSteamID steamIDUser; - const char *pchKey; -}; -extern void cppISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMsg_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - const void *pvMsgBody; - int32_t cubMsgBody; -}; -extern void cppISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMsg( struct cppISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMsg_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking001_GetLobbyChatEntry_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDLobby; - int32_t iChatID; - CSteamID *pSteamIDUser; - void *pvData; - int32_t cubData; - uint32_t *peChatEntryType; -}; -extern void cppISteamMatchmaking_SteamMatchMaking001_GetLobbyChatEntry( struct cppISteamMatchmaking_SteamMatchMaking001_GetLobbyChatEntry_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking001_RequestLobbyData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking001_RequestLobbyData( struct cppISteamMatchmaking_SteamMatchMaking001_RequestLobbyData_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking002.cpp b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking002.cpp index 8002d635..6797a1d5 100644 --- a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking002.cpp +++ b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking002.cpp @@ -1,124 +1,163 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamMatchmaking_SteamMatchMaking002.h" -void cppISteamMatchmaking_SteamMatchMaking002_GetFavoriteGameCount( struct cppISteamMatchmaking_SteamMatchMaking002_GetFavoriteGameCount_params *params ) +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; params->_ret = iface->GetFavoriteGameCount( ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame_params *params ) +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; params->_ret = iface->GetFavoriteGame( params->iGame, params->pnAppID, params->pnIP, params->pnConnPort, params->pnQueryPort, params->punFlags, params->pRTime32LastPlayedOnServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking002_AddFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking002_AddFavoriteGame_params *params ) +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; params->_ret = iface->AddFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags, params->rTime32LastPlayedOnServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking002_RemoveFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking002_RemoveFavoriteGame_params *params ) +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; params->_ret = iface->RemoveFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking002_RequestLobbyList( struct cppISteamMatchmaking_SteamMatchMaking002_RequestLobbyList_params *params ) +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; iface->RequestLobbyList( ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking002_GetLobbyByIndex( struct cppISteamMatchmaking_SteamMatchMaking002_GetLobbyByIndex_params *params ) +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; *params->_ret = iface->GetLobbyByIndex( params->iLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking002_CreateLobby( struct cppISteamMatchmaking_SteamMatchMaking002_CreateLobby_params *params ) +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; iface->CreateLobby( params->bPrivate ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking002_JoinLobby( struct cppISteamMatchmaking_SteamMatchMaking002_JoinLobby_params *params ) +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; iface->JoinLobby( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking002_LeaveLobby( struct cppISteamMatchmaking_SteamMatchMaking002_LeaveLobby_params *params ) +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; iface->LeaveLobby( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking002_InviteUserToLobby( struct cppISteamMatchmaking_SteamMatchMaking002_InviteUserToLobby_params *params ) +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; params->_ret = iface->InviteUserToLobby( params->steamIDLobby, params->steamIDInvitee ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking002_GetNumLobbyMembers( struct cppISteamMatchmaking_SteamMatchMaking002_GetNumLobbyMembers_params *params ) +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; params->_ret = iface->GetNumLobbyMembers( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberByIndex( struct cppISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberByIndex_params *params ) +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; *params->_ret = iface->GetLobbyMemberByIndex( params->steamIDLobby, params->iMember ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking002_GetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking002_GetLobbyData_params *params ) +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; params->_ret = iface->GetLobbyData( params->steamIDLobby, params->pchKey ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking002_SetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking002_SetLobbyData_params *params ) +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; params->_ret = iface->SetLobbyData( params->steamIDLobby, params->pchKey, params->pchValue ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberData_params *params ) +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; params->_ret = iface->GetLobbyMemberData( params->steamIDLobby, params->steamIDUser, params->pchKey ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking002_SetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking002_SetLobbyMemberData_params *params ) +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; iface->SetLobbyMemberData( params->steamIDLobby, params->pchKey, params->pchValue ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking002_SendLobbyChatMsg( struct cppISteamMatchmaking_SteamMatchMaking002_SendLobbyChatMsg_params *params ) +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; params->_ret = iface->SendLobbyChatMsg( params->steamIDLobby, params->pvMsgBody, params->cubMsgBody ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking002_GetLobbyChatEntry( struct cppISteamMatchmaking_SteamMatchMaking002_GetLobbyChatEntry_params *params ) +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; params->_ret = iface->GetLobbyChatEntry( params->steamIDLobby, params->iChatID, params->pSteamIDUser, params->pvData, params->cubData, params->peChatEntryType ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking002_RequestLobbyData( struct cppISteamMatchmaking_SteamMatchMaking002_RequestLobbyData_params *params ) +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; params->_ret = iface->RequestLobbyData( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking002_SetLobbyGameServer( struct cppISteamMatchmaking_SteamMatchMaking002_SetLobbyGameServer_params *params ) +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; iface->SetLobbyGameServer( params->steamIDLobby, params->unGameServerIP, params->unGameServerPort, params->steamIDGameServer ); + return 0; } diff --git a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking002.h b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking002.h deleted file mode 100644 index b229f14d..00000000 --- a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking002.h +++ /dev/null @@ -1,198 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamMatchmaking_SteamMatchMaking002_GetFavoriteGameCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamMatchmaking_SteamMatchMaking002_GetFavoriteGameCount( struct cppISteamMatchmaking_SteamMatchMaking002_GetFavoriteGameCount_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame_params -{ - void *linux_side; - bool _ret; - int32_t iGame; - uint32_t *pnAppID; - uint32_t *pnIP; - uint16_t *pnConnPort; - uint16_t *pnQueryPort; - uint32_t *punFlags; - uint32_t *pRTime32LastPlayedOnServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking002_AddFavoriteGame_params -{ - void *linux_side; - int32_t _ret; - uint32_t nAppID; - uint32_t nIP; - uint16_t nConnPort; - uint16_t nQueryPort; - uint32_t unFlags; - uint32_t rTime32LastPlayedOnServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking002_AddFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking002_AddFavoriteGame_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking002_RemoveFavoriteGame_params -{ - void *linux_side; - bool _ret; - uint32_t nAppID; - uint32_t nIP; - uint16_t nConnPort; - uint16_t nQueryPort; - uint32_t unFlags; -}; -extern void cppISteamMatchmaking_SteamMatchMaking002_RemoveFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking002_RemoveFavoriteGame_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking002_RequestLobbyList_params -{ - void *linux_side; -}; -extern void cppISteamMatchmaking_SteamMatchMaking002_RequestLobbyList( struct cppISteamMatchmaking_SteamMatchMaking002_RequestLobbyList_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking002_GetLobbyByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking002_GetLobbyByIndex( struct cppISteamMatchmaking_SteamMatchMaking002_GetLobbyByIndex_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking002_CreateLobby_params -{ - void *linux_side; - bool bPrivate; -}; -extern void cppISteamMatchmaking_SteamMatchMaking002_CreateLobby( struct cppISteamMatchmaking_SteamMatchMaking002_CreateLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking002_JoinLobby_params -{ - void *linux_side; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking002_JoinLobby( struct cppISteamMatchmaking_SteamMatchMaking002_JoinLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking002_LeaveLobby_params -{ - void *linux_side; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking002_LeaveLobby( struct cppISteamMatchmaking_SteamMatchMaking002_LeaveLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking002_InviteUserToLobby_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - CSteamID steamIDInvitee; -}; -extern void cppISteamMatchmaking_SteamMatchMaking002_InviteUserToLobby( struct cppISteamMatchmaking_SteamMatchMaking002_InviteUserToLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking002_GetNumLobbyMembers_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking002_GetNumLobbyMembers( struct cppISteamMatchmaking_SteamMatchMaking002_GetNumLobbyMembers_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDLobby; - int32_t iMember; -}; -extern void cppISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberByIndex( struct cppISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberByIndex_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking002_GetLobbyData_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDLobby; - const char *pchKey; -}; -extern void cppISteamMatchmaking_SteamMatchMaking002_GetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking002_GetLobbyData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking002_SetLobbyData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamMatchmaking_SteamMatchMaking002_SetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking002_SetLobbyData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberData_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDLobby; - CSteamID steamIDUser; - const char *pchKey; -}; -extern void cppISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking002_SetLobbyMemberData_params -{ - void *linux_side; - CSteamID steamIDLobby; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamMatchmaking_SteamMatchMaking002_SetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking002_SetLobbyMemberData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking002_SendLobbyChatMsg_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - const void *pvMsgBody; - int32_t cubMsgBody; -}; -extern void cppISteamMatchmaking_SteamMatchMaking002_SendLobbyChatMsg( struct cppISteamMatchmaking_SteamMatchMaking002_SendLobbyChatMsg_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking002_GetLobbyChatEntry_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDLobby; - int32_t iChatID; - CSteamID *pSteamIDUser; - void *pvData; - int32_t cubData; - uint32_t *peChatEntryType; -}; -extern void cppISteamMatchmaking_SteamMatchMaking002_GetLobbyChatEntry( struct cppISteamMatchmaking_SteamMatchMaking002_GetLobbyChatEntry_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking002_RequestLobbyData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking002_RequestLobbyData( struct cppISteamMatchmaking_SteamMatchMaking002_RequestLobbyData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking002_SetLobbyGameServer_params -{ - void *linux_side; - CSteamID steamIDLobby; - uint32_t unGameServerIP; - uint16_t unGameServerPort; - CSteamID steamIDGameServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking002_SetLobbyGameServer( struct cppISteamMatchmaking_SteamMatchMaking002_SetLobbyGameServer_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking003.cpp b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking003.cpp index 69d357a5..59f85590 100644 --- a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking003.cpp +++ b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking003.cpp @@ -1,172 +1,227 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamMatchmaking_SteamMatchMaking003.h" -void cppISteamMatchmaking_SteamMatchMaking003_GetFavoriteGameCount( struct cppISteamMatchmaking_SteamMatchMaking003_GetFavoriteGameCount_params *params ) +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; params->_ret = iface->GetFavoriteGameCount( ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame_params *params ) +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; params->_ret = iface->GetFavoriteGame( params->iGame, params->pnAppID, params->pnIP, params->pnConnPort, params->pnQueryPort, params->punFlags, params->pRTime32LastPlayedOnServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking003_AddFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking003_AddFavoriteGame_params *params ) +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; params->_ret = iface->AddFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags, params->rTime32LastPlayedOnServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking003_RemoveFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking003_RemoveFavoriteGame_params *params ) +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; params->_ret = iface->RemoveFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking003_RequestLobbyList( struct cppISteamMatchmaking_SteamMatchMaking003_RequestLobbyList_params *params ) +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; iface->RequestLobbyList( ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListFilter( struct cppISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListFilter_params *params ) +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; iface->AddRequestLobbyListFilter( params->pchKeyToMatch, params->pchValueToMatch ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListNumericalFilter( struct cppISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListNumericalFilter_params *params ) +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; iface->AddRequestLobbyListNumericalFilter( params->pchKeyToMatch, params->nValueToMatch, params->nComparisonType ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListSlotsAvailableFilter( struct cppISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListSlotsAvailableFilter_params *params ) +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; iface->AddRequestLobbyListSlotsAvailableFilter( ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking003_GetLobbyByIndex( struct cppISteamMatchmaking_SteamMatchMaking003_GetLobbyByIndex_params *params ) +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; *params->_ret = iface->GetLobbyByIndex( params->iLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking003_CreateLobby( struct cppISteamMatchmaking_SteamMatchMaking003_CreateLobby_params *params ) +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; iface->CreateLobby( params->bPrivate ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking003_JoinLobby( struct cppISteamMatchmaking_SteamMatchMaking003_JoinLobby_params *params ) +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; iface->JoinLobby( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking003_LeaveLobby( struct cppISteamMatchmaking_SteamMatchMaking003_LeaveLobby_params *params ) +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; iface->LeaveLobby( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking003_InviteUserToLobby( struct cppISteamMatchmaking_SteamMatchMaking003_InviteUserToLobby_params *params ) +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; params->_ret = iface->InviteUserToLobby( params->steamIDLobby, params->steamIDInvitee ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking003_GetNumLobbyMembers( struct cppISteamMatchmaking_SteamMatchMaking003_GetNumLobbyMembers_params *params ) +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; params->_ret = iface->GetNumLobbyMembers( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberByIndex( struct cppISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberByIndex_params *params ) +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; *params->_ret = iface->GetLobbyMemberByIndex( params->steamIDLobby, params->iMember ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking003_GetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking003_GetLobbyData_params *params ) +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; params->_ret = iface->GetLobbyData( params->steamIDLobby, params->pchKey ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking003_SetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking003_SetLobbyData_params *params ) +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; params->_ret = iface->SetLobbyData( params->steamIDLobby, params->pchKey, params->pchValue ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberData_params *params ) +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; params->_ret = iface->GetLobbyMemberData( params->steamIDLobby, params->steamIDUser, params->pchKey ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberData_params *params ) +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; iface->SetLobbyMemberData( params->steamIDLobby, params->pchKey, params->pchValue ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking003_SendLobbyChatMsg( struct cppISteamMatchmaking_SteamMatchMaking003_SendLobbyChatMsg_params *params ) +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; params->_ret = iface->SendLobbyChatMsg( params->steamIDLobby, params->pvMsgBody, params->cubMsgBody ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking003_GetLobbyChatEntry( struct cppISteamMatchmaking_SteamMatchMaking003_GetLobbyChatEntry_params *params ) +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; params->_ret = iface->GetLobbyChatEntry( params->steamIDLobby, params->iChatID, params->pSteamIDUser, params->pvData, params->cubData, params->peChatEntryType ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking003_RequestLobbyData( struct cppISteamMatchmaking_SteamMatchMaking003_RequestLobbyData_params *params ) +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; params->_ret = iface->RequestLobbyData( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking003_SetLobbyGameServer( struct cppISteamMatchmaking_SteamMatchMaking003_SetLobbyGameServer_params *params ) +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; iface->SetLobbyGameServer( params->steamIDLobby, params->unGameServerIP, params->unGameServerPort, params->steamIDGameServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer( struct cppISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer_params *params ) +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; params->_ret = iface->GetLobbyGameServer( params->steamIDLobby, params->punGameServerIP, params->punGameServerPort, params->psteamIDGameServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberLimit( struct cppISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberLimit_params *params ) +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; params->_ret = iface->SetLobbyMemberLimit( params->steamIDLobby, params->cMaxMembers ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberLimit( struct cppISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberLimit_params *params ) +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; params->_ret = iface->GetLobbyMemberLimit( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled( struct cppISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled_params *params ) +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; iface->SetLobbyVoiceEnabled( params->steamIDLobby, params->bVoiceEnabled ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking003_RequestFriendsLobbies( struct cppISteamMatchmaking_SteamMatchMaking003_RequestFriendsLobbies_params *params ) +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; params->_ret = iface->RequestFriendsLobbies( ); + return 0; } diff --git a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking003.h b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking003.h deleted file mode 100644 index 4ee6d171..00000000 --- a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking003.h +++ /dev/null @@ -1,264 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamMatchmaking_SteamMatchMaking003_GetFavoriteGameCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamMatchmaking_SteamMatchMaking003_GetFavoriteGameCount( struct cppISteamMatchmaking_SteamMatchMaking003_GetFavoriteGameCount_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame_params -{ - void *linux_side; - bool _ret; - int32_t iGame; - uint32_t *pnAppID; - uint32_t *pnIP; - uint16_t *pnConnPort; - uint16_t *pnQueryPort; - uint32_t *punFlags; - uint32_t *pRTime32LastPlayedOnServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking003_AddFavoriteGame_params -{ - void *linux_side; - int32_t _ret; - uint32_t nAppID; - uint32_t nIP; - uint16_t nConnPort; - uint16_t nQueryPort; - uint32_t unFlags; - uint32_t rTime32LastPlayedOnServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking003_AddFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking003_AddFavoriteGame_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking003_RemoveFavoriteGame_params -{ - void *linux_side; - bool _ret; - uint32_t nAppID; - uint32_t nIP; - uint16_t nConnPort; - uint16_t nQueryPort; - uint32_t unFlags; -}; -extern void cppISteamMatchmaking_SteamMatchMaking003_RemoveFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking003_RemoveFavoriteGame_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking003_RequestLobbyList_params -{ - void *linux_side; -}; -extern void cppISteamMatchmaking_SteamMatchMaking003_RequestLobbyList( struct cppISteamMatchmaking_SteamMatchMaking003_RequestLobbyList_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListFilter_params -{ - void *linux_side; - const char *pchKeyToMatch; - const char *pchValueToMatch; -}; -extern void cppISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListFilter( struct cppISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListFilter_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListNumericalFilter_params -{ - void *linux_side; - const char *pchKeyToMatch; - int32_t nValueToMatch; - int32_t nComparisonType; -}; -extern void cppISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListNumericalFilter( struct cppISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListNumericalFilter_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListSlotsAvailableFilter_params -{ - void *linux_side; -}; -extern void cppISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListSlotsAvailableFilter( struct cppISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListSlotsAvailableFilter_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking003_GetLobbyByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking003_GetLobbyByIndex( struct cppISteamMatchmaking_SteamMatchMaking003_GetLobbyByIndex_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking003_CreateLobby_params -{ - void *linux_side; - bool bPrivate; -}; -extern void cppISteamMatchmaking_SteamMatchMaking003_CreateLobby( struct cppISteamMatchmaking_SteamMatchMaking003_CreateLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking003_JoinLobby_params -{ - void *linux_side; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking003_JoinLobby( struct cppISteamMatchmaking_SteamMatchMaking003_JoinLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking003_LeaveLobby_params -{ - void *linux_side; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking003_LeaveLobby( struct cppISteamMatchmaking_SteamMatchMaking003_LeaveLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking003_InviteUserToLobby_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - CSteamID steamIDInvitee; -}; -extern void cppISteamMatchmaking_SteamMatchMaking003_InviteUserToLobby( struct cppISteamMatchmaking_SteamMatchMaking003_InviteUserToLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking003_GetNumLobbyMembers_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking003_GetNumLobbyMembers( struct cppISteamMatchmaking_SteamMatchMaking003_GetNumLobbyMembers_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDLobby; - int32_t iMember; -}; -extern void cppISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberByIndex( struct cppISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberByIndex_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking003_GetLobbyData_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDLobby; - const char *pchKey; -}; -extern void cppISteamMatchmaking_SteamMatchMaking003_GetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking003_GetLobbyData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking003_SetLobbyData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamMatchmaking_SteamMatchMaking003_SetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking003_SetLobbyData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberData_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDLobby; - CSteamID steamIDUser; - const char *pchKey; -}; -extern void cppISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberData_params -{ - void *linux_side; - CSteamID steamIDLobby; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking003_SendLobbyChatMsg_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - const void *pvMsgBody; - int32_t cubMsgBody; -}; -extern void cppISteamMatchmaking_SteamMatchMaking003_SendLobbyChatMsg( struct cppISteamMatchmaking_SteamMatchMaking003_SendLobbyChatMsg_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking003_GetLobbyChatEntry_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDLobby; - int32_t iChatID; - CSteamID *pSteamIDUser; - void *pvData; - int32_t cubData; - uint32_t *peChatEntryType; -}; -extern void cppISteamMatchmaking_SteamMatchMaking003_GetLobbyChatEntry( struct cppISteamMatchmaking_SteamMatchMaking003_GetLobbyChatEntry_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking003_RequestLobbyData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking003_RequestLobbyData( struct cppISteamMatchmaking_SteamMatchMaking003_RequestLobbyData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking003_SetLobbyGameServer_params -{ - void *linux_side; - CSteamID steamIDLobby; - uint32_t unGameServerIP; - uint16_t unGameServerPort; - CSteamID steamIDGameServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking003_SetLobbyGameServer( struct cppISteamMatchmaking_SteamMatchMaking003_SetLobbyGameServer_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - uint32_t *punGameServerIP; - uint16_t *punGameServerPort; - CSteamID *psteamIDGameServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer( struct cppISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberLimit_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - int32_t cMaxMembers; -}; -extern void cppISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberLimit( struct cppISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberLimit_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberLimit_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberLimit( struct cppISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberLimit_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled_params -{ - void *linux_side; - CSteamID steamIDLobby; - bool bVoiceEnabled; -}; -extern void cppISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled( struct cppISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking003_RequestFriendsLobbies_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamMatchmaking_SteamMatchMaking003_RequestFriendsLobbies( struct cppISteamMatchmaking_SteamMatchMaking003_RequestFriendsLobbies_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking004.cpp b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking004.cpp index bf99bac0..8d6f40d7 100644 --- a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking004.cpp +++ b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking004.cpp @@ -1,166 +1,219 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamMatchmaking_SteamMatchMaking004.h" -void cppISteamMatchmaking_SteamMatchMaking004_GetFavoriteGameCount( struct cppISteamMatchmaking_SteamMatchMaking004_GetFavoriteGameCount_params *params ) +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; params->_ret = iface->GetFavoriteGameCount( ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame_params *params ) +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; params->_ret = iface->GetFavoriteGame( params->iGame, params->pnAppID, params->pnIP, params->pnConnPort, params->pnQueryPort, params->punFlags, params->pRTime32LastPlayedOnServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking004_AddFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking004_AddFavoriteGame_params *params ) +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; params->_ret = iface->AddFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags, params->rTime32LastPlayedOnServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking004_RemoveFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking004_RemoveFavoriteGame_params *params ) +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; params->_ret = iface->RemoveFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking004_RequestLobbyList( struct cppISteamMatchmaking_SteamMatchMaking004_RequestLobbyList_params *params ) +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; iface->RequestLobbyList( ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListFilter( struct cppISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListFilter_params *params ) +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; iface->AddRequestLobbyListFilter( params->pchKeyToMatch, params->pchValueToMatch ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListNumericalFilter( struct cppISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListNumericalFilter_params *params ) +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; iface->AddRequestLobbyListNumericalFilter( params->pchKeyToMatch, params->nValueToMatch, params->nComparisonType ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListSlotsAvailableFilter( struct cppISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListSlotsAvailableFilter_params *params ) +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; iface->AddRequestLobbyListSlotsAvailableFilter( ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking004_GetLobbyByIndex( struct cppISteamMatchmaking_SteamMatchMaking004_GetLobbyByIndex_params *params ) +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; *params->_ret = iface->GetLobbyByIndex( params->iLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking004_CreateLobby( struct cppISteamMatchmaking_SteamMatchMaking004_CreateLobby_params *params ) +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; iface->CreateLobby( params->bPrivate ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking004_JoinLobby( struct cppISteamMatchmaking_SteamMatchMaking004_JoinLobby_params *params ) +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; iface->JoinLobby( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking004_LeaveLobby( struct cppISteamMatchmaking_SteamMatchMaking004_LeaveLobby_params *params ) +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; iface->LeaveLobby( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking004_InviteUserToLobby( struct cppISteamMatchmaking_SteamMatchMaking004_InviteUserToLobby_params *params ) +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; params->_ret = iface->InviteUserToLobby( params->steamIDLobby, params->steamIDInvitee ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking004_GetNumLobbyMembers( struct cppISteamMatchmaking_SteamMatchMaking004_GetNumLobbyMembers_params *params ) +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; params->_ret = iface->GetNumLobbyMembers( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberByIndex( struct cppISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberByIndex_params *params ) +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; *params->_ret = iface->GetLobbyMemberByIndex( params->steamIDLobby, params->iMember ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking004_GetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking004_GetLobbyData_params *params ) +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; params->_ret = iface->GetLobbyData( params->steamIDLobby, params->pchKey ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking004_SetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking004_SetLobbyData_params *params ) +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; params->_ret = iface->SetLobbyData( params->steamIDLobby, params->pchKey, params->pchValue ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberData_params *params ) +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; params->_ret = iface->GetLobbyMemberData( params->steamIDLobby, params->steamIDUser, params->pchKey ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberData_params *params ) +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; iface->SetLobbyMemberData( params->steamIDLobby, params->pchKey, params->pchValue ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking004_SendLobbyChatMsg( struct cppISteamMatchmaking_SteamMatchMaking004_SendLobbyChatMsg_params *params ) +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; params->_ret = iface->SendLobbyChatMsg( params->steamIDLobby, params->pvMsgBody, params->cubMsgBody ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking004_GetLobbyChatEntry( struct cppISteamMatchmaking_SteamMatchMaking004_GetLobbyChatEntry_params *params ) +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; params->_ret = iface->GetLobbyChatEntry( params->steamIDLobby, params->iChatID, params->pSteamIDUser, params->pvData, params->cubData, params->peChatEntryType ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking004_RequestLobbyData( struct cppISteamMatchmaking_SteamMatchMaking004_RequestLobbyData_params *params ) +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; params->_ret = iface->RequestLobbyData( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking004_SetLobbyGameServer( struct cppISteamMatchmaking_SteamMatchMaking004_SetLobbyGameServer_params *params ) +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; iface->SetLobbyGameServer( params->steamIDLobby, params->unGameServerIP, params->unGameServerPort, params->steamIDGameServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer( struct cppISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer_params *params ) +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; params->_ret = iface->GetLobbyGameServer( params->steamIDLobby, params->punGameServerIP, params->punGameServerPort, params->psteamIDGameServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberLimit( struct cppISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberLimit_params *params ) +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; params->_ret = iface->SetLobbyMemberLimit( params->steamIDLobby, params->cMaxMembers ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberLimit( struct cppISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberLimit_params *params ) +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; params->_ret = iface->GetLobbyMemberLimit( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking004_RequestFriendsLobbies( struct cppISteamMatchmaking_SteamMatchMaking004_RequestFriendsLobbies_params *params ) +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; params->_ret = iface->RequestFriendsLobbies( ); + return 0; } diff --git a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking004.h b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking004.h deleted file mode 100644 index e174eb1e..00000000 --- a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking004.h +++ /dev/null @@ -1,256 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamMatchmaking_SteamMatchMaking004_GetFavoriteGameCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamMatchmaking_SteamMatchMaking004_GetFavoriteGameCount( struct cppISteamMatchmaking_SteamMatchMaking004_GetFavoriteGameCount_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame_params -{ - void *linux_side; - bool _ret; - int32_t iGame; - uint32_t *pnAppID; - uint32_t *pnIP; - uint16_t *pnConnPort; - uint16_t *pnQueryPort; - uint32_t *punFlags; - uint32_t *pRTime32LastPlayedOnServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking004_AddFavoriteGame_params -{ - void *linux_side; - int32_t _ret; - uint32_t nAppID; - uint32_t nIP; - uint16_t nConnPort; - uint16_t nQueryPort; - uint32_t unFlags; - uint32_t rTime32LastPlayedOnServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking004_AddFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking004_AddFavoriteGame_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking004_RemoveFavoriteGame_params -{ - void *linux_side; - bool _ret; - uint32_t nAppID; - uint32_t nIP; - uint16_t nConnPort; - uint16_t nQueryPort; - uint32_t unFlags; -}; -extern void cppISteamMatchmaking_SteamMatchMaking004_RemoveFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking004_RemoveFavoriteGame_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking004_RequestLobbyList_params -{ - void *linux_side; -}; -extern void cppISteamMatchmaking_SteamMatchMaking004_RequestLobbyList( struct cppISteamMatchmaking_SteamMatchMaking004_RequestLobbyList_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListFilter_params -{ - void *linux_side; - const char *pchKeyToMatch; - const char *pchValueToMatch; -}; -extern void cppISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListFilter( struct cppISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListFilter_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListNumericalFilter_params -{ - void *linux_side; - const char *pchKeyToMatch; - int32_t nValueToMatch; - int32_t nComparisonType; -}; -extern void cppISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListNumericalFilter( struct cppISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListNumericalFilter_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListSlotsAvailableFilter_params -{ - void *linux_side; -}; -extern void cppISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListSlotsAvailableFilter( struct cppISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListSlotsAvailableFilter_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking004_GetLobbyByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking004_GetLobbyByIndex( struct cppISteamMatchmaking_SteamMatchMaking004_GetLobbyByIndex_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking004_CreateLobby_params -{ - void *linux_side; - bool bPrivate; -}; -extern void cppISteamMatchmaking_SteamMatchMaking004_CreateLobby( struct cppISteamMatchmaking_SteamMatchMaking004_CreateLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking004_JoinLobby_params -{ - void *linux_side; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking004_JoinLobby( struct cppISteamMatchmaking_SteamMatchMaking004_JoinLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking004_LeaveLobby_params -{ - void *linux_side; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking004_LeaveLobby( struct cppISteamMatchmaking_SteamMatchMaking004_LeaveLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking004_InviteUserToLobby_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - CSteamID steamIDInvitee; -}; -extern void cppISteamMatchmaking_SteamMatchMaking004_InviteUserToLobby( struct cppISteamMatchmaking_SteamMatchMaking004_InviteUserToLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking004_GetNumLobbyMembers_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking004_GetNumLobbyMembers( struct cppISteamMatchmaking_SteamMatchMaking004_GetNumLobbyMembers_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDLobby; - int32_t iMember; -}; -extern void cppISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberByIndex( struct cppISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberByIndex_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking004_GetLobbyData_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDLobby; - const char *pchKey; -}; -extern void cppISteamMatchmaking_SteamMatchMaking004_GetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking004_GetLobbyData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking004_SetLobbyData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamMatchmaking_SteamMatchMaking004_SetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking004_SetLobbyData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberData_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDLobby; - CSteamID steamIDUser; - const char *pchKey; -}; -extern void cppISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberData_params -{ - void *linux_side; - CSteamID steamIDLobby; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking004_SendLobbyChatMsg_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - const void *pvMsgBody; - int32_t cubMsgBody; -}; -extern void cppISteamMatchmaking_SteamMatchMaking004_SendLobbyChatMsg( struct cppISteamMatchmaking_SteamMatchMaking004_SendLobbyChatMsg_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking004_GetLobbyChatEntry_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDLobby; - int32_t iChatID; - CSteamID *pSteamIDUser; - void *pvData; - int32_t cubData; - uint32_t *peChatEntryType; -}; -extern void cppISteamMatchmaking_SteamMatchMaking004_GetLobbyChatEntry( struct cppISteamMatchmaking_SteamMatchMaking004_GetLobbyChatEntry_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking004_RequestLobbyData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking004_RequestLobbyData( struct cppISteamMatchmaking_SteamMatchMaking004_RequestLobbyData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking004_SetLobbyGameServer_params -{ - void *linux_side; - CSteamID steamIDLobby; - uint32_t unGameServerIP; - uint16_t unGameServerPort; - CSteamID steamIDGameServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking004_SetLobbyGameServer( struct cppISteamMatchmaking_SteamMatchMaking004_SetLobbyGameServer_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - uint32_t *punGameServerIP; - uint16_t *punGameServerPort; - CSteamID *psteamIDGameServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer( struct cppISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberLimit_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - int32_t cMaxMembers; -}; -extern void cppISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberLimit( struct cppISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberLimit_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberLimit_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberLimit( struct cppISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberLimit_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking004_RequestFriendsLobbies_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamMatchmaking_SteamMatchMaking004_RequestFriendsLobbies( struct cppISteamMatchmaking_SteamMatchMaking004_RequestFriendsLobbies_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking005.cpp b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking005.cpp index dd38cd34..bfcf5f6c 100644 --- a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking005.cpp +++ b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking005.cpp @@ -1,190 +1,251 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamMatchmaking_SteamMatchMaking005.h" -void cppISteamMatchmaking_SteamMatchMaking005_GetFavoriteGameCount( struct cppISteamMatchmaking_SteamMatchMaking005_GetFavoriteGameCount_params *params ) +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; params->_ret = iface->GetFavoriteGameCount( ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame_params *params ) +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; params->_ret = iface->GetFavoriteGame( params->iGame, params->pnAppID, params->pnIP, params->pnConnPort, params->pnQueryPort, params->punFlags, params->pRTime32LastPlayedOnServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking005_AddFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking005_AddFavoriteGame_params *params ) +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; params->_ret = iface->AddFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags, params->rTime32LastPlayedOnServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking005_RemoveFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking005_RemoveFavoriteGame_params *params ) +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; params->_ret = iface->RemoveFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking005_RequestLobbyList( struct cppISteamMatchmaking_SteamMatchMaking005_RequestLobbyList_params *params ) +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; iface->RequestLobbyList( ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListFilter( struct cppISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListFilter_params *params ) +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; iface->AddRequestLobbyListFilter( params->pchKeyToMatch, params->pchValueToMatch ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNumericalFilter( struct cppISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNumericalFilter_params *params ) +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; iface->AddRequestLobbyListNumericalFilter( params->pchKeyToMatch, params->nValueToMatch, params->nComparisonType ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListSlotsAvailableFilter( struct cppISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListSlotsAvailableFilter_params *params ) +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; iface->AddRequestLobbyListSlotsAvailableFilter( ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNearValueFilter( struct cppISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNearValueFilter_params *params ) +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; iface->AddRequestLobbyListNearValueFilter( params->pchKeyToMatch, params->nValueToBeCloseTo ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking005_GetLobbyByIndex( struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyByIndex_params *params ) +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; *params->_ret = iface->GetLobbyByIndex( params->iLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking005_CreateLobby( struct cppISteamMatchmaking_SteamMatchMaking005_CreateLobby_params *params ) +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; iface->CreateLobby( params->eLobbyType ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking005_JoinLobby( struct cppISteamMatchmaking_SteamMatchMaking005_JoinLobby_params *params ) +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; iface->JoinLobby( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking005_LeaveLobby( struct cppISteamMatchmaking_SteamMatchMaking005_LeaveLobby_params *params ) +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; iface->LeaveLobby( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking005_InviteUserToLobby( struct cppISteamMatchmaking_SteamMatchMaking005_InviteUserToLobby_params *params ) +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; params->_ret = iface->InviteUserToLobby( params->steamIDLobby, params->steamIDInvitee ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking005_GetNumLobbyMembers( struct cppISteamMatchmaking_SteamMatchMaking005_GetNumLobbyMembers_params *params ) +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; params->_ret = iface->GetNumLobbyMembers( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberByIndex( struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberByIndex_params *params ) +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; *params->_ret = iface->GetLobbyMemberByIndex( params->steamIDLobby, params->iMember ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking005_GetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyData_params *params ) +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; params->_ret = iface->GetLobbyData( params->steamIDLobby, params->pchKey ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking005_SetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking005_SetLobbyData_params *params ) +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; params->_ret = iface->SetLobbyData( params->steamIDLobby, params->pchKey, params->pchValue ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberData_params *params ) +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; params->_ret = iface->GetLobbyMemberData( params->steamIDLobby, params->steamIDUser, params->pchKey ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberData_params *params ) +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; iface->SetLobbyMemberData( params->steamIDLobby, params->pchKey, params->pchValue ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking005_SendLobbyChatMsg( struct cppISteamMatchmaking_SteamMatchMaking005_SendLobbyChatMsg_params *params ) +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; params->_ret = iface->SendLobbyChatMsg( params->steamIDLobby, params->pvMsgBody, params->cubMsgBody ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking005_GetLobbyChatEntry( struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyChatEntry_params *params ) +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; params->_ret = iface->GetLobbyChatEntry( params->steamIDLobby, params->iChatID, params->pSteamIDUser, params->pvData, params->cubData, params->peChatEntryType ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking005_RequestLobbyData( struct cppISteamMatchmaking_SteamMatchMaking005_RequestLobbyData_params *params ) +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; params->_ret = iface->RequestLobbyData( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking005_SetLobbyGameServer( struct cppISteamMatchmaking_SteamMatchMaking005_SetLobbyGameServer_params *params ) +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; iface->SetLobbyGameServer( params->steamIDLobby, params->unGameServerIP, params->unGameServerPort, params->steamIDGameServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer( struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer_params *params ) +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; params->_ret = iface->GetLobbyGameServer( params->steamIDLobby, params->punGameServerIP, params->punGameServerPort, params->psteamIDGameServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberLimit( struct cppISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberLimit_params *params ) +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; params->_ret = iface->SetLobbyMemberLimit( params->steamIDLobby, params->cMaxMembers ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberLimit( struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberLimit_params *params ) +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; params->_ret = iface->GetLobbyMemberLimit( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking005_RequestFriendsLobbies( struct cppISteamMatchmaking_SteamMatchMaking005_RequestFriendsLobbies_params *params ) +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; params->_ret = iface->RequestFriendsLobbies( ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking005_SetLobbyType( struct cppISteamMatchmaking_SteamMatchMaking005_SetLobbyType_params *params ) +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; params->_ret = iface->SetLobbyType( params->steamIDLobby, params->eLobbyType ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking005_GetLobbyOwner( struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyOwner_params *params ) +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; *params->_ret = iface->GetLobbyOwner( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking005_GetLobbyDistance( struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyDistance_params *params ) +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; params->_ret = iface->GetLobbyDistance( params->steamIDLobby ); + return 0; } diff --git a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking005.h b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking005.h deleted file mode 100644 index 3680a31a..00000000 --- a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking005.h +++ /dev/null @@ -1,289 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamMatchmaking_SteamMatchMaking005_GetFavoriteGameCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamMatchmaking_SteamMatchMaking005_GetFavoriteGameCount( struct cppISteamMatchmaking_SteamMatchMaking005_GetFavoriteGameCount_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame_params -{ - void *linux_side; - bool _ret; - int32_t iGame; - uint32_t *pnAppID; - uint32_t *pnIP; - uint16_t *pnConnPort; - uint16_t *pnQueryPort; - uint32_t *punFlags; - uint32_t *pRTime32LastPlayedOnServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking005_AddFavoriteGame_params -{ - void *linux_side; - int32_t _ret; - uint32_t nAppID; - uint32_t nIP; - uint16_t nConnPort; - uint16_t nQueryPort; - uint32_t unFlags; - uint32_t rTime32LastPlayedOnServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking005_AddFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking005_AddFavoriteGame_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking005_RemoveFavoriteGame_params -{ - void *linux_side; - bool _ret; - uint32_t nAppID; - uint32_t nIP; - uint16_t nConnPort; - uint16_t nQueryPort; - uint32_t unFlags; -}; -extern void cppISteamMatchmaking_SteamMatchMaking005_RemoveFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking005_RemoveFavoriteGame_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking005_RequestLobbyList_params -{ - void *linux_side; -}; -extern void cppISteamMatchmaking_SteamMatchMaking005_RequestLobbyList( struct cppISteamMatchmaking_SteamMatchMaking005_RequestLobbyList_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListFilter_params -{ - void *linux_side; - const char *pchKeyToMatch; - const char *pchValueToMatch; -}; -extern void cppISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListFilter( struct cppISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListFilter_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNumericalFilter_params -{ - void *linux_side; - const char *pchKeyToMatch; - int32_t nValueToMatch; - int32_t nComparisonType; -}; -extern void cppISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNumericalFilter( struct cppISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNumericalFilter_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListSlotsAvailableFilter_params -{ - void *linux_side; -}; -extern void cppISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListSlotsAvailableFilter( struct cppISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListSlotsAvailableFilter_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNearValueFilter_params -{ - void *linux_side; - const char *pchKeyToMatch; - int32_t nValueToBeCloseTo; -}; -extern void cppISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNearValueFilter( struct cppISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNearValueFilter_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking005_GetLobbyByIndex( struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyByIndex_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking005_CreateLobby_params -{ - void *linux_side; - uint32_t eLobbyType; -}; -extern void cppISteamMatchmaking_SteamMatchMaking005_CreateLobby( struct cppISteamMatchmaking_SteamMatchMaking005_CreateLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking005_JoinLobby_params -{ - void *linux_side; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking005_JoinLobby( struct cppISteamMatchmaking_SteamMatchMaking005_JoinLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking005_LeaveLobby_params -{ - void *linux_side; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking005_LeaveLobby( struct cppISteamMatchmaking_SteamMatchMaking005_LeaveLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking005_InviteUserToLobby_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - CSteamID steamIDInvitee; -}; -extern void cppISteamMatchmaking_SteamMatchMaking005_InviteUserToLobby( struct cppISteamMatchmaking_SteamMatchMaking005_InviteUserToLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking005_GetNumLobbyMembers_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking005_GetNumLobbyMembers( struct cppISteamMatchmaking_SteamMatchMaking005_GetNumLobbyMembers_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDLobby; - int32_t iMember; -}; -extern void cppISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberByIndex( struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberByIndex_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyData_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDLobby; - const char *pchKey; -}; -extern void cppISteamMatchmaking_SteamMatchMaking005_GetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking005_SetLobbyData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamMatchmaking_SteamMatchMaking005_SetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking005_SetLobbyData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberData_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDLobby; - CSteamID steamIDUser; - const char *pchKey; -}; -extern void cppISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberData_params -{ - void *linux_side; - CSteamID steamIDLobby; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking005_SendLobbyChatMsg_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - const void *pvMsgBody; - int32_t cubMsgBody; -}; -extern void cppISteamMatchmaking_SteamMatchMaking005_SendLobbyChatMsg( struct cppISteamMatchmaking_SteamMatchMaking005_SendLobbyChatMsg_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyChatEntry_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDLobby; - int32_t iChatID; - CSteamID *pSteamIDUser; - void *pvData; - int32_t cubData; - uint32_t *peChatEntryType; -}; -extern void cppISteamMatchmaking_SteamMatchMaking005_GetLobbyChatEntry( struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyChatEntry_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking005_RequestLobbyData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking005_RequestLobbyData( struct cppISteamMatchmaking_SteamMatchMaking005_RequestLobbyData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking005_SetLobbyGameServer_params -{ - void *linux_side; - CSteamID steamIDLobby; - uint32_t unGameServerIP; - uint16_t unGameServerPort; - CSteamID steamIDGameServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking005_SetLobbyGameServer( struct cppISteamMatchmaking_SteamMatchMaking005_SetLobbyGameServer_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - uint32_t *punGameServerIP; - uint16_t *punGameServerPort; - CSteamID *psteamIDGameServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer( struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberLimit_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - int32_t cMaxMembers; -}; -extern void cppISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberLimit( struct cppISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberLimit_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberLimit_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberLimit( struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberLimit_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking005_RequestFriendsLobbies_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamMatchmaking_SteamMatchMaking005_RequestFriendsLobbies( struct cppISteamMatchmaking_SteamMatchMaking005_RequestFriendsLobbies_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking005_SetLobbyType_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - uint32_t eLobbyType; -}; -extern void cppISteamMatchmaking_SteamMatchMaking005_SetLobbyType( struct cppISteamMatchmaking_SteamMatchMaking005_SetLobbyType_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyOwner_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking005_GetLobbyOwner( struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyOwner_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyDistance_params -{ - void *linux_side; - float _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking005_GetLobbyDistance( struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyDistance_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking006.cpp b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking006.cpp index 5a68a091..1ddeb9c4 100644 --- a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking006.cpp +++ b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking006.cpp @@ -1,172 +1,227 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamMatchmaking_SteamMatchMaking006.h" -void cppISteamMatchmaking_SteamMatchMaking006_GetFavoriteGameCount( struct cppISteamMatchmaking_SteamMatchMaking006_GetFavoriteGameCount_params *params ) +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; params->_ret = iface->GetFavoriteGameCount( ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame_params *params ) +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; params->_ret = iface->GetFavoriteGame( params->iGame, params->pnAppID, params->pnIP, params->pnConnPort, params->pnQueryPort, params->punFlags, params->pRTime32LastPlayedOnServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking006_AddFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking006_AddFavoriteGame_params *params ) +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; params->_ret = iface->AddFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags, params->rTime32LastPlayedOnServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking006_RemoveFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking006_RemoveFavoriteGame_params *params ) +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; params->_ret = iface->RemoveFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking006_RequestLobbyList( struct cppISteamMatchmaking_SteamMatchMaking006_RequestLobbyList_params *params ) +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; params->_ret = iface->RequestLobbyList( ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListFilter( struct cppISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListFilter_params *params ) +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; iface->AddRequestLobbyListFilter( params->pchKeyToMatch, params->pchValueToMatch ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNumericalFilter( struct cppISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNumericalFilter_params *params ) +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; iface->AddRequestLobbyListNumericalFilter( params->pchKeyToMatch, params->nValueToMatch, params->nComparisonType ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNearValueFilter( struct cppISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNearValueFilter_params *params ) +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; iface->AddRequestLobbyListNearValueFilter( params->pchKeyToMatch, params->nValueToBeCloseTo ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking006_GetLobbyByIndex( struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyByIndex_params *params ) +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; *params->_ret = iface->GetLobbyByIndex( params->iLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking006_CreateLobby( struct cppISteamMatchmaking_SteamMatchMaking006_CreateLobby_params *params ) +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; params->_ret = iface->CreateLobby( params->eLobbyType ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking006_JoinLobby( struct cppISteamMatchmaking_SteamMatchMaking006_JoinLobby_params *params ) +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; params->_ret = iface->JoinLobby( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking006_LeaveLobby( struct cppISteamMatchmaking_SteamMatchMaking006_LeaveLobby_params *params ) +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; iface->LeaveLobby( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking006_InviteUserToLobby( struct cppISteamMatchmaking_SteamMatchMaking006_InviteUserToLobby_params *params ) +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; params->_ret = iface->InviteUserToLobby( params->steamIDLobby, params->steamIDInvitee ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking006_GetNumLobbyMembers( struct cppISteamMatchmaking_SteamMatchMaking006_GetNumLobbyMembers_params *params ) +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; params->_ret = iface->GetNumLobbyMembers( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberByIndex( struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberByIndex_params *params ) +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; *params->_ret = iface->GetLobbyMemberByIndex( params->steamIDLobby, params->iMember ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking006_GetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyData_params *params ) +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; params->_ret = iface->GetLobbyData( params->steamIDLobby, params->pchKey ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking006_SetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking006_SetLobbyData_params *params ) +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; params->_ret = iface->SetLobbyData( params->steamIDLobby, params->pchKey, params->pchValue ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberData_params *params ) +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; params->_ret = iface->GetLobbyMemberData( params->steamIDLobby, params->steamIDUser, params->pchKey ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberData_params *params ) +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; iface->SetLobbyMemberData( params->steamIDLobby, params->pchKey, params->pchValue ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking006_SendLobbyChatMsg( struct cppISteamMatchmaking_SteamMatchMaking006_SendLobbyChatMsg_params *params ) +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; params->_ret = iface->SendLobbyChatMsg( params->steamIDLobby, params->pvMsgBody, params->cubMsgBody ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking006_GetLobbyChatEntry( struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyChatEntry_params *params ) +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; params->_ret = iface->GetLobbyChatEntry( params->steamIDLobby, params->iChatID, params->pSteamIDUser, params->pvData, params->cubData, params->peChatEntryType ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking006_RequestLobbyData( struct cppISteamMatchmaking_SteamMatchMaking006_RequestLobbyData_params *params ) +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; params->_ret = iface->RequestLobbyData( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking006_SetLobbyGameServer( struct cppISteamMatchmaking_SteamMatchMaking006_SetLobbyGameServer_params *params ) +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; iface->SetLobbyGameServer( params->steamIDLobby, params->unGameServerIP, params->unGameServerPort, params->steamIDGameServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer( struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer_params *params ) +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; params->_ret = iface->GetLobbyGameServer( params->steamIDLobby, params->punGameServerIP, params->punGameServerPort, params->psteamIDGameServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberLimit( struct cppISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberLimit_params *params ) +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; params->_ret = iface->SetLobbyMemberLimit( params->steamIDLobby, params->cMaxMembers ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberLimit( struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberLimit_params *params ) +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; params->_ret = iface->GetLobbyMemberLimit( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking006_SetLobbyType( struct cppISteamMatchmaking_SteamMatchMaking006_SetLobbyType_params *params ) +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; params->_ret = iface->SetLobbyType( params->steamIDLobby, params->eLobbyType ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking006_GetLobbyOwner( struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyOwner_params *params ) +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; *params->_ret = iface->GetLobbyOwner( params->steamIDLobby ); + return 0; } diff --git a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking006.h b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking006.h deleted file mode 100644 index 0469a210..00000000 --- a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking006.h +++ /dev/null @@ -1,271 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamMatchmaking_SteamMatchMaking006_GetFavoriteGameCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamMatchmaking_SteamMatchMaking006_GetFavoriteGameCount( struct cppISteamMatchmaking_SteamMatchMaking006_GetFavoriteGameCount_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame_params -{ - void *linux_side; - bool _ret; - int32_t iGame; - uint32_t *pnAppID; - uint32_t *pnIP; - uint16_t *pnConnPort; - uint16_t *pnQueryPort; - uint32_t *punFlags; - uint32_t *pRTime32LastPlayedOnServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking006_AddFavoriteGame_params -{ - void *linux_side; - int32_t _ret; - uint32_t nAppID; - uint32_t nIP; - uint16_t nConnPort; - uint16_t nQueryPort; - uint32_t unFlags; - uint32_t rTime32LastPlayedOnServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking006_AddFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking006_AddFavoriteGame_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking006_RemoveFavoriteGame_params -{ - void *linux_side; - bool _ret; - uint32_t nAppID; - uint32_t nIP; - uint16_t nConnPort; - uint16_t nQueryPort; - uint32_t unFlags; -}; -extern void cppISteamMatchmaking_SteamMatchMaking006_RemoveFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking006_RemoveFavoriteGame_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking006_RequestLobbyList_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamMatchmaking_SteamMatchMaking006_RequestLobbyList( struct cppISteamMatchmaking_SteamMatchMaking006_RequestLobbyList_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListFilter_params -{ - void *linux_side; - const char *pchKeyToMatch; - const char *pchValueToMatch; -}; -extern void cppISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListFilter( struct cppISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListFilter_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNumericalFilter_params -{ - void *linux_side; - const char *pchKeyToMatch; - int32_t nValueToMatch; - int32_t nComparisonType; -}; -extern void cppISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNumericalFilter( struct cppISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNumericalFilter_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNearValueFilter_params -{ - void *linux_side; - const char *pchKeyToMatch; - int32_t nValueToBeCloseTo; -}; -extern void cppISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNearValueFilter( struct cppISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNearValueFilter_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking006_GetLobbyByIndex( struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyByIndex_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking006_CreateLobby_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eLobbyType; -}; -extern void cppISteamMatchmaking_SteamMatchMaking006_CreateLobby( struct cppISteamMatchmaking_SteamMatchMaking006_CreateLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking006_JoinLobby_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking006_JoinLobby( struct cppISteamMatchmaking_SteamMatchMaking006_JoinLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking006_LeaveLobby_params -{ - void *linux_side; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking006_LeaveLobby( struct cppISteamMatchmaking_SteamMatchMaking006_LeaveLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking006_InviteUserToLobby_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - CSteamID steamIDInvitee; -}; -extern void cppISteamMatchmaking_SteamMatchMaking006_InviteUserToLobby( struct cppISteamMatchmaking_SteamMatchMaking006_InviteUserToLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking006_GetNumLobbyMembers_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking006_GetNumLobbyMembers( struct cppISteamMatchmaking_SteamMatchMaking006_GetNumLobbyMembers_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDLobby; - int32_t iMember; -}; -extern void cppISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberByIndex( struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberByIndex_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyData_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDLobby; - const char *pchKey; -}; -extern void cppISteamMatchmaking_SteamMatchMaking006_GetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking006_SetLobbyData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamMatchmaking_SteamMatchMaking006_SetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking006_SetLobbyData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberData_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDLobby; - CSteamID steamIDUser; - const char *pchKey; -}; -extern void cppISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberData_params -{ - void *linux_side; - CSteamID steamIDLobby; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking006_SendLobbyChatMsg_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - const void *pvMsgBody; - int32_t cubMsgBody; -}; -extern void cppISteamMatchmaking_SteamMatchMaking006_SendLobbyChatMsg( struct cppISteamMatchmaking_SteamMatchMaking006_SendLobbyChatMsg_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyChatEntry_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDLobby; - int32_t iChatID; - CSteamID *pSteamIDUser; - void *pvData; - int32_t cubData; - uint32_t *peChatEntryType; -}; -extern void cppISteamMatchmaking_SteamMatchMaking006_GetLobbyChatEntry( struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyChatEntry_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking006_RequestLobbyData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking006_RequestLobbyData( struct cppISteamMatchmaking_SteamMatchMaking006_RequestLobbyData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking006_SetLobbyGameServer_params -{ - void *linux_side; - CSteamID steamIDLobby; - uint32_t unGameServerIP; - uint16_t unGameServerPort; - CSteamID steamIDGameServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking006_SetLobbyGameServer( struct cppISteamMatchmaking_SteamMatchMaking006_SetLobbyGameServer_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - uint32_t *punGameServerIP; - uint16_t *punGameServerPort; - CSteamID *psteamIDGameServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer( struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberLimit_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - int32_t cMaxMembers; -}; -extern void cppISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberLimit( struct cppISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberLimit_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberLimit_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberLimit( struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberLimit_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking006_SetLobbyType_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - uint32_t eLobbyType; -}; -extern void cppISteamMatchmaking_SteamMatchMaking006_SetLobbyType( struct cppISteamMatchmaking_SteamMatchMaking006_SetLobbyType_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyOwner_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking006_GetLobbyOwner( struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyOwner_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking007.cpp b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking007.cpp index 262956b2..5208d03d 100644 --- a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking007.cpp +++ b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking007.cpp @@ -1,208 +1,275 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamMatchmaking_SteamMatchMaking007.h" -void cppISteamMatchmaking_SteamMatchMaking007_GetFavoriteGameCount( struct cppISteamMatchmaking_SteamMatchMaking007_GetFavoriteGameCount_params *params ) +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; params->_ret = iface->GetFavoriteGameCount( ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame_params *params ) +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; params->_ret = iface->GetFavoriteGame( params->iGame, params->pnAppID, params->pnIP, params->pnConnPort, params->pnQueryPort, params->punFlags, params->pRTime32LastPlayedOnServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_AddFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking007_AddFavoriteGame_params *params ) +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; params->_ret = iface->AddFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags, params->rTime32LastPlayedOnServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_RemoveFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking007_RemoveFavoriteGame_params *params ) +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; params->_ret = iface->RemoveFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_RequestLobbyList( struct cppISteamMatchmaking_SteamMatchMaking007_RequestLobbyList_params *params ) +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; params->_ret = iface->RequestLobbyList( ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListStringFilter( struct cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListStringFilter_params *params ) +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; iface->AddRequestLobbyListStringFilter( params->pchKeyToMatch, params->pchValueToMatch, params->eComparisonType ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNumericalFilter( struct cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNumericalFilter_params *params ) +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; iface->AddRequestLobbyListNumericalFilter( params->pchKeyToMatch, params->nValueToMatch, params->eComparisonType ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNearValueFilter( struct cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNearValueFilter_params *params ) +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; iface->AddRequestLobbyListNearValueFilter( params->pchKeyToMatch, params->nValueToBeCloseTo ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListFilterSlotsAvailable( struct cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListFilterSlotsAvailable_params *params ) +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; iface->AddRequestLobbyListFilterSlotsAvailable( params->nSlotsAvailable ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_GetLobbyByIndex( struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyByIndex_params *params ) +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; *params->_ret = iface->GetLobbyByIndex( params->iLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_CreateLobby( struct cppISteamMatchmaking_SteamMatchMaking007_CreateLobby_params *params ) +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; params->_ret = iface->CreateLobby( params->eLobbyType, params->cMaxMembers ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_JoinLobby( struct cppISteamMatchmaking_SteamMatchMaking007_JoinLobby_params *params ) +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; params->_ret = iface->JoinLobby( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_LeaveLobby( struct cppISteamMatchmaking_SteamMatchMaking007_LeaveLobby_params *params ) +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; iface->LeaveLobby( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_InviteUserToLobby( struct cppISteamMatchmaking_SteamMatchMaking007_InviteUserToLobby_params *params ) +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; params->_ret = iface->InviteUserToLobby( params->steamIDLobby, params->steamIDInvitee ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_GetNumLobbyMembers( struct cppISteamMatchmaking_SteamMatchMaking007_GetNumLobbyMembers_params *params ) +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; params->_ret = iface->GetNumLobbyMembers( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberByIndex( struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberByIndex_params *params ) +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; *params->_ret = iface->GetLobbyMemberByIndex( params->steamIDLobby, params->iMember ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_GetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyData_params *params ) +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; params->_ret = iface->GetLobbyData( params->steamIDLobby, params->pchKey ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_SetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking007_SetLobbyData_params *params ) +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; params->_ret = iface->SetLobbyData( params->steamIDLobby, params->pchKey, params->pchValue ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_GetLobbyDataCount( struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyDataCount_params *params ) +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; params->_ret = iface->GetLobbyDataCount( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex( struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex_params *params ) +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; params->_ret = iface->GetLobbyDataByIndex( params->steamIDLobby, params->iLobbyData, params->pchKey, params->cchKeyBufferSize, params->pchValue, params->cchValueBufferSize ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_DeleteLobbyData( struct cppISteamMatchmaking_SteamMatchMaking007_DeleteLobbyData_params *params ) +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; params->_ret = iface->DeleteLobbyData( params->steamIDLobby, params->pchKey ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberData_params *params ) +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; params->_ret = iface->GetLobbyMemberData( params->steamIDLobby, params->steamIDUser, params->pchKey ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberData_params *params ) +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; iface->SetLobbyMemberData( params->steamIDLobby, params->pchKey, params->pchValue ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_SendLobbyChatMsg( struct cppISteamMatchmaking_SteamMatchMaking007_SendLobbyChatMsg_params *params ) +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; params->_ret = iface->SendLobbyChatMsg( params->steamIDLobby, params->pvMsgBody, params->cubMsgBody ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_GetLobbyChatEntry( struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyChatEntry_params *params ) +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; params->_ret = iface->GetLobbyChatEntry( params->steamIDLobby, params->iChatID, params->pSteamIDUser, params->pvData, params->cubData, params->peChatEntryType ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_RequestLobbyData( struct cppISteamMatchmaking_SteamMatchMaking007_RequestLobbyData_params *params ) +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; params->_ret = iface->RequestLobbyData( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_SetLobbyGameServer( struct cppISteamMatchmaking_SteamMatchMaking007_SetLobbyGameServer_params *params ) +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; iface->SetLobbyGameServer( params->steamIDLobby, params->unGameServerIP, params->unGameServerPort, params->steamIDGameServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer( struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer_params *params ) +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; params->_ret = iface->GetLobbyGameServer( params->steamIDLobby, params->punGameServerIP, params->punGameServerPort, params->psteamIDGameServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberLimit( struct cppISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberLimit_params *params ) +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; params->_ret = iface->SetLobbyMemberLimit( params->steamIDLobby, params->cMaxMembers ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberLimit( struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberLimit_params *params ) +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; params->_ret = iface->GetLobbyMemberLimit( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_SetLobbyType( struct cppISteamMatchmaking_SteamMatchMaking007_SetLobbyType_params *params ) +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; params->_ret = iface->SetLobbyType( params->steamIDLobby, params->eLobbyType ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_SetLobbyJoinable( struct cppISteamMatchmaking_SteamMatchMaking007_SetLobbyJoinable_params *params ) +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; params->_ret = iface->SetLobbyJoinable( params->steamIDLobby, params->bLobbyJoinable ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_GetLobbyOwner( struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyOwner_params *params ) +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; *params->_ret = iface->GetLobbyOwner( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking007_SetLobbyOwner( struct cppISteamMatchmaking_SteamMatchMaking007_SetLobbyOwner_params *params ) +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; params->_ret = iface->SetLobbyOwner( params->steamIDLobby, params->steamIDNewOwner ); + return 0; } diff --git a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking007.h b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking007.h deleted file mode 100644 index d15924b9..00000000 --- a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking007.h +++ /dev/null @@ -1,328 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamMatchmaking_SteamMatchMaking007_GetFavoriteGameCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_GetFavoriteGameCount( struct cppISteamMatchmaking_SteamMatchMaking007_GetFavoriteGameCount_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame_params -{ - void *linux_side; - bool _ret; - int32_t iGame; - uint32_t *pnAppID; - uint32_t *pnIP; - uint16_t *pnConnPort; - uint16_t *pnQueryPort; - uint32_t *punFlags; - uint32_t *pRTime32LastPlayedOnServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_AddFavoriteGame_params -{ - void *linux_side; - int32_t _ret; - uint32_t nAppID; - uint32_t nIP; - uint16_t nConnPort; - uint16_t nQueryPort; - uint32_t unFlags; - uint32_t rTime32LastPlayedOnServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_AddFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking007_AddFavoriteGame_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_RemoveFavoriteGame_params -{ - void *linux_side; - bool _ret; - uint32_t nAppID; - uint32_t nIP; - uint16_t nConnPort; - uint16_t nQueryPort; - uint32_t unFlags; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_RemoveFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking007_RemoveFavoriteGame_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_RequestLobbyList_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_RequestLobbyList( struct cppISteamMatchmaking_SteamMatchMaking007_RequestLobbyList_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListStringFilter_params -{ - void *linux_side; - const char *pchKeyToMatch; - const char *pchValueToMatch; - uint32_t eComparisonType; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListStringFilter( struct cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListStringFilter_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNumericalFilter_params -{ - void *linux_side; - const char *pchKeyToMatch; - int32_t nValueToMatch; - uint32_t eComparisonType; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNumericalFilter( struct cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNumericalFilter_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNearValueFilter_params -{ - void *linux_side; - const char *pchKeyToMatch; - int32_t nValueToBeCloseTo; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNearValueFilter( struct cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNearValueFilter_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListFilterSlotsAvailable_params -{ - void *linux_side; - int32_t nSlotsAvailable; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListFilterSlotsAvailable( struct cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListFilterSlotsAvailable_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_GetLobbyByIndex( struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyByIndex_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_CreateLobby_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eLobbyType; - int32_t cMaxMembers; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_CreateLobby( struct cppISteamMatchmaking_SteamMatchMaking007_CreateLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_JoinLobby_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_JoinLobby( struct cppISteamMatchmaking_SteamMatchMaking007_JoinLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_LeaveLobby_params -{ - void *linux_side; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_LeaveLobby( struct cppISteamMatchmaking_SteamMatchMaking007_LeaveLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_InviteUserToLobby_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - CSteamID steamIDInvitee; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_InviteUserToLobby( struct cppISteamMatchmaking_SteamMatchMaking007_InviteUserToLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_GetNumLobbyMembers_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_GetNumLobbyMembers( struct cppISteamMatchmaking_SteamMatchMaking007_GetNumLobbyMembers_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDLobby; - int32_t iMember; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberByIndex( struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberByIndex_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyData_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDLobby; - const char *pchKey; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_GetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_SetLobbyData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_SetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking007_SetLobbyData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyDataCount_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_GetLobbyDataCount( struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyDataCount_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - int32_t iLobbyData; - char *pchKey; - int32_t cchKeyBufferSize; - char *pchValue; - int32_t cchValueBufferSize; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex( struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_DeleteLobbyData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - const char *pchKey; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_DeleteLobbyData( struct cppISteamMatchmaking_SteamMatchMaking007_DeleteLobbyData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberData_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDLobby; - CSteamID steamIDUser; - const char *pchKey; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberData_params -{ - void *linux_side; - CSteamID steamIDLobby; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_SendLobbyChatMsg_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - const void *pvMsgBody; - int32_t cubMsgBody; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_SendLobbyChatMsg( struct cppISteamMatchmaking_SteamMatchMaking007_SendLobbyChatMsg_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyChatEntry_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDLobby; - int32_t iChatID; - CSteamID *pSteamIDUser; - void *pvData; - int32_t cubData; - uint32_t *peChatEntryType; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_GetLobbyChatEntry( struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyChatEntry_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_RequestLobbyData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_RequestLobbyData( struct cppISteamMatchmaking_SteamMatchMaking007_RequestLobbyData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_SetLobbyGameServer_params -{ - void *linux_side; - CSteamID steamIDLobby; - uint32_t unGameServerIP; - uint16_t unGameServerPort; - CSteamID steamIDGameServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_SetLobbyGameServer( struct cppISteamMatchmaking_SteamMatchMaking007_SetLobbyGameServer_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - uint32_t *punGameServerIP; - uint16_t *punGameServerPort; - CSteamID *psteamIDGameServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer( struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberLimit_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - int32_t cMaxMembers; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberLimit( struct cppISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberLimit_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberLimit_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberLimit( struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberLimit_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_SetLobbyType_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - uint32_t eLobbyType; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_SetLobbyType( struct cppISteamMatchmaking_SteamMatchMaking007_SetLobbyType_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_SetLobbyJoinable_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - bool bLobbyJoinable; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_SetLobbyJoinable( struct cppISteamMatchmaking_SteamMatchMaking007_SetLobbyJoinable_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyOwner_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_GetLobbyOwner( struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyOwner_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking007_SetLobbyOwner_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - CSteamID steamIDNewOwner; -}; -extern void cppISteamMatchmaking_SteamMatchMaking007_SetLobbyOwner( struct cppISteamMatchmaking_SteamMatchMaking007_SetLobbyOwner_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking008.cpp b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking008.cpp index c9bb6c44..a56cab1f 100644 --- a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking008.cpp +++ b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking008.cpp @@ -1,220 +1,291 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamMatchmaking_SteamMatchMaking008.h" -void cppISteamMatchmaking_SteamMatchMaking008_GetFavoriteGameCount( struct cppISteamMatchmaking_SteamMatchMaking008_GetFavoriteGameCount_params *params ) +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; params->_ret = iface->GetFavoriteGameCount( ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame_params *params ) +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; params->_ret = iface->GetFavoriteGame( params->iGame, params->pnAppID, params->pnIP, params->pnConnPort, params->pnQueryPort, params->punFlags, params->pRTime32LastPlayedOnServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_AddFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking008_AddFavoriteGame_params *params ) +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; params->_ret = iface->AddFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags, params->rTime32LastPlayedOnServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_RemoveFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking008_RemoveFavoriteGame_params *params ) +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; params->_ret = iface->RemoveFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_RequestLobbyList( struct cppISteamMatchmaking_SteamMatchMaking008_RequestLobbyList_params *params ) +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; params->_ret = iface->RequestLobbyList( ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListStringFilter( struct cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListStringFilter_params *params ) +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; iface->AddRequestLobbyListStringFilter( params->pchKeyToMatch, params->pchValueToMatch, params->eComparisonType ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNumericalFilter( struct cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNumericalFilter_params *params ) +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; iface->AddRequestLobbyListNumericalFilter( params->pchKeyToMatch, params->nValueToMatch, params->eComparisonType ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNearValueFilter( struct cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNearValueFilter_params *params ) +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; iface->AddRequestLobbyListNearValueFilter( params->pchKeyToMatch, params->nValueToBeCloseTo ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListFilterSlotsAvailable( struct cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListFilterSlotsAvailable_params *params ) +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; iface->AddRequestLobbyListFilterSlotsAvailable( params->nSlotsAvailable ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListDistanceFilter( struct cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListDistanceFilter_params *params ) +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; iface->AddRequestLobbyListDistanceFilter( params->eLobbyDistanceFilter ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListResultCountFilter( struct cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListResultCountFilter_params *params ) +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; iface->AddRequestLobbyListResultCountFilter( params->cMaxResults ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_GetLobbyByIndex( struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyByIndex_params *params ) +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; *params->_ret = iface->GetLobbyByIndex( params->iLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_CreateLobby( struct cppISteamMatchmaking_SteamMatchMaking008_CreateLobby_params *params ) +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; params->_ret = iface->CreateLobby( params->eLobbyType, params->cMaxMembers ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_JoinLobby( struct cppISteamMatchmaking_SteamMatchMaking008_JoinLobby_params *params ) +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; params->_ret = iface->JoinLobby( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_LeaveLobby( struct cppISteamMatchmaking_SteamMatchMaking008_LeaveLobby_params *params ) +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; iface->LeaveLobby( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_InviteUserToLobby( struct cppISteamMatchmaking_SteamMatchMaking008_InviteUserToLobby_params *params ) +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; params->_ret = iface->InviteUserToLobby( params->steamIDLobby, params->steamIDInvitee ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_GetNumLobbyMembers( struct cppISteamMatchmaking_SteamMatchMaking008_GetNumLobbyMembers_params *params ) +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; params->_ret = iface->GetNumLobbyMembers( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberByIndex( struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberByIndex_params *params ) +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; *params->_ret = iface->GetLobbyMemberByIndex( params->steamIDLobby, params->iMember ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_GetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyData_params *params ) +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; params->_ret = iface->GetLobbyData( params->steamIDLobby, params->pchKey ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_SetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking008_SetLobbyData_params *params ) +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; params->_ret = iface->SetLobbyData( params->steamIDLobby, params->pchKey, params->pchValue ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_GetLobbyDataCount( struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyDataCount_params *params ) +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; params->_ret = iface->GetLobbyDataCount( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex( struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex_params *params ) +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; params->_ret = iface->GetLobbyDataByIndex( params->steamIDLobby, params->iLobbyData, params->pchKey, params->cchKeyBufferSize, params->pchValue, params->cchValueBufferSize ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_DeleteLobbyData( struct cppISteamMatchmaking_SteamMatchMaking008_DeleteLobbyData_params *params ) +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; params->_ret = iface->DeleteLobbyData( params->steamIDLobby, params->pchKey ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberData_params *params ) +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; params->_ret = iface->GetLobbyMemberData( params->steamIDLobby, params->steamIDUser, params->pchKey ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberData_params *params ) +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; iface->SetLobbyMemberData( params->steamIDLobby, params->pchKey, params->pchValue ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_SendLobbyChatMsg( struct cppISteamMatchmaking_SteamMatchMaking008_SendLobbyChatMsg_params *params ) +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; params->_ret = iface->SendLobbyChatMsg( params->steamIDLobby, params->pvMsgBody, params->cubMsgBody ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_GetLobbyChatEntry( struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyChatEntry_params *params ) +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; params->_ret = iface->GetLobbyChatEntry( params->steamIDLobby, params->iChatID, params->pSteamIDUser, params->pvData, params->cubData, params->peChatEntryType ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_RequestLobbyData( struct cppISteamMatchmaking_SteamMatchMaking008_RequestLobbyData_params *params ) +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; params->_ret = iface->RequestLobbyData( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_SetLobbyGameServer( struct cppISteamMatchmaking_SteamMatchMaking008_SetLobbyGameServer_params *params ) +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; iface->SetLobbyGameServer( params->steamIDLobby, params->unGameServerIP, params->unGameServerPort, params->steamIDGameServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer( struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer_params *params ) +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; params->_ret = iface->GetLobbyGameServer( params->steamIDLobby, params->punGameServerIP, params->punGameServerPort, params->psteamIDGameServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberLimit( struct cppISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberLimit_params *params ) +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; params->_ret = iface->SetLobbyMemberLimit( params->steamIDLobby, params->cMaxMembers ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberLimit( struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberLimit_params *params ) +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; params->_ret = iface->GetLobbyMemberLimit( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_SetLobbyType( struct cppISteamMatchmaking_SteamMatchMaking008_SetLobbyType_params *params ) +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; params->_ret = iface->SetLobbyType( params->steamIDLobby, params->eLobbyType ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_SetLobbyJoinable( struct cppISteamMatchmaking_SteamMatchMaking008_SetLobbyJoinable_params *params ) +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; params->_ret = iface->SetLobbyJoinable( params->steamIDLobby, params->bLobbyJoinable ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_GetLobbyOwner( struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyOwner_params *params ) +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; *params->_ret = iface->GetLobbyOwner( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking008_SetLobbyOwner( struct cppISteamMatchmaking_SteamMatchMaking008_SetLobbyOwner_params *params ) +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; params->_ret = iface->SetLobbyOwner( params->steamIDLobby, params->steamIDNewOwner ); + return 0; } diff --git a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking008.h b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking008.h deleted file mode 100644 index ba3f58a3..00000000 --- a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking008.h +++ /dev/null @@ -1,342 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamMatchmaking_SteamMatchMaking008_GetFavoriteGameCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_GetFavoriteGameCount( struct cppISteamMatchmaking_SteamMatchMaking008_GetFavoriteGameCount_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame_params -{ - void *linux_side; - bool _ret; - int32_t iGame; - uint32_t *pnAppID; - uint32_t *pnIP; - uint16_t *pnConnPort; - uint16_t *pnQueryPort; - uint32_t *punFlags; - uint32_t *pRTime32LastPlayedOnServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_AddFavoriteGame_params -{ - void *linux_side; - int32_t _ret; - uint32_t nAppID; - uint32_t nIP; - uint16_t nConnPort; - uint16_t nQueryPort; - uint32_t unFlags; - uint32_t rTime32LastPlayedOnServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_AddFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking008_AddFavoriteGame_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_RemoveFavoriteGame_params -{ - void *linux_side; - bool _ret; - uint32_t nAppID; - uint32_t nIP; - uint16_t nConnPort; - uint16_t nQueryPort; - uint32_t unFlags; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_RemoveFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking008_RemoveFavoriteGame_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_RequestLobbyList_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_RequestLobbyList( struct cppISteamMatchmaking_SteamMatchMaking008_RequestLobbyList_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListStringFilter_params -{ - void *linux_side; - const char *pchKeyToMatch; - const char *pchValueToMatch; - uint32_t eComparisonType; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListStringFilter( struct cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListStringFilter_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNumericalFilter_params -{ - void *linux_side; - const char *pchKeyToMatch; - int32_t nValueToMatch; - uint32_t eComparisonType; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNumericalFilter( struct cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNumericalFilter_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNearValueFilter_params -{ - void *linux_side; - const char *pchKeyToMatch; - int32_t nValueToBeCloseTo; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNearValueFilter( struct cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNearValueFilter_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListFilterSlotsAvailable_params -{ - void *linux_side; - int32_t nSlotsAvailable; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListFilterSlotsAvailable( struct cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListFilterSlotsAvailable_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListDistanceFilter_params -{ - void *linux_side; - uint32_t eLobbyDistanceFilter; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListDistanceFilter( struct cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListDistanceFilter_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListResultCountFilter_params -{ - void *linux_side; - int32_t cMaxResults; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListResultCountFilter( struct cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListResultCountFilter_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_GetLobbyByIndex( struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyByIndex_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_CreateLobby_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eLobbyType; - int32_t cMaxMembers; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_CreateLobby( struct cppISteamMatchmaking_SteamMatchMaking008_CreateLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_JoinLobby_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_JoinLobby( struct cppISteamMatchmaking_SteamMatchMaking008_JoinLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_LeaveLobby_params -{ - void *linux_side; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_LeaveLobby( struct cppISteamMatchmaking_SteamMatchMaking008_LeaveLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_InviteUserToLobby_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - CSteamID steamIDInvitee; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_InviteUserToLobby( struct cppISteamMatchmaking_SteamMatchMaking008_InviteUserToLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_GetNumLobbyMembers_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_GetNumLobbyMembers( struct cppISteamMatchmaking_SteamMatchMaking008_GetNumLobbyMembers_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDLobby; - int32_t iMember; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberByIndex( struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberByIndex_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyData_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDLobby; - const char *pchKey; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_GetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_SetLobbyData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_SetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking008_SetLobbyData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyDataCount_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_GetLobbyDataCount( struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyDataCount_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - int32_t iLobbyData; - char *pchKey; - int32_t cchKeyBufferSize; - char *pchValue; - int32_t cchValueBufferSize; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex( struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_DeleteLobbyData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - const char *pchKey; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_DeleteLobbyData( struct cppISteamMatchmaking_SteamMatchMaking008_DeleteLobbyData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberData_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDLobby; - CSteamID steamIDUser; - const char *pchKey; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberData_params -{ - void *linux_side; - CSteamID steamIDLobby; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_SendLobbyChatMsg_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - const void *pvMsgBody; - int32_t cubMsgBody; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_SendLobbyChatMsg( struct cppISteamMatchmaking_SteamMatchMaking008_SendLobbyChatMsg_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyChatEntry_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDLobby; - int32_t iChatID; - CSteamID *pSteamIDUser; - void *pvData; - int32_t cubData; - uint32_t *peChatEntryType; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_GetLobbyChatEntry( struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyChatEntry_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_RequestLobbyData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_RequestLobbyData( struct cppISteamMatchmaking_SteamMatchMaking008_RequestLobbyData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_SetLobbyGameServer_params -{ - void *linux_side; - CSteamID steamIDLobby; - uint32_t unGameServerIP; - uint16_t unGameServerPort; - CSteamID steamIDGameServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_SetLobbyGameServer( struct cppISteamMatchmaking_SteamMatchMaking008_SetLobbyGameServer_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - uint32_t *punGameServerIP; - uint16_t *punGameServerPort; - CSteamID *psteamIDGameServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer( struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberLimit_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - int32_t cMaxMembers; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberLimit( struct cppISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberLimit_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberLimit_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberLimit( struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberLimit_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_SetLobbyType_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - uint32_t eLobbyType; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_SetLobbyType( struct cppISteamMatchmaking_SteamMatchMaking008_SetLobbyType_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_SetLobbyJoinable_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - bool bLobbyJoinable; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_SetLobbyJoinable( struct cppISteamMatchmaking_SteamMatchMaking008_SetLobbyJoinable_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyOwner_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_GetLobbyOwner( struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyOwner_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking008_SetLobbyOwner_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - CSteamID steamIDNewOwner; -}; -extern void cppISteamMatchmaking_SteamMatchMaking008_SetLobbyOwner( struct cppISteamMatchmaking_SteamMatchMaking008_SetLobbyOwner_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking009.cpp b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking009.cpp index a5797b94..08f47010 100644 --- a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking009.cpp +++ b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking009.cpp @@ -1,232 +1,307 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamMatchmaking_SteamMatchMaking009.h" -void cppISteamMatchmaking_SteamMatchMaking009_GetFavoriteGameCount( struct cppISteamMatchmaking_SteamMatchMaking009_GetFavoriteGameCount_params *params ) +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; params->_ret = iface->GetFavoriteGameCount( ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame_params *params ) +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; params->_ret = iface->GetFavoriteGame( params->iGame, params->pnAppID, params->pnIP, params->pnConnPort, params->pnQueryPort, params->punFlags, params->pRTime32LastPlayedOnServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_AddFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking009_AddFavoriteGame_params *params ) +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; params->_ret = iface->AddFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags, params->rTime32LastPlayedOnServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_RemoveFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking009_RemoveFavoriteGame_params *params ) +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; params->_ret = iface->RemoveFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_RequestLobbyList( struct cppISteamMatchmaking_SteamMatchMaking009_RequestLobbyList_params *params ) +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; params->_ret = iface->RequestLobbyList( ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListStringFilter( struct cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListStringFilter_params *params ) +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; iface->AddRequestLobbyListStringFilter( params->pchKeyToMatch, params->pchValueToMatch, params->eComparisonType ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNumericalFilter( struct cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNumericalFilter_params *params ) +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; iface->AddRequestLobbyListNumericalFilter( params->pchKeyToMatch, params->nValueToMatch, params->eComparisonType ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNearValueFilter( struct cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNearValueFilter_params *params ) +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; iface->AddRequestLobbyListNearValueFilter( params->pchKeyToMatch, params->nValueToBeCloseTo ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListFilterSlotsAvailable( struct cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListFilterSlotsAvailable_params *params ) +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; iface->AddRequestLobbyListFilterSlotsAvailable( params->nSlotsAvailable ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListDistanceFilter( struct cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListDistanceFilter_params *params ) +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; iface->AddRequestLobbyListDistanceFilter( params->eLobbyDistanceFilter ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListResultCountFilter( struct cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListResultCountFilter_params *params ) +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; iface->AddRequestLobbyListResultCountFilter( params->cMaxResults ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListCompatibleMembersFilter( struct cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListCompatibleMembersFilter_params *params ) +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; iface->AddRequestLobbyListCompatibleMembersFilter( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_GetLobbyByIndex( struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyByIndex_params *params ) +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; *params->_ret = iface->GetLobbyByIndex( params->iLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_CreateLobby( struct cppISteamMatchmaking_SteamMatchMaking009_CreateLobby_params *params ) +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; params->_ret = iface->CreateLobby( params->eLobbyType, params->cMaxMembers ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_JoinLobby( struct cppISteamMatchmaking_SteamMatchMaking009_JoinLobby_params *params ) +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; params->_ret = iface->JoinLobby( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_LeaveLobby( struct cppISteamMatchmaking_SteamMatchMaking009_LeaveLobby_params *params ) +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; iface->LeaveLobby( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_InviteUserToLobby( struct cppISteamMatchmaking_SteamMatchMaking009_InviteUserToLobby_params *params ) +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; params->_ret = iface->InviteUserToLobby( params->steamIDLobby, params->steamIDInvitee ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_GetNumLobbyMembers( struct cppISteamMatchmaking_SteamMatchMaking009_GetNumLobbyMembers_params *params ) +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; params->_ret = iface->GetNumLobbyMembers( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberByIndex( struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberByIndex_params *params ) +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; *params->_ret = iface->GetLobbyMemberByIndex( params->steamIDLobby, params->iMember ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_GetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyData_params *params ) +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; params->_ret = iface->GetLobbyData( params->steamIDLobby, params->pchKey ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_SetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking009_SetLobbyData_params *params ) +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; params->_ret = iface->SetLobbyData( params->steamIDLobby, params->pchKey, params->pchValue ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_GetLobbyDataCount( struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyDataCount_params *params ) +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; params->_ret = iface->GetLobbyDataCount( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex( struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex_params *params ) +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; params->_ret = iface->GetLobbyDataByIndex( params->steamIDLobby, params->iLobbyData, params->pchKey, params->cchKeyBufferSize, params->pchValue, params->cchValueBufferSize ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_DeleteLobbyData( struct cppISteamMatchmaking_SteamMatchMaking009_DeleteLobbyData_params *params ) +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; params->_ret = iface->DeleteLobbyData( params->steamIDLobby, params->pchKey ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberData_params *params ) +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; params->_ret = iface->GetLobbyMemberData( params->steamIDLobby, params->steamIDUser, params->pchKey ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberData_params *params ) +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; iface->SetLobbyMemberData( params->steamIDLobby, params->pchKey, params->pchValue ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_SendLobbyChatMsg( struct cppISteamMatchmaking_SteamMatchMaking009_SendLobbyChatMsg_params *params ) +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; params->_ret = iface->SendLobbyChatMsg( params->steamIDLobby, params->pvMsgBody, params->cubMsgBody ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_GetLobbyChatEntry( struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyChatEntry_params *params ) +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; params->_ret = iface->GetLobbyChatEntry( params->steamIDLobby, params->iChatID, params->pSteamIDUser, params->pvData, params->cubData, params->peChatEntryType ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_RequestLobbyData( struct cppISteamMatchmaking_SteamMatchMaking009_RequestLobbyData_params *params ) +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; params->_ret = iface->RequestLobbyData( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_SetLobbyGameServer( struct cppISteamMatchmaking_SteamMatchMaking009_SetLobbyGameServer_params *params ) +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; iface->SetLobbyGameServer( params->steamIDLobby, params->unGameServerIP, params->unGameServerPort, params->steamIDGameServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer( struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer_params *params ) +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; params->_ret = iface->GetLobbyGameServer( params->steamIDLobby, params->punGameServerIP, params->punGameServerPort, params->psteamIDGameServer ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberLimit( struct cppISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberLimit_params *params ) +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; params->_ret = iface->SetLobbyMemberLimit( params->steamIDLobby, params->cMaxMembers ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberLimit( struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberLimit_params *params ) +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; params->_ret = iface->GetLobbyMemberLimit( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_SetLobbyType( struct cppISteamMatchmaking_SteamMatchMaking009_SetLobbyType_params *params ) +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; params->_ret = iface->SetLobbyType( params->steamIDLobby, params->eLobbyType ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_SetLobbyJoinable( struct cppISteamMatchmaking_SteamMatchMaking009_SetLobbyJoinable_params *params ) +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; params->_ret = iface->SetLobbyJoinable( params->steamIDLobby, params->bLobbyJoinable ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_GetLobbyOwner( struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyOwner_params *params ) +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; *params->_ret = iface->GetLobbyOwner( params->steamIDLobby ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner( struct cppISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner_params *params ) +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; params->_ret = iface->SetLobbyOwner( params->steamIDLobby, params->steamIDNewOwner ); + return 0; } -void cppISteamMatchmaking_SteamMatchMaking009_SetLinkedLobby( struct cppISteamMatchmaking_SteamMatchMaking009_SetLinkedLobby_params *params ) +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; params->_ret = iface->SetLinkedLobby( params->steamIDLobby, params->steamIDLobbyDependent ); + return 0; } diff --git a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking009.h b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking009.h deleted file mode 100644 index d7703a03..00000000 --- a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking009.h +++ /dev/null @@ -1,358 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamMatchmaking_SteamMatchMaking009_GetFavoriteGameCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_GetFavoriteGameCount( struct cppISteamMatchmaking_SteamMatchMaking009_GetFavoriteGameCount_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame_params -{ - void *linux_side; - bool _ret; - int32_t iGame; - uint32_t *pnAppID; - uint32_t *pnIP; - uint16_t *pnConnPort; - uint16_t *pnQueryPort; - uint32_t *punFlags; - uint32_t *pRTime32LastPlayedOnServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_AddFavoriteGame_params -{ - void *linux_side; - int32_t _ret; - uint32_t nAppID; - uint32_t nIP; - uint16_t nConnPort; - uint16_t nQueryPort; - uint32_t unFlags; - uint32_t rTime32LastPlayedOnServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_AddFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking009_AddFavoriteGame_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_RemoveFavoriteGame_params -{ - void *linux_side; - bool _ret; - uint32_t nAppID; - uint32_t nIP; - uint16_t nConnPort; - uint16_t nQueryPort; - uint32_t unFlags; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_RemoveFavoriteGame( struct cppISteamMatchmaking_SteamMatchMaking009_RemoveFavoriteGame_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_RequestLobbyList_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_RequestLobbyList( struct cppISteamMatchmaking_SteamMatchMaking009_RequestLobbyList_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListStringFilter_params -{ - void *linux_side; - const char *pchKeyToMatch; - const char *pchValueToMatch; - uint32_t eComparisonType; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListStringFilter( struct cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListStringFilter_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNumericalFilter_params -{ - void *linux_side; - const char *pchKeyToMatch; - int32_t nValueToMatch; - uint32_t eComparisonType; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNumericalFilter( struct cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNumericalFilter_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNearValueFilter_params -{ - void *linux_side; - const char *pchKeyToMatch; - int32_t nValueToBeCloseTo; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNearValueFilter( struct cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNearValueFilter_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListFilterSlotsAvailable_params -{ - void *linux_side; - int32_t nSlotsAvailable; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListFilterSlotsAvailable( struct cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListFilterSlotsAvailable_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListDistanceFilter_params -{ - void *linux_side; - uint32_t eLobbyDistanceFilter; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListDistanceFilter( struct cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListDistanceFilter_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListResultCountFilter_params -{ - void *linux_side; - int32_t cMaxResults; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListResultCountFilter( struct cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListResultCountFilter_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListCompatibleMembersFilter_params -{ - void *linux_side; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListCompatibleMembersFilter( struct cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListCompatibleMembersFilter_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyByIndex_params -{ - void *linux_side; - CSteamID *_ret; - int32_t iLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_GetLobbyByIndex( struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyByIndex_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_CreateLobby_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eLobbyType; - int32_t cMaxMembers; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_CreateLobby( struct cppISteamMatchmaking_SteamMatchMaking009_CreateLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_JoinLobby_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_JoinLobby( struct cppISteamMatchmaking_SteamMatchMaking009_JoinLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_LeaveLobby_params -{ - void *linux_side; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_LeaveLobby( struct cppISteamMatchmaking_SteamMatchMaking009_LeaveLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_InviteUserToLobby_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - CSteamID steamIDInvitee; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_InviteUserToLobby( struct cppISteamMatchmaking_SteamMatchMaking009_InviteUserToLobby_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_GetNumLobbyMembers_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_GetNumLobbyMembers( struct cppISteamMatchmaking_SteamMatchMaking009_GetNumLobbyMembers_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberByIndex_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDLobby; - int32_t iMember; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberByIndex( struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberByIndex_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyData_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDLobby; - const char *pchKey; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_GetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_SetLobbyData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_SetLobbyData( struct cppISteamMatchmaking_SteamMatchMaking009_SetLobbyData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyDataCount_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_GetLobbyDataCount( struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyDataCount_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - int32_t iLobbyData; - char *pchKey; - int32_t cchKeyBufferSize; - char *pchValue; - int32_t cchValueBufferSize; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex( struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_DeleteLobbyData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - const char *pchKey; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_DeleteLobbyData( struct cppISteamMatchmaking_SteamMatchMaking009_DeleteLobbyData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberData_params -{ - void *linux_side; - const char *_ret; - CSteamID steamIDLobby; - CSteamID steamIDUser; - const char *pchKey; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberData_params -{ - void *linux_side; - CSteamID steamIDLobby; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberData( struct cppISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_SendLobbyChatMsg_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - const void *pvMsgBody; - int32_t cubMsgBody; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_SendLobbyChatMsg( struct cppISteamMatchmaking_SteamMatchMaking009_SendLobbyChatMsg_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyChatEntry_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDLobby; - int32_t iChatID; - CSteamID *pSteamIDUser; - void *pvData; - int32_t cubData; - uint32_t *peChatEntryType; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_GetLobbyChatEntry( struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyChatEntry_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_RequestLobbyData_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_RequestLobbyData( struct cppISteamMatchmaking_SteamMatchMaking009_RequestLobbyData_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_SetLobbyGameServer_params -{ - void *linux_side; - CSteamID steamIDLobby; - uint32_t unGameServerIP; - uint16_t unGameServerPort; - CSteamID steamIDGameServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_SetLobbyGameServer( struct cppISteamMatchmaking_SteamMatchMaking009_SetLobbyGameServer_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - uint32_t *punGameServerIP; - uint16_t *punGameServerPort; - CSteamID *psteamIDGameServer; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer( struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberLimit_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - int32_t cMaxMembers; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberLimit( struct cppISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberLimit_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberLimit_params -{ - void *linux_side; - int32_t _ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberLimit( struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberLimit_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_SetLobbyType_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - uint32_t eLobbyType; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_SetLobbyType( struct cppISteamMatchmaking_SteamMatchMaking009_SetLobbyType_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_SetLobbyJoinable_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - bool bLobbyJoinable; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_SetLobbyJoinable( struct cppISteamMatchmaking_SteamMatchMaking009_SetLobbyJoinable_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyOwner_params -{ - void *linux_side; - CSteamID *_ret; - CSteamID steamIDLobby; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_GetLobbyOwner( struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyOwner_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - CSteamID steamIDNewOwner; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner( struct cppISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner_params *params ); - -struct cppISteamMatchmaking_SteamMatchMaking009_SetLinkedLobby_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDLobby; - CSteamID steamIDLobbyDependent; -}; -extern void cppISteamMatchmaking_SteamMatchMaking009_SetLinkedLobby( struct cppISteamMatchmaking_SteamMatchMaking009_SetLinkedLobby_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001.cpp b/lsteamclient/cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001.cpp index 776220b3..d3a9fb63 100644 --- a/lsteamclient/cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001.cpp +++ b/lsteamclient/cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001.cpp @@ -1,196 +1,259 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001.h" -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_RegisterSteamMusicRemote( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_RegisterSteamMusicRemote_params *params ) +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; params->_ret = iface->RegisterSteamMusicRemote( params->pchName ); + return 0; } -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_DeregisterSteamMusicRemote( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_DeregisterSteamMusicRemote_params *params ) +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; params->_ret = iface->DeregisterSteamMusicRemote( ); + return 0; } -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BIsCurrentMusicRemote( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BIsCurrentMusicRemote_params *params ) +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; params->_ret = iface->BIsCurrentMusicRemote( ); + return 0; } -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BActivationSuccess( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BActivationSuccess_params *params ) +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; params->_ret = iface->BActivationSuccess( params->bValue ); + return 0; } -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetDisplayName( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetDisplayName_params *params ) +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; params->_ret = iface->SetDisplayName( params->pchDisplayName ); + return 0; } -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPNGIcon_64x64( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPNGIcon_64x64_params *params ) +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; params->_ret = iface->SetPNGIcon_64x64( params->pvBuffer, params->cbBufferLength ); + return 0; } -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayPrevious( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayPrevious_params *params ) +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; params->_ret = iface->EnablePlayPrevious( params->bValue ); + return 0; } -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayNext( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayNext_params *params ) +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; params->_ret = iface->EnablePlayNext( params->bValue ); + return 0; } -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableShuffled( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableShuffled_params *params ) +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; params->_ret = iface->EnableShuffled( params->bValue ); + return 0; } -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableLooped( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableLooped_params *params ) +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; params->_ret = iface->EnableLooped( params->bValue ); + return 0; } -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableQueue( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableQueue_params *params ) +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; params->_ret = iface->EnableQueue( params->bValue ); + return 0; } -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlaylists( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlaylists_params *params ) +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; params->_ret = iface->EnablePlaylists( params->bValue ); + return 0; } -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdatePlaybackStatus( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdatePlaybackStatus_params *params ) +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; params->_ret = iface->UpdatePlaybackStatus( params->nStatus ); + return 0; } -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateShuffled( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateShuffled_params *params ) +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; params->_ret = iface->UpdateShuffled( params->bValue ); + return 0; } -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateLooped( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateLooped_params *params ) +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; params->_ret = iface->UpdateLooped( params->bValue ); + return 0; } -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateVolume( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateVolume_params *params ) +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; params->_ret = iface->UpdateVolume( params->flValue ); + return 0; } -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryWillChange( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryWillChange_params *params ) +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; params->_ret = iface->CurrentEntryWillChange( ); + return 0; } -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryIsAvailable( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryIsAvailable_params *params ) +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; params->_ret = iface->CurrentEntryIsAvailable( params->bAvailable ); + return 0; } -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryText( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryText_params *params ) +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; params->_ret = iface->UpdateCurrentEntryText( params->pchText ); + return 0; } -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryElapsedSeconds( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryElapsedSeconds_params *params ) +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; params->_ret = iface->UpdateCurrentEntryElapsedSeconds( params->nValue ); + return 0; } -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryCoverArt( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryCoverArt_params *params ) +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; params->_ret = iface->UpdateCurrentEntryCoverArt( params->pvBuffer, params->cbBufferLength ); + return 0; } -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryDidChange( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryDidChange_params *params ) +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; params->_ret = iface->CurrentEntryDidChange( ); + return 0; } -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueWillChange( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueWillChange_params *params ) +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; params->_ret = iface->QueueWillChange( ); + return 0; } -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetQueueEntries( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetQueueEntries_params *params ) +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; params->_ret = iface->ResetQueueEntries( ); + return 0; } -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQueueEntry( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQueueEntry_params *params ) +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; params->_ret = iface->SetQueueEntry( params->nID, params->nPosition, params->pchEntryText ); + return 0; } -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentQueueEntry( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentQueueEntry_params *params ) +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; params->_ret = iface->SetCurrentQueueEntry( params->nID ); + return 0; } -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueDidChange( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueDidChange_params *params ) +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; params->_ret = iface->QueueDidChange( ); + return 0; } -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistWillChange( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistWillChange_params *params ) +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; params->_ret = iface->PlaylistWillChange( ); + return 0; } -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetPlaylistEntries( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetPlaylistEntries_params *params ) +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; params->_ret = iface->ResetPlaylistEntries( ); + return 0; } -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPlaylistEntry( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPlaylistEntry_params *params ) +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; params->_ret = iface->SetPlaylistEntry( params->nID, params->nPosition, params->pchEntryText ); + return 0; } -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentPlaylistEntry( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentPlaylistEntry_params *params ) +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; params->_ret = iface->SetCurrentPlaylistEntry( params->nID ); + return 0; } -void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistDidChange( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistDidChange_params *params ) +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; params->_ret = iface->PlaylistDidChange( ); + return 0; } diff --git a/lsteamclient/cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001.h b/lsteamclient/cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001.h deleted file mode 100644 index 0c8d1000..00000000 --- a/lsteamclient/cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001.h +++ /dev/null @@ -1,264 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_RegisterSteamMusicRemote_params -{ - void *linux_side; - bool _ret; - const char *pchName; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_RegisterSteamMusicRemote( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_RegisterSteamMusicRemote_params *params ); - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_DeregisterSteamMusicRemote_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_DeregisterSteamMusicRemote( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_DeregisterSteamMusicRemote_params *params ); - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BIsCurrentMusicRemote_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BIsCurrentMusicRemote( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BIsCurrentMusicRemote_params *params ); - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BActivationSuccess_params -{ - void *linux_side; - bool _ret; - bool bValue; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BActivationSuccess( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BActivationSuccess_params *params ); - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetDisplayName_params -{ - void *linux_side; - bool _ret; - const char *pchDisplayName; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetDisplayName( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetDisplayName_params *params ); - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPNGIcon_64x64_params -{ - void *linux_side; - bool _ret; - void *pvBuffer; - uint32_t cbBufferLength; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPNGIcon_64x64( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPNGIcon_64x64_params *params ); - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayPrevious_params -{ - void *linux_side; - bool _ret; - bool bValue; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayPrevious( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayPrevious_params *params ); - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayNext_params -{ - void *linux_side; - bool _ret; - bool bValue; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayNext( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayNext_params *params ); - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableShuffled_params -{ - void *linux_side; - bool _ret; - bool bValue; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableShuffled( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableShuffled_params *params ); - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableLooped_params -{ - void *linux_side; - bool _ret; - bool bValue; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableLooped( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableLooped_params *params ); - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableQueue_params -{ - void *linux_side; - bool _ret; - bool bValue; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableQueue( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableQueue_params *params ); - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlaylists_params -{ - void *linux_side; - bool _ret; - bool bValue; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlaylists( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlaylists_params *params ); - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdatePlaybackStatus_params -{ - void *linux_side; - bool _ret; - uint32_t nStatus; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdatePlaybackStatus( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdatePlaybackStatus_params *params ); - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateShuffled_params -{ - void *linux_side; - bool _ret; - bool bValue; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateShuffled( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateShuffled_params *params ); - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateLooped_params -{ - void *linux_side; - bool _ret; - bool bValue; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateLooped( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateLooped_params *params ); - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateVolume_params -{ - void *linux_side; - bool _ret; - float flValue; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateVolume( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateVolume_params *params ); - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryWillChange_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryWillChange( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryWillChange_params *params ); - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryIsAvailable_params -{ - void *linux_side; - bool _ret; - bool bAvailable; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryIsAvailable( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryIsAvailable_params *params ); - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryText_params -{ - void *linux_side; - bool _ret; - const char *pchText; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryText( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryText_params *params ); - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryElapsedSeconds_params -{ - void *linux_side; - bool _ret; - int32_t nValue; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryElapsedSeconds( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryElapsedSeconds_params *params ); - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryCoverArt_params -{ - void *linux_side; - bool _ret; - void *pvBuffer; - uint32_t cbBufferLength; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryCoverArt( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryCoverArt_params *params ); - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryDidChange_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryDidChange( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryDidChange_params *params ); - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueWillChange_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueWillChange( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueWillChange_params *params ); - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetQueueEntries_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetQueueEntries( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetQueueEntries_params *params ); - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQueueEntry_params -{ - void *linux_side; - bool _ret; - int32_t nID; - int32_t nPosition; - const char *pchEntryText; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQueueEntry( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQueueEntry_params *params ); - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentQueueEntry_params -{ - void *linux_side; - bool _ret; - int32_t nID; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentQueueEntry( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentQueueEntry_params *params ); - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueDidChange_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueDidChange( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueDidChange_params *params ); - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistWillChange_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistWillChange( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistWillChange_params *params ); - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetPlaylistEntries_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetPlaylistEntries( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetPlaylistEntries_params *params ); - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPlaylistEntry_params -{ - void *linux_side; - bool _ret; - int32_t nID; - int32_t nPosition; - const char *pchEntryText; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPlaylistEntry( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPlaylistEntry_params *params ); - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentPlaylistEntry_params -{ - void *linux_side; - bool _ret; - int32_t nID; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentPlaylistEntry( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentPlaylistEntry_params *params ); - -struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistDidChange_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistDidChange( struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistDidChange_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001.cpp b/lsteamclient/cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001.cpp index d8ed11c1..b376241e 100644 --- a/lsteamclient/cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001.cpp +++ b/lsteamclient/cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001.cpp @@ -1,58 +1,75 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001.h" -void cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsEnabled( struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsEnabled_params *params ) +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; params->_ret = iface->BIsEnabled( ); + return 0; } -void cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsPlaying( struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsPlaying_params *params ) +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; params->_ret = iface->BIsPlaying( ); + return 0; } -void cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetPlaybackStatus( struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetPlaybackStatus_params *params ) +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; params->_ret = iface->GetPlaybackStatus( ); + return 0; } -void cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Play( struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Play_params *params ) +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; iface->Play( ); + return 0; } -void cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Pause( struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Pause_params *params ) +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; iface->Pause( ); + return 0; } -void cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayPrevious( struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayPrevious_params *params ) +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; iface->PlayPrevious( ); + return 0; } -void cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayNext( struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayNext_params *params ) +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; iface->PlayNext( ); + return 0; } -void cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_SetVolume( struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_SetVolume_params *params ) +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; iface->SetVolume( params->flVolume ); + return 0; } -void cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetVolume( struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetVolume_params *params ) +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; params->_ret = iface->GetVolume( ); + return 0; } diff --git a/lsteamclient/cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001.h b/lsteamclient/cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001.h deleted file mode 100644 index 0ab1cdae..00000000 --- a/lsteamclient/cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001.h +++ /dev/null @@ -1,71 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsEnabled_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsEnabled( struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsEnabled_params *params ); - -struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsPlaying_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsPlaying( struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsPlaying_params *params ); - -struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetPlaybackStatus_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetPlaybackStatus( struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetPlaybackStatus_params *params ); - -struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Play_params -{ - void *linux_side; -}; -extern void cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Play( struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Play_params *params ); - -struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Pause_params -{ - void *linux_side; -}; -extern void cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Pause( struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Pause_params *params ); - -struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayPrevious_params -{ - void *linux_side; -}; -extern void cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayPrevious( struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayPrevious_params *params ); - -struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayNext_params -{ - void *linux_side; -}; -extern void cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayNext( struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayNext_params *params ); - -struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_SetVolume_params -{ - void *linux_side; - float flVolume; -}; -extern void cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_SetVolume( struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_SetVolume_params *params ); - -struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetVolume_params -{ - void *linux_side; - float _ret; -}; -extern void cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetVolume( struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetVolume_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001.cpp b/lsteamclient/cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001.cpp index 49e31b99..3fc90ce2 100644 --- a/lsteamclient/cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001.cpp +++ b/lsteamclient/cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001.cpp @@ -1,22 +1,27 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001.h" -void cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_DestroyFakeUDPPort( struct cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_DestroyFakeUDPPort_params *params ) +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; iface->DestroyFakeUDPPort( ); + return 0; } -void cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_SendMessageToFakeIP( struct cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_SendMessageToFakeIP_params *params ) +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; params->_ret = iface->SendMessageToFakeIP( params->remoteAddress, params->pData, params->cbData, params->nSendFlags ); + return 0; } -void cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ScheduleCleanup( struct cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ScheduleCleanup_params *params ) +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; iface->ScheduleCleanup( params->remoteAddress ); + return 0; } diff --git a/lsteamclient/cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001.h b/lsteamclient/cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001.h deleted file mode 100644 index c3221752..00000000 --- a/lsteamclient/cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001.h +++ /dev/null @@ -1,45 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_DestroyFakeUDPPort_params -{ - void *linux_side; -}; -extern void cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_DestroyFakeUDPPort( struct cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_DestroyFakeUDPPort_params *params ); - -struct cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_SendMessageToFakeIP_params -{ - void *linux_side; - uint32_t _ret; - const SteamNetworkingIPAddr *remoteAddress; - const void *pData; - uint32_t cbData; - int32_t nSendFlags; -}; -extern void cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_SendMessageToFakeIP( struct cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_SendMessageToFakeIP_params *params ); - -struct cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ReceiveMessages_params -{ - void *linux_side; - int32_t _ret; - w_SteamNetworkingMessage_t_153a **ppOutMessages; - int32_t nMaxMessages; -}; -extern void cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ReceiveMessages( struct cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ReceiveMessages_params *params ); - -struct cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ScheduleCleanup_params -{ - void *linux_side; - const SteamNetworkingIPAddr *remoteAddress; -}; -extern void cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ScheduleCleanup( struct cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ScheduleCleanup_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamNetworkingMessages_SteamNetworkingMessages002.cpp b/lsteamclient/cppISteamNetworkingMessages_SteamNetworkingMessages002.cpp index 49dd1a29..48c53cfa 100644 --- a/lsteamclient/cppISteamNetworkingMessages_SteamNetworkingMessages002.cpp +++ b/lsteamclient/cppISteamNetworkingMessages_SteamNetworkingMessages002.cpp @@ -1,34 +1,43 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamNetworkingMessages_SteamNetworkingMessages002.h" -void cppISteamNetworkingMessages_SteamNetworkingMessages002_SendMessageToUser( struct cppISteamNetworkingMessages_SteamNetworkingMessages002_SendMessageToUser_params *params ) +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; params->_ret = iface->SendMessageToUser( params->identityRemote, params->pubData, params->cubData, params->nSendFlags, params->nRemoteChannel ); + return 0; } -void cppISteamNetworkingMessages_SteamNetworkingMessages002_AcceptSessionWithUser( struct cppISteamNetworkingMessages_SteamNetworkingMessages002_AcceptSessionWithUser_params *params ) +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; params->_ret = iface->AcceptSessionWithUser( params->identityRemote ); + return 0; } -void cppISteamNetworkingMessages_SteamNetworkingMessages002_CloseSessionWithUser( struct cppISteamNetworkingMessages_SteamNetworkingMessages002_CloseSessionWithUser_params *params ) +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; params->_ret = iface->CloseSessionWithUser( params->identityRemote ); + return 0; } -void cppISteamNetworkingMessages_SteamNetworkingMessages002_CloseChannelWithUser( struct cppISteamNetworkingMessages_SteamNetworkingMessages002_CloseChannelWithUser_params *params ) +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; params->_ret = iface->CloseChannelWithUser( params->identityRemote, params->nLocalChannel ); + return 0; } -void cppISteamNetworkingMessages_SteamNetworkingMessages002_GetSessionConnectionInfo( struct cppISteamNetworkingMessages_SteamNetworkingMessages002_GetSessionConnectionInfo_params *params ) +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; params->_ret = iface->GetSessionConnectionInfo( params->identityRemote, params->pConnectionInfo, params->pQuickStatus ); + return 0; } diff --git a/lsteamclient/cppISteamNetworkingMessages_SteamNetworkingMessages002.h b/lsteamclient/cppISteamNetworkingMessages_SteamNetworkingMessages002.h deleted file mode 100644 index 7866f7c2..00000000 --- a/lsteamclient/cppISteamNetworkingMessages_SteamNetworkingMessages002.h +++ /dev/null @@ -1,69 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamNetworkingMessages_SteamNetworkingMessages002_SendMessageToUser_params -{ - void *linux_side; - uint32_t _ret; - const SteamNetworkingIdentity_144 *identityRemote; - const void *pubData; - uint32_t cubData; - int32_t nSendFlags; - int32_t nRemoteChannel; -}; -extern void cppISteamNetworkingMessages_SteamNetworkingMessages002_SendMessageToUser( struct cppISteamNetworkingMessages_SteamNetworkingMessages002_SendMessageToUser_params *params ); - -struct cppISteamNetworkingMessages_SteamNetworkingMessages002_ReceiveMessagesOnChannel_params -{ - void *linux_side; - int32_t _ret; - int32_t nLocalChannel; - w_SteamNetworkingMessage_t_153a **ppOutMessages; - int32_t nMaxMessages; -}; -extern void cppISteamNetworkingMessages_SteamNetworkingMessages002_ReceiveMessagesOnChannel( struct cppISteamNetworkingMessages_SteamNetworkingMessages002_ReceiveMessagesOnChannel_params *params ); - -struct cppISteamNetworkingMessages_SteamNetworkingMessages002_AcceptSessionWithUser_params -{ - void *linux_side; - bool _ret; - const SteamNetworkingIdentity_144 *identityRemote; -}; -extern void cppISteamNetworkingMessages_SteamNetworkingMessages002_AcceptSessionWithUser( struct cppISteamNetworkingMessages_SteamNetworkingMessages002_AcceptSessionWithUser_params *params ); - -struct cppISteamNetworkingMessages_SteamNetworkingMessages002_CloseSessionWithUser_params -{ - void *linux_side; - bool _ret; - const SteamNetworkingIdentity_144 *identityRemote; -}; -extern void cppISteamNetworkingMessages_SteamNetworkingMessages002_CloseSessionWithUser( struct cppISteamNetworkingMessages_SteamNetworkingMessages002_CloseSessionWithUser_params *params ); - -struct cppISteamNetworkingMessages_SteamNetworkingMessages002_CloseChannelWithUser_params -{ - void *linux_side; - bool _ret; - const SteamNetworkingIdentity_144 *identityRemote; - int32_t nLocalChannel; -}; -extern void cppISteamNetworkingMessages_SteamNetworkingMessages002_CloseChannelWithUser( struct cppISteamNetworkingMessages_SteamNetworkingMessages002_CloseChannelWithUser_params *params ); - -struct cppISteamNetworkingMessages_SteamNetworkingMessages002_GetSessionConnectionInfo_params -{ - void *linux_side; - uint32_t _ret; - const SteamNetworkingIdentity_144 *identityRemote; - SteamNetConnectionInfo_t_153a *pConnectionInfo; - SteamNetConnectionRealTimeStatus_t *pQuickStatus; -}; -extern void cppISteamNetworkingMessages_SteamNetworkingMessages002_GetSessionConnectionInfo( struct cppISteamNetworkingMessages_SteamNetworkingMessages002_GetSessionConnectionInfo_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002.cpp b/lsteamclient/cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002.cpp index e41d9a62..43ba4cf0 100644 --- a/lsteamclient/cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002.cpp +++ b/lsteamclient/cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002.cpp @@ -1,52 +1,67 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002.h" -void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PRendezvous( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PRendezvous_params *params ) +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; iface->SendP2PRendezvous( params->steamIDRemote, params->unConnectionIDSrc, params->pMsgRendezvous, params->cbRendezvous ); + return 0; } -void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PConnectionFailure( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PConnectionFailure_params *params ) +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; iface->SendP2PConnectionFailure( params->steamIDRemote, params->unConnectionIDDest, params->nReason, params->pszReason ); + return 0; } -void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCertAsync( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCertAsync_params *params ) +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; params->_ret = iface->GetCertAsync( ); + return 0; } -void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetNetworkConfigJSON( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetNetworkConfigJSON_params *params ) +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; params->_ret = iface->GetNetworkConfigJSON( params->buf, params->cbBuf ); + return 0; } -void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_CacheRelayTicket( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_CacheRelayTicket_params *params ) +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; iface->CacheRelayTicket( params->pTicket, params->cbTicket ); + return 0; } -void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicketCount( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicketCount_params *params ) +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; params->_ret = iface->GetCachedRelayTicketCount( ); + return 0; } -void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicket( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicket_params *params ) +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; params->_ret = iface->GetCachedRelayTicket( params->idxTicket, params->buf, params->cbBuf ); + return 0; } -void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_PostConnectionStateMsg( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_PostConnectionStateMsg_params *params ) +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; iface->PostConnectionStateMsg( params->pMsg, params->cbMsg ); + return 0; } diff --git a/lsteamclient/cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002.h b/lsteamclient/cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002.h deleted file mode 100644 index d92c5970..00000000 --- a/lsteamclient/cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002.h +++ /dev/null @@ -1,81 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PRendezvous_params -{ - void *linux_side; - CSteamID steamIDRemote; - uint32_t unConnectionIDSrc; - const void *pMsgRendezvous; - uint32_t cbRendezvous; -}; -extern void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PRendezvous( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PRendezvous_params *params ); - -struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PConnectionFailure_params -{ - void *linux_side; - CSteamID steamIDRemote; - uint32_t unConnectionIDDest; - uint32_t nReason; - const char *pszReason; -}; -extern void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PConnectionFailure( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PConnectionFailure_params *params ); - -struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCertAsync_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCertAsync( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCertAsync_params *params ); - -struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetNetworkConfigJSON_params -{ - void *linux_side; - int32_t _ret; - void *buf; - uint32_t cbBuf; -}; -extern void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetNetworkConfigJSON( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetNetworkConfigJSON_params *params ); - -struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_CacheRelayTicket_params -{ - void *linux_side; - const void *pTicket; - uint32_t cbTicket; -}; -extern void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_CacheRelayTicket( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_CacheRelayTicket_params *params ); - -struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicketCount_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicketCount( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicketCount_params *params ); - -struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicket_params -{ - void *linux_side; - int32_t _ret; - uint32_t idxTicket; - void *buf; - uint32_t cbBuf; -}; -extern void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicket( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicket_params *params ); - -struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_PostConnectionStateMsg_params -{ - void *linux_side; - const void *pMsg; - uint32_t cbMsg; -}; -extern void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_PostConnectionStateMsg( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_PostConnectionStateMsg_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003.cpp b/lsteamclient/cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003.cpp index 96335610..0149faec 100644 --- a/lsteamclient/cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003.cpp +++ b/lsteamclient/cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003.cpp @@ -1,52 +1,67 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003.h" -void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PRendezvous( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PRendezvous_params *params ) +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; iface->SendP2PRendezvous( params->steamIDRemote, params->unConnectionIDSrc, params->pMsgRendezvous, params->cbRendezvous ); + return 0; } -void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PConnectionFailure( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PConnectionFailure_params *params ) +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; iface->SendP2PConnectionFailure( params->steamIDRemote, params->unConnectionIDDest, params->nReason, params->pszReason ); + return 0; } -void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCertAsync( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCertAsync_params *params ) +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; params->_ret = iface->GetCertAsync( ); + return 0; } -void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetNetworkConfigJSON( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetNetworkConfigJSON_params *params ) +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; params->_ret = iface->GetNetworkConfigJSON( params->buf, params->cbBuf, params->pszLauncherPartner ); + return 0; } -void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_CacheRelayTicket( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_CacheRelayTicket_params *params ) +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; iface->CacheRelayTicket( params->pTicket, params->cbTicket ); + return 0; } -void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicketCount( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicketCount_params *params ) +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; params->_ret = iface->GetCachedRelayTicketCount( ); + return 0; } -void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicket( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicket_params *params ) +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; params->_ret = iface->GetCachedRelayTicket( params->idxTicket, params->buf, params->cbBuf ); + return 0; } -void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_PostConnectionStateMsg( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_PostConnectionStateMsg_params *params ) +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; iface->PostConnectionStateMsg( params->pMsg, params->cbMsg ); + return 0; } diff --git a/lsteamclient/cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003.h b/lsteamclient/cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003.h deleted file mode 100644 index f4ada180..00000000 --- a/lsteamclient/cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003.h +++ /dev/null @@ -1,82 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PRendezvous_params -{ - void *linux_side; - CSteamID steamIDRemote; - uint32_t unConnectionIDSrc; - const void *pMsgRendezvous; - uint32_t cbRendezvous; -}; -extern void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PRendezvous( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PRendezvous_params *params ); - -struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PConnectionFailure_params -{ - void *linux_side; - CSteamID steamIDRemote; - uint32_t unConnectionIDDest; - uint32_t nReason; - const char *pszReason; -}; -extern void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PConnectionFailure( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PConnectionFailure_params *params ); - -struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCertAsync_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCertAsync( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCertAsync_params *params ); - -struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetNetworkConfigJSON_params -{ - void *linux_side; - int32_t _ret; - void *buf; - uint32_t cbBuf; - const char *pszLauncherPartner; -}; -extern void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetNetworkConfigJSON( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetNetworkConfigJSON_params *params ); - -struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_CacheRelayTicket_params -{ - void *linux_side; - const void *pTicket; - uint32_t cbTicket; -}; -extern void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_CacheRelayTicket( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_CacheRelayTicket_params *params ); - -struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicketCount_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicketCount( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicketCount_params *params ); - -struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicket_params -{ - void *linux_side; - int32_t _ret; - uint32_t idxTicket; - void *buf; - uint32_t cbBuf; -}; -extern void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicket( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicket_params *params ); - -struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_PostConnectionStateMsg_params -{ - void *linux_side; - const void *pMsg; - uint32_t cbMsg; -}; -extern void cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_PostConnectionStateMsg( struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_PostConnectionStateMsg_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets002.cpp b/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets002.cpp index 6f731c08..eb1bb1ab 100644 --- a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets002.cpp +++ b/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets002.cpp @@ -1,160 +1,211 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamNetworkingSockets_SteamNetworkingSockets002.h" -void cppISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketIP( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketIP_params *params ) +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; params->_ret = iface->CreateListenSocketIP( params->localAddress ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets002_ConnectByIPAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_ConnectByIPAddress_params *params ) +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; params->_ret = iface->ConnectByIPAddress( params->address ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketP2P( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketP2P_params *params ) +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; params->_ret = iface->CreateListenSocketP2P( params->nVirtualPort ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets002_ConnectP2P( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_ConnectP2P_params *params ) +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; params->_ret = iface->ConnectP2P( params->identityRemote, params->nVirtualPort ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets002_AcceptConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_AcceptConnection_params *params ) +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; params->_ret = iface->AcceptConnection( params->hConn ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets002_CloseConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_CloseConnection_params *params ) +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; params->_ret = iface->CloseConnection( params->hPeer, params->nReason, params->pszDebug, params->bEnableLinger ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets002_CloseListenSocket( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_CloseListenSocket_params *params ) +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; params->_ret = iface->CloseListenSocket( params->hSocket ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionUserData( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionUserData_params *params ) +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; params->_ret = iface->SetConnectionUserData( params->hPeer, params->nUserData ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionUserData( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionUserData_params *params ) +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; params->_ret = iface->GetConnectionUserData( params->hPeer ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionName( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionName_params *params ) +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; iface->SetConnectionName( params->hPeer, params->pszName ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionName( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionName_params *params ) +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; params->_ret = iface->GetConnectionName( params->hPeer, params->pszName, params->nMaxLen ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets002_SendMessageToConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_SendMessageToConnection_params *params ) +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; params->_ret = iface->SendMessageToConnection( params->hConn, params->pData, params->cbData, params->nSendFlags ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets002_FlushMessagesOnConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_FlushMessagesOnConnection_params *params ) +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; params->_ret = iface->FlushMessagesOnConnection( params->hConn ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionInfo( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionInfo_params *params ) +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; params->_ret = iface->GetConnectionInfo( params->hConn, params->pInfo ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets002_GetQuickConnectionStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetQuickConnectionStatus_params *params ) +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; params->_ret = iface->GetQuickConnectionStatus( params->hConn, params->pStats ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets002_GetDetailedConnectionStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetDetailedConnectionStatus_params *params ) +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; params->_ret = iface->GetDetailedConnectionStatus( params->hConn, params->pszBuf, params->cbBuf ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets002_GetListenSocketAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetListenSocketAddress_params *params ) +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; params->_ret = iface->GetListenSocketAddress( params->hSocket, params->address ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocketPair( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocketPair_params *params ) +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; params->_ret = iface->CreateSocketPair( params->pOutConnection1, params->pOutConnection2, params->bUseNetworkLoopback, params->pIdentity1, params->pIdentity2 ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets002_GetIdentity( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetIdentity_params *params ) +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; params->_ret = iface->GetIdentity( params->pIdentity ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets002_ReceivedRelayAuthTicket( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_ReceivedRelayAuthTicket_params *params ) +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; params->_ret = iface->ReceivedRelayAuthTicket( params->pvTicket, params->cbTicket, params->pOutParsedTicket ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets002_FindRelayAuthTicketForServer( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_FindRelayAuthTicketForServer_params *params ) +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; params->_ret = iface->FindRelayAuthTicketForServer( params->identityGameServer, params->nVirtualPort, params->pOutParsedTicket ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets002_ConnectToHostedDedicatedServer( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_ConnectToHostedDedicatedServer_params *params ) +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; params->_ret = iface->ConnectToHostedDedicatedServer( params->identityTarget, params->nVirtualPort ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPort( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPort_params *params ) +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; params->_ret = iface->GetHostedDedicatedServerPort( ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPOPID( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPOPID_params *params ) +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; params->_ret = iface->GetHostedDedicatedServerPOPID( ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerAddress_params *params ) +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; params->_ret = iface->GetHostedDedicatedServerAddress( params->pRouting ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets002_CreateHostedDedicatedServerListenSocket( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_CreateHostedDedicatedServerListenSocket_params *params ) +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; params->_ret = iface->CreateHostedDedicatedServerListenSocket( params->nVirtualPort ); + return 0; } diff --git a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets002.h b/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets002.h deleted file mode 100644 index 6c600d4b..00000000 --- a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets002.h +++ /dev/null @@ -1,262 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketIP_params -{ - void *linux_side; - uint32_t _ret; - const SteamNetworkingIPAddr *localAddress; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketIP( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketIP_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets002_ConnectByIPAddress_params -{ - void *linux_side; - uint32_t _ret; - const SteamNetworkingIPAddr *address; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets002_ConnectByIPAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_ConnectByIPAddress_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketP2P_params -{ - void *linux_side; - uint32_t _ret; - int32_t nVirtualPort; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketP2P( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketP2P_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets002_ConnectP2P_params -{ - void *linux_side; - uint32_t _ret; - const SteamNetworkingIdentity_144 *identityRemote; - int32_t nVirtualPort; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets002_ConnectP2P( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_ConnectP2P_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets002_AcceptConnection_params -{ - void *linux_side; - uint32_t _ret; - uint32_t hConn; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets002_AcceptConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_AcceptConnection_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets002_CloseConnection_params -{ - void *linux_side; - bool _ret; - uint32_t hPeer; - int32_t nReason; - const char *pszDebug; - bool bEnableLinger; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets002_CloseConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_CloseConnection_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets002_CloseListenSocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets002_CloseListenSocket( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_CloseListenSocket_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionUserData_params -{ - void *linux_side; - bool _ret; - uint32_t hPeer; - int64_t nUserData; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionUserData( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionUserData_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionUserData_params -{ - void *linux_side; - int64_t _ret; - uint32_t hPeer; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionUserData( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionUserData_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionName_params -{ - void *linux_side; - uint32_t hPeer; - const char *pszName; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionName( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionName_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionName_params -{ - void *linux_side; - bool _ret; - uint32_t hPeer; - char *pszName; - int32_t nMaxLen; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionName( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionName_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets002_SendMessageToConnection_params -{ - void *linux_side; - uint32_t _ret; - uint32_t hConn; - const void *pData; - uint32_t cbData; - int32_t nSendFlags; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets002_SendMessageToConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_SendMessageToConnection_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets002_FlushMessagesOnConnection_params -{ - void *linux_side; - uint32_t _ret; - uint32_t hConn; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets002_FlushMessagesOnConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_FlushMessagesOnConnection_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnConnection_params -{ - void *linux_side; - int32_t _ret; - uint32_t hConn; - w_SteamNetworkingMessage_t_144 **ppOutMessages; - int32_t nMaxMessages; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnConnection_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnListenSocket_params -{ - void *linux_side; - int32_t _ret; - uint32_t hSocket; - w_SteamNetworkingMessage_t_144 **ppOutMessages; - int32_t nMaxMessages; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnListenSocket( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnListenSocket_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionInfo_params -{ - void *linux_side; - bool _ret; - uint32_t hConn; - SteamNetConnectionInfo_t_144 *pInfo; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionInfo( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionInfo_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetQuickConnectionStatus_params -{ - void *linux_side; - bool _ret; - uint32_t hConn; - SteamNetworkingQuickConnectionStatus *pStats; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets002_GetQuickConnectionStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetQuickConnectionStatus_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetDetailedConnectionStatus_params -{ - void *linux_side; - int32_t _ret; - uint32_t hConn; - char *pszBuf; - int32_t cbBuf; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets002_GetDetailedConnectionStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetDetailedConnectionStatus_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetListenSocketAddress_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - SteamNetworkingIPAddr *address; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets002_GetListenSocketAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetListenSocketAddress_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocketPair_params -{ - void *linux_side; - bool _ret; - uint32_t *pOutConnection1; - uint32_t *pOutConnection2; - bool bUseNetworkLoopback; - const SteamNetworkingIdentity_144 *pIdentity1; - const SteamNetworkingIdentity_144 *pIdentity2; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocketPair( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocketPair_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetIdentity_params -{ - void *linux_side; - bool _ret; - SteamNetworkingIdentity_144 *pIdentity; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets002_GetIdentity( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetIdentity_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets002_ReceivedRelayAuthTicket_params -{ - void *linux_side; - bool _ret; - const void *pvTicket; - int32_t cbTicket; - SteamDatagramRelayAuthTicket *pOutParsedTicket; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets002_ReceivedRelayAuthTicket( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_ReceivedRelayAuthTicket_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets002_FindRelayAuthTicketForServer_params -{ - void *linux_side; - int32_t _ret; - const SteamNetworkingIdentity_144 *identityGameServer; - int32_t nVirtualPort; - SteamDatagramRelayAuthTicket *pOutParsedTicket; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets002_FindRelayAuthTicketForServer( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_FindRelayAuthTicketForServer_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets002_ConnectToHostedDedicatedServer_params -{ - void *linux_side; - uint32_t _ret; - const SteamNetworkingIdentity_144 *identityTarget; - int32_t nVirtualPort; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets002_ConnectToHostedDedicatedServer( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_ConnectToHostedDedicatedServer_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPort_params -{ - void *linux_side; - uint16_t _ret; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPort( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPort_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPOPID_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPOPID( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPOPID_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerAddress_params -{ - void *linux_side; - bool _ret; - SteamDatagramHostedAddress *pRouting; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerAddress_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets002_CreateHostedDedicatedServerListenSocket_params -{ - void *linux_side; - uint32_t _ret; - int32_t nVirtualPort; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets002_CreateHostedDedicatedServerListenSocket( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_CreateHostedDedicatedServerListenSocket_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets004.cpp b/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets004.cpp index 9399183d..5a1fb9ae 100644 --- a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets004.cpp +++ b/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets004.cpp @@ -1,178 +1,235 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamNetworkingSockets_SteamNetworkingSockets004.h" -void cppISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketIP( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketIP_params *params ) +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; params->_ret = iface->CreateListenSocketIP( params->localAddress ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets004_ConnectByIPAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_ConnectByIPAddress_params *params ) +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; params->_ret = iface->ConnectByIPAddress( params->address ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketP2P( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketP2P_params *params ) +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; params->_ret = iface->CreateListenSocketP2P( params->nVirtualPort ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets004_ConnectP2P( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_ConnectP2P_params *params ) +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; params->_ret = iface->ConnectP2P( params->identityRemote, params->nVirtualPort ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets004_AcceptConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_AcceptConnection_params *params ) +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; params->_ret = iface->AcceptConnection( params->hConn ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets004_CloseConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_CloseConnection_params *params ) +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; params->_ret = iface->CloseConnection( params->hPeer, params->nReason, params->pszDebug, params->bEnableLinger ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets004_CloseListenSocket( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_CloseListenSocket_params *params ) +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; params->_ret = iface->CloseListenSocket( params->hSocket ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionUserData( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionUserData_params *params ) +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; params->_ret = iface->SetConnectionUserData( params->hPeer, params->nUserData ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionUserData( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionUserData_params *params ) +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; params->_ret = iface->GetConnectionUserData( params->hPeer ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionName( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionName_params *params ) +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; iface->SetConnectionName( params->hPeer, params->pszName ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionName( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionName_params *params ) +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; params->_ret = iface->GetConnectionName( params->hPeer, params->pszName, params->nMaxLen ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets004_SendMessageToConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_SendMessageToConnection_params *params ) +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; params->_ret = iface->SendMessageToConnection( params->hConn, params->pData, params->cbData, params->nSendFlags ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets004_FlushMessagesOnConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_FlushMessagesOnConnection_params *params ) +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; params->_ret = iface->FlushMessagesOnConnection( params->hConn ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionInfo( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionInfo_params *params ) +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; params->_ret = iface->GetConnectionInfo( params->hConn, params->pInfo ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets004_GetQuickConnectionStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetQuickConnectionStatus_params *params ) +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; params->_ret = iface->GetQuickConnectionStatus( params->hConn, params->pStats ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets004_GetDetailedConnectionStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetDetailedConnectionStatus_params *params ) +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; params->_ret = iface->GetDetailedConnectionStatus( params->hConn, params->pszBuf, params->cbBuf ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets004_GetListenSocketAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetListenSocketAddress_params *params ) +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; params->_ret = iface->GetListenSocketAddress( params->hSocket, params->address ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocketPair( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocketPair_params *params ) +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; params->_ret = iface->CreateSocketPair( params->pOutConnection1, params->pOutConnection2, params->bUseNetworkLoopback, params->pIdentity1, params->pIdentity2 ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets004_GetIdentity( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetIdentity_params *params ) +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; params->_ret = iface->GetIdentity( params->pIdentity ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets004_InitAuthentication( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_InitAuthentication_params *params ) +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; params->_ret = iface->InitAuthentication( ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets004_GetAuthenticationStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetAuthenticationStatus_params *params ) +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; params->_ret = iface->GetAuthenticationStatus( params->pDetails ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets004_ReceivedRelayAuthTicket( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_ReceivedRelayAuthTicket_params *params ) +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; params->_ret = iface->ReceivedRelayAuthTicket( params->pvTicket, params->cbTicket, params->pOutParsedTicket ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets004_FindRelayAuthTicketForServer( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_FindRelayAuthTicketForServer_params *params ) +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; params->_ret = iface->FindRelayAuthTicketForServer( params->identityGameServer, params->nVirtualPort, params->pOutParsedTicket ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets004_ConnectToHostedDedicatedServer( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_ConnectToHostedDedicatedServer_params *params ) +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; params->_ret = iface->ConnectToHostedDedicatedServer( params->identityTarget, params->nVirtualPort ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPort( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPort_params *params ) +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; params->_ret = iface->GetHostedDedicatedServerPort( ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPOPID( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPOPID_params *params ) +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; params->_ret = iface->GetHostedDedicatedServerPOPID( ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerAddress_params *params ) +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; params->_ret = iface->GetHostedDedicatedServerAddress( params->pRouting ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets004_CreateHostedDedicatedServerListenSocket( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_CreateHostedDedicatedServerListenSocket_params *params ) +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; params->_ret = iface->CreateHostedDedicatedServerListenSocket( params->nVirtualPort ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets004_GetGameCoordinatorServerLogin( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetGameCoordinatorServerLogin_params *params ) +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; params->_ret = iface->GetGameCoordinatorServerLogin( params->pLoginInfo, params->pcbSignedBlob, params->pBlob ); + return 0; } diff --git a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets004.h b/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets004.h deleted file mode 100644 index 941df757..00000000 --- a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets004.h +++ /dev/null @@ -1,287 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketIP_params -{ - void *linux_side; - uint32_t _ret; - const SteamNetworkingIPAddr *localAddress; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketIP( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketIP_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets004_ConnectByIPAddress_params -{ - void *linux_side; - uint32_t _ret; - const SteamNetworkingIPAddr *address; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets004_ConnectByIPAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_ConnectByIPAddress_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketP2P_params -{ - void *linux_side; - uint32_t _ret; - int32_t nVirtualPort; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketP2P( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketP2P_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets004_ConnectP2P_params -{ - void *linux_side; - uint32_t _ret; - const SteamNetworkingIdentity_144 *identityRemote; - int32_t nVirtualPort; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets004_ConnectP2P( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_ConnectP2P_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets004_AcceptConnection_params -{ - void *linux_side; - uint32_t _ret; - uint32_t hConn; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets004_AcceptConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_AcceptConnection_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets004_CloseConnection_params -{ - void *linux_side; - bool _ret; - uint32_t hPeer; - int32_t nReason; - const char *pszDebug; - bool bEnableLinger; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets004_CloseConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_CloseConnection_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets004_CloseListenSocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets004_CloseListenSocket( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_CloseListenSocket_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionUserData_params -{ - void *linux_side; - bool _ret; - uint32_t hPeer; - int64_t nUserData; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionUserData( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionUserData_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionUserData_params -{ - void *linux_side; - int64_t _ret; - uint32_t hPeer; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionUserData( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionUserData_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionName_params -{ - void *linux_side; - uint32_t hPeer; - const char *pszName; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionName( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionName_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionName_params -{ - void *linux_side; - bool _ret; - uint32_t hPeer; - char *pszName; - int32_t nMaxLen; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionName( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionName_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets004_SendMessageToConnection_params -{ - void *linux_side; - uint32_t _ret; - uint32_t hConn; - const void *pData; - uint32_t cbData; - int32_t nSendFlags; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets004_SendMessageToConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_SendMessageToConnection_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets004_FlushMessagesOnConnection_params -{ - void *linux_side; - uint32_t _ret; - uint32_t hConn; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets004_FlushMessagesOnConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_FlushMessagesOnConnection_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnConnection_params -{ - void *linux_side; - int32_t _ret; - uint32_t hConn; - w_SteamNetworkingMessage_t_144 **ppOutMessages; - int32_t nMaxMessages; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnConnection_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnListenSocket_params -{ - void *linux_side; - int32_t _ret; - uint32_t hSocket; - w_SteamNetworkingMessage_t_144 **ppOutMessages; - int32_t nMaxMessages; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnListenSocket( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnListenSocket_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionInfo_params -{ - void *linux_side; - bool _ret; - uint32_t hConn; - SteamNetConnectionInfo_t_144 *pInfo; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionInfo( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionInfo_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetQuickConnectionStatus_params -{ - void *linux_side; - bool _ret; - uint32_t hConn; - SteamNetworkingQuickConnectionStatus *pStats; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets004_GetQuickConnectionStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetQuickConnectionStatus_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetDetailedConnectionStatus_params -{ - void *linux_side; - int32_t _ret; - uint32_t hConn; - char *pszBuf; - int32_t cbBuf; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets004_GetDetailedConnectionStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetDetailedConnectionStatus_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetListenSocketAddress_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - SteamNetworkingIPAddr *address; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets004_GetListenSocketAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetListenSocketAddress_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocketPair_params -{ - void *linux_side; - bool _ret; - uint32_t *pOutConnection1; - uint32_t *pOutConnection2; - bool bUseNetworkLoopback; - const SteamNetworkingIdentity_144 *pIdentity1; - const SteamNetworkingIdentity_144 *pIdentity2; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocketPair( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocketPair_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetIdentity_params -{ - void *linux_side; - bool _ret; - SteamNetworkingIdentity_144 *pIdentity; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets004_GetIdentity( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetIdentity_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets004_InitAuthentication_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets004_InitAuthentication( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_InitAuthentication_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetAuthenticationStatus_params -{ - void *linux_side; - uint32_t _ret; - SteamNetAuthenticationStatus_t *pDetails; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets004_GetAuthenticationStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetAuthenticationStatus_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets004_ReceivedRelayAuthTicket_params -{ - void *linux_side; - bool _ret; - const void *pvTicket; - int32_t cbTicket; - SteamDatagramRelayAuthTicket *pOutParsedTicket; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets004_ReceivedRelayAuthTicket( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_ReceivedRelayAuthTicket_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets004_FindRelayAuthTicketForServer_params -{ - void *linux_side; - int32_t _ret; - const SteamNetworkingIdentity_144 *identityGameServer; - int32_t nVirtualPort; - SteamDatagramRelayAuthTicket *pOutParsedTicket; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets004_FindRelayAuthTicketForServer( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_FindRelayAuthTicketForServer_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets004_ConnectToHostedDedicatedServer_params -{ - void *linux_side; - uint32_t _ret; - const SteamNetworkingIdentity_144 *identityTarget; - int32_t nVirtualPort; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets004_ConnectToHostedDedicatedServer( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_ConnectToHostedDedicatedServer_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPort_params -{ - void *linux_side; - uint16_t _ret; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPort( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPort_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPOPID_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPOPID( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPOPID_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerAddress_params -{ - void *linux_side; - uint32_t _ret; - SteamDatagramHostedAddress *pRouting; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerAddress_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets004_CreateHostedDedicatedServerListenSocket_params -{ - void *linux_side; - uint32_t _ret; - int32_t nVirtualPort; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets004_CreateHostedDedicatedServerListenSocket( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_CreateHostedDedicatedServerListenSocket_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetGameCoordinatorServerLogin_params -{ - void *linux_side; - uint32_t _ret; - SteamDatagramGameCoordinatorServerLogin *pLoginInfo; - int32_t *pcbSignedBlob; - void *pBlob; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets004_GetGameCoordinatorServerLogin( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetGameCoordinatorServerLogin_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets006.cpp b/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets006.cpp index cc2c0c8a..68761d5a 100644 --- a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets006.cpp +++ b/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets006.cpp @@ -1,192 +1,253 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamNetworkingSockets_SteamNetworkingSockets006.h" -void cppISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketIP( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketIP_params *params ) +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; params->_ret = iface->CreateListenSocketIP( params->localAddress, params->nOptions, params->pOptions ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_ConnectByIPAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ConnectByIPAddress_params *params ) +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; params->_ret = iface->ConnectByIPAddress( params->address, params->nOptions, params->pOptions ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketP2P( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketP2P_params *params ) +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; params->_ret = iface->CreateListenSocketP2P( params->nVirtualPort, params->nOptions, params->pOptions ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2P( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2P_params *params ) +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; params->_ret = iface->ConnectP2P( params->identityRemote, params->nVirtualPort, params->nOptions, params->pOptions ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_AcceptConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_AcceptConnection_params *params ) +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; params->_ret = iface->AcceptConnection( params->hConn ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_CloseConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_CloseConnection_params *params ) +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; params->_ret = iface->CloseConnection( params->hPeer, params->nReason, params->pszDebug, params->bEnableLinger ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_CloseListenSocket( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_CloseListenSocket_params *params ) +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; params->_ret = iface->CloseListenSocket( params->hSocket ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionUserData( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionUserData_params *params ) +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; params->_ret = iface->SetConnectionUserData( params->hPeer, params->nUserData ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionUserData( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionUserData_params *params ) +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; params->_ret = iface->GetConnectionUserData( params->hPeer ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionName( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionName_params *params ) +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; iface->SetConnectionName( params->hPeer, params->pszName ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionName( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionName_params *params ) +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; params->_ret = iface->GetConnectionName( params->hPeer, params->pszName, params->nMaxLen ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_SendMessageToConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_SendMessageToConnection_params *params ) +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; params->_ret = iface->SendMessageToConnection( params->hConn, params->pData, params->cbData, params->nSendFlags, params->pOutMessageNumber ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_FlushMessagesOnConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_FlushMessagesOnConnection_params *params ) +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; params->_ret = iface->FlushMessagesOnConnection( params->hConn ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionInfo( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionInfo_params *params ) +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; params->_ret = iface->GetConnectionInfo( params->hConn, params->pInfo ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_GetQuickConnectionStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetQuickConnectionStatus_params *params ) +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; params->_ret = iface->GetQuickConnectionStatus( params->hConn, params->pStats ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_GetDetailedConnectionStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetDetailedConnectionStatus_params *params ) +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; params->_ret = iface->GetDetailedConnectionStatus( params->hConn, params->pszBuf, params->cbBuf ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_GetListenSocketAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetListenSocketAddress_params *params ) +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; params->_ret = iface->GetListenSocketAddress( params->hSocket, params->address ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocketPair( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocketPair_params *params ) +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; params->_ret = iface->CreateSocketPair( params->pOutConnection1, params->pOutConnection2, params->bUseNetworkLoopback, params->pIdentity1, params->pIdentity2 ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_GetIdentity( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetIdentity_params *params ) +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; params->_ret = iface->GetIdentity( params->pIdentity ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_InitAuthentication( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_InitAuthentication_params *params ) +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; params->_ret = iface->InitAuthentication( ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_GetAuthenticationStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetAuthenticationStatus_params *params ) +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; params->_ret = iface->GetAuthenticationStatus( params->pDetails ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedRelayAuthTicket( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedRelayAuthTicket_params *params ) +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; params->_ret = iface->ReceivedRelayAuthTicket( params->pvTicket, params->cbTicket, params->pOutParsedTicket ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_FindRelayAuthTicketForServer( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_FindRelayAuthTicketForServer_params *params ) +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; params->_ret = iface->FindRelayAuthTicketForServer( params->identityGameServer, params->nVirtualPort, params->pOutParsedTicket ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_ConnectToHostedDedicatedServer( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ConnectToHostedDedicatedServer_params *params ) +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; params->_ret = iface->ConnectToHostedDedicatedServer( params->identityTarget, params->nVirtualPort, params->nOptions, params->pOptions ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPort( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPort_params *params ) +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; params->_ret = iface->GetHostedDedicatedServerPort( ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPOPID( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPOPID_params *params ) +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; params->_ret = iface->GetHostedDedicatedServerPOPID( ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerAddress_params *params ) +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; params->_ret = iface->GetHostedDedicatedServerAddress( params->pRouting ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_CreateHostedDedicatedServerListenSocket( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_CreateHostedDedicatedServerListenSocket_params *params ) +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; params->_ret = iface->CreateHostedDedicatedServerListenSocket( params->nVirtualPort, params->nOptions, params->pOptions ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_GetGameCoordinatorServerLogin( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetGameCoordinatorServerLogin_params *params ) +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; params->_ret = iface->GetGameCoordinatorServerLogin( params->pLoginInfo, params->pcbSignedBlob, params->pBlob ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2PCustomSignaling( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2PCustomSignaling_params *params ) +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; u_ISteamNetworkingConnectionCustomSignaling *u_pSignaling = create_LinuxISteamNetworkingConnectionCustomSignaling( params->pSignaling, "ISteamNetworkingSockets_SteamNetworkingSockets006" ); params->_ret = iface->ConnectP2PCustomSignaling( u_pSignaling, params->pPeerIdentity, params->nOptions, params->pOptions ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP2PCustomSignal( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP2PCustomSignal_params *params ) +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; u_ISteamNetworkingCustomSignalingRecvContext *u_pContext = create_LinuxISteamNetworkingCustomSignalingRecvContext( params->pContext, "ISteamNetworkingSockets_SteamNetworkingSockets006" ); params->_ret = iface->ReceivedP2PCustomSignal( params->pMsg, params->cbMsg, u_pContext ); + return 0; } diff --git a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets006.h b/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets006.h deleted file mode 100644 index b0af0fcf..00000000 --- a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets006.h +++ /dev/null @@ -1,330 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketIP_params -{ - void *linux_side; - uint32_t _ret; - const SteamNetworkingIPAddr *localAddress; - int32_t nOptions; - const SteamNetworkingConfigValue_t *pOptions; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketIP( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketIP_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ConnectByIPAddress_params -{ - void *linux_side; - uint32_t _ret; - const SteamNetworkingIPAddr *address; - int32_t nOptions; - const SteamNetworkingConfigValue_t *pOptions; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_ConnectByIPAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ConnectByIPAddress_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketP2P_params -{ - void *linux_side; - uint32_t _ret; - int32_t nVirtualPort; - int32_t nOptions; - const SteamNetworkingConfigValue_t *pOptions; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketP2P( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketP2P_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2P_params -{ - void *linux_side; - uint32_t _ret; - const SteamNetworkingIdentity_144 *identityRemote; - int32_t nVirtualPort; - int32_t nOptions; - const SteamNetworkingConfigValue_t *pOptions; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2P( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2P_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_AcceptConnection_params -{ - void *linux_side; - uint32_t _ret; - uint32_t hConn; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_AcceptConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_AcceptConnection_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_CloseConnection_params -{ - void *linux_side; - bool _ret; - uint32_t hPeer; - int32_t nReason; - const char *pszDebug; - bool bEnableLinger; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_CloseConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_CloseConnection_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_CloseListenSocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_CloseListenSocket( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_CloseListenSocket_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionUserData_params -{ - void *linux_side; - bool _ret; - uint32_t hPeer; - int64_t nUserData; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionUserData( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionUserData_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionUserData_params -{ - void *linux_side; - int64_t _ret; - uint32_t hPeer; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionUserData( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionUserData_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionName_params -{ - void *linux_side; - uint32_t hPeer; - const char *pszName; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionName( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionName_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionName_params -{ - void *linux_side; - bool _ret; - uint32_t hPeer; - char *pszName; - int32_t nMaxLen; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionName( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionName_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_SendMessageToConnection_params -{ - void *linux_side; - uint32_t _ret; - uint32_t hConn; - const void *pData; - uint32_t cbData; - int32_t nSendFlags; - int64_t *pOutMessageNumber; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_SendMessageToConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_SendMessageToConnection_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_SendMessages_params -{ - void *linux_side; - int32_t nMessages; - w_SteamNetworkingMessage_t_147 **pMessages; - int64_t *pOutMessageNumberOrResult; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_SendMessages( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_SendMessages_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_FlushMessagesOnConnection_params -{ - void *linux_side; - uint32_t _ret; - uint32_t hConn; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_FlushMessagesOnConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_FlushMessagesOnConnection_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnConnection_params -{ - void *linux_side; - int32_t _ret; - uint32_t hConn; - w_SteamNetworkingMessage_t_147 **ppOutMessages; - int32_t nMaxMessages; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnConnection_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnListenSocket_params -{ - void *linux_side; - int32_t _ret; - uint32_t hSocket; - w_SteamNetworkingMessage_t_147 **ppOutMessages; - int32_t nMaxMessages; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnListenSocket( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnListenSocket_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionInfo_params -{ - void *linux_side; - bool _ret; - uint32_t hConn; - SteamNetConnectionInfo_t_144 *pInfo; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionInfo( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionInfo_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetQuickConnectionStatus_params -{ - void *linux_side; - bool _ret; - uint32_t hConn; - SteamNetworkingQuickConnectionStatus *pStats; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_GetQuickConnectionStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetQuickConnectionStatus_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetDetailedConnectionStatus_params -{ - void *linux_side; - int32_t _ret; - uint32_t hConn; - char *pszBuf; - int32_t cbBuf; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_GetDetailedConnectionStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetDetailedConnectionStatus_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetListenSocketAddress_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - SteamNetworkingIPAddr *address; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_GetListenSocketAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetListenSocketAddress_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocketPair_params -{ - void *linux_side; - bool _ret; - uint32_t *pOutConnection1; - uint32_t *pOutConnection2; - bool bUseNetworkLoopback; - const SteamNetworkingIdentity_144 *pIdentity1; - const SteamNetworkingIdentity_144 *pIdentity2; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocketPair( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocketPair_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetIdentity_params -{ - void *linux_side; - bool _ret; - SteamNetworkingIdentity_144 *pIdentity; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_GetIdentity( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetIdentity_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_InitAuthentication_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_InitAuthentication( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_InitAuthentication_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetAuthenticationStatus_params -{ - void *linux_side; - uint32_t _ret; - SteamNetAuthenticationStatus_t *pDetails; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_GetAuthenticationStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetAuthenticationStatus_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedRelayAuthTicket_params -{ - void *linux_side; - bool _ret; - const void *pvTicket; - int32_t cbTicket; - SteamDatagramRelayAuthTicket *pOutParsedTicket; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedRelayAuthTicket( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedRelayAuthTicket_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_FindRelayAuthTicketForServer_params -{ - void *linux_side; - int32_t _ret; - const SteamNetworkingIdentity_144 *identityGameServer; - int32_t nVirtualPort; - SteamDatagramRelayAuthTicket *pOutParsedTicket; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_FindRelayAuthTicketForServer( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_FindRelayAuthTicketForServer_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ConnectToHostedDedicatedServer_params -{ - void *linux_side; - uint32_t _ret; - const SteamNetworkingIdentity_144 *identityTarget; - int32_t nVirtualPort; - int32_t nOptions; - const SteamNetworkingConfigValue_t *pOptions; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_ConnectToHostedDedicatedServer( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ConnectToHostedDedicatedServer_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPort_params -{ - void *linux_side; - uint16_t _ret; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPort( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPort_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPOPID_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPOPID( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPOPID_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerAddress_params -{ - void *linux_side; - uint32_t _ret; - SteamDatagramHostedAddress *pRouting; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerAddress_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_CreateHostedDedicatedServerListenSocket_params -{ - void *linux_side; - uint32_t _ret; - int32_t nVirtualPort; - int32_t nOptions; - const SteamNetworkingConfigValue_t *pOptions; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_CreateHostedDedicatedServerListenSocket( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_CreateHostedDedicatedServerListenSocket_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetGameCoordinatorServerLogin_params -{ - void *linux_side; - uint32_t _ret; - SteamDatagramGameCoordinatorServerLogin *pLoginInfo; - int32_t *pcbSignedBlob; - void *pBlob; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_GetGameCoordinatorServerLogin( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetGameCoordinatorServerLogin_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2PCustomSignaling_params -{ - void *linux_side; - uint32_t _ret; - w_ISteamNetworkingConnectionCustomSignaling *pSignaling; - const SteamNetworkingIdentity_144 *pPeerIdentity; - int32_t nOptions; - const SteamNetworkingConfigValue_t *pOptions; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2PCustomSignaling( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2PCustomSignaling_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP2PCustomSignal_params -{ - void *linux_side; - bool _ret; - const void *pMsg; - int32_t cbMsg; - w_ISteamNetworkingCustomSignalingRecvContext *pContext; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP2PCustomSignal( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP2PCustomSignal_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets008.cpp b/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets008.cpp index a085b775..d809c346 100644 --- a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets008.cpp +++ b/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets008.cpp @@ -1,222 +1,293 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamNetworkingSockets_SteamNetworkingSockets008.h" -void cppISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketIP( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketIP_params *params ) +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; params->_ret = iface->CreateListenSocketIP( params->localAddress, params->nOptions, params->pOptions ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_ConnectByIPAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ConnectByIPAddress_params *params ) +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; params->_ret = iface->ConnectByIPAddress( params->address, params->nOptions, params->pOptions ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketP2P( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketP2P_params *params ) +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; params->_ret = iface->CreateListenSocketP2P( params->nVirtualPort, params->nOptions, params->pOptions ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2P( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2P_params *params ) +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; params->_ret = iface->ConnectP2P( params->identityRemote, params->nVirtualPort, params->nOptions, params->pOptions ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_AcceptConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_AcceptConnection_params *params ) +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; params->_ret = iface->AcceptConnection( params->hConn ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_CloseConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_CloseConnection_params *params ) +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; params->_ret = iface->CloseConnection( params->hPeer, params->nReason, params->pszDebug, params->bEnableLinger ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_CloseListenSocket( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_CloseListenSocket_params *params ) +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; params->_ret = iface->CloseListenSocket( params->hSocket ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionUserData( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionUserData_params *params ) +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; params->_ret = iface->SetConnectionUserData( params->hPeer, params->nUserData ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionUserData( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionUserData_params *params ) +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; params->_ret = iface->GetConnectionUserData( params->hPeer ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionName( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionName_params *params ) +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; iface->SetConnectionName( params->hPeer, params->pszName ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionName( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionName_params *params ) +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; params->_ret = iface->GetConnectionName( params->hPeer, params->pszName, params->nMaxLen ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_SendMessageToConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_SendMessageToConnection_params *params ) +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; params->_ret = iface->SendMessageToConnection( params->hConn, params->pData, params->cbData, params->nSendFlags, params->pOutMessageNumber ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_FlushMessagesOnConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_FlushMessagesOnConnection_params *params ) +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; params->_ret = iface->FlushMessagesOnConnection( params->hConn ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionInfo( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionInfo_params *params ) +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; params->_ret = iface->GetConnectionInfo( params->hConn, params->pInfo ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_GetQuickConnectionStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetQuickConnectionStatus_params *params ) +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; params->_ret = iface->GetQuickConnectionStatus( params->hConn, params->pStats ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_GetDetailedConnectionStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetDetailedConnectionStatus_params *params ) +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; params->_ret = iface->GetDetailedConnectionStatus( params->hConn, params->pszBuf, params->cbBuf ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_GetListenSocketAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetListenSocketAddress_params *params ) +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; params->_ret = iface->GetListenSocketAddress( params->hSocket, params->address ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocketPair( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocketPair_params *params ) +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; params->_ret = iface->CreateSocketPair( params->pOutConnection1, params->pOutConnection2, params->bUseNetworkLoopback, params->pIdentity1, params->pIdentity2 ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_GetIdentity( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetIdentity_params *params ) +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; params->_ret = iface->GetIdentity( params->pIdentity ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_InitAuthentication( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_InitAuthentication_params *params ) +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; params->_ret = iface->InitAuthentication( ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_GetAuthenticationStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetAuthenticationStatus_params *params ) +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; params->_ret = iface->GetAuthenticationStatus( params->pDetails ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_CreatePollGroup( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_CreatePollGroup_params *params ) +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; params->_ret = iface->CreatePollGroup( ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_DestroyPollGroup( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_DestroyPollGroup_params *params ) +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; params->_ret = iface->DestroyPollGroup( params->hPollGroup ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionPollGroup( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionPollGroup_params *params ) +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; params->_ret = iface->SetConnectionPollGroup( params->hConn, params->hPollGroup ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedRelayAuthTicket( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedRelayAuthTicket_params *params ) +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; params->_ret = iface->ReceivedRelayAuthTicket( params->pvTicket, params->cbTicket, params->pOutParsedTicket ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_FindRelayAuthTicketForServer( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_FindRelayAuthTicketForServer_params *params ) +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; params->_ret = iface->FindRelayAuthTicketForServer( params->identityGameServer, params->nVirtualPort, params->pOutParsedTicket ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_ConnectToHostedDedicatedServer( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ConnectToHostedDedicatedServer_params *params ) +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; params->_ret = iface->ConnectToHostedDedicatedServer( params->identityTarget, params->nVirtualPort, params->nOptions, params->pOptions ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPort( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPort_params *params ) +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; params->_ret = iface->GetHostedDedicatedServerPort( ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPOPID( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPOPID_params *params ) +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; params->_ret = iface->GetHostedDedicatedServerPOPID( ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerAddress_params *params ) +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; params->_ret = iface->GetHostedDedicatedServerAddress( params->pRouting ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_CreateHostedDedicatedServerListenSocket( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_CreateHostedDedicatedServerListenSocket_params *params ) +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; params->_ret = iface->CreateHostedDedicatedServerListenSocket( params->nVirtualPort, params->nOptions, params->pOptions ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_GetGameCoordinatorServerLogin( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetGameCoordinatorServerLogin_params *params ) +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; params->_ret = iface->GetGameCoordinatorServerLogin( params->pLoginInfo, params->pcbSignedBlob, params->pBlob ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2PCustomSignaling( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2PCustomSignaling_params *params ) +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; u_ISteamNetworkingConnectionCustomSignaling *u_pSignaling = create_LinuxISteamNetworkingConnectionCustomSignaling( params->pSignaling, "ISteamNetworkingSockets_SteamNetworkingSockets008" ); params->_ret = iface->ConnectP2PCustomSignaling( u_pSignaling, params->pPeerIdentity, params->nOptions, params->pOptions ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP2PCustomSignal( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP2PCustomSignal_params *params ) +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; u_ISteamNetworkingCustomSignalingRecvContext *u_pContext = create_LinuxISteamNetworkingCustomSignalingRecvContext( params->pContext, "ISteamNetworkingSockets_SteamNetworkingSockets008" ); params->_ret = iface->ReceivedP2PCustomSignal( params->pMsg, params->cbMsg, u_pContext ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_GetCertificateRequest( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetCertificateRequest_params *params ) +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; params->_ret = iface->GetCertificateRequest( params->pcbBlob, params->pBlob, params->errMsg ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_SetCertificate( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_SetCertificate_params *params ) +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; params->_ret = iface->SetCertificate( params->pCertificate, params->cbCertificate, params->errMsg ); + return 0; } diff --git a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets008.h b/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets008.h deleted file mode 100644 index 8d0d511f..00000000 --- a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets008.h +++ /dev/null @@ -1,374 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketIP_params -{ - void *linux_side; - uint32_t _ret; - const SteamNetworkingIPAddr *localAddress; - int32_t nOptions; - const SteamNetworkingConfigValue_t *pOptions; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketIP( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketIP_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ConnectByIPAddress_params -{ - void *linux_side; - uint32_t _ret; - const SteamNetworkingIPAddr *address; - int32_t nOptions; - const SteamNetworkingConfigValue_t *pOptions; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_ConnectByIPAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ConnectByIPAddress_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketP2P_params -{ - void *linux_side; - uint32_t _ret; - int32_t nVirtualPort; - int32_t nOptions; - const SteamNetworkingConfigValue_t *pOptions; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketP2P( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketP2P_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2P_params -{ - void *linux_side; - uint32_t _ret; - const SteamNetworkingIdentity_144 *identityRemote; - int32_t nVirtualPort; - int32_t nOptions; - const SteamNetworkingConfigValue_t *pOptions; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2P( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2P_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_AcceptConnection_params -{ - void *linux_side; - uint32_t _ret; - uint32_t hConn; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_AcceptConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_AcceptConnection_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_CloseConnection_params -{ - void *linux_side; - bool _ret; - uint32_t hPeer; - int32_t nReason; - const char *pszDebug; - bool bEnableLinger; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_CloseConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_CloseConnection_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_CloseListenSocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_CloseListenSocket( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_CloseListenSocket_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionUserData_params -{ - void *linux_side; - bool _ret; - uint32_t hPeer; - int64_t nUserData; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionUserData( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionUserData_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionUserData_params -{ - void *linux_side; - int64_t _ret; - uint32_t hPeer; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionUserData( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionUserData_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionName_params -{ - void *linux_side; - uint32_t hPeer; - const char *pszName; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionName( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionName_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionName_params -{ - void *linux_side; - bool _ret; - uint32_t hPeer; - char *pszName; - int32_t nMaxLen; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionName( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionName_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_SendMessageToConnection_params -{ - void *linux_side; - uint32_t _ret; - uint32_t hConn; - const void *pData; - uint32_t cbData; - int32_t nSendFlags; - int64_t *pOutMessageNumber; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_SendMessageToConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_SendMessageToConnection_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_SendMessages_params -{ - void *linux_side; - int32_t nMessages; - w_SteamNetworkingMessage_t_147 *const *pMessages; - int64_t *pOutMessageNumberOrResult; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_SendMessages( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_SendMessages_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_FlushMessagesOnConnection_params -{ - void *linux_side; - uint32_t _ret; - uint32_t hConn; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_FlushMessagesOnConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_FlushMessagesOnConnection_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnConnection_params -{ - void *linux_side; - int32_t _ret; - uint32_t hConn; - w_SteamNetworkingMessage_t_147 **ppOutMessages; - int32_t nMaxMessages; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnConnection_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionInfo_params -{ - void *linux_side; - bool _ret; - uint32_t hConn; - SteamNetConnectionInfo_t_144 *pInfo; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionInfo( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionInfo_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetQuickConnectionStatus_params -{ - void *linux_side; - bool _ret; - uint32_t hConn; - SteamNetworkingQuickConnectionStatus *pStats; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_GetQuickConnectionStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetQuickConnectionStatus_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetDetailedConnectionStatus_params -{ - void *linux_side; - int32_t _ret; - uint32_t hConn; - char *pszBuf; - int32_t cbBuf; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_GetDetailedConnectionStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetDetailedConnectionStatus_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetListenSocketAddress_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - SteamNetworkingIPAddr *address; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_GetListenSocketAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetListenSocketAddress_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocketPair_params -{ - void *linux_side; - bool _ret; - uint32_t *pOutConnection1; - uint32_t *pOutConnection2; - bool bUseNetworkLoopback; - const SteamNetworkingIdentity_144 *pIdentity1; - const SteamNetworkingIdentity_144 *pIdentity2; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocketPair( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocketPair_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetIdentity_params -{ - void *linux_side; - bool _ret; - SteamNetworkingIdentity_144 *pIdentity; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_GetIdentity( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetIdentity_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_InitAuthentication_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_InitAuthentication( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_InitAuthentication_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetAuthenticationStatus_params -{ - void *linux_side; - uint32_t _ret; - SteamNetAuthenticationStatus_t *pDetails; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_GetAuthenticationStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetAuthenticationStatus_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_CreatePollGroup_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_CreatePollGroup( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_CreatePollGroup_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_DestroyPollGroup_params -{ - void *linux_side; - bool _ret; - uint32_t hPollGroup; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_DestroyPollGroup( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_DestroyPollGroup_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionPollGroup_params -{ - void *linux_side; - bool _ret; - uint32_t hConn; - uint32_t hPollGroup; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionPollGroup( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionPollGroup_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnPollGroup_params -{ - void *linux_side; - int32_t _ret; - uint32_t hPollGroup; - w_SteamNetworkingMessage_t_147 **ppOutMessages; - int32_t nMaxMessages; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnPollGroup( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnPollGroup_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedRelayAuthTicket_params -{ - void *linux_side; - bool _ret; - const void *pvTicket; - int32_t cbTicket; - SteamDatagramRelayAuthTicket *pOutParsedTicket; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedRelayAuthTicket( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedRelayAuthTicket_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_FindRelayAuthTicketForServer_params -{ - void *linux_side; - int32_t _ret; - const SteamNetworkingIdentity_144 *identityGameServer; - int32_t nVirtualPort; - SteamDatagramRelayAuthTicket *pOutParsedTicket; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_FindRelayAuthTicketForServer( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_FindRelayAuthTicketForServer_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ConnectToHostedDedicatedServer_params -{ - void *linux_side; - uint32_t _ret; - const SteamNetworkingIdentity_144 *identityTarget; - int32_t nVirtualPort; - int32_t nOptions; - const SteamNetworkingConfigValue_t *pOptions; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_ConnectToHostedDedicatedServer( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ConnectToHostedDedicatedServer_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPort_params -{ - void *linux_side; - uint16_t _ret; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPort( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPort_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPOPID_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPOPID( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPOPID_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerAddress_params -{ - void *linux_side; - uint32_t _ret; - SteamDatagramHostedAddress *pRouting; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerAddress_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_CreateHostedDedicatedServerListenSocket_params -{ - void *linux_side; - uint32_t _ret; - int32_t nVirtualPort; - int32_t nOptions; - const SteamNetworkingConfigValue_t *pOptions; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_CreateHostedDedicatedServerListenSocket( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_CreateHostedDedicatedServerListenSocket_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetGameCoordinatorServerLogin_params -{ - void *linux_side; - uint32_t _ret; - SteamDatagramGameCoordinatorServerLogin *pLoginInfo; - int32_t *pcbSignedBlob; - void *pBlob; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_GetGameCoordinatorServerLogin( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetGameCoordinatorServerLogin_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2PCustomSignaling_params -{ - void *linux_side; - uint32_t _ret; - w_ISteamNetworkingConnectionCustomSignaling *pSignaling; - const SteamNetworkingIdentity_144 *pPeerIdentity; - int32_t nOptions; - const SteamNetworkingConfigValue_t *pOptions; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2PCustomSignaling( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2PCustomSignaling_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP2PCustomSignal_params -{ - void *linux_side; - bool _ret; - const void *pMsg; - int32_t cbMsg; - w_ISteamNetworkingCustomSignalingRecvContext *pContext; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP2PCustomSignal( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP2PCustomSignal_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetCertificateRequest_params -{ - void *linux_side; - bool _ret; - int32_t *pcbBlob; - void *pBlob; - char (*errMsg)[1024]; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_GetCertificateRequest( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetCertificateRequest_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets008_SetCertificate_params -{ - void *linux_side; - bool _ret; - const void *pCertificate; - int32_t cbCertificate; - char (*errMsg)[1024]; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets008_SetCertificate( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_SetCertificate_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets009.cpp b/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets009.cpp index 35e8cfde..cbfedd29 100644 --- a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets009.cpp +++ b/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets009.cpp @@ -1,226 +1,299 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamNetworkingSockets_SteamNetworkingSockets009.h" -void cppISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketIP( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketIP_params *params ) +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; params->_ret = iface->CreateListenSocketIP( params->localAddress, params->nOptions, params->pOptions ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_ConnectByIPAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ConnectByIPAddress_params *params ) +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; params->_ret = iface->ConnectByIPAddress( params->address, params->nOptions, params->pOptions ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketP2P( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketP2P_params *params ) +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; params->_ret = iface->CreateListenSocketP2P( params->nLocalVirtualPort, params->nOptions, params->pOptions ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2P( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2P_params *params ) +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; params->_ret = iface->ConnectP2P( params->identityRemote, params->nRemoteVirtualPort, params->nOptions, params->pOptions ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_AcceptConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_AcceptConnection_params *params ) +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; params->_ret = iface->AcceptConnection( params->hConn ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_CloseConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_CloseConnection_params *params ) +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; params->_ret = iface->CloseConnection( params->hPeer, params->nReason, params->pszDebug, params->bEnableLinger ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_CloseListenSocket( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_CloseListenSocket_params *params ) +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; params->_ret = iface->CloseListenSocket( params->hSocket ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionUserData( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionUserData_params *params ) +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; params->_ret = iface->SetConnectionUserData( params->hPeer, params->nUserData ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionUserData( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionUserData_params *params ) +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; params->_ret = iface->GetConnectionUserData( params->hPeer ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionName( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionName_params *params ) +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; iface->SetConnectionName( params->hPeer, params->pszName ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionName( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionName_params *params ) +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; params->_ret = iface->GetConnectionName( params->hPeer, params->pszName, params->nMaxLen ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_SendMessageToConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_SendMessageToConnection_params *params ) +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; params->_ret = iface->SendMessageToConnection( params->hConn, params->pData, params->cbData, params->nSendFlags, params->pOutMessageNumber ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_FlushMessagesOnConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_FlushMessagesOnConnection_params *params ) +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; params->_ret = iface->FlushMessagesOnConnection( params->hConn ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionInfo( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionInfo_params *params ) +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; params->_ret = iface->GetConnectionInfo( params->hConn, params->pInfo ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_GetQuickConnectionStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetQuickConnectionStatus_params *params ) +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; params->_ret = iface->GetQuickConnectionStatus( params->hConn, params->pStats ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_GetDetailedConnectionStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetDetailedConnectionStatus_params *params ) +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; params->_ret = iface->GetDetailedConnectionStatus( params->hConn, params->pszBuf, params->cbBuf ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_GetListenSocketAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetListenSocketAddress_params *params ) +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; params->_ret = iface->GetListenSocketAddress( params->hSocket, params->address ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocketPair( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocketPair_params *params ) +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; params->_ret = iface->CreateSocketPair( params->pOutConnection1, params->pOutConnection2, params->bUseNetworkLoopback, params->pIdentity1, params->pIdentity2 ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_GetIdentity( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetIdentity_params *params ) +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; params->_ret = iface->GetIdentity( params->pIdentity ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_InitAuthentication( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_InitAuthentication_params *params ) +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; params->_ret = iface->InitAuthentication( ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_GetAuthenticationStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetAuthenticationStatus_params *params ) +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; params->_ret = iface->GetAuthenticationStatus( params->pDetails ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_CreatePollGroup( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_CreatePollGroup_params *params ) +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; params->_ret = iface->CreatePollGroup( ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_DestroyPollGroup( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_DestroyPollGroup_params *params ) +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; params->_ret = iface->DestroyPollGroup( params->hPollGroup ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionPollGroup( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionPollGroup_params *params ) +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; params->_ret = iface->SetConnectionPollGroup( params->hConn, params->hPollGroup ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedRelayAuthTicket( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedRelayAuthTicket_params *params ) +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; params->_ret = iface->ReceivedRelayAuthTicket( params->pvTicket, params->cbTicket, params->pOutParsedTicket ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_FindRelayAuthTicketForServer( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_FindRelayAuthTicketForServer_params *params ) +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; params->_ret = iface->FindRelayAuthTicketForServer( params->identityGameServer, params->nRemoteVirtualPort, params->pOutParsedTicket ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_ConnectToHostedDedicatedServer( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ConnectToHostedDedicatedServer_params *params ) +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; params->_ret = iface->ConnectToHostedDedicatedServer( params->identityTarget, params->nRemoteVirtualPort, params->nOptions, params->pOptions ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPort( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPort_params *params ) +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; params->_ret = iface->GetHostedDedicatedServerPort( ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPOPID( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPOPID_params *params ) +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; params->_ret = iface->GetHostedDedicatedServerPOPID( ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerAddress_params *params ) +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; params->_ret = iface->GetHostedDedicatedServerAddress( params->pRouting ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_CreateHostedDedicatedServerListenSocket( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_CreateHostedDedicatedServerListenSocket_params *params ) +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; params->_ret = iface->CreateHostedDedicatedServerListenSocket( params->nLocalVirtualPort, params->nOptions, params->pOptions ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_GetGameCoordinatorServerLogin( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetGameCoordinatorServerLogin_params *params ) +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; params->_ret = iface->GetGameCoordinatorServerLogin( params->pLoginInfo, params->pcbSignedBlob, params->pBlob ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2PCustomSignaling( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2PCustomSignaling_params *params ) +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; params->_ret = iface->ConnectP2PCustomSignaling( params->pSignaling, params->pPeerIdentity, params->nRemoteVirtualPort, params->nOptions, params->pOptions ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2PCustomSignal( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2PCustomSignal_params *params ) +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; params->_ret = iface->ReceivedP2PCustomSignal( params->pMsg, params->cbMsg, params->pContext ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_GetCertificateRequest( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetCertificateRequest_params *params ) +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; params->_ret = iface->GetCertificateRequest( params->pcbBlob, params->pBlob, params->errMsg ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_SetCertificate( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_SetCertificate_params *params ) +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; params->_ret = iface->SetCertificate( params->pCertificate, params->cbCertificate, params->errMsg ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_RunCallbacks( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_RunCallbacks_params *params ) +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; iface->RunCallbacks( ); + return 0; } diff --git a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets009.h b/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets009.h deleted file mode 100644 index 993dc454..00000000 --- a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets009.h +++ /dev/null @@ -1,381 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketIP_params -{ - void *linux_side; - uint32_t _ret; - const SteamNetworkingIPAddr *localAddress; - int32_t nOptions; - const SteamNetworkingConfigValue_t *pOptions; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketIP( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketIP_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ConnectByIPAddress_params -{ - void *linux_side; - uint32_t _ret; - const SteamNetworkingIPAddr *address; - int32_t nOptions; - const SteamNetworkingConfigValue_t *pOptions; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_ConnectByIPAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ConnectByIPAddress_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketP2P_params -{ - void *linux_side; - uint32_t _ret; - int32_t nLocalVirtualPort; - int32_t nOptions; - const SteamNetworkingConfigValue_t *pOptions; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketP2P( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketP2P_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2P_params -{ - void *linux_side; - uint32_t _ret; - const SteamNetworkingIdentity_144 *identityRemote; - int32_t nRemoteVirtualPort; - int32_t nOptions; - const SteamNetworkingConfigValue_t *pOptions; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2P( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2P_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_AcceptConnection_params -{ - void *linux_side; - uint32_t _ret; - uint32_t hConn; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_AcceptConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_AcceptConnection_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_CloseConnection_params -{ - void *linux_side; - bool _ret; - uint32_t hPeer; - int32_t nReason; - const char *pszDebug; - bool bEnableLinger; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_CloseConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_CloseConnection_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_CloseListenSocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_CloseListenSocket( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_CloseListenSocket_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionUserData_params -{ - void *linux_side; - bool _ret; - uint32_t hPeer; - int64_t nUserData; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionUserData( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionUserData_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionUserData_params -{ - void *linux_side; - int64_t _ret; - uint32_t hPeer; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionUserData( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionUserData_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionName_params -{ - void *linux_side; - uint32_t hPeer; - const char *pszName; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionName( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionName_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionName_params -{ - void *linux_side; - bool _ret; - uint32_t hPeer; - char *pszName; - int32_t nMaxLen; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionName( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionName_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_SendMessageToConnection_params -{ - void *linux_side; - uint32_t _ret; - uint32_t hConn; - const void *pData; - uint32_t cbData; - int32_t nSendFlags; - int64_t *pOutMessageNumber; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_SendMessageToConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_SendMessageToConnection_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_SendMessages_params -{ - void *linux_side; - int32_t nMessages; - w_SteamNetworkingMessage_t_147 *const *pMessages; - int64_t *pOutMessageNumberOrResult; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_SendMessages( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_SendMessages_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_FlushMessagesOnConnection_params -{ - void *linux_side; - uint32_t _ret; - uint32_t hConn; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_FlushMessagesOnConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_FlushMessagesOnConnection_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnConnection_params -{ - void *linux_side; - int32_t _ret; - uint32_t hConn; - w_SteamNetworkingMessage_t_147 **ppOutMessages; - int32_t nMaxMessages; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnConnection_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionInfo_params -{ - void *linux_side; - bool _ret; - uint32_t hConn; - SteamNetConnectionInfo_t_144 *pInfo; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionInfo( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionInfo_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetQuickConnectionStatus_params -{ - void *linux_side; - bool _ret; - uint32_t hConn; - SteamNetworkingQuickConnectionStatus *pStats; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_GetQuickConnectionStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetQuickConnectionStatus_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetDetailedConnectionStatus_params -{ - void *linux_side; - int32_t _ret; - uint32_t hConn; - char *pszBuf; - int32_t cbBuf; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_GetDetailedConnectionStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetDetailedConnectionStatus_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetListenSocketAddress_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - SteamNetworkingIPAddr *address; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_GetListenSocketAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetListenSocketAddress_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocketPair_params -{ - void *linux_side; - bool _ret; - uint32_t *pOutConnection1; - uint32_t *pOutConnection2; - bool bUseNetworkLoopback; - const SteamNetworkingIdentity_144 *pIdentity1; - const SteamNetworkingIdentity_144 *pIdentity2; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocketPair( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocketPair_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetIdentity_params -{ - void *linux_side; - bool _ret; - SteamNetworkingIdentity_144 *pIdentity; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_GetIdentity( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetIdentity_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_InitAuthentication_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_InitAuthentication( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_InitAuthentication_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetAuthenticationStatus_params -{ - void *linux_side; - uint32_t _ret; - SteamNetAuthenticationStatus_t *pDetails; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_GetAuthenticationStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetAuthenticationStatus_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_CreatePollGroup_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_CreatePollGroup( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_CreatePollGroup_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_DestroyPollGroup_params -{ - void *linux_side; - bool _ret; - uint32_t hPollGroup; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_DestroyPollGroup( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_DestroyPollGroup_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionPollGroup_params -{ - void *linux_side; - bool _ret; - uint32_t hConn; - uint32_t hPollGroup; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionPollGroup( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionPollGroup_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnPollGroup_params -{ - void *linux_side; - int32_t _ret; - uint32_t hPollGroup; - w_SteamNetworkingMessage_t_147 **ppOutMessages; - int32_t nMaxMessages; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnPollGroup( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnPollGroup_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedRelayAuthTicket_params -{ - void *linux_side; - bool _ret; - const void *pvTicket; - int32_t cbTicket; - SteamDatagramRelayAuthTicket *pOutParsedTicket; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedRelayAuthTicket( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedRelayAuthTicket_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_FindRelayAuthTicketForServer_params -{ - void *linux_side; - int32_t _ret; - const SteamNetworkingIdentity_144 *identityGameServer; - int32_t nRemoteVirtualPort; - SteamDatagramRelayAuthTicket *pOutParsedTicket; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_FindRelayAuthTicketForServer( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_FindRelayAuthTicketForServer_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ConnectToHostedDedicatedServer_params -{ - void *linux_side; - uint32_t _ret; - const SteamNetworkingIdentity_144 *identityTarget; - int32_t nRemoteVirtualPort; - int32_t nOptions; - const SteamNetworkingConfigValue_t *pOptions; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_ConnectToHostedDedicatedServer( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ConnectToHostedDedicatedServer_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPort_params -{ - void *linux_side; - uint16_t _ret; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPort( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPort_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPOPID_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPOPID( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPOPID_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerAddress_params -{ - void *linux_side; - uint32_t _ret; - SteamDatagramHostedAddress *pRouting; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerAddress_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_CreateHostedDedicatedServerListenSocket_params -{ - void *linux_side; - uint32_t _ret; - int32_t nLocalVirtualPort; - int32_t nOptions; - const SteamNetworkingConfigValue_t *pOptions; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_CreateHostedDedicatedServerListenSocket( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_CreateHostedDedicatedServerListenSocket_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetGameCoordinatorServerLogin_params -{ - void *linux_side; - uint32_t _ret; - SteamDatagramGameCoordinatorServerLogin *pLoginInfo; - int32_t *pcbSignedBlob; - void *pBlob; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_GetGameCoordinatorServerLogin( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetGameCoordinatorServerLogin_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2PCustomSignaling_params -{ - void *linux_side; - uint32_t _ret; - void /*ISteamNetworkingConnectionSignaling*/ *pSignaling; - const SteamNetworkingIdentity_144 *pPeerIdentity; - int32_t nRemoteVirtualPort; - int32_t nOptions; - const SteamNetworkingConfigValue_t *pOptions; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2PCustomSignaling( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2PCustomSignaling_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2PCustomSignal_params -{ - void *linux_side; - bool _ret; - const void *pMsg; - int32_t cbMsg; - void /*ISteamNetworkingSignalingRecvContext*/ *pContext; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2PCustomSignal( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2PCustomSignal_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetCertificateRequest_params -{ - void *linux_side; - bool _ret; - int32_t *pcbBlob; - void *pBlob; - char (*errMsg)[1024]; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_GetCertificateRequest( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetCertificateRequest_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_SetCertificate_params -{ - void *linux_side; - bool _ret; - const void *pCertificate; - int32_t cbCertificate; - char (*errMsg)[1024]; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_SetCertificate( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_SetCertificate_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets009_RunCallbacks_params -{ - void *linux_side; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets009_RunCallbacks( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_RunCallbacks_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets012.cpp b/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets012.cpp index 2a95aa41..a53e6901 100644 --- a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets012.cpp +++ b/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets012.cpp @@ -1,268 +1,355 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamNetworkingSockets_SteamNetworkingSockets012.h" -void cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketIP( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketIP_params *params ) +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; params->_ret = iface->CreateListenSocketIP( params->localAddress, params->nOptions, params->pOptions ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_ConnectByIPAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ConnectByIPAddress_params *params ) +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; params->_ret = iface->ConnectByIPAddress( params->address, params->nOptions, params->pOptions ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2P( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2P_params *params ) +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; params->_ret = iface->CreateListenSocketP2P( params->nLocalVirtualPort, params->nOptions, params->pOptions ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2P( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2P_params *params ) +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; params->_ret = iface->ConnectP2P( params->identityRemote, params->nRemoteVirtualPort, params->nOptions, params->pOptions ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_AcceptConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_AcceptConnection_params *params ) +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; params->_ret = iface->AcceptConnection( params->hConn ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_CloseConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CloseConnection_params *params ) +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; params->_ret = iface->CloseConnection( params->hPeer, params->nReason, params->pszDebug, params->bEnableLinger ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_CloseListenSocket( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CloseListenSocket_params *params ) +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; params->_ret = iface->CloseListenSocket( params->hSocket ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionUserData( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionUserData_params *params ) +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; params->_ret = iface->SetConnectionUserData( params->hPeer, params->nUserData ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionUserData( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionUserData_params *params ) +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; params->_ret = iface->GetConnectionUserData( params->hPeer ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionName( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionName_params *params ) +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; iface->SetConnectionName( params->hPeer, params->pszName ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionName( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionName_params *params ) +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; params->_ret = iface->GetConnectionName( params->hPeer, params->pszName, params->nMaxLen ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_SendMessageToConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_SendMessageToConnection_params *params ) +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; params->_ret = iface->SendMessageToConnection( params->hConn, params->pData, params->cbData, params->nSendFlags, params->pOutMessageNumber ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_FlushMessagesOnConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_FlushMessagesOnConnection_params *params ) +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; params->_ret = iface->FlushMessagesOnConnection( params->hConn ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionInfo( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionInfo_params *params ) +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; params->_ret = iface->GetConnectionInfo( params->hConn, params->pInfo ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionRealTimeStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionRealTimeStatus_params *params ) +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; params->_ret = iface->GetConnectionRealTimeStatus( params->hConn, params->pStatus, params->nLanes, params->pLanes ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_GetDetailedConnectionStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetDetailedConnectionStatus_params *params ) +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; params->_ret = iface->GetDetailedConnectionStatus( params->hConn, params->pszBuf, params->cbBuf ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_GetListenSocketAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetListenSocketAddress_params *params ) +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; params->_ret = iface->GetListenSocketAddress( params->hSocket, params->address ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateSocketPair( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateSocketPair_params *params ) +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; params->_ret = iface->CreateSocketPair( params->pOutConnection1, params->pOutConnection2, params->bUseNetworkLoopback, params->pIdentity1, params->pIdentity2 ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_ConfigureConnectionLanes( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ConfigureConnectionLanes_params *params ) +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; params->_ret = iface->ConfigureConnectionLanes( params->hConn, params->nNumLanes, params->pLanePriorities, params->pLaneWeights ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_GetIdentity( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetIdentity_params *params ) +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; params->_ret = iface->GetIdentity( params->pIdentity ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_InitAuthentication( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_InitAuthentication_params *params ) +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; params->_ret = iface->InitAuthentication( ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_GetAuthenticationStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetAuthenticationStatus_params *params ) +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; params->_ret = iface->GetAuthenticationStatus( params->pDetails ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_CreatePollGroup( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CreatePollGroup_params *params ) +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; params->_ret = iface->CreatePollGroup( ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_DestroyPollGroup( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_DestroyPollGroup_params *params ) +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; params->_ret = iface->DestroyPollGroup( params->hPollGroup ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionPollGroup( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionPollGroup_params *params ) +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; params->_ret = iface->SetConnectionPollGroup( params->hConn, params->hPollGroup ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedRelayAuthTicket( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedRelayAuthTicket_params *params ) +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; params->_ret = iface->ReceivedRelayAuthTicket( params->pvTicket, params->cbTicket, params->pOutParsedTicket ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_FindRelayAuthTicketForServer( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_FindRelayAuthTicketForServer_params *params ) +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; params->_ret = iface->FindRelayAuthTicketForServer( params->identityGameServer, params->nRemoteVirtualPort, params->pOutParsedTicket ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_ConnectToHostedDedicatedServer( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ConnectToHostedDedicatedServer_params *params ) +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; params->_ret = iface->ConnectToHostedDedicatedServer( params->identityTarget, params->nRemoteVirtualPort, params->nOptions, params->pOptions ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPort( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPort_params *params ) +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; params->_ret = iface->GetHostedDedicatedServerPort( ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPOPID( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPOPID_params *params ) +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; params->_ret = iface->GetHostedDedicatedServerPOPID( ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerAddress_params *params ) +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; params->_ret = iface->GetHostedDedicatedServerAddress( params->pRouting ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateHostedDedicatedServerListenSocket( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateHostedDedicatedServerListenSocket_params *params ) +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; params->_ret = iface->CreateHostedDedicatedServerListenSocket( params->nLocalVirtualPort, params->nOptions, params->pOptions ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_GetGameCoordinatorServerLogin( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetGameCoordinatorServerLogin_params *params ) +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; params->_ret = iface->GetGameCoordinatorServerLogin( params->pLoginInfo, params->pcbSignedBlob, params->pBlob ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2PCustomSignaling( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2PCustomSignaling_params *params ) +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; params->_ret = iface->ConnectP2PCustomSignaling( params->pSignaling, params->pPeerIdentity, params->nRemoteVirtualPort, params->nOptions, params->pOptions ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2PCustomSignal( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2PCustomSignal_params *params ) +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; params->_ret = iface->ReceivedP2PCustomSignal( params->pMsg, params->cbMsg, params->pContext ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_GetCertificateRequest( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetCertificateRequest_params *params ) +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; params->_ret = iface->GetCertificateRequest( params->pcbBlob, params->pBlob, params->errMsg ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_SetCertificate( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_SetCertificate_params *params ) +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; params->_ret = iface->SetCertificate( params->pCertificate, params->cbCertificate, params->errMsg ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_ResetIdentity( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ResetIdentity_params *params ) +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; iface->ResetIdentity( params->pIdentity ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_RunCallbacks( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_RunCallbacks_params *params ) +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; iface->RunCallbacks( ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_BeginAsyncRequestFakeIP( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_BeginAsyncRequestFakeIP_params *params ) +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; params->_ret = iface->BeginAsyncRequestFakeIP( params->nNumPorts ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_GetFakeIP( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetFakeIP_params *params ) +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; iface->GetFakeIP( params->idxFirstPort, params->pInfo ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2PFakeIP( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2PFakeIP_params *params ) +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; params->_ret = iface->CreateListenSocketP2PFakeIP( params->idxFakePort, params->nOptions, params->pOptions ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_GetRemoteFakeIPForConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetRemoteFakeIPForConnection_params *params ) +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; params->_ret = iface->GetRemoteFakeIPForConnection( params->hConn, params->pOutAddr ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateFakeUDPPort( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateFakeUDPPort_params *params ) +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; params->_ret = iface->CreateFakeUDPPort( params->idxFakeServerPort ); + return 0; } diff --git a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets012.h b/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets012.h deleted file mode 100644 index 1e63f8d6..00000000 --- a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets012.h +++ /dev/null @@ -1,444 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketIP_params -{ - void *linux_side; - uint32_t _ret; - const SteamNetworkingIPAddr *localAddress; - int32_t nOptions; - const SteamNetworkingConfigValue_t *pOptions; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketIP( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketIP_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ConnectByIPAddress_params -{ - void *linux_side; - uint32_t _ret; - const SteamNetworkingIPAddr *address; - int32_t nOptions; - const SteamNetworkingConfigValue_t *pOptions; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_ConnectByIPAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ConnectByIPAddress_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2P_params -{ - void *linux_side; - uint32_t _ret; - int32_t nLocalVirtualPort; - int32_t nOptions; - const SteamNetworkingConfigValue_t *pOptions; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2P( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2P_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2P_params -{ - void *linux_side; - uint32_t _ret; - const SteamNetworkingIdentity_144 *identityRemote; - int32_t nRemoteVirtualPort; - int32_t nOptions; - const SteamNetworkingConfigValue_t *pOptions; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2P( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2P_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_AcceptConnection_params -{ - void *linux_side; - uint32_t _ret; - uint32_t hConn; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_AcceptConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_AcceptConnection_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CloseConnection_params -{ - void *linux_side; - bool _ret; - uint32_t hPeer; - int32_t nReason; - const char *pszDebug; - bool bEnableLinger; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_CloseConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CloseConnection_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CloseListenSocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_CloseListenSocket( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CloseListenSocket_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionUserData_params -{ - void *linux_side; - bool _ret; - uint32_t hPeer; - int64_t nUserData; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionUserData( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionUserData_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionUserData_params -{ - void *linux_side; - int64_t _ret; - uint32_t hPeer; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionUserData( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionUserData_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionName_params -{ - void *linux_side; - uint32_t hPeer; - const char *pszName; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionName( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionName_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionName_params -{ - void *linux_side; - bool _ret; - uint32_t hPeer; - char *pszName; - int32_t nMaxLen; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionName( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionName_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_SendMessageToConnection_params -{ - void *linux_side; - uint32_t _ret; - uint32_t hConn; - const void *pData; - uint32_t cbData; - int32_t nSendFlags; - int64_t *pOutMessageNumber; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_SendMessageToConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_SendMessageToConnection_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_SendMessages_params -{ - void *linux_side; - int32_t nMessages; - w_SteamNetworkingMessage_t_153a *const *pMessages; - int64_t *pOutMessageNumberOrResult; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_SendMessages( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_SendMessages_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_FlushMessagesOnConnection_params -{ - void *linux_side; - uint32_t _ret; - uint32_t hConn; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_FlushMessagesOnConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_FlushMessagesOnConnection_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnConnection_params -{ - void *linux_side; - int32_t _ret; - uint32_t hConn; - w_SteamNetworkingMessage_t_153a **ppOutMessages; - int32_t nMaxMessages; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnConnection_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionInfo_params -{ - void *linux_side; - bool _ret; - uint32_t hConn; - SteamNetConnectionInfo_t_153a *pInfo; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionInfo( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionInfo_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionRealTimeStatus_params -{ - void *linux_side; - uint32_t _ret; - uint32_t hConn; - SteamNetConnectionRealTimeStatus_t *pStatus; - int32_t nLanes; - SteamNetConnectionRealTimeLaneStatus_t *pLanes; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionRealTimeStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionRealTimeStatus_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetDetailedConnectionStatus_params -{ - void *linux_side; - int32_t _ret; - uint32_t hConn; - char *pszBuf; - int32_t cbBuf; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_GetDetailedConnectionStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetDetailedConnectionStatus_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetListenSocketAddress_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - SteamNetworkingIPAddr *address; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_GetListenSocketAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetListenSocketAddress_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateSocketPair_params -{ - void *linux_side; - bool _ret; - uint32_t *pOutConnection1; - uint32_t *pOutConnection2; - bool bUseNetworkLoopback; - const SteamNetworkingIdentity_144 *pIdentity1; - const SteamNetworkingIdentity_144 *pIdentity2; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateSocketPair( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateSocketPair_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ConfigureConnectionLanes_params -{ - void *linux_side; - uint32_t _ret; - uint32_t hConn; - int32_t nNumLanes; - const int32_t *pLanePriorities; - const uint16_t *pLaneWeights; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_ConfigureConnectionLanes( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ConfigureConnectionLanes_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetIdentity_params -{ - void *linux_side; - bool _ret; - SteamNetworkingIdentity_144 *pIdentity; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_GetIdentity( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetIdentity_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_InitAuthentication_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_InitAuthentication( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_InitAuthentication_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetAuthenticationStatus_params -{ - void *linux_side; - uint32_t _ret; - SteamNetAuthenticationStatus_t *pDetails; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_GetAuthenticationStatus( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetAuthenticationStatus_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CreatePollGroup_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_CreatePollGroup( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CreatePollGroup_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_DestroyPollGroup_params -{ - void *linux_side; - bool _ret; - uint32_t hPollGroup; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_DestroyPollGroup( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_DestroyPollGroup_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionPollGroup_params -{ - void *linux_side; - bool _ret; - uint32_t hConn; - uint32_t hPollGroup; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionPollGroup( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionPollGroup_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnPollGroup_params -{ - void *linux_side; - int32_t _ret; - uint32_t hPollGroup; - w_SteamNetworkingMessage_t_153a **ppOutMessages; - int32_t nMaxMessages; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnPollGroup( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnPollGroup_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedRelayAuthTicket_params -{ - void *linux_side; - bool _ret; - const void *pvTicket; - int32_t cbTicket; - SteamDatagramRelayAuthTicket *pOutParsedTicket; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedRelayAuthTicket( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedRelayAuthTicket_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_FindRelayAuthTicketForServer_params -{ - void *linux_side; - int32_t _ret; - const SteamNetworkingIdentity_144 *identityGameServer; - int32_t nRemoteVirtualPort; - SteamDatagramRelayAuthTicket *pOutParsedTicket; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_FindRelayAuthTicketForServer( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_FindRelayAuthTicketForServer_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ConnectToHostedDedicatedServer_params -{ - void *linux_side; - uint32_t _ret; - const SteamNetworkingIdentity_144 *identityTarget; - int32_t nRemoteVirtualPort; - int32_t nOptions; - const SteamNetworkingConfigValue_t *pOptions; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_ConnectToHostedDedicatedServer( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ConnectToHostedDedicatedServer_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPort_params -{ - void *linux_side; - uint16_t _ret; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPort( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPort_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPOPID_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPOPID( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPOPID_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerAddress_params -{ - void *linux_side; - uint32_t _ret; - SteamDatagramHostedAddress *pRouting; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerAddress( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerAddress_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateHostedDedicatedServerListenSocket_params -{ - void *linux_side; - uint32_t _ret; - int32_t nLocalVirtualPort; - int32_t nOptions; - const SteamNetworkingConfigValue_t *pOptions; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateHostedDedicatedServerListenSocket( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateHostedDedicatedServerListenSocket_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetGameCoordinatorServerLogin_params -{ - void *linux_side; - uint32_t _ret; - SteamDatagramGameCoordinatorServerLogin *pLoginInfo; - int32_t *pcbSignedBlob; - void *pBlob; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_GetGameCoordinatorServerLogin( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetGameCoordinatorServerLogin_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2PCustomSignaling_params -{ - void *linux_side; - uint32_t _ret; - void /*ISteamNetworkingConnectionSignaling*/ *pSignaling; - const SteamNetworkingIdentity_144 *pPeerIdentity; - int32_t nRemoteVirtualPort; - int32_t nOptions; - const SteamNetworkingConfigValue_t *pOptions; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2PCustomSignaling( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2PCustomSignaling_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2PCustomSignal_params -{ - void *linux_side; - bool _ret; - const void *pMsg; - int32_t cbMsg; - void /*ISteamNetworkingSignalingRecvContext*/ *pContext; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2PCustomSignal( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2PCustomSignal_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetCertificateRequest_params -{ - void *linux_side; - bool _ret; - int32_t *pcbBlob; - void *pBlob; - char (*errMsg)[1024]; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_GetCertificateRequest( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetCertificateRequest_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_SetCertificate_params -{ - void *linux_side; - bool _ret; - const void *pCertificate; - int32_t cbCertificate; - char (*errMsg)[1024]; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_SetCertificate( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_SetCertificate_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ResetIdentity_params -{ - void *linux_side; - const SteamNetworkingIdentity_144 *pIdentity; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_ResetIdentity( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ResetIdentity_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_RunCallbacks_params -{ - void *linux_side; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_RunCallbacks( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_RunCallbacks_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_BeginAsyncRequestFakeIP_params -{ - void *linux_side; - bool _ret; - int32_t nNumPorts; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_BeginAsyncRequestFakeIP( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_BeginAsyncRequestFakeIP_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetFakeIP_params -{ - void *linux_side; - int32_t idxFirstPort; - SteamNetworkingFakeIPResult_t *pInfo; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_GetFakeIP( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetFakeIP_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2PFakeIP_params -{ - void *linux_side; - uint32_t _ret; - int32_t idxFakePort; - int32_t nOptions; - const SteamNetworkingConfigValue_t *pOptions; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2PFakeIP( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2PFakeIP_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetRemoteFakeIPForConnection_params -{ - void *linux_side; - uint32_t _ret; - uint32_t hConn; - SteamNetworkingIPAddr *pOutAddr; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_GetRemoteFakeIPForConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetRemoteFakeIPForConnection_params *params ); - -struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateFakeUDPPort_params -{ - void *linux_side; - void /*ISteamNetworkingFakeUDPPort*/ *_ret; - int32_t idxFakeServerPort; -}; -extern void cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateFakeUDPPort( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateFakeUDPPort_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils001.cpp b/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils001.cpp index de317a06..f2fb0960 100644 --- a/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils001.cpp +++ b/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils001.cpp @@ -1,131 +1,172 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamNetworkingUtils_SteamNetworkingUtils001.h" -void cppISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalPingLocation( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalPingLocation_params *params ) +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; params->_ret = iface->GetLocalPingLocation( params->result ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeBetweenTwoLocations( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeBetweenTwoLocations_params *params ) +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; params->_ret = iface->EstimatePingTimeBetweenTwoLocations( params->location1, params->location2 ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeFromLocalHost( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeFromLocalHost_params *params ) +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; params->_ret = iface->EstimatePingTimeFromLocalHost( params->remoteLocation ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils001_ConvertPingLocationToString( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_ConvertPingLocationToString_params *params ) +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; iface->ConvertPingLocationToString( params->location, params->pszBuf, params->cchBufSize ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLocationString( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLocationString_params *params ) +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; params->_ret = iface->ParsePingLocationString( params->pszString, params->result ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils001_CheckPingDataUpToDate( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_CheckPingDataUpToDate_params *params ) +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; params->_ret = iface->CheckPingDataUpToDate( params->flMaxAgeSeconds ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils001_IsPingMeasurementInProgress( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_IsPingMeasurementInProgress_params *params ) +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; params->_ret = iface->IsPingMeasurementInProgress( ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils001_GetPingToDataCenter( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetPingToDataCenter_params *params ) +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; params->_ret = iface->GetPingToDataCenter( params->popID, params->pViaRelayPoP ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils001_GetDirectPingToPOP( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetDirectPingToPOP_params *params ) +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; params->_ret = iface->GetDirectPingToPOP( params->popID ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPCount( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPCount_params *params ) +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; params->_ret = iface->GetPOPCount( ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPList( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPList_params *params ) +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; params->_ret = iface->GetPOPList( params->list, params->nListSz ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalTimestamp( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalTimestamp_params *params ) +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; params->_ret = iface->GetLocalTimestamp( ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils001_SetDebugOutputFunction( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_SetDebugOutputFunction_params *params ) +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; void (*U_STDCALL u_pfnFunc)(uint32_t, const char *) = manual_convert_SetDebugOutputFunction_pfnFunc( params->pfnFunc ); iface->SetDebugOutputFunction( params->eDetailLevel, u_pfnFunc ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue_params *params ) +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; params->_ret = iface->SetConfigValue( params->eValue, params->eScopeType, params->scopeObj, params->eDataType, params->pArg ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValue( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValue_params *params ) +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; params->_ret = iface->GetConfigValue( params->eValue, params->eScopeType, params->scopeObj, params->pOutDataType, params->pResult, params->cbResult ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo_params *params ) +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; params->_ret = iface->GetConfigValueInfo( params->eValue, params->pOutName, params->pOutDataType, params->pOutScope, params->pOutNextValue ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils001_GetFirstConfigValue( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetFirstConfigValue_params *params ) +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; params->_ret = iface->GetFirstConfigValue( ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ToString( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ToString_params *params ) +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; iface->SteamNetworkingIPAddr_ToString( params->addr, params->buf, params->cbBuf, params->bWithPort ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ParseString( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ParseString_params *params ) +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; params->_ret = iface->SteamNetworkingIPAddr_ParseString( params->pAddr, params->pszStr ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ToString( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ToString_params *params ) +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; iface->SteamNetworkingIdentity_ToString( params->identity, params->buf, params->cbBuf ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ParseString( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ParseString_params *params ) +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; params->_ret = iface->SteamNetworkingIdentity_ParseString( params->pIdentity, params->pszStr ); + return 0; } diff --git a/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils001.h b/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils001.h deleted file mode 100644 index e9005d59..00000000 --- a/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils001.h +++ /dev/null @@ -1,199 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalPingLocation_params -{ - void *linux_side; - float _ret; - SteamNetworkPingLocation_t *result; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalPingLocation( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalPingLocation_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeBetweenTwoLocations_params -{ - void *linux_side; - int32_t _ret; - const SteamNetworkPingLocation_t *location1; - const SteamNetworkPingLocation_t *location2; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeBetweenTwoLocations( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeBetweenTwoLocations_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeFromLocalHost_params -{ - void *linux_side; - int32_t _ret; - const SteamNetworkPingLocation_t *remoteLocation; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeFromLocalHost( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeFromLocalHost_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils001_ConvertPingLocationToString_params -{ - void *linux_side; - const SteamNetworkPingLocation_t *location; - char *pszBuf; - int32_t cchBufSize; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils001_ConvertPingLocationToString( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_ConvertPingLocationToString_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLocationString_params -{ - void *linux_side; - bool _ret; - const char *pszString; - SteamNetworkPingLocation_t *result; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLocationString( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLocationString_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils001_CheckPingDataUpToDate_params -{ - void *linux_side; - bool _ret; - float flMaxAgeSeconds; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils001_CheckPingDataUpToDate( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_CheckPingDataUpToDate_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils001_IsPingMeasurementInProgress_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils001_IsPingMeasurementInProgress( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_IsPingMeasurementInProgress_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetPingToDataCenter_params -{ - void *linux_side; - int32_t _ret; - uint32_t popID; - uint32_t *pViaRelayPoP; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils001_GetPingToDataCenter( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetPingToDataCenter_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetDirectPingToPOP_params -{ - void *linux_side; - int32_t _ret; - uint32_t popID; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils001_GetDirectPingToPOP( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetDirectPingToPOP_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPCount( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPCount_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPList_params -{ - void *linux_side; - int32_t _ret; - uint32_t *list; - int32_t nListSz; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPList( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPList_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalTimestamp_params -{ - void *linux_side; - int64_t _ret; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalTimestamp( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalTimestamp_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils001_SetDebugOutputFunction_params -{ - void *linux_side; - uint32_t eDetailLevel; - void (*W_STDCALL pfnFunc)(uint32_t, const char *); -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils001_SetDebugOutputFunction( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_SetDebugOutputFunction_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue_params -{ - void *linux_side; - bool _ret; - uint32_t eValue; - uint32_t eScopeType; - int32_t scopeObj; - uint32_t eDataType; - const void *pArg; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValue_params -{ - void *linux_side; - uint32_t _ret; - uint32_t eValue; - uint32_t eScopeType; - int32_t scopeObj; - uint32_t *pOutDataType; - void *pResult; - uint32_t *cbResult; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValue( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValue_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo_params -{ - void *linux_side; - bool _ret; - uint32_t eValue; - const char **pOutName; - uint32_t *pOutDataType; - uint32_t *pOutScope; - uint32_t *pOutNextValue; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetFirstConfigValue_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils001_GetFirstConfigValue( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetFirstConfigValue_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ToString_params -{ - void *linux_side; - const SteamNetworkingIPAddr *addr; - char *buf; - uint32_t cbBuf; - bool bWithPort; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ToString( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ToString_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ParseString_params -{ - void *linux_side; - bool _ret; - SteamNetworkingIPAddr *pAddr; - const char *pszStr; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ParseString( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ParseString_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ToString_params -{ - void *linux_side; - const SteamNetworkingIdentity_144 *identity; - char *buf; - uint32_t cbBuf; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ToString( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ToString_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ParseString_params -{ - void *linux_side; - bool _ret; - SteamNetworkingIdentity_144 *pIdentity; - const char *pszStr; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ParseString( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ParseString_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils002.cpp b/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils002.cpp index adea2d80..3b19e376 100644 --- a/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils002.cpp +++ b/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils002.cpp @@ -1,131 +1,172 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamNetworkingUtils_SteamNetworkingUtils002.h" -void cppISteamNetworkingUtils_SteamNetworkingUtils002_GetRelayNetworkStatus( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetRelayNetworkStatus_params *params ) +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; params->_ret = iface->GetRelayNetworkStatus( params->pDetails ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalPingLocation( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalPingLocation_params *params ) +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; params->_ret = iface->GetLocalPingLocation( params->result ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeBetweenTwoLocations( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeBetweenTwoLocations_params *params ) +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; params->_ret = iface->EstimatePingTimeBetweenTwoLocations( params->location1, params->location2 ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeFromLocalHost( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeFromLocalHost_params *params ) +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; params->_ret = iface->EstimatePingTimeFromLocalHost( params->remoteLocation ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils002_ConvertPingLocationToString( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_ConvertPingLocationToString_params *params ) +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; iface->ConvertPingLocationToString( params->location, params->pszBuf, params->cchBufSize ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLocationString( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLocationString_params *params ) +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; params->_ret = iface->ParsePingLocationString( params->pszString, params->result ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils002_CheckPingDataUpToDate( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_CheckPingDataUpToDate_params *params ) +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; params->_ret = iface->CheckPingDataUpToDate( params->flMaxAgeSeconds ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils002_GetPingToDataCenter( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetPingToDataCenter_params *params ) +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; params->_ret = iface->GetPingToDataCenter( params->popID, params->pViaRelayPoP ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils002_GetDirectPingToPOP( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetDirectPingToPOP_params *params ) +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; params->_ret = iface->GetDirectPingToPOP( params->popID ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPCount( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPCount_params *params ) +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; params->_ret = iface->GetPOPCount( ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPList( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPList_params *params ) +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; params->_ret = iface->GetPOPList( params->list, params->nListSz ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalTimestamp( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalTimestamp_params *params ) +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; params->_ret = iface->GetLocalTimestamp( ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils002_SetDebugOutputFunction( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_SetDebugOutputFunction_params *params ) +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; void (*U_STDCALL u_pfnFunc)(uint32_t, const char *) = manual_convert_SetDebugOutputFunction_pfnFunc( params->pfnFunc ); iface->SetDebugOutputFunction( params->eDetailLevel, u_pfnFunc ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils002_SetConfigValue( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_SetConfigValue_params *params ) +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; params->_ret = iface->SetConfigValue( params->eValue, params->eScopeType, params->scopeObj, params->eDataType, params->pArg ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValue( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValue_params *params ) +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; params->_ret = iface->GetConfigValue( params->eValue, params->eScopeType, params->scopeObj, params->pOutDataType, params->pResult, params->cbResult ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValueInfo( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValueInfo_params *params ) +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; params->_ret = iface->GetConfigValueInfo( params->eValue, params->pOutName, params->pOutDataType, params->pOutScope, params->pOutNextValue ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils002_GetFirstConfigValue( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetFirstConfigValue_params *params ) +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; params->_ret = iface->GetFirstConfigValue( ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ToString( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ToString_params *params ) +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; iface->SteamNetworkingIPAddr_ToString( params->addr, params->buf, params->cbBuf, params->bWithPort ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ParseString( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ParseString_params *params ) +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; params->_ret = iface->SteamNetworkingIPAddr_ParseString( params->pAddr, params->pszStr ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ToString( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ToString_params *params ) +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; iface->SteamNetworkingIdentity_ToString( params->identity, params->buf, params->cbBuf ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ParseString( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ParseString_params *params ) +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; params->_ret = iface->SteamNetworkingIdentity_ParseString( params->pIdentity, params->pszStr ); + return 0; } diff --git a/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils002.h b/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils002.h deleted file mode 100644 index 574a9c1e..00000000 --- a/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils002.h +++ /dev/null @@ -1,200 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetRelayNetworkStatus_params -{ - void *linux_side; - uint32_t _ret; - SteamRelayNetworkStatus_t *pDetails; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils002_GetRelayNetworkStatus( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetRelayNetworkStatus_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalPingLocation_params -{ - void *linux_side; - float _ret; - SteamNetworkPingLocation_t *result; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalPingLocation( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalPingLocation_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeBetweenTwoLocations_params -{ - void *linux_side; - int32_t _ret; - const SteamNetworkPingLocation_t *location1; - const SteamNetworkPingLocation_t *location2; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeBetweenTwoLocations( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeBetweenTwoLocations_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeFromLocalHost_params -{ - void *linux_side; - int32_t _ret; - const SteamNetworkPingLocation_t *remoteLocation; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeFromLocalHost( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeFromLocalHost_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils002_ConvertPingLocationToString_params -{ - void *linux_side; - const SteamNetworkPingLocation_t *location; - char *pszBuf; - int32_t cchBufSize; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils002_ConvertPingLocationToString( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_ConvertPingLocationToString_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLocationString_params -{ - void *linux_side; - bool _ret; - const char *pszString; - SteamNetworkPingLocation_t *result; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLocationString( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLocationString_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils002_CheckPingDataUpToDate_params -{ - void *linux_side; - bool _ret; - float flMaxAgeSeconds; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils002_CheckPingDataUpToDate( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_CheckPingDataUpToDate_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetPingToDataCenter_params -{ - void *linux_side; - int32_t _ret; - uint32_t popID; - uint32_t *pViaRelayPoP; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils002_GetPingToDataCenter( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetPingToDataCenter_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetDirectPingToPOP_params -{ - void *linux_side; - int32_t _ret; - uint32_t popID; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils002_GetDirectPingToPOP( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetDirectPingToPOP_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPCount( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPCount_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPList_params -{ - void *linux_side; - int32_t _ret; - uint32_t *list; - int32_t nListSz; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPList( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPList_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalTimestamp_params -{ - void *linux_side; - int64_t _ret; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalTimestamp( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalTimestamp_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils002_SetDebugOutputFunction_params -{ - void *linux_side; - uint32_t eDetailLevel; - void (*W_STDCALL pfnFunc)(uint32_t, const char *); -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils002_SetDebugOutputFunction( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_SetDebugOutputFunction_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils002_SetConfigValue_params -{ - void *linux_side; - bool _ret; - uint32_t eValue; - uint32_t eScopeType; - int32_t scopeObj; - uint32_t eDataType; - const void *pArg; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils002_SetConfigValue( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_SetConfigValue_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValue_params -{ - void *linux_side; - uint32_t _ret; - uint32_t eValue; - uint32_t eScopeType; - int32_t scopeObj; - uint32_t *pOutDataType; - void *pResult; - uint32_t *cbResult; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValue( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValue_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValueInfo_params -{ - void *linux_side; - bool _ret; - uint32_t eValue; - const char **pOutName; - uint32_t *pOutDataType; - uint32_t *pOutScope; - uint32_t *pOutNextValue; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValueInfo( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValueInfo_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetFirstConfigValue_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils002_GetFirstConfigValue( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetFirstConfigValue_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ToString_params -{ - void *linux_side; - const SteamNetworkingIPAddr *addr; - char *buf; - uint32_t cbBuf; - bool bWithPort; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ToString( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ToString_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ParseString_params -{ - void *linux_side; - bool _ret; - SteamNetworkingIPAddr *pAddr; - const char *pszStr; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ParseString( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ParseString_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ToString_params -{ - void *linux_side; - const SteamNetworkingIdentity_144 *identity; - char *buf; - uint32_t cbBuf; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ToString( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ToString_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ParseString_params -{ - void *linux_side; - bool _ret; - SteamNetworkingIdentity_144 *pIdentity; - const char *pszStr; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ParseString( struct cppISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ParseString_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils003.cpp b/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils003.cpp index a0d62555..f9ba8ce1 100644 --- a/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils003.cpp +++ b/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils003.cpp @@ -1,125 +1,164 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamNetworkingUtils_SteamNetworkingUtils003.h" -void cppISteamNetworkingUtils_SteamNetworkingUtils003_GetRelayNetworkStatus( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetRelayNetworkStatus_params *params ) +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; params->_ret = iface->GetRelayNetworkStatus( params->pDetails ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalPingLocation( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalPingLocation_params *params ) +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; params->_ret = iface->GetLocalPingLocation( params->result ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeBetweenTwoLocations( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeBetweenTwoLocations_params *params ) +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; params->_ret = iface->EstimatePingTimeBetweenTwoLocations( params->location1, params->location2 ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeFromLocalHost( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeFromLocalHost_params *params ) +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; params->_ret = iface->EstimatePingTimeFromLocalHost( params->remoteLocation ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils003_ConvertPingLocationToString( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_ConvertPingLocationToString_params *params ) +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; iface->ConvertPingLocationToString( params->location, params->pszBuf, params->cchBufSize ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLocationString( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLocationString_params *params ) +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; params->_ret = iface->ParsePingLocationString( params->pszString, params->result ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils003_CheckPingDataUpToDate( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_CheckPingDataUpToDate_params *params ) +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; params->_ret = iface->CheckPingDataUpToDate( params->flMaxAgeSeconds ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils003_GetPingToDataCenter( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetPingToDataCenter_params *params ) +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; params->_ret = iface->GetPingToDataCenter( params->popID, params->pViaRelayPoP ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils003_GetDirectPingToPOP( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetDirectPingToPOP_params *params ) +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; params->_ret = iface->GetDirectPingToPOP( params->popID ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPCount( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPCount_params *params ) +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; params->_ret = iface->GetPOPCount( ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPList( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPList_params *params ) +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; params->_ret = iface->GetPOPList( params->list, params->nListSz ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalTimestamp( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalTimestamp_params *params ) +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; params->_ret = iface->GetLocalTimestamp( ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils003_SetDebugOutputFunction( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_SetDebugOutputFunction_params *params ) +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; void (*U_STDCALL u_pfnFunc)(uint32_t, const char *) = manual_convert_SetDebugOutputFunction_pfnFunc( params->pfnFunc ); iface->SetDebugOutputFunction( params->eDetailLevel, u_pfnFunc ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValue( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValue_params *params ) +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; params->_ret = iface->GetConfigValue( params->eValue, params->eScopeType, params->scopeObj, params->pOutDataType, params->pResult, params->cbResult ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValueInfo( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValueInfo_params *params ) +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; params->_ret = iface->GetConfigValueInfo( params->eValue, params->pOutName, params->pOutDataType, params->pOutScope, params->pOutNextValue ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils003_GetFirstConfigValue( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetFirstConfigValue_params *params ) +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; params->_ret = iface->GetFirstConfigValue( ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ToString( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ToString_params *params ) +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; iface->SteamNetworkingIPAddr_ToString( params->addr, params->buf, params->cbBuf, params->bWithPort ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ParseString( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ParseString_params *params ) +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; params->_ret = iface->SteamNetworkingIPAddr_ParseString( params->pAddr, params->pszStr ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ToString( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ToString_params *params ) +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; iface->SteamNetworkingIdentity_ToString( params->identity, params->buf, params->cbBuf ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ParseString( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ParseString_params *params ) +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; params->_ret = iface->SteamNetworkingIdentity_ParseString( params->pIdentity, params->pszStr ); + return 0; } diff --git a/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils003.h b/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils003.h deleted file mode 100644 index b022d2e1..00000000 --- a/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils003.h +++ /dev/null @@ -1,208 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamNetworkingUtils_SteamNetworkingUtils003_AllocateMessage_params -{ - void *linux_side; - w_SteamNetworkingMessage_t_147 *_ret; - int32_t cbAllocateBuffer; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils003_AllocateMessage( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_AllocateMessage_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetRelayNetworkStatus_params -{ - void *linux_side; - uint32_t _ret; - SteamRelayNetworkStatus_t *pDetails; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils003_GetRelayNetworkStatus( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetRelayNetworkStatus_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalPingLocation_params -{ - void *linux_side; - float _ret; - SteamNetworkPingLocation_t *result; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalPingLocation( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalPingLocation_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeBetweenTwoLocations_params -{ - void *linux_side; - int32_t _ret; - const SteamNetworkPingLocation_t *location1; - const SteamNetworkPingLocation_t *location2; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeBetweenTwoLocations( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeBetweenTwoLocations_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeFromLocalHost_params -{ - void *linux_side; - int32_t _ret; - const SteamNetworkPingLocation_t *remoteLocation; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeFromLocalHost( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeFromLocalHost_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils003_ConvertPingLocationToString_params -{ - void *linux_side; - const SteamNetworkPingLocation_t *location; - char *pszBuf; - int32_t cchBufSize; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils003_ConvertPingLocationToString( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_ConvertPingLocationToString_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLocationString_params -{ - void *linux_side; - bool _ret; - const char *pszString; - SteamNetworkPingLocation_t *result; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLocationString( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLocationString_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils003_CheckPingDataUpToDate_params -{ - void *linux_side; - bool _ret; - float flMaxAgeSeconds; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils003_CheckPingDataUpToDate( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_CheckPingDataUpToDate_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetPingToDataCenter_params -{ - void *linux_side; - int32_t _ret; - uint32_t popID; - uint32_t *pViaRelayPoP; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils003_GetPingToDataCenter( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetPingToDataCenter_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetDirectPingToPOP_params -{ - void *linux_side; - int32_t _ret; - uint32_t popID; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils003_GetDirectPingToPOP( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetDirectPingToPOP_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPCount( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPCount_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPList_params -{ - void *linux_side; - int32_t _ret; - uint32_t *list; - int32_t nListSz; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPList( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPList_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalTimestamp_params -{ - void *linux_side; - int64_t _ret; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalTimestamp( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalTimestamp_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils003_SetDebugOutputFunction_params -{ - void *linux_side; - uint32_t eDetailLevel; - void (*W_STDCALL pfnFunc)(uint32_t, const char *); -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils003_SetDebugOutputFunction( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_SetDebugOutputFunction_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue_params -{ - void *linux_side; - bool _ret; - uint32_t eValue; - uint32_t eScopeType; - int32_t scopeObj; - uint32_t eDataType; - const void *pArg; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValue_params -{ - void *linux_side; - uint32_t _ret; - uint32_t eValue; - uint32_t eScopeType; - int32_t scopeObj; - uint32_t *pOutDataType; - void *pResult; - uint32_t *cbResult; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValue( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValue_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValueInfo_params -{ - void *linux_side; - bool _ret; - uint32_t eValue; - const char **pOutName; - uint32_t *pOutDataType; - uint32_t *pOutScope; - uint32_t *pOutNextValue; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValueInfo( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValueInfo_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetFirstConfigValue_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils003_GetFirstConfigValue( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetFirstConfigValue_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ToString_params -{ - void *linux_side; - const SteamNetworkingIPAddr *addr; - char *buf; - uint32_t cbBuf; - bool bWithPort; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ToString( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ToString_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ParseString_params -{ - void *linux_side; - bool _ret; - SteamNetworkingIPAddr *pAddr; - const char *pszStr; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ParseString( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ParseString_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ToString_params -{ - void *linux_side; - const SteamNetworkingIdentity_144 *identity; - char *buf; - uint32_t cbBuf; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ToString( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ToString_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ParseString_params -{ - void *linux_side; - bool _ret; - SteamNetworkingIdentity_144 *pIdentity; - const char *pszStr; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ParseString( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ParseString_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils004.cpp b/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils004.cpp index f763306f..b8a502f7 100644 --- a/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils004.cpp +++ b/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils004.cpp @@ -1,143 +1,188 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamNetworkingUtils_SteamNetworkingUtils004.h" -void cppISteamNetworkingUtils_SteamNetworkingUtils004_GetRelayNetworkStatus( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetRelayNetworkStatus_params *params ) +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; params->_ret = iface->GetRelayNetworkStatus( params->pDetails ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalPingLocation( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalPingLocation_params *params ) +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; params->_ret = iface->GetLocalPingLocation( params->result ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeBetweenTwoLocations( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeBetweenTwoLocations_params *params ) +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; params->_ret = iface->EstimatePingTimeBetweenTwoLocations( params->location1, params->location2 ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeFromLocalHost( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeFromLocalHost_params *params ) +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; params->_ret = iface->EstimatePingTimeFromLocalHost( params->remoteLocation ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils004_ConvertPingLocationToString( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_ConvertPingLocationToString_params *params ) +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; iface->ConvertPingLocationToString( params->location, params->pszBuf, params->cchBufSize ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLocationString( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLocationString_params *params ) +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; params->_ret = iface->ParsePingLocationString( params->pszString, params->result ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils004_CheckPingDataUpToDate( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_CheckPingDataUpToDate_params *params ) +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; params->_ret = iface->CheckPingDataUpToDate( params->flMaxAgeSeconds ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils004_GetPingToDataCenter( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetPingToDataCenter_params *params ) +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; params->_ret = iface->GetPingToDataCenter( params->popID, params->pViaRelayPoP ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils004_GetDirectPingToPOP( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetDirectPingToPOP_params *params ) +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; params->_ret = iface->GetDirectPingToPOP( params->popID ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPCount( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPCount_params *params ) +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; params->_ret = iface->GetPOPCount( ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPList( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPList_params *params ) +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; params->_ret = iface->GetPOPList( params->list, params->nListSz ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalTimestamp( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalTimestamp_params *params ) +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; params->_ret = iface->GetLocalTimestamp( ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils004_SetDebugOutputFunction( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_SetDebugOutputFunction_params *params ) +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; void (*U_STDCALL u_pfnFunc)(uint32_t, const char *) = manual_convert_SetDebugOutputFunction_pfnFunc( params->pfnFunc ); iface->SetDebugOutputFunction( params->eDetailLevel, u_pfnFunc ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils004_GetIPv4FakeIPType( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetIPv4FakeIPType_params *params ) +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; params->_ret = iface->GetIPv4FakeIPType( params->nIPv4 ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils004_GetRealIdentityForFakeIP( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetRealIdentityForFakeIP_params *params ) +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; params->_ret = iface->GetRealIdentityForFakeIP( params->fakeIP, params->pOutRealIdentity ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValue( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValue_params *params ) +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; params->_ret = iface->GetConfigValue( params->eValue, params->eScopeType, params->scopeObj, params->pOutDataType, params->pResult, params->cbResult ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValueInfo( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValueInfo_params *params ) +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; params->_ret = iface->GetConfigValueInfo( params->eValue, params->pOutDataType, params->pOutScope ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils004_IterateGenericEditableConfigValues( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_IterateGenericEditableConfigValues_params *params ) +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; params->_ret = iface->IterateGenericEditableConfigValues( params->eCurrent, params->bEnumerateDevVars ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToString( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToString_params *params ) +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; iface->SteamNetworkingIPAddr_ToString( params->addr, params->buf, params->cbBuf, params->bWithPort ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ParseString( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ParseString_params *params ) +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; params->_ret = iface->SteamNetworkingIPAddr_ParseString( params->pAddr, params->pszStr ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_GetFakeIPType( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_GetFakeIPType_params *params ) +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; params->_ret = iface->SteamNetworkingIPAddr_GetFakeIPType( params->addr ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ToString( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ToString_params *params ) +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; iface->SteamNetworkingIdentity_ToString( params->identity, params->buf, params->cbBuf ); + return 0; } -void cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ParseString( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ParseString_params *params ) +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; params->_ret = iface->SteamNetworkingIdentity_ParseString( params->pIdentity, params->pszStr ); + return 0; } diff --git a/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils004.h b/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils004.h deleted file mode 100644 index d2039a7a..00000000 --- a/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils004.h +++ /dev/null @@ -1,233 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamNetworkingUtils_SteamNetworkingUtils004_AllocateMessage_params -{ - void *linux_side; - w_SteamNetworkingMessage_t_153a *_ret; - int32_t cbAllocateBuffer; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils004_AllocateMessage( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_AllocateMessage_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetRelayNetworkStatus_params -{ - void *linux_side; - uint32_t _ret; - SteamRelayNetworkStatus_t *pDetails; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils004_GetRelayNetworkStatus( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetRelayNetworkStatus_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalPingLocation_params -{ - void *linux_side; - float _ret; - SteamNetworkPingLocation_t *result; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalPingLocation( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalPingLocation_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeBetweenTwoLocations_params -{ - void *linux_side; - int32_t _ret; - const SteamNetworkPingLocation_t *location1; - const SteamNetworkPingLocation_t *location2; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeBetweenTwoLocations( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeBetweenTwoLocations_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeFromLocalHost_params -{ - void *linux_side; - int32_t _ret; - const SteamNetworkPingLocation_t *remoteLocation; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeFromLocalHost( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeFromLocalHost_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils004_ConvertPingLocationToString_params -{ - void *linux_side; - const SteamNetworkPingLocation_t *location; - char *pszBuf; - int32_t cchBufSize; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils004_ConvertPingLocationToString( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_ConvertPingLocationToString_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLocationString_params -{ - void *linux_side; - bool _ret; - const char *pszString; - SteamNetworkPingLocation_t *result; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLocationString( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLocationString_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils004_CheckPingDataUpToDate_params -{ - void *linux_side; - bool _ret; - float flMaxAgeSeconds; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils004_CheckPingDataUpToDate( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_CheckPingDataUpToDate_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetPingToDataCenter_params -{ - void *linux_side; - int32_t _ret; - uint32_t popID; - uint32_t *pViaRelayPoP; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils004_GetPingToDataCenter( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetPingToDataCenter_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetDirectPingToPOP_params -{ - void *linux_side; - int32_t _ret; - uint32_t popID; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils004_GetDirectPingToPOP( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetDirectPingToPOP_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPCount( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPCount_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPList_params -{ - void *linux_side; - int32_t _ret; - uint32_t *list; - int32_t nListSz; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPList( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPList_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalTimestamp_params -{ - void *linux_side; - int64_t _ret; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalTimestamp( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalTimestamp_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils004_SetDebugOutputFunction_params -{ - void *linux_side; - uint32_t eDetailLevel; - void (*W_STDCALL pfnFunc)(uint32_t, const char *); -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils004_SetDebugOutputFunction( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_SetDebugOutputFunction_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetIPv4FakeIPType_params -{ - void *linux_side; - uint32_t _ret; - uint32_t nIPv4; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils004_GetIPv4FakeIPType( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetIPv4FakeIPType_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetRealIdentityForFakeIP_params -{ - void *linux_side; - uint32_t _ret; - const SteamNetworkingIPAddr *fakeIP; - SteamNetworkingIdentity_144 *pOutRealIdentity; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils004_GetRealIdentityForFakeIP( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetRealIdentityForFakeIP_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue_params -{ - void *linux_side; - bool _ret; - uint32_t eValue; - uint32_t eScopeType; - int32_t scopeObj; - uint32_t eDataType; - const void *pArg; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValue_params -{ - void *linux_side; - uint32_t _ret; - uint32_t eValue; - uint32_t eScopeType; - int32_t scopeObj; - uint32_t *pOutDataType; - void *pResult; - uint32_t *cbResult; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValue( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValue_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValueInfo_params -{ - void *linux_side; - const char *_ret; - uint32_t eValue; - uint32_t *pOutDataType; - uint32_t *pOutScope; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValueInfo( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValueInfo_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils004_IterateGenericEditableConfigValues_params -{ - void *linux_side; - uint32_t _ret; - uint32_t eCurrent; - bool bEnumerateDevVars; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils004_IterateGenericEditableConfigValues( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_IterateGenericEditableConfigValues_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToString_params -{ - void *linux_side; - const SteamNetworkingIPAddr *addr; - char *buf; - uint32_t cbBuf; - bool bWithPort; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToString( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToString_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ParseString_params -{ - void *linux_side; - bool _ret; - SteamNetworkingIPAddr *pAddr; - const char *pszStr; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ParseString( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ParseString_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_GetFakeIPType_params -{ - void *linux_side; - uint32_t _ret; - const SteamNetworkingIPAddr *addr; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_GetFakeIPType( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_GetFakeIPType_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ToString_params -{ - void *linux_side; - const SteamNetworkingIdentity_144 *identity; - char *buf; - uint32_t cbBuf; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ToString( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ToString_params *params ); - -struct cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ParseString_params -{ - void *linux_side; - bool _ret; - SteamNetworkingIdentity_144 *pIdentity; - const char *pszStr; -}; -extern void cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ParseString( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ParseString_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamNetworking_SteamNetworking001.cpp b/lsteamclient/cppISteamNetworking_SteamNetworking001.cpp index 5b2cdeda..32183737 100644 --- a/lsteamclient/cppISteamNetworking_SteamNetworking001.cpp +++ b/lsteamclient/cppISteamNetworking_SteamNetworking001.cpp @@ -1,76 +1,99 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamNetworking_SteamNetworking001.h" -void cppISteamNetworking_SteamNetworking001_CreateListenSocket( struct cppISteamNetworking_SteamNetworking001_CreateListenSocket_params *params ) +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; params->_ret = iface->CreateListenSocket( params->nVirtualP2PPort, params->nIP, params->nPort ); + return 0; } -void cppISteamNetworking_SteamNetworking001_CreateP2PConnectionSocket( struct cppISteamNetworking_SteamNetworking001_CreateP2PConnectionSocket_params *params ) +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; params->_ret = iface->CreateP2PConnectionSocket( params->steamIDTarget, params->nVirtualPort, params->nTimeoutSec ); + return 0; } -void cppISteamNetworking_SteamNetworking001_CreateConnectionSocket( struct cppISteamNetworking_SteamNetworking001_CreateConnectionSocket_params *params ) +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; params->_ret = iface->CreateConnectionSocket( params->nIP, params->nPort, params->nTimeoutSec ); + return 0; } -void cppISteamNetworking_SteamNetworking001_DestroySocket( struct cppISteamNetworking_SteamNetworking001_DestroySocket_params *params ) +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; params->_ret = iface->DestroySocket( params->hSocket, params->bNotifyRemoteEnd ); + return 0; } -void cppISteamNetworking_SteamNetworking001_DestroyListenSocket( struct cppISteamNetworking_SteamNetworking001_DestroyListenSocket_params *params ) +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; params->_ret = iface->DestroyListenSocket( params->hSocket, params->bNotifyRemoteEnd ); + return 0; } -void cppISteamNetworking_SteamNetworking001_SendDataOnSocket( struct cppISteamNetworking_SteamNetworking001_SendDataOnSocket_params *params ) +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; params->_ret = iface->SendDataOnSocket( params->hSocket, params->pubData, params->cubData, params->bReliable ); + return 0; } -void cppISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket( struct cppISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket_params *params ) +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; params->_ret = iface->IsDataAvailableOnSocket( params->hSocket, params->pcubMsgSize ); + return 0; } -void cppISteamNetworking_SteamNetworking001_RetrieveDataFromSocket( struct cppISteamNetworking_SteamNetworking001_RetrieveDataFromSocket_params *params ) +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; params->_ret = iface->RetrieveDataFromSocket( params->hSocket, params->pubDest, params->cubDest, params->pcubMsgSize ); + return 0; } -void cppISteamNetworking_SteamNetworking001_IsDataAvailable( struct cppISteamNetworking_SteamNetworking001_IsDataAvailable_params *params ) +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; params->_ret = iface->IsDataAvailable( params->hListenSocket, params->pcubMsgSize, params->phSocket ); + return 0; } -void cppISteamNetworking_SteamNetworking001_RetrieveData( struct cppISteamNetworking_SteamNetworking001_RetrieveData_params *params ) +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; params->_ret = iface->RetrieveData( params->hListenSocket, params->pubDest, params->cubDest, params->pcubMsgSize, params->phSocket ); + return 0; } -void cppISteamNetworking_SteamNetworking001_GetSocketInfo( struct cppISteamNetworking_SteamNetworking001_GetSocketInfo_params *params ) +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; params->_ret = iface->GetSocketInfo( params->hSocket, params->pSteamIDRemote, params->peSocketStatus, params->punIPRemote, params->punPortRemote ); + return 0; } -void cppISteamNetworking_SteamNetworking001_GetListenSocketInfo( struct cppISteamNetworking_SteamNetworking001_GetListenSocketInfo_params *params ) +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; params->_ret = iface->GetListenSocketInfo( params->hListenSocket, params->pnIP, params->pnPort ); + return 0; } diff --git a/lsteamclient/cppISteamNetworking_SteamNetworking001.h b/lsteamclient/cppISteamNetworking_SteamNetworking001.h deleted file mode 100644 index 666a8ad8..00000000 --- a/lsteamclient/cppISteamNetworking_SteamNetworking001.h +++ /dev/null @@ -1,135 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamNetworking_SteamNetworking001_CreateListenSocket_params -{ - void *linux_side; - uint32_t _ret; - int32_t nVirtualP2PPort; - uint32_t nIP; - uint16_t nPort; -}; -extern void cppISteamNetworking_SteamNetworking001_CreateListenSocket( struct cppISteamNetworking_SteamNetworking001_CreateListenSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking001_CreateP2PConnectionSocket_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDTarget; - int32_t nVirtualPort; - int32_t nTimeoutSec; -}; -extern void cppISteamNetworking_SteamNetworking001_CreateP2PConnectionSocket( struct cppISteamNetworking_SteamNetworking001_CreateP2PConnectionSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking001_CreateConnectionSocket_params -{ - void *linux_side; - uint32_t _ret; - uint32_t nIP; - uint16_t nPort; - int32_t nTimeoutSec; -}; -extern void cppISteamNetworking_SteamNetworking001_CreateConnectionSocket( struct cppISteamNetworking_SteamNetworking001_CreateConnectionSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking001_DestroySocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - bool bNotifyRemoteEnd; -}; -extern void cppISteamNetworking_SteamNetworking001_DestroySocket( struct cppISteamNetworking_SteamNetworking001_DestroySocket_params *params ); - -struct cppISteamNetworking_SteamNetworking001_DestroyListenSocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - bool bNotifyRemoteEnd; -}; -extern void cppISteamNetworking_SteamNetworking001_DestroyListenSocket( struct cppISteamNetworking_SteamNetworking001_DestroyListenSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking001_SendDataOnSocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - void *pubData; - uint32_t cubData; - bool bReliable; -}; -extern void cppISteamNetworking_SteamNetworking001_SendDataOnSocket( struct cppISteamNetworking_SteamNetworking001_SendDataOnSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - uint32_t *pcubMsgSize; -}; -extern void cppISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket( struct cppISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking001_RetrieveDataFromSocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - void *pubDest; - uint32_t cubDest; - uint32_t *pcubMsgSize; -}; -extern void cppISteamNetworking_SteamNetworking001_RetrieveDataFromSocket( struct cppISteamNetworking_SteamNetworking001_RetrieveDataFromSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking001_IsDataAvailable_params -{ - void *linux_side; - bool _ret; - uint32_t hListenSocket; - uint32_t *pcubMsgSize; - uint32_t *phSocket; -}; -extern void cppISteamNetworking_SteamNetworking001_IsDataAvailable( struct cppISteamNetworking_SteamNetworking001_IsDataAvailable_params *params ); - -struct cppISteamNetworking_SteamNetworking001_RetrieveData_params -{ - void *linux_side; - bool _ret; - uint32_t hListenSocket; - void *pubDest; - uint32_t cubDest; - uint32_t *pcubMsgSize; - uint32_t *phSocket; -}; -extern void cppISteamNetworking_SteamNetworking001_RetrieveData( struct cppISteamNetworking_SteamNetworking001_RetrieveData_params *params ); - -struct cppISteamNetworking_SteamNetworking001_GetSocketInfo_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - CSteamID *pSteamIDRemote; - int32_t *peSocketStatus; - uint32_t *punIPRemote; - uint16_t *punPortRemote; -}; -extern void cppISteamNetworking_SteamNetworking001_GetSocketInfo( struct cppISteamNetworking_SteamNetworking001_GetSocketInfo_params *params ); - -struct cppISteamNetworking_SteamNetworking001_GetListenSocketInfo_params -{ - void *linux_side; - bool _ret; - uint32_t hListenSocket; - uint32_t *pnIP; - uint16_t *pnPort; -}; -extern void cppISteamNetworking_SteamNetworking001_GetListenSocketInfo( struct cppISteamNetworking_SteamNetworking001_GetListenSocketInfo_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamNetworking_SteamNetworking002.cpp b/lsteamclient/cppISteamNetworking_SteamNetworking002.cpp index b5aabe09..ad990b62 100644 --- a/lsteamclient/cppISteamNetworking_SteamNetworking002.cpp +++ b/lsteamclient/cppISteamNetworking_SteamNetworking002.cpp @@ -1,88 +1,115 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamNetworking_SteamNetworking002.h" -void cppISteamNetworking_SteamNetworking002_CreateListenSocket( struct cppISteamNetworking_SteamNetworking002_CreateListenSocket_params *params ) +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; params->_ret = iface->CreateListenSocket( params->nVirtualP2PPort, params->nIP, params->nPort, params->bAllowUseOfPacketRelay ); + return 0; } -void cppISteamNetworking_SteamNetworking002_CreateP2PConnectionSocket( struct cppISteamNetworking_SteamNetworking002_CreateP2PConnectionSocket_params *params ) +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; params->_ret = iface->CreateP2PConnectionSocket( params->steamIDTarget, params->nVirtualPort, params->nTimeoutSec, params->bAllowUseOfPacketRelay ); + return 0; } -void cppISteamNetworking_SteamNetworking002_CreateConnectionSocket( struct cppISteamNetworking_SteamNetworking002_CreateConnectionSocket_params *params ) +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; params->_ret = iface->CreateConnectionSocket( params->nIP, params->nPort, params->nTimeoutSec ); + return 0; } -void cppISteamNetworking_SteamNetworking002_DestroySocket( struct cppISteamNetworking_SteamNetworking002_DestroySocket_params *params ) +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; params->_ret = iface->DestroySocket( params->hSocket, params->bNotifyRemoteEnd ); + return 0; } -void cppISteamNetworking_SteamNetworking002_DestroyListenSocket( struct cppISteamNetworking_SteamNetworking002_DestroyListenSocket_params *params ) +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; params->_ret = iface->DestroyListenSocket( params->hSocket, params->bNotifyRemoteEnd ); + return 0; } -void cppISteamNetworking_SteamNetworking002_SendDataOnSocket( struct cppISteamNetworking_SteamNetworking002_SendDataOnSocket_params *params ) +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; params->_ret = iface->SendDataOnSocket( params->hSocket, params->pubData, params->cubData, params->bReliable ); + return 0; } -void cppISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket( struct cppISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket_params *params ) +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; params->_ret = iface->IsDataAvailableOnSocket( params->hSocket, params->pcubMsgSize ); + return 0; } -void cppISteamNetworking_SteamNetworking002_RetrieveDataFromSocket( struct cppISteamNetworking_SteamNetworking002_RetrieveDataFromSocket_params *params ) +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; params->_ret = iface->RetrieveDataFromSocket( params->hSocket, params->pubDest, params->cubDest, params->pcubMsgSize ); + return 0; } -void cppISteamNetworking_SteamNetworking002_IsDataAvailable( struct cppISteamNetworking_SteamNetworking002_IsDataAvailable_params *params ) +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; params->_ret = iface->IsDataAvailable( params->hListenSocket, params->pcubMsgSize, params->phSocket ); + return 0; } -void cppISteamNetworking_SteamNetworking002_RetrieveData( struct cppISteamNetworking_SteamNetworking002_RetrieveData_params *params ) +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; params->_ret = iface->RetrieveData( params->hListenSocket, params->pubDest, params->cubDest, params->pcubMsgSize, params->phSocket ); + return 0; } -void cppISteamNetworking_SteamNetworking002_GetSocketInfo( struct cppISteamNetworking_SteamNetworking002_GetSocketInfo_params *params ) +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; params->_ret = iface->GetSocketInfo( params->hSocket, params->pSteamIDRemote, params->peSocketStatus, params->punIPRemote, params->punPortRemote ); + return 0; } -void cppISteamNetworking_SteamNetworking002_GetListenSocketInfo( struct cppISteamNetworking_SteamNetworking002_GetListenSocketInfo_params *params ) +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; params->_ret = iface->GetListenSocketInfo( params->hListenSocket, params->pnIP, params->pnPort ); + return 0; } -void cppISteamNetworking_SteamNetworking002_GetSocketConnectionType( struct cppISteamNetworking_SteamNetworking002_GetSocketConnectionType_params *params ) +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; params->_ret = iface->GetSocketConnectionType( params->hSocket ); + return 0; } -void cppISteamNetworking_SteamNetworking002_GetMaxPacketSize( struct cppISteamNetworking_SteamNetworking002_GetMaxPacketSize_params *params ) +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; params->_ret = iface->GetMaxPacketSize( params->hSocket ); + return 0; } diff --git a/lsteamclient/cppISteamNetworking_SteamNetworking002.h b/lsteamclient/cppISteamNetworking_SteamNetworking002.h deleted file mode 100644 index 27162d1a..00000000 --- a/lsteamclient/cppISteamNetworking_SteamNetworking002.h +++ /dev/null @@ -1,153 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamNetworking_SteamNetworking002_CreateListenSocket_params -{ - void *linux_side; - uint32_t _ret; - int32_t nVirtualP2PPort; - uint32_t nIP; - uint16_t nPort; - bool bAllowUseOfPacketRelay; -}; -extern void cppISteamNetworking_SteamNetworking002_CreateListenSocket( struct cppISteamNetworking_SteamNetworking002_CreateListenSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking002_CreateP2PConnectionSocket_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDTarget; - int32_t nVirtualPort; - int32_t nTimeoutSec; - bool bAllowUseOfPacketRelay; -}; -extern void cppISteamNetworking_SteamNetworking002_CreateP2PConnectionSocket( struct cppISteamNetworking_SteamNetworking002_CreateP2PConnectionSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking002_CreateConnectionSocket_params -{ - void *linux_side; - uint32_t _ret; - uint32_t nIP; - uint16_t nPort; - int32_t nTimeoutSec; -}; -extern void cppISteamNetworking_SteamNetworking002_CreateConnectionSocket( struct cppISteamNetworking_SteamNetworking002_CreateConnectionSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking002_DestroySocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - bool bNotifyRemoteEnd; -}; -extern void cppISteamNetworking_SteamNetworking002_DestroySocket( struct cppISteamNetworking_SteamNetworking002_DestroySocket_params *params ); - -struct cppISteamNetworking_SteamNetworking002_DestroyListenSocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - bool bNotifyRemoteEnd; -}; -extern void cppISteamNetworking_SteamNetworking002_DestroyListenSocket( struct cppISteamNetworking_SteamNetworking002_DestroyListenSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking002_SendDataOnSocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - void *pubData; - uint32_t cubData; - bool bReliable; -}; -extern void cppISteamNetworking_SteamNetworking002_SendDataOnSocket( struct cppISteamNetworking_SteamNetworking002_SendDataOnSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - uint32_t *pcubMsgSize; -}; -extern void cppISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket( struct cppISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking002_RetrieveDataFromSocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - void *pubDest; - uint32_t cubDest; - uint32_t *pcubMsgSize; -}; -extern void cppISteamNetworking_SteamNetworking002_RetrieveDataFromSocket( struct cppISteamNetworking_SteamNetworking002_RetrieveDataFromSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking002_IsDataAvailable_params -{ - void *linux_side; - bool _ret; - uint32_t hListenSocket; - uint32_t *pcubMsgSize; - uint32_t *phSocket; -}; -extern void cppISteamNetworking_SteamNetworking002_IsDataAvailable( struct cppISteamNetworking_SteamNetworking002_IsDataAvailable_params *params ); - -struct cppISteamNetworking_SteamNetworking002_RetrieveData_params -{ - void *linux_side; - bool _ret; - uint32_t hListenSocket; - void *pubDest; - uint32_t cubDest; - uint32_t *pcubMsgSize; - uint32_t *phSocket; -}; -extern void cppISteamNetworking_SteamNetworking002_RetrieveData( struct cppISteamNetworking_SteamNetworking002_RetrieveData_params *params ); - -struct cppISteamNetworking_SteamNetworking002_GetSocketInfo_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - CSteamID *pSteamIDRemote; - int32_t *peSocketStatus; - uint32_t *punIPRemote; - uint16_t *punPortRemote; -}; -extern void cppISteamNetworking_SteamNetworking002_GetSocketInfo( struct cppISteamNetworking_SteamNetworking002_GetSocketInfo_params *params ); - -struct cppISteamNetworking_SteamNetworking002_GetListenSocketInfo_params -{ - void *linux_side; - bool _ret; - uint32_t hListenSocket; - uint32_t *pnIP; - uint16_t *pnPort; -}; -extern void cppISteamNetworking_SteamNetworking002_GetListenSocketInfo( struct cppISteamNetworking_SteamNetworking002_GetListenSocketInfo_params *params ); - -struct cppISteamNetworking_SteamNetworking002_GetSocketConnectionType_params -{ - void *linux_side; - uint32_t _ret; - uint32_t hSocket; -}; -extern void cppISteamNetworking_SteamNetworking002_GetSocketConnectionType( struct cppISteamNetworking_SteamNetworking002_GetSocketConnectionType_params *params ); - -struct cppISteamNetworking_SteamNetworking002_GetMaxPacketSize_params -{ - void *linux_side; - int32_t _ret; - uint32_t hSocket; -}; -extern void cppISteamNetworking_SteamNetworking002_GetMaxPacketSize( struct cppISteamNetworking_SteamNetworking002_GetMaxPacketSize_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamNetworking_SteamNetworking003.cpp b/lsteamclient/cppISteamNetworking_SteamNetworking003.cpp index 80c2e34d..c89c006c 100644 --- a/lsteamclient/cppISteamNetworking_SteamNetworking003.cpp +++ b/lsteamclient/cppISteamNetworking_SteamNetworking003.cpp @@ -1,124 +1,163 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamNetworking_SteamNetworking003.h" -void cppISteamNetworking_SteamNetworking003_SendP2PPacket( struct cppISteamNetworking_SteamNetworking003_SendP2PPacket_params *params ) +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; params->_ret = iface->SendP2PPacket( params->steamIDRemote, params->pubData, params->cubData, params->eP2PSendType ); + return 0; } -void cppISteamNetworking_SteamNetworking003_IsP2PPacketAvailable( struct cppISteamNetworking_SteamNetworking003_IsP2PPacketAvailable_params *params ) +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; params->_ret = iface->IsP2PPacketAvailable( params->pcubMsgSize ); + return 0; } -void cppISteamNetworking_SteamNetworking003_ReadP2PPacket( struct cppISteamNetworking_SteamNetworking003_ReadP2PPacket_params *params ) +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; params->_ret = iface->ReadP2PPacket( params->pubDest, params->cubDest, params->pcubMsgSize, params->psteamIDRemote ); + return 0; } -void cppISteamNetworking_SteamNetworking003_AcceptP2PSessionWithUser( struct cppISteamNetworking_SteamNetworking003_AcceptP2PSessionWithUser_params *params ) +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; params->_ret = iface->AcceptP2PSessionWithUser( params->steamIDRemote ); + return 0; } -void cppISteamNetworking_SteamNetworking003_CloseP2PSessionWithUser( struct cppISteamNetworking_SteamNetworking003_CloseP2PSessionWithUser_params *params ) +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; params->_ret = iface->CloseP2PSessionWithUser( params->steamIDRemote ); + return 0; } -void cppISteamNetworking_SteamNetworking003_GetP2PSessionState( struct cppISteamNetworking_SteamNetworking003_GetP2PSessionState_params *params ) +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; params->_ret = iface->GetP2PSessionState( params->steamIDRemote, params->pConnectionState ); + return 0; } -void cppISteamNetworking_SteamNetworking003_CreateListenSocket( struct cppISteamNetworking_SteamNetworking003_CreateListenSocket_params *params ) +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; params->_ret = iface->CreateListenSocket( params->nVirtualP2PPort, params->nIP, params->nPort, params->bAllowUseOfPacketRelay ); + return 0; } -void cppISteamNetworking_SteamNetworking003_CreateP2PConnectionSocket( struct cppISteamNetworking_SteamNetworking003_CreateP2PConnectionSocket_params *params ) +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; params->_ret = iface->CreateP2PConnectionSocket( params->steamIDTarget, params->nVirtualPort, params->nTimeoutSec, params->bAllowUseOfPacketRelay ); + return 0; } -void cppISteamNetworking_SteamNetworking003_CreateConnectionSocket( struct cppISteamNetworking_SteamNetworking003_CreateConnectionSocket_params *params ) +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; params->_ret = iface->CreateConnectionSocket( params->nIP, params->nPort, params->nTimeoutSec ); + return 0; } -void cppISteamNetworking_SteamNetworking003_DestroySocket( struct cppISteamNetworking_SteamNetworking003_DestroySocket_params *params ) +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; params->_ret = iface->DestroySocket( params->hSocket, params->bNotifyRemoteEnd ); + return 0; } -void cppISteamNetworking_SteamNetworking003_DestroyListenSocket( struct cppISteamNetworking_SteamNetworking003_DestroyListenSocket_params *params ) +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; params->_ret = iface->DestroyListenSocket( params->hSocket, params->bNotifyRemoteEnd ); + return 0; } -void cppISteamNetworking_SteamNetworking003_SendDataOnSocket( struct cppISteamNetworking_SteamNetworking003_SendDataOnSocket_params *params ) +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; params->_ret = iface->SendDataOnSocket( params->hSocket, params->pubData, params->cubData, params->bReliable ); + return 0; } -void cppISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket( struct cppISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket_params *params ) +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; params->_ret = iface->IsDataAvailableOnSocket( params->hSocket, params->pcubMsgSize ); + return 0; } -void cppISteamNetworking_SteamNetworking003_RetrieveDataFromSocket( struct cppISteamNetworking_SteamNetworking003_RetrieveDataFromSocket_params *params ) +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; params->_ret = iface->RetrieveDataFromSocket( params->hSocket, params->pubDest, params->cubDest, params->pcubMsgSize ); + return 0; } -void cppISteamNetworking_SteamNetworking003_IsDataAvailable( struct cppISteamNetworking_SteamNetworking003_IsDataAvailable_params *params ) +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; params->_ret = iface->IsDataAvailable( params->hListenSocket, params->pcubMsgSize, params->phSocket ); + return 0; } -void cppISteamNetworking_SteamNetworking003_RetrieveData( struct cppISteamNetworking_SteamNetworking003_RetrieveData_params *params ) +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; params->_ret = iface->RetrieveData( params->hListenSocket, params->pubDest, params->cubDest, params->pcubMsgSize, params->phSocket ); + return 0; } -void cppISteamNetworking_SteamNetworking003_GetSocketInfo( struct cppISteamNetworking_SteamNetworking003_GetSocketInfo_params *params ) +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; params->_ret = iface->GetSocketInfo( params->hSocket, params->pSteamIDRemote, params->peSocketStatus, params->punIPRemote, params->punPortRemote ); + return 0; } -void cppISteamNetworking_SteamNetworking003_GetListenSocketInfo( struct cppISteamNetworking_SteamNetworking003_GetListenSocketInfo_params *params ) +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; params->_ret = iface->GetListenSocketInfo( params->hListenSocket, params->pnIP, params->pnPort ); + return 0; } -void cppISteamNetworking_SteamNetworking003_GetSocketConnectionType( struct cppISteamNetworking_SteamNetworking003_GetSocketConnectionType_params *params ) +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; params->_ret = iface->GetSocketConnectionType( params->hSocket ); + return 0; } -void cppISteamNetworking_SteamNetworking003_GetMaxPacketSize( struct cppISteamNetworking_SteamNetworking003_GetMaxPacketSize_params *params ) +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; params->_ret = iface->GetMaxPacketSize( params->hSocket ); + return 0; } diff --git a/lsteamclient/cppISteamNetworking_SteamNetworking003.h b/lsteamclient/cppISteamNetworking_SteamNetworking003.h deleted file mode 100644 index 065797e1..00000000 --- a/lsteamclient/cppISteamNetworking_SteamNetworking003.h +++ /dev/null @@ -1,208 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamNetworking_SteamNetworking003_SendP2PPacket_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDRemote; - const void *pubData; - uint32_t cubData; - uint32_t eP2PSendType; -}; -extern void cppISteamNetworking_SteamNetworking003_SendP2PPacket( struct cppISteamNetworking_SteamNetworking003_SendP2PPacket_params *params ); - -struct cppISteamNetworking_SteamNetworking003_IsP2PPacketAvailable_params -{ - void *linux_side; - bool _ret; - uint32_t *pcubMsgSize; -}; -extern void cppISteamNetworking_SteamNetworking003_IsP2PPacketAvailable( struct cppISteamNetworking_SteamNetworking003_IsP2PPacketAvailable_params *params ); - -struct cppISteamNetworking_SteamNetworking003_ReadP2PPacket_params -{ - void *linux_side; - bool _ret; - void *pubDest; - uint32_t cubDest; - uint32_t *pcubMsgSize; - CSteamID *psteamIDRemote; -}; -extern void cppISteamNetworking_SteamNetworking003_ReadP2PPacket( struct cppISteamNetworking_SteamNetworking003_ReadP2PPacket_params *params ); - -struct cppISteamNetworking_SteamNetworking003_AcceptP2PSessionWithUser_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDRemote; -}; -extern void cppISteamNetworking_SteamNetworking003_AcceptP2PSessionWithUser( struct cppISteamNetworking_SteamNetworking003_AcceptP2PSessionWithUser_params *params ); - -struct cppISteamNetworking_SteamNetworking003_CloseP2PSessionWithUser_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDRemote; -}; -extern void cppISteamNetworking_SteamNetworking003_CloseP2PSessionWithUser( struct cppISteamNetworking_SteamNetworking003_CloseP2PSessionWithUser_params *params ); - -struct cppISteamNetworking_SteamNetworking003_GetP2PSessionState_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDRemote; - P2PSessionState_t *pConnectionState; -}; -extern void cppISteamNetworking_SteamNetworking003_GetP2PSessionState( struct cppISteamNetworking_SteamNetworking003_GetP2PSessionState_params *params ); - -struct cppISteamNetworking_SteamNetworking003_CreateListenSocket_params -{ - void *linux_side; - uint32_t _ret; - int32_t nVirtualP2PPort; - uint32_t nIP; - uint16_t nPort; - bool bAllowUseOfPacketRelay; -}; -extern void cppISteamNetworking_SteamNetworking003_CreateListenSocket( struct cppISteamNetworking_SteamNetworking003_CreateListenSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking003_CreateP2PConnectionSocket_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDTarget; - int32_t nVirtualPort; - int32_t nTimeoutSec; - bool bAllowUseOfPacketRelay; -}; -extern void cppISteamNetworking_SteamNetworking003_CreateP2PConnectionSocket( struct cppISteamNetworking_SteamNetworking003_CreateP2PConnectionSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking003_CreateConnectionSocket_params -{ - void *linux_side; - uint32_t _ret; - uint32_t nIP; - uint16_t nPort; - int32_t nTimeoutSec; -}; -extern void cppISteamNetworking_SteamNetworking003_CreateConnectionSocket( struct cppISteamNetworking_SteamNetworking003_CreateConnectionSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking003_DestroySocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - bool bNotifyRemoteEnd; -}; -extern void cppISteamNetworking_SteamNetworking003_DestroySocket( struct cppISteamNetworking_SteamNetworking003_DestroySocket_params *params ); - -struct cppISteamNetworking_SteamNetworking003_DestroyListenSocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - bool bNotifyRemoteEnd; -}; -extern void cppISteamNetworking_SteamNetworking003_DestroyListenSocket( struct cppISteamNetworking_SteamNetworking003_DestroyListenSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking003_SendDataOnSocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - void *pubData; - uint32_t cubData; - bool bReliable; -}; -extern void cppISteamNetworking_SteamNetworking003_SendDataOnSocket( struct cppISteamNetworking_SteamNetworking003_SendDataOnSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - uint32_t *pcubMsgSize; -}; -extern void cppISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket( struct cppISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking003_RetrieveDataFromSocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - void *pubDest; - uint32_t cubDest; - uint32_t *pcubMsgSize; -}; -extern void cppISteamNetworking_SteamNetworking003_RetrieveDataFromSocket( struct cppISteamNetworking_SteamNetworking003_RetrieveDataFromSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking003_IsDataAvailable_params -{ - void *linux_side; - bool _ret; - uint32_t hListenSocket; - uint32_t *pcubMsgSize; - uint32_t *phSocket; -}; -extern void cppISteamNetworking_SteamNetworking003_IsDataAvailable( struct cppISteamNetworking_SteamNetworking003_IsDataAvailable_params *params ); - -struct cppISteamNetworking_SteamNetworking003_RetrieveData_params -{ - void *linux_side; - bool _ret; - uint32_t hListenSocket; - void *pubDest; - uint32_t cubDest; - uint32_t *pcubMsgSize; - uint32_t *phSocket; -}; -extern void cppISteamNetworking_SteamNetworking003_RetrieveData( struct cppISteamNetworking_SteamNetworking003_RetrieveData_params *params ); - -struct cppISteamNetworking_SteamNetworking003_GetSocketInfo_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - CSteamID *pSteamIDRemote; - int32_t *peSocketStatus; - uint32_t *punIPRemote; - uint16_t *punPortRemote; -}; -extern void cppISteamNetworking_SteamNetworking003_GetSocketInfo( struct cppISteamNetworking_SteamNetworking003_GetSocketInfo_params *params ); - -struct cppISteamNetworking_SteamNetworking003_GetListenSocketInfo_params -{ - void *linux_side; - bool _ret; - uint32_t hListenSocket; - uint32_t *pnIP; - uint16_t *pnPort; -}; -extern void cppISteamNetworking_SteamNetworking003_GetListenSocketInfo( struct cppISteamNetworking_SteamNetworking003_GetListenSocketInfo_params *params ); - -struct cppISteamNetworking_SteamNetworking003_GetSocketConnectionType_params -{ - void *linux_side; - uint32_t _ret; - uint32_t hSocket; -}; -extern void cppISteamNetworking_SteamNetworking003_GetSocketConnectionType( struct cppISteamNetworking_SteamNetworking003_GetSocketConnectionType_params *params ); - -struct cppISteamNetworking_SteamNetworking003_GetMaxPacketSize_params -{ - void *linux_side; - int32_t _ret; - uint32_t hSocket; -}; -extern void cppISteamNetworking_SteamNetworking003_GetMaxPacketSize( struct cppISteamNetworking_SteamNetworking003_GetMaxPacketSize_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamNetworking_SteamNetworking004.cpp b/lsteamclient/cppISteamNetworking_SteamNetworking004.cpp index a1574891..275d92c0 100644 --- a/lsteamclient/cppISteamNetworking_SteamNetworking004.cpp +++ b/lsteamclient/cppISteamNetworking_SteamNetworking004.cpp @@ -1,124 +1,163 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamNetworking_SteamNetworking004.h" -void cppISteamNetworking_SteamNetworking004_SendP2PPacket( struct cppISteamNetworking_SteamNetworking004_SendP2PPacket_params *params ) +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; params->_ret = iface->SendP2PPacket( params->steamIDRemote, params->pubData, params->cubData, params->eP2PSendType, params->nVirtualPort ); + return 0; } -void cppISteamNetworking_SteamNetworking004_IsP2PPacketAvailable( struct cppISteamNetworking_SteamNetworking004_IsP2PPacketAvailable_params *params ) +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; params->_ret = iface->IsP2PPacketAvailable( params->pcubMsgSize, params->nVirtualPort ); + return 0; } -void cppISteamNetworking_SteamNetworking004_ReadP2PPacket( struct cppISteamNetworking_SteamNetworking004_ReadP2PPacket_params *params ) +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; params->_ret = iface->ReadP2PPacket( params->pubDest, params->cubDest, params->pcubMsgSize, params->psteamIDRemote, params->nVirtualPort ); + return 0; } -void cppISteamNetworking_SteamNetworking004_AcceptP2PSessionWithUser( struct cppISteamNetworking_SteamNetworking004_AcceptP2PSessionWithUser_params *params ) +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; params->_ret = iface->AcceptP2PSessionWithUser( params->steamIDRemote ); + return 0; } -void cppISteamNetworking_SteamNetworking004_CloseP2PSessionWithUser( struct cppISteamNetworking_SteamNetworking004_CloseP2PSessionWithUser_params *params ) +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; params->_ret = iface->CloseP2PSessionWithUser( params->steamIDRemote ); + return 0; } -void cppISteamNetworking_SteamNetworking004_GetP2PSessionState( struct cppISteamNetworking_SteamNetworking004_GetP2PSessionState_params *params ) +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; params->_ret = iface->GetP2PSessionState( params->steamIDRemote, params->pConnectionState ); + return 0; } -void cppISteamNetworking_SteamNetworking004_CreateListenSocket( struct cppISteamNetworking_SteamNetworking004_CreateListenSocket_params *params ) +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; params->_ret = iface->CreateListenSocket( params->nVirtualP2PPort, params->nIP, params->nPort, params->bAllowUseOfPacketRelay ); + return 0; } -void cppISteamNetworking_SteamNetworking004_CreateP2PConnectionSocket( struct cppISteamNetworking_SteamNetworking004_CreateP2PConnectionSocket_params *params ) +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; params->_ret = iface->CreateP2PConnectionSocket( params->steamIDTarget, params->nVirtualPort, params->nTimeoutSec, params->bAllowUseOfPacketRelay ); + return 0; } -void cppISteamNetworking_SteamNetworking004_CreateConnectionSocket( struct cppISteamNetworking_SteamNetworking004_CreateConnectionSocket_params *params ) +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; params->_ret = iface->CreateConnectionSocket( params->nIP, params->nPort, params->nTimeoutSec ); + return 0; } -void cppISteamNetworking_SteamNetworking004_DestroySocket( struct cppISteamNetworking_SteamNetworking004_DestroySocket_params *params ) +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; params->_ret = iface->DestroySocket( params->hSocket, params->bNotifyRemoteEnd ); + return 0; } -void cppISteamNetworking_SteamNetworking004_DestroyListenSocket( struct cppISteamNetworking_SteamNetworking004_DestroyListenSocket_params *params ) +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; params->_ret = iface->DestroyListenSocket( params->hSocket, params->bNotifyRemoteEnd ); + return 0; } -void cppISteamNetworking_SteamNetworking004_SendDataOnSocket( struct cppISteamNetworking_SteamNetworking004_SendDataOnSocket_params *params ) +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; params->_ret = iface->SendDataOnSocket( params->hSocket, params->pubData, params->cubData, params->bReliable ); + return 0; } -void cppISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket( struct cppISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket_params *params ) +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; params->_ret = iface->IsDataAvailableOnSocket( params->hSocket, params->pcubMsgSize ); + return 0; } -void cppISteamNetworking_SteamNetworking004_RetrieveDataFromSocket( struct cppISteamNetworking_SteamNetworking004_RetrieveDataFromSocket_params *params ) +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; params->_ret = iface->RetrieveDataFromSocket( params->hSocket, params->pubDest, params->cubDest, params->pcubMsgSize ); + return 0; } -void cppISteamNetworking_SteamNetworking004_IsDataAvailable( struct cppISteamNetworking_SteamNetworking004_IsDataAvailable_params *params ) +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; params->_ret = iface->IsDataAvailable( params->hListenSocket, params->pcubMsgSize, params->phSocket ); + return 0; } -void cppISteamNetworking_SteamNetworking004_RetrieveData( struct cppISteamNetworking_SteamNetworking004_RetrieveData_params *params ) +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; params->_ret = iface->RetrieveData( params->hListenSocket, params->pubDest, params->cubDest, params->pcubMsgSize, params->phSocket ); + return 0; } -void cppISteamNetworking_SteamNetworking004_GetSocketInfo( struct cppISteamNetworking_SteamNetworking004_GetSocketInfo_params *params ) +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; params->_ret = iface->GetSocketInfo( params->hSocket, params->pSteamIDRemote, params->peSocketStatus, params->punIPRemote, params->punPortRemote ); + return 0; } -void cppISteamNetworking_SteamNetworking004_GetListenSocketInfo( struct cppISteamNetworking_SteamNetworking004_GetListenSocketInfo_params *params ) +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; params->_ret = iface->GetListenSocketInfo( params->hListenSocket, params->pnIP, params->pnPort ); + return 0; } -void cppISteamNetworking_SteamNetworking004_GetSocketConnectionType( struct cppISteamNetworking_SteamNetworking004_GetSocketConnectionType_params *params ) +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; params->_ret = iface->GetSocketConnectionType( params->hSocket ); + return 0; } -void cppISteamNetworking_SteamNetworking004_GetMaxPacketSize( struct cppISteamNetworking_SteamNetworking004_GetMaxPacketSize_params *params ) +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; params->_ret = iface->GetMaxPacketSize( params->hSocket ); + return 0; } diff --git a/lsteamclient/cppISteamNetworking_SteamNetworking004.h b/lsteamclient/cppISteamNetworking_SteamNetworking004.h deleted file mode 100644 index efd1be53..00000000 --- a/lsteamclient/cppISteamNetworking_SteamNetworking004.h +++ /dev/null @@ -1,211 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamNetworking_SteamNetworking004_SendP2PPacket_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDRemote; - const void *pubData; - uint32_t cubData; - uint32_t eP2PSendType; - int32_t nVirtualPort; -}; -extern void cppISteamNetworking_SteamNetworking004_SendP2PPacket( struct cppISteamNetworking_SteamNetworking004_SendP2PPacket_params *params ); - -struct cppISteamNetworking_SteamNetworking004_IsP2PPacketAvailable_params -{ - void *linux_side; - bool _ret; - uint32_t *pcubMsgSize; - int32_t nVirtualPort; -}; -extern void cppISteamNetworking_SteamNetworking004_IsP2PPacketAvailable( struct cppISteamNetworking_SteamNetworking004_IsP2PPacketAvailable_params *params ); - -struct cppISteamNetworking_SteamNetworking004_ReadP2PPacket_params -{ - void *linux_side; - bool _ret; - void *pubDest; - uint32_t cubDest; - uint32_t *pcubMsgSize; - CSteamID *psteamIDRemote; - int32_t nVirtualPort; -}; -extern void cppISteamNetworking_SteamNetworking004_ReadP2PPacket( struct cppISteamNetworking_SteamNetworking004_ReadP2PPacket_params *params ); - -struct cppISteamNetworking_SteamNetworking004_AcceptP2PSessionWithUser_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDRemote; -}; -extern void cppISteamNetworking_SteamNetworking004_AcceptP2PSessionWithUser( struct cppISteamNetworking_SteamNetworking004_AcceptP2PSessionWithUser_params *params ); - -struct cppISteamNetworking_SteamNetworking004_CloseP2PSessionWithUser_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDRemote; -}; -extern void cppISteamNetworking_SteamNetworking004_CloseP2PSessionWithUser( struct cppISteamNetworking_SteamNetworking004_CloseP2PSessionWithUser_params *params ); - -struct cppISteamNetworking_SteamNetworking004_GetP2PSessionState_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDRemote; - P2PSessionState_t *pConnectionState; -}; -extern void cppISteamNetworking_SteamNetworking004_GetP2PSessionState( struct cppISteamNetworking_SteamNetworking004_GetP2PSessionState_params *params ); - -struct cppISteamNetworking_SteamNetworking004_CreateListenSocket_params -{ - void *linux_side; - uint32_t _ret; - int32_t nVirtualP2PPort; - uint32_t nIP; - uint16_t nPort; - bool bAllowUseOfPacketRelay; -}; -extern void cppISteamNetworking_SteamNetworking004_CreateListenSocket( struct cppISteamNetworking_SteamNetworking004_CreateListenSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking004_CreateP2PConnectionSocket_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDTarget; - int32_t nVirtualPort; - int32_t nTimeoutSec; - bool bAllowUseOfPacketRelay; -}; -extern void cppISteamNetworking_SteamNetworking004_CreateP2PConnectionSocket( struct cppISteamNetworking_SteamNetworking004_CreateP2PConnectionSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking004_CreateConnectionSocket_params -{ - void *linux_side; - uint32_t _ret; - uint32_t nIP; - uint16_t nPort; - int32_t nTimeoutSec; -}; -extern void cppISteamNetworking_SteamNetworking004_CreateConnectionSocket( struct cppISteamNetworking_SteamNetworking004_CreateConnectionSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking004_DestroySocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - bool bNotifyRemoteEnd; -}; -extern void cppISteamNetworking_SteamNetworking004_DestroySocket( struct cppISteamNetworking_SteamNetworking004_DestroySocket_params *params ); - -struct cppISteamNetworking_SteamNetworking004_DestroyListenSocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - bool bNotifyRemoteEnd; -}; -extern void cppISteamNetworking_SteamNetworking004_DestroyListenSocket( struct cppISteamNetworking_SteamNetworking004_DestroyListenSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking004_SendDataOnSocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - void *pubData; - uint32_t cubData; - bool bReliable; -}; -extern void cppISteamNetworking_SteamNetworking004_SendDataOnSocket( struct cppISteamNetworking_SteamNetworking004_SendDataOnSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - uint32_t *pcubMsgSize; -}; -extern void cppISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket( struct cppISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking004_RetrieveDataFromSocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - void *pubDest; - uint32_t cubDest; - uint32_t *pcubMsgSize; -}; -extern void cppISteamNetworking_SteamNetworking004_RetrieveDataFromSocket( struct cppISteamNetworking_SteamNetworking004_RetrieveDataFromSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking004_IsDataAvailable_params -{ - void *linux_side; - bool _ret; - uint32_t hListenSocket; - uint32_t *pcubMsgSize; - uint32_t *phSocket; -}; -extern void cppISteamNetworking_SteamNetworking004_IsDataAvailable( struct cppISteamNetworking_SteamNetworking004_IsDataAvailable_params *params ); - -struct cppISteamNetworking_SteamNetworking004_RetrieveData_params -{ - void *linux_side; - bool _ret; - uint32_t hListenSocket; - void *pubDest; - uint32_t cubDest; - uint32_t *pcubMsgSize; - uint32_t *phSocket; -}; -extern void cppISteamNetworking_SteamNetworking004_RetrieveData( struct cppISteamNetworking_SteamNetworking004_RetrieveData_params *params ); - -struct cppISteamNetworking_SteamNetworking004_GetSocketInfo_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - CSteamID *pSteamIDRemote; - int32_t *peSocketStatus; - uint32_t *punIPRemote; - uint16_t *punPortRemote; -}; -extern void cppISteamNetworking_SteamNetworking004_GetSocketInfo( struct cppISteamNetworking_SteamNetworking004_GetSocketInfo_params *params ); - -struct cppISteamNetworking_SteamNetworking004_GetListenSocketInfo_params -{ - void *linux_side; - bool _ret; - uint32_t hListenSocket; - uint32_t *pnIP; - uint16_t *pnPort; -}; -extern void cppISteamNetworking_SteamNetworking004_GetListenSocketInfo( struct cppISteamNetworking_SteamNetworking004_GetListenSocketInfo_params *params ); - -struct cppISteamNetworking_SteamNetworking004_GetSocketConnectionType_params -{ - void *linux_side; - uint32_t _ret; - uint32_t hSocket; -}; -extern void cppISteamNetworking_SteamNetworking004_GetSocketConnectionType( struct cppISteamNetworking_SteamNetworking004_GetSocketConnectionType_params *params ); - -struct cppISteamNetworking_SteamNetworking004_GetMaxPacketSize_params -{ - void *linux_side; - int32_t _ret; - uint32_t hSocket; -}; -extern void cppISteamNetworking_SteamNetworking004_GetMaxPacketSize( struct cppISteamNetworking_SteamNetworking004_GetMaxPacketSize_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamNetworking_SteamNetworking005.cpp b/lsteamclient/cppISteamNetworking_SteamNetworking005.cpp index 99e17d26..7f419c58 100644 --- a/lsteamclient/cppISteamNetworking_SteamNetworking005.cpp +++ b/lsteamclient/cppISteamNetworking_SteamNetworking005.cpp @@ -1,136 +1,179 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamNetworking_SteamNetworking005.h" -void cppISteamNetworking_SteamNetworking005_SendP2PPacket( struct cppISteamNetworking_SteamNetworking005_SendP2PPacket_params *params ) +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; params->_ret = iface->SendP2PPacket( params->steamIDRemote, params->pubData, params->cubData, params->eP2PSendType, params->nChannel ); + return 0; } -void cppISteamNetworking_SteamNetworking005_IsP2PPacketAvailable( struct cppISteamNetworking_SteamNetworking005_IsP2PPacketAvailable_params *params ) +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; params->_ret = iface->IsP2PPacketAvailable( params->pcubMsgSize, params->nChannel ); + return 0; } -void cppISteamNetworking_SteamNetworking005_ReadP2PPacket( struct cppISteamNetworking_SteamNetworking005_ReadP2PPacket_params *params ) +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; params->_ret = iface->ReadP2PPacket( params->pubDest, params->cubDest, params->pcubMsgSize, params->psteamIDRemote, params->nChannel ); + return 0; } -void cppISteamNetworking_SteamNetworking005_AcceptP2PSessionWithUser( struct cppISteamNetworking_SteamNetworking005_AcceptP2PSessionWithUser_params *params ) +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; params->_ret = iface->AcceptP2PSessionWithUser( params->steamIDRemote ); + return 0; } -void cppISteamNetworking_SteamNetworking005_CloseP2PSessionWithUser( struct cppISteamNetworking_SteamNetworking005_CloseP2PSessionWithUser_params *params ) +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; params->_ret = iface->CloseP2PSessionWithUser( params->steamIDRemote ); + return 0; } -void cppISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser( struct cppISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser_params *params ) +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; params->_ret = iface->CloseP2PChannelWithUser( params->steamIDRemote, params->nChannel ); + return 0; } -void cppISteamNetworking_SteamNetworking005_GetP2PSessionState( struct cppISteamNetworking_SteamNetworking005_GetP2PSessionState_params *params ) +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; params->_ret = iface->GetP2PSessionState( params->steamIDRemote, params->pConnectionState ); + return 0; } -void cppISteamNetworking_SteamNetworking005_AllowP2PPacketRelay( struct cppISteamNetworking_SteamNetworking005_AllowP2PPacketRelay_params *params ) +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; params->_ret = iface->AllowP2PPacketRelay( params->bAllow ); + return 0; } -void cppISteamNetworking_SteamNetworking005_CreateListenSocket( struct cppISteamNetworking_SteamNetworking005_CreateListenSocket_params *params ) +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; params->_ret = iface->CreateListenSocket( params->nVirtualP2PPort, params->nIP, params->nPort, params->bAllowUseOfPacketRelay ); + return 0; } -void cppISteamNetworking_SteamNetworking005_CreateP2PConnectionSocket( struct cppISteamNetworking_SteamNetworking005_CreateP2PConnectionSocket_params *params ) +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; params->_ret = iface->CreateP2PConnectionSocket( params->steamIDTarget, params->nVirtualPort, params->nTimeoutSec, params->bAllowUseOfPacketRelay ); + return 0; } -void cppISteamNetworking_SteamNetworking005_CreateConnectionSocket( struct cppISteamNetworking_SteamNetworking005_CreateConnectionSocket_params *params ) +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; params->_ret = iface->CreateConnectionSocket( params->nIP, params->nPort, params->nTimeoutSec ); + return 0; } -void cppISteamNetworking_SteamNetworking005_DestroySocket( struct cppISteamNetworking_SteamNetworking005_DestroySocket_params *params ) +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; params->_ret = iface->DestroySocket( params->hSocket, params->bNotifyRemoteEnd ); + return 0; } -void cppISteamNetworking_SteamNetworking005_DestroyListenSocket( struct cppISteamNetworking_SteamNetworking005_DestroyListenSocket_params *params ) +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; params->_ret = iface->DestroyListenSocket( params->hSocket, params->bNotifyRemoteEnd ); + return 0; } -void cppISteamNetworking_SteamNetworking005_SendDataOnSocket( struct cppISteamNetworking_SteamNetworking005_SendDataOnSocket_params *params ) +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; params->_ret = iface->SendDataOnSocket( params->hSocket, params->pubData, params->cubData, params->bReliable ); + return 0; } -void cppISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket( struct cppISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket_params *params ) +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; params->_ret = iface->IsDataAvailableOnSocket( params->hSocket, params->pcubMsgSize ); + return 0; } -void cppISteamNetworking_SteamNetworking005_RetrieveDataFromSocket( struct cppISteamNetworking_SteamNetworking005_RetrieveDataFromSocket_params *params ) +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; params->_ret = iface->RetrieveDataFromSocket( params->hSocket, params->pubDest, params->cubDest, params->pcubMsgSize ); + return 0; } -void cppISteamNetworking_SteamNetworking005_IsDataAvailable( struct cppISteamNetworking_SteamNetworking005_IsDataAvailable_params *params ) +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; params->_ret = iface->IsDataAvailable( params->hListenSocket, params->pcubMsgSize, params->phSocket ); + return 0; } -void cppISteamNetworking_SteamNetworking005_RetrieveData( struct cppISteamNetworking_SteamNetworking005_RetrieveData_params *params ) +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; params->_ret = iface->RetrieveData( params->hListenSocket, params->pubDest, params->cubDest, params->pcubMsgSize, params->phSocket ); + return 0; } -void cppISteamNetworking_SteamNetworking005_GetSocketInfo( struct cppISteamNetworking_SteamNetworking005_GetSocketInfo_params *params ) +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; params->_ret = iface->GetSocketInfo( params->hSocket, params->pSteamIDRemote, params->peSocketStatus, params->punIPRemote, params->punPortRemote ); + return 0; } -void cppISteamNetworking_SteamNetworking005_GetListenSocketInfo( struct cppISteamNetworking_SteamNetworking005_GetListenSocketInfo_params *params ) +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; params->_ret = iface->GetListenSocketInfo( params->hListenSocket, params->pnIP, params->pnPort ); + return 0; } -void cppISteamNetworking_SteamNetworking005_GetSocketConnectionType( struct cppISteamNetworking_SteamNetworking005_GetSocketConnectionType_params *params ) +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; params->_ret = iface->GetSocketConnectionType( params->hSocket ); + return 0; } -void cppISteamNetworking_SteamNetworking005_GetMaxPacketSize( struct cppISteamNetworking_SteamNetworking005_GetMaxPacketSize_params *params ) +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; params->_ret = iface->GetMaxPacketSize( params->hSocket ); + return 0; } diff --git a/lsteamclient/cppISteamNetworking_SteamNetworking005.h b/lsteamclient/cppISteamNetworking_SteamNetworking005.h deleted file mode 100644 index a6a3b0bf..00000000 --- a/lsteamclient/cppISteamNetworking_SteamNetworking005.h +++ /dev/null @@ -1,228 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamNetworking_SteamNetworking005_SendP2PPacket_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDRemote; - const void *pubData; - uint32_t cubData; - uint32_t eP2PSendType; - int32_t nChannel; -}; -extern void cppISteamNetworking_SteamNetworking005_SendP2PPacket( struct cppISteamNetworking_SteamNetworking005_SendP2PPacket_params *params ); - -struct cppISteamNetworking_SteamNetworking005_IsP2PPacketAvailable_params -{ - void *linux_side; - bool _ret; - uint32_t *pcubMsgSize; - int32_t nChannel; -}; -extern void cppISteamNetworking_SteamNetworking005_IsP2PPacketAvailable( struct cppISteamNetworking_SteamNetworking005_IsP2PPacketAvailable_params *params ); - -struct cppISteamNetworking_SteamNetworking005_ReadP2PPacket_params -{ - void *linux_side; - bool _ret; - void *pubDest; - uint32_t cubDest; - uint32_t *pcubMsgSize; - CSteamID *psteamIDRemote; - int32_t nChannel; -}; -extern void cppISteamNetworking_SteamNetworking005_ReadP2PPacket( struct cppISteamNetworking_SteamNetworking005_ReadP2PPacket_params *params ); - -struct cppISteamNetworking_SteamNetworking005_AcceptP2PSessionWithUser_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDRemote; -}; -extern void cppISteamNetworking_SteamNetworking005_AcceptP2PSessionWithUser( struct cppISteamNetworking_SteamNetworking005_AcceptP2PSessionWithUser_params *params ); - -struct cppISteamNetworking_SteamNetworking005_CloseP2PSessionWithUser_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDRemote; -}; -extern void cppISteamNetworking_SteamNetworking005_CloseP2PSessionWithUser( struct cppISteamNetworking_SteamNetworking005_CloseP2PSessionWithUser_params *params ); - -struct cppISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDRemote; - int32_t nChannel; -}; -extern void cppISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser( struct cppISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser_params *params ); - -struct cppISteamNetworking_SteamNetworking005_GetP2PSessionState_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDRemote; - P2PSessionState_t *pConnectionState; -}; -extern void cppISteamNetworking_SteamNetworking005_GetP2PSessionState( struct cppISteamNetworking_SteamNetworking005_GetP2PSessionState_params *params ); - -struct cppISteamNetworking_SteamNetworking005_AllowP2PPacketRelay_params -{ - void *linux_side; - bool _ret; - bool bAllow; -}; -extern void cppISteamNetworking_SteamNetworking005_AllowP2PPacketRelay( struct cppISteamNetworking_SteamNetworking005_AllowP2PPacketRelay_params *params ); - -struct cppISteamNetworking_SteamNetworking005_CreateListenSocket_params -{ - void *linux_side; - uint32_t _ret; - int32_t nVirtualP2PPort; - uint32_t nIP; - uint16_t nPort; - bool bAllowUseOfPacketRelay; -}; -extern void cppISteamNetworking_SteamNetworking005_CreateListenSocket( struct cppISteamNetworking_SteamNetworking005_CreateListenSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking005_CreateP2PConnectionSocket_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDTarget; - int32_t nVirtualPort; - int32_t nTimeoutSec; - bool bAllowUseOfPacketRelay; -}; -extern void cppISteamNetworking_SteamNetworking005_CreateP2PConnectionSocket( struct cppISteamNetworking_SteamNetworking005_CreateP2PConnectionSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking005_CreateConnectionSocket_params -{ - void *linux_side; - uint32_t _ret; - uint32_t nIP; - uint16_t nPort; - int32_t nTimeoutSec; -}; -extern void cppISteamNetworking_SteamNetworking005_CreateConnectionSocket( struct cppISteamNetworking_SteamNetworking005_CreateConnectionSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking005_DestroySocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - bool bNotifyRemoteEnd; -}; -extern void cppISteamNetworking_SteamNetworking005_DestroySocket( struct cppISteamNetworking_SteamNetworking005_DestroySocket_params *params ); - -struct cppISteamNetworking_SteamNetworking005_DestroyListenSocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - bool bNotifyRemoteEnd; -}; -extern void cppISteamNetworking_SteamNetworking005_DestroyListenSocket( struct cppISteamNetworking_SteamNetworking005_DestroyListenSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking005_SendDataOnSocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - void *pubData; - uint32_t cubData; - bool bReliable; -}; -extern void cppISteamNetworking_SteamNetworking005_SendDataOnSocket( struct cppISteamNetworking_SteamNetworking005_SendDataOnSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - uint32_t *pcubMsgSize; -}; -extern void cppISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket( struct cppISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking005_RetrieveDataFromSocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - void *pubDest; - uint32_t cubDest; - uint32_t *pcubMsgSize; -}; -extern void cppISteamNetworking_SteamNetworking005_RetrieveDataFromSocket( struct cppISteamNetworking_SteamNetworking005_RetrieveDataFromSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking005_IsDataAvailable_params -{ - void *linux_side; - bool _ret; - uint32_t hListenSocket; - uint32_t *pcubMsgSize; - uint32_t *phSocket; -}; -extern void cppISteamNetworking_SteamNetworking005_IsDataAvailable( struct cppISteamNetworking_SteamNetworking005_IsDataAvailable_params *params ); - -struct cppISteamNetworking_SteamNetworking005_RetrieveData_params -{ - void *linux_side; - bool _ret; - uint32_t hListenSocket; - void *pubDest; - uint32_t cubDest; - uint32_t *pcubMsgSize; - uint32_t *phSocket; -}; -extern void cppISteamNetworking_SteamNetworking005_RetrieveData( struct cppISteamNetworking_SteamNetworking005_RetrieveData_params *params ); - -struct cppISteamNetworking_SteamNetworking005_GetSocketInfo_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - CSteamID *pSteamIDRemote; - int32_t *peSocketStatus; - uint32_t *punIPRemote; - uint16_t *punPortRemote; -}; -extern void cppISteamNetworking_SteamNetworking005_GetSocketInfo( struct cppISteamNetworking_SteamNetworking005_GetSocketInfo_params *params ); - -struct cppISteamNetworking_SteamNetworking005_GetListenSocketInfo_params -{ - void *linux_side; - bool _ret; - uint32_t hListenSocket; - uint32_t *pnIP; - uint16_t *pnPort; -}; -extern void cppISteamNetworking_SteamNetworking005_GetListenSocketInfo( struct cppISteamNetworking_SteamNetworking005_GetListenSocketInfo_params *params ); - -struct cppISteamNetworking_SteamNetworking005_GetSocketConnectionType_params -{ - void *linux_side; - uint32_t _ret; - uint32_t hSocket; -}; -extern void cppISteamNetworking_SteamNetworking005_GetSocketConnectionType( struct cppISteamNetworking_SteamNetworking005_GetSocketConnectionType_params *params ); - -struct cppISteamNetworking_SteamNetworking005_GetMaxPacketSize_params -{ - void *linux_side; - int32_t _ret; - uint32_t hSocket; -}; -extern void cppISteamNetworking_SteamNetworking005_GetMaxPacketSize( struct cppISteamNetworking_SteamNetworking005_GetMaxPacketSize_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamNetworking_SteamNetworking006.cpp b/lsteamclient/cppISteamNetworking_SteamNetworking006.cpp index 8df4c409..ee44eb85 100644 --- a/lsteamclient/cppISteamNetworking_SteamNetworking006.cpp +++ b/lsteamclient/cppISteamNetworking_SteamNetworking006.cpp @@ -1,136 +1,179 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamNetworking_SteamNetworking006.h" -void cppISteamNetworking_SteamNetworking006_SendP2PPacket( struct cppISteamNetworking_SteamNetworking006_SendP2PPacket_params *params ) +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; params->_ret = iface->SendP2PPacket( params->steamIDRemote, params->pubData, params->cubData, params->eP2PSendType, params->nChannel ); + return 0; } -void cppISteamNetworking_SteamNetworking006_IsP2PPacketAvailable( struct cppISteamNetworking_SteamNetworking006_IsP2PPacketAvailable_params *params ) +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; params->_ret = iface->IsP2PPacketAvailable( params->pcubMsgSize, params->nChannel ); + return 0; } -void cppISteamNetworking_SteamNetworking006_ReadP2PPacket( struct cppISteamNetworking_SteamNetworking006_ReadP2PPacket_params *params ) +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; params->_ret = iface->ReadP2PPacket( params->pubDest, params->cubDest, params->pcubMsgSize, params->psteamIDRemote, params->nChannel ); + return 0; } -void cppISteamNetworking_SteamNetworking006_AcceptP2PSessionWithUser( struct cppISteamNetworking_SteamNetworking006_AcceptP2PSessionWithUser_params *params ) +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; params->_ret = iface->AcceptP2PSessionWithUser( params->steamIDRemote ); + return 0; } -void cppISteamNetworking_SteamNetworking006_CloseP2PSessionWithUser( struct cppISteamNetworking_SteamNetworking006_CloseP2PSessionWithUser_params *params ) +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; params->_ret = iface->CloseP2PSessionWithUser( params->steamIDRemote ); + return 0; } -void cppISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser( struct cppISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser_params *params ) +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; params->_ret = iface->CloseP2PChannelWithUser( params->steamIDRemote, params->nChannel ); + return 0; } -void cppISteamNetworking_SteamNetworking006_GetP2PSessionState( struct cppISteamNetworking_SteamNetworking006_GetP2PSessionState_params *params ) +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; params->_ret = iface->GetP2PSessionState( params->steamIDRemote, params->pConnectionState ); + return 0; } -void cppISteamNetworking_SteamNetworking006_AllowP2PPacketRelay( struct cppISteamNetworking_SteamNetworking006_AllowP2PPacketRelay_params *params ) +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; params->_ret = iface->AllowP2PPacketRelay( params->bAllow ); + return 0; } -void cppISteamNetworking_SteamNetworking006_CreateListenSocket( struct cppISteamNetworking_SteamNetworking006_CreateListenSocket_params *params ) +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; params->_ret = iface->CreateListenSocket( params->nVirtualP2PPort, params->nIP, params->nPort, params->bAllowUseOfPacketRelay ); + return 0; } -void cppISteamNetworking_SteamNetworking006_CreateP2PConnectionSocket( struct cppISteamNetworking_SteamNetworking006_CreateP2PConnectionSocket_params *params ) +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; params->_ret = iface->CreateP2PConnectionSocket( params->steamIDTarget, params->nVirtualPort, params->nTimeoutSec, params->bAllowUseOfPacketRelay ); + return 0; } -void cppISteamNetworking_SteamNetworking006_CreateConnectionSocket( struct cppISteamNetworking_SteamNetworking006_CreateConnectionSocket_params *params ) +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; params->_ret = iface->CreateConnectionSocket( params->nIP, params->nPort, params->nTimeoutSec ); + return 0; } -void cppISteamNetworking_SteamNetworking006_DestroySocket( struct cppISteamNetworking_SteamNetworking006_DestroySocket_params *params ) +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; params->_ret = iface->DestroySocket( params->hSocket, params->bNotifyRemoteEnd ); + return 0; } -void cppISteamNetworking_SteamNetworking006_DestroyListenSocket( struct cppISteamNetworking_SteamNetworking006_DestroyListenSocket_params *params ) +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; params->_ret = iface->DestroyListenSocket( params->hSocket, params->bNotifyRemoteEnd ); + return 0; } -void cppISteamNetworking_SteamNetworking006_SendDataOnSocket( struct cppISteamNetworking_SteamNetworking006_SendDataOnSocket_params *params ) +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; params->_ret = iface->SendDataOnSocket( params->hSocket, params->pubData, params->cubData, params->bReliable ); + return 0; } -void cppISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket( struct cppISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket_params *params ) +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; params->_ret = iface->IsDataAvailableOnSocket( params->hSocket, params->pcubMsgSize ); + return 0; } -void cppISteamNetworking_SteamNetworking006_RetrieveDataFromSocket( struct cppISteamNetworking_SteamNetworking006_RetrieveDataFromSocket_params *params ) +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; params->_ret = iface->RetrieveDataFromSocket( params->hSocket, params->pubDest, params->cubDest, params->pcubMsgSize ); + return 0; } -void cppISteamNetworking_SteamNetworking006_IsDataAvailable( struct cppISteamNetworking_SteamNetworking006_IsDataAvailable_params *params ) +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; params->_ret = iface->IsDataAvailable( params->hListenSocket, params->pcubMsgSize, params->phSocket ); + return 0; } -void cppISteamNetworking_SteamNetworking006_RetrieveData( struct cppISteamNetworking_SteamNetworking006_RetrieveData_params *params ) +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; params->_ret = iface->RetrieveData( params->hListenSocket, params->pubDest, params->cubDest, params->pcubMsgSize, params->phSocket ); + return 0; } -void cppISteamNetworking_SteamNetworking006_GetSocketInfo( struct cppISteamNetworking_SteamNetworking006_GetSocketInfo_params *params ) +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; params->_ret = iface->GetSocketInfo( params->hSocket, params->pSteamIDRemote, params->peSocketStatus, params->punIPRemote, params->punPortRemote ); + return 0; } -void cppISteamNetworking_SteamNetworking006_GetListenSocketInfo( struct cppISteamNetworking_SteamNetworking006_GetListenSocketInfo_params *params ) +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; params->_ret = iface->GetListenSocketInfo( params->hListenSocket, params->pnIP, params->pnPort ); + return 0; } -void cppISteamNetworking_SteamNetworking006_GetSocketConnectionType( struct cppISteamNetworking_SteamNetworking006_GetSocketConnectionType_params *params ) +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; params->_ret = iface->GetSocketConnectionType( params->hSocket ); + return 0; } -void cppISteamNetworking_SteamNetworking006_GetMaxPacketSize( struct cppISteamNetworking_SteamNetworking006_GetMaxPacketSize_params *params ) +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; params->_ret = iface->GetMaxPacketSize( params->hSocket ); + return 0; } diff --git a/lsteamclient/cppISteamNetworking_SteamNetworking006.h b/lsteamclient/cppISteamNetworking_SteamNetworking006.h deleted file mode 100644 index 754fc3b2..00000000 --- a/lsteamclient/cppISteamNetworking_SteamNetworking006.h +++ /dev/null @@ -1,228 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamNetworking_SteamNetworking006_SendP2PPacket_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDRemote; - const void *pubData; - uint32_t cubData; - uint32_t eP2PSendType; - int32_t nChannel; -}; -extern void cppISteamNetworking_SteamNetworking006_SendP2PPacket( struct cppISteamNetworking_SteamNetworking006_SendP2PPacket_params *params ); - -struct cppISteamNetworking_SteamNetworking006_IsP2PPacketAvailable_params -{ - void *linux_side; - bool _ret; - uint32_t *pcubMsgSize; - int32_t nChannel; -}; -extern void cppISteamNetworking_SteamNetworking006_IsP2PPacketAvailable( struct cppISteamNetworking_SteamNetworking006_IsP2PPacketAvailable_params *params ); - -struct cppISteamNetworking_SteamNetworking006_ReadP2PPacket_params -{ - void *linux_side; - bool _ret; - void *pubDest; - uint32_t cubDest; - uint32_t *pcubMsgSize; - CSteamID *psteamIDRemote; - int32_t nChannel; -}; -extern void cppISteamNetworking_SteamNetworking006_ReadP2PPacket( struct cppISteamNetworking_SteamNetworking006_ReadP2PPacket_params *params ); - -struct cppISteamNetworking_SteamNetworking006_AcceptP2PSessionWithUser_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDRemote; -}; -extern void cppISteamNetworking_SteamNetworking006_AcceptP2PSessionWithUser( struct cppISteamNetworking_SteamNetworking006_AcceptP2PSessionWithUser_params *params ); - -struct cppISteamNetworking_SteamNetworking006_CloseP2PSessionWithUser_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDRemote; -}; -extern void cppISteamNetworking_SteamNetworking006_CloseP2PSessionWithUser( struct cppISteamNetworking_SteamNetworking006_CloseP2PSessionWithUser_params *params ); - -struct cppISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDRemote; - int32_t nChannel; -}; -extern void cppISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser( struct cppISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser_params *params ); - -struct cppISteamNetworking_SteamNetworking006_GetP2PSessionState_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDRemote; - P2PSessionState_t *pConnectionState; -}; -extern void cppISteamNetworking_SteamNetworking006_GetP2PSessionState( struct cppISteamNetworking_SteamNetworking006_GetP2PSessionState_params *params ); - -struct cppISteamNetworking_SteamNetworking006_AllowP2PPacketRelay_params -{ - void *linux_side; - bool _ret; - bool bAllow; -}; -extern void cppISteamNetworking_SteamNetworking006_AllowP2PPacketRelay( struct cppISteamNetworking_SteamNetworking006_AllowP2PPacketRelay_params *params ); - -struct cppISteamNetworking_SteamNetworking006_CreateListenSocket_params -{ - void *linux_side; - uint32_t _ret; - int32_t nVirtualP2PPort; - SteamIPAddress_t nIP; - uint16_t nPort; - bool bAllowUseOfPacketRelay; -}; -extern void cppISteamNetworking_SteamNetworking006_CreateListenSocket( struct cppISteamNetworking_SteamNetworking006_CreateListenSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking006_CreateP2PConnectionSocket_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamIDTarget; - int32_t nVirtualPort; - int32_t nTimeoutSec; - bool bAllowUseOfPacketRelay; -}; -extern void cppISteamNetworking_SteamNetworking006_CreateP2PConnectionSocket( struct cppISteamNetworking_SteamNetworking006_CreateP2PConnectionSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking006_CreateConnectionSocket_params -{ - void *linux_side; - uint32_t _ret; - SteamIPAddress_t nIP; - uint16_t nPort; - int32_t nTimeoutSec; -}; -extern void cppISteamNetworking_SteamNetworking006_CreateConnectionSocket( struct cppISteamNetworking_SteamNetworking006_CreateConnectionSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking006_DestroySocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - bool bNotifyRemoteEnd; -}; -extern void cppISteamNetworking_SteamNetworking006_DestroySocket( struct cppISteamNetworking_SteamNetworking006_DestroySocket_params *params ); - -struct cppISteamNetworking_SteamNetworking006_DestroyListenSocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - bool bNotifyRemoteEnd; -}; -extern void cppISteamNetworking_SteamNetworking006_DestroyListenSocket( struct cppISteamNetworking_SteamNetworking006_DestroyListenSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking006_SendDataOnSocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - void *pubData; - uint32_t cubData; - bool bReliable; -}; -extern void cppISteamNetworking_SteamNetworking006_SendDataOnSocket( struct cppISteamNetworking_SteamNetworking006_SendDataOnSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - uint32_t *pcubMsgSize; -}; -extern void cppISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket( struct cppISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking006_RetrieveDataFromSocket_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - void *pubDest; - uint32_t cubDest; - uint32_t *pcubMsgSize; -}; -extern void cppISteamNetworking_SteamNetworking006_RetrieveDataFromSocket( struct cppISteamNetworking_SteamNetworking006_RetrieveDataFromSocket_params *params ); - -struct cppISteamNetworking_SteamNetworking006_IsDataAvailable_params -{ - void *linux_side; - bool _ret; - uint32_t hListenSocket; - uint32_t *pcubMsgSize; - uint32_t *phSocket; -}; -extern void cppISteamNetworking_SteamNetworking006_IsDataAvailable( struct cppISteamNetworking_SteamNetworking006_IsDataAvailable_params *params ); - -struct cppISteamNetworking_SteamNetworking006_RetrieveData_params -{ - void *linux_side; - bool _ret; - uint32_t hListenSocket; - void *pubDest; - uint32_t cubDest; - uint32_t *pcubMsgSize; - uint32_t *phSocket; -}; -extern void cppISteamNetworking_SteamNetworking006_RetrieveData( struct cppISteamNetworking_SteamNetworking006_RetrieveData_params *params ); - -struct cppISteamNetworking_SteamNetworking006_GetSocketInfo_params -{ - void *linux_side; - bool _ret; - uint32_t hSocket; - CSteamID *pSteamIDRemote; - int32_t *peSocketStatus; - SteamIPAddress_t *punIPRemote; - uint16_t *punPortRemote; -}; -extern void cppISteamNetworking_SteamNetworking006_GetSocketInfo( struct cppISteamNetworking_SteamNetworking006_GetSocketInfo_params *params ); - -struct cppISteamNetworking_SteamNetworking006_GetListenSocketInfo_params -{ - void *linux_side; - bool _ret; - uint32_t hListenSocket; - SteamIPAddress_t *pnIP; - uint16_t *pnPort; -}; -extern void cppISteamNetworking_SteamNetworking006_GetListenSocketInfo( struct cppISteamNetworking_SteamNetworking006_GetListenSocketInfo_params *params ); - -struct cppISteamNetworking_SteamNetworking006_GetSocketConnectionType_params -{ - void *linux_side; - uint32_t _ret; - uint32_t hSocket; -}; -extern void cppISteamNetworking_SteamNetworking006_GetSocketConnectionType( struct cppISteamNetworking_SteamNetworking006_GetSocketConnectionType_params *params ); - -struct cppISteamNetworking_SteamNetworking006_GetMaxPacketSize_params -{ - void *linux_side; - int32_t _ret; - uint32_t hSocket; -}; -extern void cppISteamNetworking_SteamNetworking006_GetMaxPacketSize( struct cppISteamNetworking_SteamNetworking006_GetMaxPacketSize_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001.cpp b/lsteamclient/cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001.cpp index 91795c45..5a5291d7 100644 --- a/lsteamclient/cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001.cpp +++ b/lsteamclient/cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001.cpp @@ -1,40 +1,51 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001.h" -void cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockEnabled( struct cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockEnabled_params *params ) +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; params->_ret = iface->BIsParentalLockEnabled( ); + return 0; } -void cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockLocked( struct cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockLocked_params *params ) +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; params->_ret = iface->BIsParentalLockLocked( ); + return 0; } -void cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppBlocked( struct cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppBlocked_params *params ) +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; params->_ret = iface->BIsAppBlocked( params->nAppID ); + return 0; } -void cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppInBlockList( struct cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppInBlockList_params *params ) +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; params->_ret = iface->BIsAppInBlockList( params->nAppID ); + return 0; } -void cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureBlocked( struct cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureBlocked_params *params ) +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; params->_ret = iface->BIsFeatureBlocked( params->eFeature ); + return 0; } -void cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureInBlockList( struct cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureInBlockList_params *params ) +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; params->_ret = iface->BIsFeatureInBlockList( params->eFeature ); + return 0; } diff --git a/lsteamclient/cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001.h b/lsteamclient/cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001.h deleted file mode 100644 index 933cfdd2..00000000 --- a/lsteamclient/cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001.h +++ /dev/null @@ -1,58 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockEnabled_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockEnabled( struct cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockEnabled_params *params ); - -struct cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockLocked_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockLocked( struct cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockLocked_params *params ); - -struct cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppBlocked_params -{ - void *linux_side; - bool _ret; - uint32_t nAppID; -}; -extern void cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppBlocked( struct cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppBlocked_params *params ); - -struct cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppInBlockList_params -{ - void *linux_side; - bool _ret; - uint32_t nAppID; -}; -extern void cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppInBlockList( struct cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppInBlockList_params *params ); - -struct cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureBlocked_params -{ - void *linux_side; - bool _ret; - uint32_t eFeature; -}; -extern void cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureBlocked( struct cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureBlocked_params *params ); - -struct cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureInBlockList_params -{ - void *linux_side; - bool _ret; - uint32_t eFeature; -}; -extern void cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureInBlockList( struct cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureInBlockList_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamParties_SteamParties002.cpp b/lsteamclient/cppISteamParties_SteamParties002.cpp index 2781930a..cade610b 100644 --- a/lsteamclient/cppISteamParties_SteamParties002.cpp +++ b/lsteamclient/cppISteamParties_SteamParties002.cpp @@ -1,83 +1,106 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamParties_SteamParties002.h" -void cppISteamParties_SteamParties002_GetNumActiveBeacons( struct cppISteamParties_SteamParties002_GetNumActiveBeacons_params *params ) +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; params->_ret = iface->GetNumActiveBeacons( ); + return 0; } -void cppISteamParties_SteamParties002_GetBeaconByIndex( struct cppISteamParties_SteamParties002_GetBeaconByIndex_params *params ) +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; params->_ret = iface->GetBeaconByIndex( params->unIndex ); + return 0; } -void cppISteamParties_SteamParties002_GetBeaconDetails( struct cppISteamParties_SteamParties002_GetBeaconDetails_params *params ) +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; 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; + return 0; } -void cppISteamParties_SteamParties002_JoinParty( struct cppISteamParties_SteamParties002_JoinParty_params *params ) +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; params->_ret = iface->JoinParty( params->ulBeaconID ); + return 0; } -void cppISteamParties_SteamParties002_GetNumAvailableBeaconLocations( struct cppISteamParties_SteamParties002_GetNumAvailableBeaconLocations_params *params ) +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; params->_ret = iface->GetNumAvailableBeaconLocations( params->puNumLocations ); + return 0; } -void cppISteamParties_SteamParties002_GetAvailableBeaconLocations( struct cppISteamParties_SteamParties002_GetAvailableBeaconLocations_params *params ) +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; u_SteamPartyBeaconLocation_t u_pLocationList = *params->pLocationList; params->_ret = iface->GetAvailableBeaconLocations( &u_pLocationList, params->uMaxNumLocations ); *params->pLocationList = u_pLocationList; + return 0; } -void cppISteamParties_SteamParties002_CreateBeacon( struct cppISteamParties_SteamParties002_CreateBeacon_params *params ) +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; u_SteamPartyBeaconLocation_t u_pBeaconLocation = *params->pBeaconLocation; params->_ret = iface->CreateBeacon( params->unOpenSlots, &u_pBeaconLocation, params->pchConnectString, params->pchMetadata ); *params->pBeaconLocation = u_pBeaconLocation; + return 0; } -void cppISteamParties_SteamParties002_OnReservationCompleted( struct cppISteamParties_SteamParties002_OnReservationCompleted_params *params ) +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; iface->OnReservationCompleted( params->ulBeacon, params->steamIDUser ); + return 0; } -void cppISteamParties_SteamParties002_CancelReservation( struct cppISteamParties_SteamParties002_CancelReservation_params *params ) +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; iface->CancelReservation( params->ulBeacon, params->steamIDUser ); + return 0; } -void cppISteamParties_SteamParties002_ChangeNumOpenSlots( struct cppISteamParties_SteamParties002_ChangeNumOpenSlots_params *params ) +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; params->_ret = iface->ChangeNumOpenSlots( params->ulBeacon, params->unOpenSlots ); + return 0; } -void cppISteamParties_SteamParties002_DestroyBeacon( struct cppISteamParties_SteamParties002_DestroyBeacon_params *params ) +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; params->_ret = iface->DestroyBeacon( params->ulBeacon ); + return 0; } -void cppISteamParties_SteamParties002_GetBeaconLocationData( struct cppISteamParties_SteamParties002_GetBeaconLocationData_params *params ) +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; 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/cppISteamParties_SteamParties002.h b/lsteamclient/cppISteamParties_SteamParties002.h deleted file mode 100644 index d21e871f..00000000 --- a/lsteamclient/cppISteamParties_SteamParties002.h +++ /dev/null @@ -1,119 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamParties_SteamParties002_GetNumActiveBeacons_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamParties_SteamParties002_GetNumActiveBeacons( struct cppISteamParties_SteamParties002_GetNumActiveBeacons_params *params ); - -struct cppISteamParties_SteamParties002_GetBeaconByIndex_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unIndex; -}; -extern void cppISteamParties_SteamParties002_GetBeaconByIndex( struct cppISteamParties_SteamParties002_GetBeaconByIndex_params *params ); - -struct cppISteamParties_SteamParties002_GetBeaconDetails_params -{ - void *linux_side; - bool _ret; - uint64_t ulBeaconID; - CSteamID *pSteamIDBeaconOwner; - w_SteamPartyBeaconLocation_t *pLocation; - char *pchMetadata; - int32_t cchMetadata; -}; -extern void cppISteamParties_SteamParties002_GetBeaconDetails( struct cppISteamParties_SteamParties002_GetBeaconDetails_params *params ); - -struct cppISteamParties_SteamParties002_JoinParty_params -{ - void *linux_side; - uint64_t _ret; - uint64_t ulBeaconID; -}; -extern void cppISteamParties_SteamParties002_JoinParty( struct cppISteamParties_SteamParties002_JoinParty_params *params ); - -struct cppISteamParties_SteamParties002_GetNumAvailableBeaconLocations_params -{ - void *linux_side; - bool _ret; - uint32_t *puNumLocations; -}; -extern void cppISteamParties_SteamParties002_GetNumAvailableBeaconLocations( struct cppISteamParties_SteamParties002_GetNumAvailableBeaconLocations_params *params ); - -struct cppISteamParties_SteamParties002_GetAvailableBeaconLocations_params -{ - void *linux_side; - bool _ret; - w_SteamPartyBeaconLocation_t *pLocationList; - uint32_t uMaxNumLocations; -}; -extern void cppISteamParties_SteamParties002_GetAvailableBeaconLocations( struct cppISteamParties_SteamParties002_GetAvailableBeaconLocations_params *params ); - -struct cppISteamParties_SteamParties002_CreateBeacon_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unOpenSlots; - w_SteamPartyBeaconLocation_t *pBeaconLocation; - const char *pchConnectString; - const char *pchMetadata; -}; -extern void cppISteamParties_SteamParties002_CreateBeacon( struct cppISteamParties_SteamParties002_CreateBeacon_params *params ); - -struct cppISteamParties_SteamParties002_OnReservationCompleted_params -{ - void *linux_side; - uint64_t ulBeacon; - CSteamID steamIDUser; -}; -extern void cppISteamParties_SteamParties002_OnReservationCompleted( struct cppISteamParties_SteamParties002_OnReservationCompleted_params *params ); - -struct cppISteamParties_SteamParties002_CancelReservation_params -{ - void *linux_side; - uint64_t ulBeacon; - CSteamID steamIDUser; -}; -extern void cppISteamParties_SteamParties002_CancelReservation( struct cppISteamParties_SteamParties002_CancelReservation_params *params ); - -struct cppISteamParties_SteamParties002_ChangeNumOpenSlots_params -{ - void *linux_side; - uint64_t _ret; - uint64_t ulBeacon; - uint32_t unOpenSlots; -}; -extern void cppISteamParties_SteamParties002_ChangeNumOpenSlots( struct cppISteamParties_SteamParties002_ChangeNumOpenSlots_params *params ); - -struct cppISteamParties_SteamParties002_DestroyBeacon_params -{ - void *linux_side; - bool _ret; - uint64_t ulBeacon; -}; -extern void cppISteamParties_SteamParties002_DestroyBeacon( struct cppISteamParties_SteamParties002_DestroyBeacon_params *params ); - -struct cppISteamParties_SteamParties002_GetBeaconLocationData_params -{ - void *linux_side; - bool _ret; - w_SteamPartyBeaconLocation_t BeaconLocation; - uint32_t eData; - char *pchDataStringOut; - int32_t cchDataStringOut; -}; -extern void cppISteamParties_SteamParties002_GetBeaconLocationData( struct cppISteamParties_SteamParties002_GetBeaconLocationData_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001.cpp b/lsteamclient/cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001.cpp index 58b63324..2c4ce729 100644 --- a/lsteamclient/cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001.cpp +++ b/lsteamclient/cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001.cpp @@ -1,46 +1,59 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001.h" -void cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionCount( struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionCount_params *params ) +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; params->_ret = iface->GetSessionCount( ); + return 0; } -void cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionID( struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionID_params *params ) +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; params->_ret = iface->GetSessionID( params->iSessionIndex ); + return 0; } -void cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionSteamID( struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionSteamID_params *params ) +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; *params->_ret = iface->GetSessionSteamID( params->unSessionID ); + return 0; } -void cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientName( struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientName_params *params ) +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; params->_ret = iface->GetSessionClientName( params->unSessionID ); + return 0; } -void cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientFormFactor( struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientFormFactor_params *params ) +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; params->_ret = iface->GetSessionClientFormFactor( params->unSessionID ); + return 0; } -void cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSessionClientResolution( struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSessionClientResolution_params *params ) +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; params->_ret = iface->BGetSessionClientResolution( params->unSessionID, params->pnResolutionX, params->pnResolutionY ); + return 0; } -void cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BSendRemotePlayTogetherInvite( struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BSendRemotePlayTogetherInvite_params *params ) +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; params->_ret = iface->BSendRemotePlayTogetherInvite( params->steamIDFriend ); + return 0; } diff --git a/lsteamclient/cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001.h b/lsteamclient/cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001.h deleted file mode 100644 index a3ad0a8a..00000000 --- a/lsteamclient/cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001.h +++ /dev/null @@ -1,69 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionCount_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionCount( struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionCount_params *params ); - -struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionID_params -{ - void *linux_side; - uint32_t _ret; - int32_t iSessionIndex; -}; -extern void cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionID( struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionID_params *params ); - -struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionSteamID_params -{ - void *linux_side; - CSteamID *_ret; - uint32_t unSessionID; -}; -extern void cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionSteamID( struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionSteamID_params *params ); - -struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientName_params -{ - void *linux_side; - const char *_ret; - uint32_t unSessionID; -}; -extern void cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientName( struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientName_params *params ); - -struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientFormFactor_params -{ - void *linux_side; - uint32_t _ret; - uint32_t unSessionID; -}; -extern void cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientFormFactor( struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientFormFactor_params *params ); - -struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSessionClientResolution_params -{ - void *linux_side; - bool _ret; - uint32_t unSessionID; - int32_t *pnResolutionX; - int32_t *pnResolutionY; -}; -extern void cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSessionClientResolution( struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSessionClientResolution_params *params ); - -struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BSendRemotePlayTogetherInvite_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BSendRemotePlayTogetherInvite( struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BSendRemotePlayTogetherInvite_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002.cpp b/lsteamclient/cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002.cpp index 328e1dce..b7900dee 100644 --- a/lsteamclient/cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002.cpp +++ b/lsteamclient/cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002.cpp @@ -1,52 +1,67 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002.h" -void cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionCount( struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionCount_params *params ) +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; params->_ret = iface->GetSessionCount( ); + return 0; } -void cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionID( struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionID_params *params ) +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; params->_ret = iface->GetSessionID( params->iSessionIndex ); + return 0; } -void cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionSteamID( struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionSteamID_params *params ) +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; *params->_ret = iface->GetSessionSteamID( params->unSessionID ); + return 0; } -void cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientName( struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientName_params *params ) +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; params->_ret = iface->GetSessionClientName( params->unSessionID ); + return 0; } -void cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientFormFactor( struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientFormFactor_params *params ) +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; params->_ret = iface->GetSessionClientFormFactor( params->unSessionID ); + return 0; } -void cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSessionClientResolution( struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSessionClientResolution_params *params ) +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; params->_ret = iface->BGetSessionClientResolution( params->unSessionID, params->pnResolutionX, params->pnResolutionY ); + return 0; } -void cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BStartRemotePlayTogether( struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BStartRemotePlayTogether_params *params ) +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; params->_ret = iface->BStartRemotePlayTogether( params->bShowOverlay ); + return 0; } -void cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BSendRemotePlayTogetherInvite( struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BSendRemotePlayTogetherInvite_params *params ) +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; params->_ret = iface->BSendRemotePlayTogetherInvite( params->steamIDFriend ); + return 0; } diff --git a/lsteamclient/cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002.h b/lsteamclient/cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002.h deleted file mode 100644 index 38f52a54..00000000 --- a/lsteamclient/cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002.h +++ /dev/null @@ -1,77 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionCount_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionCount( struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionCount_params *params ); - -struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionID_params -{ - void *linux_side; - uint32_t _ret; - int32_t iSessionIndex; -}; -extern void cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionID( struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionID_params *params ); - -struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionSteamID_params -{ - void *linux_side; - CSteamID *_ret; - uint32_t unSessionID; -}; -extern void cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionSteamID( struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionSteamID_params *params ); - -struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientName_params -{ - void *linux_side; - const char *_ret; - uint32_t unSessionID; -}; -extern void cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientName( struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientName_params *params ); - -struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientFormFactor_params -{ - void *linux_side; - uint32_t _ret; - uint32_t unSessionID; -}; -extern void cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientFormFactor( struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientFormFactor_params *params ); - -struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSessionClientResolution_params -{ - void *linux_side; - bool _ret; - uint32_t unSessionID; - int32_t *pnResolutionX; - int32_t *pnResolutionY; -}; -extern void cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSessionClientResolution( struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSessionClientResolution_params *params ); - -struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BStartRemotePlayTogether_params -{ - void *linux_side; - bool _ret; - bool bShowOverlay; -}; -extern void cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BStartRemotePlayTogether( struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BStartRemotePlayTogether_params *params ); - -struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BSendRemotePlayTogetherInvite_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDFriend; -}; -extern void cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BSendRemotePlayTogetherInvite( struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BSendRemotePlayTogetherInvite_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001.cpp b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001.cpp index 4b0807d4..5e7c2e53 100644 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001.cpp +++ b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001.cpp @@ -1,52 +1,67 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001.h" -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileWrite( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileWrite_params *params ) +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; params->_ret = iface->FileWrite( params->pchFile, params->pvData, params->cubData ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileSize_params *params ) +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; params->_ret = iface->GetFileSize( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileRead_params *params ) +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; params->_ret = iface->FileRead( params->pchFile, params->pvData, params->cubDataToRead ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileExists( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileExists_params *params ) +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; params->_ret = iface->FileExists( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileDelete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileDelete_params *params ) +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; params->_ret = iface->FileDelete( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileCount_params *params ) +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; params->_ret = iface->GetFileCount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileNameAndSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileNameAndSize_params *params ) +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; params->_ret = iface->GetFileNameAndSize( params->iFile, params->pnFileSizeInBytes ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetQuota( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetQuota_params *params ) +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; params->_ret = iface->GetQuota( params->pnTotalBytes, params->puAvailableBytes ); + return 0; } diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001.h b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001.h deleted file mode 100644 index 2f32421c..00000000 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001.h +++ /dev/null @@ -1,81 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileWrite_params -{ - void *linux_side; - bool _ret; - const char *pchFile; - const void *pvData; - int32_t cubData; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileWrite( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileWrite_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileSize_params -{ - void *linux_side; - int32_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileSize_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileRead_params -{ - void *linux_side; - int32_t _ret; - const char *pchFile; - void *pvData; - int32_t cubDataToRead; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileRead_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileExists_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileExists( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileExists_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileDelete_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileDelete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileDelete_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileCount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileNameAndSize_params -{ - void *linux_side; - const char *_ret; - int32_t iFile; - int32_t *pnFileSizeInBytes; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileNameAndSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileNameAndSize_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetQuota_params -{ - void *linux_side; - bool _ret; - int32_t *pnTotalBytes; - int32_t *puAvailableBytes; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetQuota( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetQuota_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002.cpp b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002.cpp index cae799cc..4669cc9f 100644 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002.cpp +++ b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002.cpp @@ -1,46 +1,59 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002.h" -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileWrite( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileWrite_params *params ) +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; params->_ret = iface->FileWrite( params->pchFile, params->pvData, params->cubData ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileSize_params *params ) +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; params->_ret = iface->GetFileSize( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileRead_params *params ) +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; params->_ret = iface->FileRead( params->pchFile, params->pvData, params->cubDataToRead ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileExists( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileExists_params *params ) +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; params->_ret = iface->FileExists( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileCount_params *params ) +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; params->_ret = iface->GetFileCount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileNameAndSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileNameAndSize_params *params ) +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; params->_ret = iface->GetFileNameAndSize( params->iFile, params->pnFileSizeInBytes ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetQuota( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetQuota_params *params ) +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; params->_ret = iface->GetQuota( params->pnTotalBytes, params->puAvailableBytes ); + return 0; } diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002.h b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002.h deleted file mode 100644 index 918b1e68..00000000 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002.h +++ /dev/null @@ -1,73 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileWrite_params -{ - void *linux_side; - bool _ret; - const char *pchFile; - const void *pvData; - int32_t cubData; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileWrite( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileWrite_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileSize_params -{ - void *linux_side; - int32_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileSize_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileRead_params -{ - void *linux_side; - int32_t _ret; - const char *pchFile; - void *pvData; - int32_t cubDataToRead; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileRead_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileExists_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileExists( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileExists_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileCount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileNameAndSize_params -{ - void *linux_side; - const char *_ret; - int32_t iFile; - int32_t *pnFileSizeInBytes; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileNameAndSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileNameAndSize_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetQuota_params -{ - void *linux_side; - bool _ret; - int32_t *pnTotalBytes; - int32_t *puAvailableBytes; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetQuota( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetQuota_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003.cpp b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003.cpp index 4cde5dab..6d14486e 100644 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003.cpp +++ b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003.cpp @@ -1,124 +1,163 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003.h" -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileWrite( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileWrite_params *params ) +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; params->_ret = iface->FileWrite( params->pchFile, params->pvData, params->cubData ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileRead_params *params ) +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; params->_ret = iface->FileRead( params->pchFile, params->pvData, params->cubDataToRead ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileForget( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileForget_params *params ) +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; params->_ret = iface->FileForget( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileDelete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileDelete_params *params ) +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; params->_ret = iface->FileDelete( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileShare( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileShare_params *params ) +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; params->_ret = iface->FileShare( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileExists( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileExists_params *params ) +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; params->_ret = iface->FileExists( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FilePersisted( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FilePersisted_params *params ) +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; params->_ret = iface->FilePersisted( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileSize_params *params ) +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; params->_ret = iface->GetFileSize( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileTimestamp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileTimestamp_params *params ) +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; params->_ret = iface->GetFileTimestamp( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileCount_params *params ) +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; params->_ret = iface->GetFileCount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileNameAndSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileNameAndSize_params *params ) +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; params->_ret = iface->GetFileNameAndSize( params->iFile, params->pnFileSizeInBytes ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetQuota( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetQuota_params *params ) +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; params->_ret = iface->GetQuota( params->pnTotalBytes, params->puAvailableBytes ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForAccount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForAccount_params *params ) +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; params->_ret = iface->IsCloudEnabledForAccount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForApp_params *params ) +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; params->_ret = iface->IsCloudEnabledForApp( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_SetCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_SetCloudEnabledForApp_params *params ) +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; iface->SetCloudEnabledForApp( params->bEnabled ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCDownload( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCDownload_params *params ) +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; params->_ret = iface->UGCDownload( params->hContent ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetUGCDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetUGCDetails_params *params ) +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; params->_ret = iface->GetUGCDetails( params->hContent, params->pnAppID, params->ppchName, params->pnFileSizeInBytes, params->pSteamIDOwner ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCRead_params *params ) +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; params->_ret = iface->UGCRead( params->hContent, params->pvData, params->cubDataToRead ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCCount_params *params ) +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; params->_ret = iface->GetCachedUGCCount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCHandle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCHandle_params *params ) +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; params->_ret = iface->GetCachedUGCHandle( params->iCachedContent ); + return 0; } diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003.h b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003.h deleted file mode 100644 index d2d391bb..00000000 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003.h +++ /dev/null @@ -1,179 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileWrite_params -{ - void *linux_side; - bool _ret; - const char *pchFile; - const void *pvData; - int32_t cubData; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileWrite( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileWrite_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileRead_params -{ - void *linux_side; - int32_t _ret; - const char *pchFile; - void *pvData; - int32_t cubDataToRead; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileRead_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileForget_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileForget( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileForget_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileDelete_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileDelete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileDelete_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileShare_params -{ - void *linux_side; - uint64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileShare( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileShare_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileExists_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileExists( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileExists_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FilePersisted_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FilePersisted( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FilePersisted_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileSize_params -{ - void *linux_side; - int32_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileSize_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileTimestamp_params -{ - void *linux_side; - int64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileTimestamp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileTimestamp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileCount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileNameAndSize_params -{ - void *linux_side; - const char *_ret; - int32_t iFile; - int32_t *pnFileSizeInBytes; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileNameAndSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileNameAndSize_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetQuota_params -{ - void *linux_side; - bool _ret; - int32_t *pnTotalBytes; - int32_t *puAvailableBytes; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetQuota( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetQuota_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForAccount_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForAccount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForAccount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForApp_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForApp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_SetCloudEnabledForApp_params -{ - void *linux_side; - bool bEnabled; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_SetCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_SetCloudEnabledForApp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCDownload_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hContent; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCDownload( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCDownload_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetUGCDetails_params -{ - void *linux_side; - bool _ret; - uint64_t hContent; - uint32_t *pnAppID; - char **ppchName; - int32_t *pnFileSizeInBytes; - CSteamID *pSteamIDOwner; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetUGCDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetUGCDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCRead_params -{ - void *linux_side; - int32_t _ret; - uint64_t hContent; - void *pvData; - int32_t cubDataToRead; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCRead_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCCount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCHandle_params -{ - void *linux_side; - uint64_t _ret; - int32_t iCachedContent; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCHandle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCHandle_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004.cpp b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004.cpp index 388904aa..466c4237 100644 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004.cpp +++ b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004.cpp @@ -1,136 +1,179 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004.h" -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileWrite( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileWrite_params *params ) +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; params->_ret = iface->FileWrite( params->pchFile, params->pvData, params->cubData ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileRead_params *params ) +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; params->_ret = iface->FileRead( params->pchFile, params->pvData, params->cubDataToRead ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileForget( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileForget_params *params ) +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; params->_ret = iface->FileForget( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileDelete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileDelete_params *params ) +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; params->_ret = iface->FileDelete( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileShare( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileShare_params *params ) +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; params->_ret = iface->FileShare( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetSyncPlatforms_params *params ) +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; params->_ret = iface->SetSyncPlatforms( params->pchFile, params->eRemoteStoragePlatform ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileExists( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileExists_params *params ) +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; params->_ret = iface->FileExists( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FilePersisted( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FilePersisted_params *params ) +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; params->_ret = iface->FilePersisted( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileSize_params *params ) +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; params->_ret = iface->GetFileSize( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileTimestamp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileTimestamp_params *params ) +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; params->_ret = iface->GetFileTimestamp( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetSyncPlatforms_params *params ) +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; params->_ret = iface->GetSyncPlatforms( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileCount_params *params ) +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; params->_ret = iface->GetFileCount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileNameAndSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileNameAndSize_params *params ) +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; params->_ret = iface->GetFileNameAndSize( params->iFile, params->pnFileSizeInBytes ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetQuota( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetQuota_params *params ) +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; params->_ret = iface->GetQuota( params->pnTotalBytes, params->puAvailableBytes ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForAccount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForAccount_params *params ) +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; params->_ret = iface->IsCloudEnabledForAccount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForApp_params *params ) +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; params->_ret = iface->IsCloudEnabledForApp( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetCloudEnabledForApp_params *params ) +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; iface->SetCloudEnabledForApp( params->bEnabled ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCDownload( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCDownload_params *params ) +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; params->_ret = iface->UGCDownload( params->hContent ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetUGCDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetUGCDetails_params *params ) +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; params->_ret = iface->GetUGCDetails( params->hContent, params->pnAppID, params->ppchName, params->pnFileSizeInBytes, params->pSteamIDOwner ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCRead_params *params ) +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; params->_ret = iface->UGCRead( params->hContent, params->pvData, params->cubDataToRead ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCCount_params *params ) +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; params->_ret = iface->GetCachedUGCCount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCHandle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCHandle_params *params ) +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; params->_ret = iface->GetCachedUGCHandle( params->iCachedContent ); + return 0; } diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004.h b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004.h deleted file mode 100644 index c0df3660..00000000 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004.h +++ /dev/null @@ -1,196 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileWrite_params -{ - void *linux_side; - bool _ret; - const char *pchFile; - const void *pvData; - int32_t cubData; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileWrite( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileWrite_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileRead_params -{ - void *linux_side; - int32_t _ret; - const char *pchFile; - void *pvData; - int32_t cubDataToRead; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileRead_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileForget_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileForget( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileForget_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileDelete_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileDelete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileDelete_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileShare_params -{ - void *linux_side; - uint64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileShare( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileShare_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetSyncPlatforms_params -{ - void *linux_side; - bool _ret; - const char *pchFile; - uint32_t eRemoteStoragePlatform; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetSyncPlatforms_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileExists_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileExists( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileExists_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FilePersisted_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FilePersisted( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FilePersisted_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileSize_params -{ - void *linux_side; - int32_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileSize_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileTimestamp_params -{ - void *linux_side; - int64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileTimestamp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileTimestamp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetSyncPlatforms_params -{ - void *linux_side; - uint32_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetSyncPlatforms_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileCount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileNameAndSize_params -{ - void *linux_side; - const char *_ret; - int32_t iFile; - int32_t *pnFileSizeInBytes; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileNameAndSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileNameAndSize_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetQuota_params -{ - void *linux_side; - bool _ret; - int32_t *pnTotalBytes; - int32_t *puAvailableBytes; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetQuota( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetQuota_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForAccount_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForAccount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForAccount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForApp_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForApp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetCloudEnabledForApp_params -{ - void *linux_side; - bool bEnabled; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetCloudEnabledForApp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCDownload_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hContent; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCDownload( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCDownload_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetUGCDetails_params -{ - void *linux_side; - bool _ret; - uint64_t hContent; - uint32_t *pnAppID; - char **ppchName; - int32_t *pnFileSizeInBytes; - CSteamID *pSteamIDOwner; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetUGCDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetUGCDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCRead_params -{ - void *linux_side; - int32_t _ret; - uint64_t hContent; - void *pvData; - int32_t cubDataToRead; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCRead_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCCount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCHandle_params -{ - void *linux_side; - uint64_t _ret; - int32_t iCachedContent; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCHandle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCHandle_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005.cpp b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005.cpp index 859d5af8..63c026a6 100644 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005.cpp +++ b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005.cpp @@ -1,190 +1,251 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005.h" -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileWrite( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileWrite_params *params ) +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; params->_ret = iface->FileWrite( params->pchFile, params->pvData, params->cubData ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileRead_params *params ) +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; params->_ret = iface->FileRead( params->pchFile, params->pvData, params->cubDataToRead ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileForget( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileForget_params *params ) +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; params->_ret = iface->FileForget( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileDelete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileDelete_params *params ) +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; params->_ret = iface->FileDelete( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileShare( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileShare_params *params ) +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; params->_ret = iface->FileShare( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetSyncPlatforms_params *params ) +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; params->_ret = iface->SetSyncPlatforms( params->pchFile, params->eRemoteStoragePlatform ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileExists( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileExists_params *params ) +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; params->_ret = iface->FileExists( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FilePersisted( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FilePersisted_params *params ) +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; params->_ret = iface->FilePersisted( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileSize_params *params ) +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; params->_ret = iface->GetFileSize( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileTimestamp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileTimestamp_params *params ) +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; params->_ret = iface->GetFileTimestamp( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetSyncPlatforms_params *params ) +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; params->_ret = iface->GetSyncPlatforms( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileCount_params *params ) +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; params->_ret = iface->GetFileCount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileNameAndSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileNameAndSize_params *params ) +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; params->_ret = iface->GetFileNameAndSize( params->iFile, params->pnFileSizeInBytes ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetQuota( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetQuota_params *params ) +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; params->_ret = iface->GetQuota( params->pnTotalBytes, params->puAvailableBytes ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForAccount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForAccount_params *params ) +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; params->_ret = iface->IsCloudEnabledForAccount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForApp_params *params ) +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; params->_ret = iface->IsCloudEnabledForApp( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetCloudEnabledForApp_params *params ) +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; iface->SetCloudEnabledForApp( params->bEnabled ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCDownload( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCDownload_params *params ) +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; params->_ret = iface->UGCDownload( params->hContent ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetUGCDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetUGCDetails_params *params ) +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; params->_ret = iface->GetUGCDetails( params->hContent, params->pnAppID, params->ppchName, params->pnFileSizeInBytes, params->pSteamIDOwner ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCRead_params *params ) +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; params->_ret = iface->UGCRead( params->hContent, params->pvData, params->cubDataToRead ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCCount_params *params ) +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; params->_ret = iface->GetCachedUGCCount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCHandle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCHandle_params *params ) +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; params->_ret = iface->GetCachedUGCHandle( params->iCachedContent ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishFile_params *params ) +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; params->_ret = iface->PublishFile( params->pchFile, params->pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishWorkshopFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishWorkshopFile_params *params ) +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; params->_ret = iface->PublishWorkshopFile( params->pchFile, params->pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->pTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UpdatePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UpdatePublishedFile_params *params ) +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; params->_ret = iface->UpdatePublishedFile( params->updatePublishedFileRequest ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetPublishedFileDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetPublishedFileDetails_params *params ) +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; params->_ret = iface->GetPublishedFileDetails( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_DeletePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_DeletePublishedFile_params *params ) +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; params->_ret = iface->DeletePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserPublishedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserPublishedFiles_params *params ) +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; params->_ret = iface->EnumerateUserPublishedFiles( params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SubscribePublishedFile_params *params ) +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; params->_ret = iface->SubscribePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserSubscribedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserSubscribedFiles_params *params ) +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; params->_ret = iface->EnumerateUserSubscribedFiles( params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UnsubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UnsubscribePublishedFile_params *params ) +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; params->_ret = iface->UnsubscribePublishedFile( params->unPublishedFileId ); + return 0; } diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005.h b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005.h deleted file mode 100644 index 42388607..00000000 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005.h +++ /dev/null @@ -1,279 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileWrite_params -{ - void *linux_side; - bool _ret; - const char *pchFile; - const void *pvData; - int32_t cubData; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileWrite( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileWrite_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileRead_params -{ - void *linux_side; - int32_t _ret; - const char *pchFile; - void *pvData; - int32_t cubDataToRead; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileRead_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileForget_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileForget( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileForget_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileDelete_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileDelete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileDelete_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileShare_params -{ - void *linux_side; - uint64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileShare( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileShare_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetSyncPlatforms_params -{ - void *linux_side; - bool _ret; - const char *pchFile; - uint32_t eRemoteStoragePlatform; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetSyncPlatforms_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileExists_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileExists( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileExists_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FilePersisted_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FilePersisted( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FilePersisted_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileSize_params -{ - void *linux_side; - int32_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileSize_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileTimestamp_params -{ - void *linux_side; - int64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileTimestamp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileTimestamp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetSyncPlatforms_params -{ - void *linux_side; - uint32_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetSyncPlatforms_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileCount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileNameAndSize_params -{ - void *linux_side; - const char *_ret; - int32_t iFile; - int32_t *pnFileSizeInBytes; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileNameAndSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileNameAndSize_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetQuota_params -{ - void *linux_side; - bool _ret; - int32_t *pnTotalBytes; - int32_t *puAvailableBytes; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetQuota( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetQuota_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForAccount_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForAccount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForAccount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForApp_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForApp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetCloudEnabledForApp_params -{ - void *linux_side; - bool bEnabled; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetCloudEnabledForApp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCDownload_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hContent; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCDownload( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCDownload_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetUGCDetails_params -{ - void *linux_side; - bool _ret; - uint64_t hContent; - uint32_t *pnAppID; - char **ppchName; - int32_t *pnFileSizeInBytes; - CSteamID *pSteamIDOwner; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetUGCDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetUGCDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCRead_params -{ - void *linux_side; - int32_t _ret; - uint64_t hContent; - void *pvData; - int32_t cubDataToRead; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCRead_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCCount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCHandle_params -{ - void *linux_side; - uint64_t _ret; - int32_t iCachedContent; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCHandle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCHandle_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishFile_params -{ - void *linux_side; - uint64_t _ret; - const char *pchFile; - const char *pchPreviewFile; - uint32_t nConsumerAppId; - const char *pchTitle; - const char *pchDescription; - uint32_t eVisibility; - w_SteamParamStringArray_t *pTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishWorkshopFile_params -{ - void *linux_side; - uint64_t _ret; - const char *pchFile; - const char *pchPreviewFile; - uint32_t nConsumerAppId; - const char *pchTitle; - const char *pchDescription; - w_SteamParamStringArray_t *pTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishWorkshopFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishWorkshopFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UpdatePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - w_RemoteStorageUpdatePublishedFileRequest_t updatePublishedFileRequest; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UpdatePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UpdatePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetPublishedFileDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetPublishedFileDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetPublishedFileDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_DeletePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_DeletePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_DeletePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserPublishedFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserPublishedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserPublishedFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SubscribePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SubscribePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserSubscribedFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserSubscribedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserSubscribedFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UnsubscribePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UnsubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UnsubscribePublishedFile_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006.cpp b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006.cpp index 0ac56443..fd87c458 100644 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006.cpp +++ b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006.cpp @@ -1,286 +1,379 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006.h" -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileWrite( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileWrite_params *params ) +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; params->_ret = iface->FileWrite( params->pchFile, params->pvData, params->cubData ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileRead_params *params ) +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; params->_ret = iface->FileRead( params->pchFile, params->pvData, params->cubDataToRead ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileForget( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileForget_params *params ) +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; params->_ret = iface->FileForget( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileDelete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileDelete_params *params ) +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; params->_ret = iface->FileDelete( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileShare( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileShare_params *params ) +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; params->_ret = iface->FileShare( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetSyncPlatforms_params *params ) +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; params->_ret = iface->SetSyncPlatforms( params->pchFile, params->eRemoteStoragePlatform ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileExists( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileExists_params *params ) +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; params->_ret = iface->FileExists( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FilePersisted( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FilePersisted_params *params ) +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; params->_ret = iface->FilePersisted( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileSize_params *params ) +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; params->_ret = iface->GetFileSize( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileTimestamp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileTimestamp_params *params ) +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; params->_ret = iface->GetFileTimestamp( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetSyncPlatforms_params *params ) +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; params->_ret = iface->GetSyncPlatforms( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileCount_params *params ) +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; params->_ret = iface->GetFileCount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileNameAndSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileNameAndSize_params *params ) +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; params->_ret = iface->GetFileNameAndSize( params->iFile, params->pnFileSizeInBytes ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetQuota( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetQuota_params *params ) +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; params->_ret = iface->GetQuota( params->pnTotalBytes, params->puAvailableBytes ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForAccount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForAccount_params *params ) +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; params->_ret = iface->IsCloudEnabledForAccount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForApp_params *params ) +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; params->_ret = iface->IsCloudEnabledForApp( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetCloudEnabledForApp_params *params ) +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; iface->SetCloudEnabledForApp( params->bEnabled ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCDownload( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCDownload_params *params ) +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; params->_ret = iface->UGCDownload( params->hContent ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDownloadProgress( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDownloadProgress_params *params ) +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; params->_ret = iface->GetUGCDownloadProgress( params->hContent, params->pnBytesDownloaded, params->pnBytesExpected ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDetails_params *params ) +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; params->_ret = iface->GetUGCDetails( params->hContent, params->pnAppID, params->ppchName, params->pnFileSizeInBytes, params->pSteamIDOwner ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCRead_params *params ) +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; params->_ret = iface->UGCRead( params->hContent, params->pvData, params->cubDataToRead ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCCount_params *params ) +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; params->_ret = iface->GetCachedUGCCount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCHandle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCHandle_params *params ) +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; params->_ret = iface->GetCachedUGCHandle( params->iCachedContent ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishWorkshopFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishWorkshopFile_params *params ) +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; params->_ret = iface->PublishWorkshopFile( params->pchFile, params->pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags, params->eWorkshopFileType ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CreatePublishedFileUpdateRequest( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CreatePublishedFileUpdateRequest_params *params ) +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; params->_ret = iface->CreatePublishedFileUpdateRequest( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileFile_params *params ) +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; params->_ret = iface->UpdatePublishedFileFile( params->updateHandle, params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFilePreviewFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFilePreviewFile_params *params ) +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; params->_ret = iface->UpdatePublishedFilePreviewFile( params->updateHandle, params->pchPreviewFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTitle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTitle_params *params ) +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; params->_ret = iface->UpdatePublishedFileTitle( params->updateHandle, params->pchTitle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileDescription_params *params ) +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; params->_ret = iface->UpdatePublishedFileDescription( params->updateHandle, params->pchDescription ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileVisibility( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileVisibility_params *params ) +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; params->_ret = iface->UpdatePublishedFileVisibility( params->updateHandle, params->eVisibility ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTags( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTags_params *params ) +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; params->_ret = iface->UpdatePublishedFileTags( params->updateHandle, params->pTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CommitPublishedFileUpdate( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CommitPublishedFileUpdate_params *params ) +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; params->_ret = iface->CommitPublishedFileUpdate( params->updateHandle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedFileDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedFileDetails_params *params ) +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; params->_ret = iface->GetPublishedFileDetails( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_DeletePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_DeletePublishedFile_params *params ) +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; params->_ret = iface->DeletePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserPublishedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserPublishedFiles_params *params ) +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; params->_ret = iface->EnumerateUserPublishedFiles( params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SubscribePublishedFile_params *params ) +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; params->_ret = iface->SubscribePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSubscribedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSubscribedFiles_params *params ) +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; params->_ret = iface->EnumerateUserSubscribedFiles( params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UnsubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UnsubscribePublishedFile_params *params ) +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; params->_ret = iface->UnsubscribePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileSetChangeDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileSetChangeDescription_params *params ) +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; params->_ret = iface->UpdatePublishedFileSetChangeDescription( params->updateHandle, params->pchChangeDescription ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedItemVoteDetails_params *params ) +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; params->_ret = iface->GetPublishedItemVoteDetails( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdateUserPublishedItemVote( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdateUserPublishedItemVote_params *params ) +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; params->_ret = iface->UpdateUserPublishedItemVote( params->unPublishedFileId, params->bVoteUp ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUserPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUserPublishedItemVoteDetails_params *params ) +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; params->_ret = iface->GetUserPublishedItemVoteDetails( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSharedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSharedWorkshopFiles_params *params ) +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; params->_ret = iface->EnumerateUserSharedWorkshopFiles( params->steamId, params->unStartIndex, params->pRequiredTags, params->pExcludedTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishVideo( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishVideo_params *params ) +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; params->_ret = iface->PublishVideo( params->pchVideoURL, params->pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetUserPublishedFileAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetUserPublishedFileAction_params *params ) +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; params->_ret = iface->SetUserPublishedFileAction( params->unPublishedFileId, params->eAction ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedFilesByUserAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedFilesByUserAction_params *params ) +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; params->_ret = iface->EnumeratePublishedFilesByUserAction( params->eAction, params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedWorkshopFiles_params *params ) +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; 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_VERSION006.h b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006.h deleted file mode 100644 index ba2160f6..00000000 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006.h +++ /dev/null @@ -1,429 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileWrite_params -{ - void *linux_side; - bool _ret; - const char *pchFile; - const void *pvData; - int32_t cubData; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileWrite( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileWrite_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileRead_params -{ - void *linux_side; - int32_t _ret; - const char *pchFile; - void *pvData; - int32_t cubDataToRead; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileRead_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileForget_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileForget( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileForget_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileDelete_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileDelete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileDelete_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileShare_params -{ - void *linux_side; - uint64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileShare( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileShare_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetSyncPlatforms_params -{ - void *linux_side; - bool _ret; - const char *pchFile; - uint32_t eRemoteStoragePlatform; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetSyncPlatforms_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileExists_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileExists( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileExists_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FilePersisted_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FilePersisted( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FilePersisted_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileSize_params -{ - void *linux_side; - int32_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileSize_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileTimestamp_params -{ - void *linux_side; - int64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileTimestamp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileTimestamp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetSyncPlatforms_params -{ - void *linux_side; - uint32_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetSyncPlatforms_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileCount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileNameAndSize_params -{ - void *linux_side; - const char *_ret; - int32_t iFile; - int32_t *pnFileSizeInBytes; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileNameAndSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileNameAndSize_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetQuota_params -{ - void *linux_side; - bool _ret; - int32_t *pnTotalBytes; - int32_t *puAvailableBytes; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetQuota( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetQuota_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForAccount_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForAccount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForAccount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForApp_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForApp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetCloudEnabledForApp_params -{ - void *linux_side; - bool bEnabled; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetCloudEnabledForApp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCDownload_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hContent; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCDownload( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCDownload_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDownloadProgress_params -{ - void *linux_side; - bool _ret; - uint64_t hContent; - int32_t *pnBytesDownloaded; - int32_t *pnBytesExpected; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDownloadProgress( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDownloadProgress_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDetails_params -{ - void *linux_side; - bool _ret; - uint64_t hContent; - uint32_t *pnAppID; - char **ppchName; - int32_t *pnFileSizeInBytes; - CSteamID *pSteamIDOwner; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCRead_params -{ - void *linux_side; - int32_t _ret; - uint64_t hContent; - void *pvData; - int32_t cubDataToRead; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCRead_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCCount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCHandle_params -{ - void *linux_side; - uint64_t _ret; - int32_t iCachedContent; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCHandle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCHandle_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishWorkshopFile_params -{ - void *linux_side; - uint64_t _ret; - 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; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishWorkshopFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishWorkshopFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CreatePublishedFileUpdateRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CreatePublishedFileUpdateRequest( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CreatePublishedFileUpdateRequest_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileFile_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFilePreviewFile_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchPreviewFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFilePreviewFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFilePreviewFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTitle_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchTitle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTitle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTitle_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileDescription_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchDescription; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileDescription_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileVisibility_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - uint32_t eVisibility; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileVisibility( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileVisibility_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTags_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - w_SteamParamStringArray_t *pTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTags( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTags_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CommitPublishedFileUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint64_t updateHandle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CommitPublishedFileUpdate( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CommitPublishedFileUpdate_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedFileDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedFileDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedFileDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_DeletePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_DeletePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_DeletePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserPublishedFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserPublishedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserPublishedFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SubscribePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SubscribePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSubscribedFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSubscribedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSubscribedFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UnsubscribePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UnsubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UnsubscribePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileSetChangeDescription_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchChangeDescription; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileSetChangeDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileSetChangeDescription_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedItemVoteDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedItemVoteDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdateUserPublishedItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; - bool bVoteUp; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdateUserPublishedItemVote( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdateUserPublishedItemVote_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUserPublishedItemVoteDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUserPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUserPublishedItemVoteDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSharedWorkshopFiles_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamId; - uint32_t unStartIndex; - w_SteamParamStringArray_t *pRequiredTags; - w_SteamParamStringArray_t *pExcludedTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSharedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSharedWorkshopFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishVideo_params -{ - void *linux_side; - uint64_t _ret; - const char *pchVideoURL; - const char *pchPreviewFile; - uint32_t nConsumerAppId; - const char *pchTitle; - const char *pchDescription; - uint32_t eVisibility; - w_SteamParamStringArray_t *pTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishVideo( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishVideo_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetUserPublishedFileAction_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; - uint32_t eAction; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetUserPublishedFileAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetUserPublishedFileAction_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedFilesByUserAction_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eAction; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedFilesByUserAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedFilesByUserAction_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedWorkshopFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eEnumerationType; - uint32_t unStartIndex; - uint32_t unCount; - uint32_t unDays; - w_SteamParamStringArray_t *pTags; - w_SteamParamStringArray_t *pUserTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedWorkshopFiles_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007.cpp b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007.cpp index ccdc70d7..a61e33b5 100644 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007.cpp +++ b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007.cpp @@ -1,286 +1,379 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007.h" -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileWrite( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileWrite_params *params ) +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; params->_ret = iface->FileWrite( params->pchFile, params->pvData, params->cubData ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileRead_params *params ) +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; params->_ret = iface->FileRead( params->pchFile, params->pvData, params->cubDataToRead ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileForget( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileForget_params *params ) +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; params->_ret = iface->FileForget( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileDelete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileDelete_params *params ) +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; params->_ret = iface->FileDelete( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileShare( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileShare_params *params ) +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; params->_ret = iface->FileShare( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetSyncPlatforms_params *params ) +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; params->_ret = iface->SetSyncPlatforms( params->pchFile, params->eRemoteStoragePlatform ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileExists( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileExists_params *params ) +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; params->_ret = iface->FileExists( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FilePersisted( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FilePersisted_params *params ) +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; params->_ret = iface->FilePersisted( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileSize_params *params ) +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; params->_ret = iface->GetFileSize( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileTimestamp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileTimestamp_params *params ) +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; params->_ret = iface->GetFileTimestamp( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetSyncPlatforms_params *params ) +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; params->_ret = iface->GetSyncPlatforms( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileCount_params *params ) +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; params->_ret = iface->GetFileCount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileNameAndSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileNameAndSize_params *params ) +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; params->_ret = iface->GetFileNameAndSize( params->iFile, params->pnFileSizeInBytes ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetQuota( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetQuota_params *params ) +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; params->_ret = iface->GetQuota( params->pnTotalBytes, params->puAvailableBytes ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForAccount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForAccount_params *params ) +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; params->_ret = iface->IsCloudEnabledForAccount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForApp_params *params ) +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; params->_ret = iface->IsCloudEnabledForApp( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetCloudEnabledForApp_params *params ) +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; iface->SetCloudEnabledForApp( params->bEnabled ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCDownload( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCDownload_params *params ) +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; params->_ret = iface->UGCDownload( params->hContent ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDownloadProgress( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDownloadProgress_params *params ) +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; params->_ret = iface->GetUGCDownloadProgress( params->hContent, params->pnBytesDownloaded, params->pnBytesExpected ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDetails_params *params ) +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; params->_ret = iface->GetUGCDetails( params->hContent, params->pnAppID, params->ppchName, params->pnFileSizeInBytes, params->pSteamIDOwner ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCRead_params *params ) +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; params->_ret = iface->UGCRead( params->hContent, params->pvData, params->cubDataToRead ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCCount_params *params ) +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; params->_ret = iface->GetCachedUGCCount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCHandle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCHandle_params *params ) +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; params->_ret = iface->GetCachedUGCHandle( params->iCachedContent ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishWorkshopFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishWorkshopFile_params *params ) +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; params->_ret = iface->PublishWorkshopFile( params->pchFile, params->pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags, params->eWorkshopFileType ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CreatePublishedFileUpdateRequest( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CreatePublishedFileUpdateRequest_params *params ) +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; params->_ret = iface->CreatePublishedFileUpdateRequest( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileFile_params *params ) +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; params->_ret = iface->UpdatePublishedFileFile( params->updateHandle, params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFilePreviewFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFilePreviewFile_params *params ) +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; params->_ret = iface->UpdatePublishedFilePreviewFile( params->updateHandle, params->pchPreviewFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTitle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTitle_params *params ) +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; params->_ret = iface->UpdatePublishedFileTitle( params->updateHandle, params->pchTitle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileDescription_params *params ) +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; params->_ret = iface->UpdatePublishedFileDescription( params->updateHandle, params->pchDescription ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileVisibility( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileVisibility_params *params ) +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; params->_ret = iface->UpdatePublishedFileVisibility( params->updateHandle, params->eVisibility ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTags( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTags_params *params ) +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; params->_ret = iface->UpdatePublishedFileTags( params->updateHandle, params->pTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CommitPublishedFileUpdate( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CommitPublishedFileUpdate_params *params ) +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; params->_ret = iface->CommitPublishedFileUpdate( params->updateHandle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedFileDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedFileDetails_params *params ) +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; params->_ret = iface->GetPublishedFileDetails( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_DeletePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_DeletePublishedFile_params *params ) +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; params->_ret = iface->DeletePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserPublishedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserPublishedFiles_params *params ) +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; params->_ret = iface->EnumerateUserPublishedFiles( params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SubscribePublishedFile_params *params ) +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; params->_ret = iface->SubscribePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSubscribedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSubscribedFiles_params *params ) +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; params->_ret = iface->EnumerateUserSubscribedFiles( params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UnsubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UnsubscribePublishedFile_params *params ) +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; params->_ret = iface->UnsubscribePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileSetChangeDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileSetChangeDescription_params *params ) +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; params->_ret = iface->UpdatePublishedFileSetChangeDescription( params->updateHandle, params->pchChangeDescription ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedItemVoteDetails_params *params ) +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; params->_ret = iface->GetPublishedItemVoteDetails( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdateUserPublishedItemVote( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdateUserPublishedItemVote_params *params ) +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; params->_ret = iface->UpdateUserPublishedItemVote( params->unPublishedFileId, params->bVoteUp ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUserPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUserPublishedItemVoteDetails_params *params ) +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; params->_ret = iface->GetUserPublishedItemVoteDetails( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSharedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSharedWorkshopFiles_params *params ) +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; params->_ret = iface->EnumerateUserSharedWorkshopFiles( params->steamId, params->unStartIndex, params->pRequiredTags, params->pExcludedTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishVideo( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishVideo_params *params ) +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; params->_ret = iface->PublishVideo( params->eVideoProvider, params->pchVideoAccount, params->pchVideoIdentifier, params->pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetUserPublishedFileAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetUserPublishedFileAction_params *params ) +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; params->_ret = iface->SetUserPublishedFileAction( params->unPublishedFileId, params->eAction ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedFilesByUserAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedFilesByUserAction_params *params ) +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; params->_ret = iface->EnumeratePublishedFilesByUserAction( params->eAction, params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedWorkshopFiles_params *params ) +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; 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.h b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007.h deleted file mode 100644 index 696438a5..00000000 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007.h +++ /dev/null @@ -1,431 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileWrite_params -{ - void *linux_side; - bool _ret; - const char *pchFile; - const void *pvData; - int32_t cubData; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileWrite( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileWrite_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileRead_params -{ - void *linux_side; - int32_t _ret; - const char *pchFile; - void *pvData; - int32_t cubDataToRead; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileRead_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileForget_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileForget( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileForget_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileDelete_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileDelete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileDelete_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileShare_params -{ - void *linux_side; - uint64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileShare( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileShare_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetSyncPlatforms_params -{ - void *linux_side; - bool _ret; - const char *pchFile; - uint32_t eRemoteStoragePlatform; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetSyncPlatforms_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileExists_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileExists( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileExists_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FilePersisted_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FilePersisted( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FilePersisted_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileSize_params -{ - void *linux_side; - int32_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileSize_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileTimestamp_params -{ - void *linux_side; - int64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileTimestamp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileTimestamp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetSyncPlatforms_params -{ - void *linux_side; - uint32_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetSyncPlatforms_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileCount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileNameAndSize_params -{ - void *linux_side; - const char *_ret; - int32_t iFile; - int32_t *pnFileSizeInBytes; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileNameAndSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileNameAndSize_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetQuota_params -{ - void *linux_side; - bool _ret; - int32_t *pnTotalBytes; - int32_t *puAvailableBytes; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetQuota( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetQuota_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForAccount_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForAccount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForAccount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForApp_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForApp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetCloudEnabledForApp_params -{ - void *linux_side; - bool bEnabled; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetCloudEnabledForApp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCDownload_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hContent; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCDownload( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCDownload_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDownloadProgress_params -{ - void *linux_side; - bool _ret; - uint64_t hContent; - int32_t *pnBytesDownloaded; - int32_t *pnBytesExpected; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDownloadProgress( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDownloadProgress_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDetails_params -{ - void *linux_side; - bool _ret; - uint64_t hContent; - uint32_t *pnAppID; - char **ppchName; - int32_t *pnFileSizeInBytes; - CSteamID *pSteamIDOwner; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCRead_params -{ - void *linux_side; - int32_t _ret; - uint64_t hContent; - void *pvData; - int32_t cubDataToRead; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCRead_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCCount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCHandle_params -{ - void *linux_side; - uint64_t _ret; - int32_t iCachedContent; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCHandle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCHandle_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishWorkshopFile_params -{ - void *linux_side; - uint64_t _ret; - 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; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishWorkshopFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishWorkshopFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CreatePublishedFileUpdateRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CreatePublishedFileUpdateRequest( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CreatePublishedFileUpdateRequest_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileFile_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFilePreviewFile_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchPreviewFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFilePreviewFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFilePreviewFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTitle_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchTitle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTitle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTitle_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileDescription_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchDescription; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileDescription_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileVisibility_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - uint32_t eVisibility; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileVisibility( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileVisibility_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTags_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - w_SteamParamStringArray_t *pTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTags( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTags_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CommitPublishedFileUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint64_t updateHandle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CommitPublishedFileUpdate( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CommitPublishedFileUpdate_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedFileDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedFileDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedFileDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_DeletePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_DeletePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_DeletePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserPublishedFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserPublishedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserPublishedFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SubscribePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SubscribePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSubscribedFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSubscribedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSubscribedFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UnsubscribePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UnsubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UnsubscribePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileSetChangeDescription_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchChangeDescription; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileSetChangeDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileSetChangeDescription_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedItemVoteDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedItemVoteDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdateUserPublishedItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; - bool bVoteUp; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdateUserPublishedItemVote( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdateUserPublishedItemVote_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUserPublishedItemVoteDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUserPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUserPublishedItemVoteDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSharedWorkshopFiles_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamId; - uint32_t unStartIndex; - w_SteamParamStringArray_t *pRequiredTags; - w_SteamParamStringArray_t *pExcludedTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSharedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSharedWorkshopFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishVideo_params -{ - void *linux_side; - uint64_t _ret; - 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; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishVideo( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishVideo_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetUserPublishedFileAction_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; - uint32_t eAction; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetUserPublishedFileAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetUserPublishedFileAction_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedFilesByUserAction_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eAction; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedFilesByUserAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedFilesByUserAction_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedWorkshopFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eEnumerationType; - uint32_t unStartIndex; - uint32_t unCount; - uint32_t unDays; - w_SteamParamStringArray_t *pTags; - w_SteamParamStringArray_t *pUserTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedWorkshopFiles_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008.cpp b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008.cpp index 76070f85..1643a52d 100644 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008.cpp +++ b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008.cpp @@ -1,310 +1,411 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008.h" -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWrite( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWrite_params *params ) +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; params->_ret = iface->FileWrite( params->pchFile, params->pvData, params->cubData ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileRead_params *params ) +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; params->_ret = iface->FileRead( params->pchFile, params->pvData, params->cubDataToRead ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileForget( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileForget_params *params ) +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; params->_ret = iface->FileForget( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileDelete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileDelete_params *params ) +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; params->_ret = iface->FileDelete( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileShare( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileShare_params *params ) +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; params->_ret = iface->FileShare( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetSyncPlatforms_params *params ) +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; params->_ret = iface->SetSyncPlatforms( params->pchFile, params->eRemoteStoragePlatform ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamOpen( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamOpen_params *params ) +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; params->_ret = iface->FileWriteStreamOpen( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamWriteChunk( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamWriteChunk_params *params ) +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; params->_ret = iface->FileWriteStreamWriteChunk( params->writeHandle, params->pvData, params->cubData ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamClose( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamClose_params *params ) +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; params->_ret = iface->FileWriteStreamClose( params->writeHandle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamCancel( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamCancel_params *params ) +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; params->_ret = iface->FileWriteStreamCancel( params->writeHandle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileExists( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileExists_params *params ) +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; params->_ret = iface->FileExists( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FilePersisted( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FilePersisted_params *params ) +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; params->_ret = iface->FilePersisted( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileSize_params *params ) +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; params->_ret = iface->GetFileSize( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileTimestamp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileTimestamp_params *params ) +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; params->_ret = iface->GetFileTimestamp( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetSyncPlatforms_params *params ) +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; params->_ret = iface->GetSyncPlatforms( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileCount_params *params ) +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; params->_ret = iface->GetFileCount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileNameAndSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileNameAndSize_params *params ) +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; params->_ret = iface->GetFileNameAndSize( params->iFile, params->pnFileSizeInBytes ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetQuota( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetQuota_params *params ) +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; params->_ret = iface->GetQuota( params->pnTotalBytes, params->puAvailableBytes ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForAccount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForAccount_params *params ) +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; params->_ret = iface->IsCloudEnabledForAccount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForApp_params *params ) +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; params->_ret = iface->IsCloudEnabledForApp( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetCloudEnabledForApp_params *params ) +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; iface->SetCloudEnabledForApp( params->bEnabled ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCDownload( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCDownload_params *params ) +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; params->_ret = iface->UGCDownload( params->hContent ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDownloadProgress( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDownloadProgress_params *params ) +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; params->_ret = iface->GetUGCDownloadProgress( params->hContent, params->pnBytesDownloaded, params->pnBytesExpected ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDetails_params *params ) +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; params->_ret = iface->GetUGCDetails( params->hContent, params->pnAppID, params->ppchName, params->pnFileSizeInBytes, params->pSteamIDOwner ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCRead_params *params ) +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; params->_ret = iface->UGCRead( params->hContent, params->pvData, params->cubDataToRead ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCCount_params *params ) +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; params->_ret = iface->GetCachedUGCCount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCHandle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCHandle_params *params ) +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; params->_ret = iface->GetCachedUGCHandle( params->iCachedContent ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishWorkshopFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishWorkshopFile_params *params ) +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; params->_ret = iface->PublishWorkshopFile( params->pchFile, params->pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags, params->eWorkshopFileType ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CreatePublishedFileUpdateRequest( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CreatePublishedFileUpdateRequest_params *params ) +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; params->_ret = iface->CreatePublishedFileUpdateRequest( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileFile_params *params ) +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; params->_ret = iface->UpdatePublishedFileFile( params->updateHandle, params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFilePreviewFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFilePreviewFile_params *params ) +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; params->_ret = iface->UpdatePublishedFilePreviewFile( params->updateHandle, params->pchPreviewFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTitle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTitle_params *params ) +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; params->_ret = iface->UpdatePublishedFileTitle( params->updateHandle, params->pchTitle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileDescription_params *params ) +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; params->_ret = iface->UpdatePublishedFileDescription( params->updateHandle, params->pchDescription ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileVisibility( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileVisibility_params *params ) +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; params->_ret = iface->UpdatePublishedFileVisibility( params->updateHandle, params->eVisibility ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTags( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTags_params *params ) +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; params->_ret = iface->UpdatePublishedFileTags( params->updateHandle, params->pTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CommitPublishedFileUpdate( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CommitPublishedFileUpdate_params *params ) +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; params->_ret = iface->CommitPublishedFileUpdate( params->updateHandle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedFileDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedFileDetails_params *params ) +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; params->_ret = iface->GetPublishedFileDetails( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_DeletePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_DeletePublishedFile_params *params ) +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; params->_ret = iface->DeletePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserPublishedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserPublishedFiles_params *params ) +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; params->_ret = iface->EnumerateUserPublishedFiles( params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SubscribePublishedFile_params *params ) +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; params->_ret = iface->SubscribePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSubscribedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSubscribedFiles_params *params ) +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; params->_ret = iface->EnumerateUserSubscribedFiles( params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UnsubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UnsubscribePublishedFile_params *params ) +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; params->_ret = iface->UnsubscribePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileSetChangeDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileSetChangeDescription_params *params ) +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; params->_ret = iface->UpdatePublishedFileSetChangeDescription( params->updateHandle, params->pchChangeDescription ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedItemVoteDetails_params *params ) +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; params->_ret = iface->GetPublishedItemVoteDetails( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdateUserPublishedItemVote( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdateUserPublishedItemVote_params *params ) +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; params->_ret = iface->UpdateUserPublishedItemVote( params->unPublishedFileId, params->bVoteUp ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUserPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUserPublishedItemVoteDetails_params *params ) +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; params->_ret = iface->GetUserPublishedItemVoteDetails( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSharedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSharedWorkshopFiles_params *params ) +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; params->_ret = iface->EnumerateUserSharedWorkshopFiles( params->steamId, params->unStartIndex, params->pRequiredTags, params->pExcludedTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishVideo( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishVideo_params *params ) +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; params->_ret = iface->PublishVideo( params->eVideoProvider, params->pchVideoAccount, params->pchVideoIdentifier, params->pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetUserPublishedFileAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetUserPublishedFileAction_params *params ) +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; params->_ret = iface->SetUserPublishedFileAction( params->unPublishedFileId, params->eAction ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedFilesByUserAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedFilesByUserAction_params *params ) +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; params->_ret = iface->EnumeratePublishedFilesByUserAction( params->eAction, params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedWorkshopFiles_params *params ) +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; 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.h b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008.h deleted file mode 100644 index a4880e73..00000000 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008.h +++ /dev/null @@ -1,465 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWrite_params -{ - void *linux_side; - bool _ret; - const char *pchFile; - const void *pvData; - int32_t cubData; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWrite( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWrite_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileRead_params -{ - void *linux_side; - int32_t _ret; - const char *pchFile; - void *pvData; - int32_t cubDataToRead; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileRead_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileForget_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileForget( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileForget_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileDelete_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileDelete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileDelete_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileShare_params -{ - void *linux_side; - uint64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileShare( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileShare_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetSyncPlatforms_params -{ - void *linux_side; - bool _ret; - const char *pchFile; - uint32_t eRemoteStoragePlatform; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetSyncPlatforms_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamOpen_params -{ - void *linux_side; - uint64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamOpen( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamOpen_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamWriteChunk_params -{ - void *linux_side; - bool _ret; - uint64_t writeHandle; - const void *pvData; - int32_t cubData; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamWriteChunk( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamWriteChunk_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamClose_params -{ - void *linux_side; - bool _ret; - uint64_t writeHandle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamClose( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamClose_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamCancel_params -{ - void *linux_side; - bool _ret; - uint64_t writeHandle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamCancel( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamCancel_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileExists_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileExists( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileExists_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FilePersisted_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FilePersisted( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FilePersisted_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileSize_params -{ - void *linux_side; - int32_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileSize_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileTimestamp_params -{ - void *linux_side; - int64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileTimestamp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileTimestamp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetSyncPlatforms_params -{ - void *linux_side; - uint32_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetSyncPlatforms_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileCount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileNameAndSize_params -{ - void *linux_side; - const char *_ret; - int32_t iFile; - int32_t *pnFileSizeInBytes; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileNameAndSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileNameAndSize_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetQuota_params -{ - void *linux_side; - bool _ret; - int32_t *pnTotalBytes; - int32_t *puAvailableBytes; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetQuota( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetQuota_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForAccount_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForAccount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForAccount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForApp_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForApp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetCloudEnabledForApp_params -{ - void *linux_side; - bool bEnabled; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetCloudEnabledForApp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCDownload_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hContent; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCDownload( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCDownload_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDownloadProgress_params -{ - void *linux_side; - bool _ret; - uint64_t hContent; - int32_t *pnBytesDownloaded; - int32_t *pnBytesExpected; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDownloadProgress( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDownloadProgress_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDetails_params -{ - void *linux_side; - bool _ret; - uint64_t hContent; - uint32_t *pnAppID; - char **ppchName; - int32_t *pnFileSizeInBytes; - CSteamID *pSteamIDOwner; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCRead_params -{ - void *linux_side; - int32_t _ret; - uint64_t hContent; - void *pvData; - int32_t cubDataToRead; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCRead_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCCount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCHandle_params -{ - void *linux_side; - uint64_t _ret; - int32_t iCachedContent; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCHandle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCHandle_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishWorkshopFile_params -{ - void *linux_side; - uint64_t _ret; - 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; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishWorkshopFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishWorkshopFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CreatePublishedFileUpdateRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CreatePublishedFileUpdateRequest( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CreatePublishedFileUpdateRequest_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileFile_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFilePreviewFile_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchPreviewFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFilePreviewFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFilePreviewFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTitle_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchTitle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTitle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTitle_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileDescription_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchDescription; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileDescription_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileVisibility_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - uint32_t eVisibility; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileVisibility( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileVisibility_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTags_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - w_SteamParamStringArray_t *pTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTags( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTags_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CommitPublishedFileUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint64_t updateHandle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CommitPublishedFileUpdate( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CommitPublishedFileUpdate_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedFileDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedFileDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedFileDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_DeletePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_DeletePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_DeletePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserPublishedFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserPublishedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserPublishedFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SubscribePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SubscribePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSubscribedFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSubscribedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSubscribedFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UnsubscribePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UnsubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UnsubscribePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileSetChangeDescription_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchChangeDescription; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileSetChangeDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileSetChangeDescription_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedItemVoteDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedItemVoteDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdateUserPublishedItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; - bool bVoteUp; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdateUserPublishedItemVote( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdateUserPublishedItemVote_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUserPublishedItemVoteDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUserPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUserPublishedItemVoteDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSharedWorkshopFiles_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamId; - uint32_t unStartIndex; - w_SteamParamStringArray_t *pRequiredTags; - w_SteamParamStringArray_t *pExcludedTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSharedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSharedWorkshopFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishVideo_params -{ - void *linux_side; - uint64_t _ret; - 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; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishVideo( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishVideo_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetUserPublishedFileAction_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; - uint32_t eAction; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetUserPublishedFileAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetUserPublishedFileAction_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedFilesByUserAction_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eAction; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedFilesByUserAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedFilesByUserAction_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedWorkshopFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eEnumerationType; - uint32_t unStartIndex; - uint32_t unCount; - uint32_t unDays; - w_SteamParamStringArray_t *pTags; - w_SteamParamStringArray_t *pUserTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedWorkshopFiles_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009.cpp b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009.cpp index a4014c5c..c21b11db 100644 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009.cpp +++ b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009.cpp @@ -1,310 +1,411 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009.h" -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWrite( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWrite_params *params ) +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; params->_ret = iface->FileWrite( params->pchFile, params->pvData, params->cubData ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileRead_params *params ) +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; params->_ret = iface->FileRead( params->pchFile, params->pvData, params->cubDataToRead ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileForget( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileForget_params *params ) +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; params->_ret = iface->FileForget( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileDelete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileDelete_params *params ) +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; params->_ret = iface->FileDelete( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileShare( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileShare_params *params ) +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; params->_ret = iface->FileShare( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetSyncPlatforms_params *params ) +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; params->_ret = iface->SetSyncPlatforms( params->pchFile, params->eRemoteStoragePlatform ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamOpen( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamOpen_params *params ) +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; params->_ret = iface->FileWriteStreamOpen( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamWriteChunk( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamWriteChunk_params *params ) +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; params->_ret = iface->FileWriteStreamWriteChunk( params->writeHandle, params->pvData, params->cubData ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamClose( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamClose_params *params ) +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; params->_ret = iface->FileWriteStreamClose( params->writeHandle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamCancel( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamCancel_params *params ) +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; params->_ret = iface->FileWriteStreamCancel( params->writeHandle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileExists( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileExists_params *params ) +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; params->_ret = iface->FileExists( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FilePersisted( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FilePersisted_params *params ) +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; params->_ret = iface->FilePersisted( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileSize_params *params ) +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; params->_ret = iface->GetFileSize( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileTimestamp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileTimestamp_params *params ) +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; params->_ret = iface->GetFileTimestamp( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetSyncPlatforms_params *params ) +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; params->_ret = iface->GetSyncPlatforms( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileCount_params *params ) +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; params->_ret = iface->GetFileCount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileNameAndSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileNameAndSize_params *params ) +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; params->_ret = iface->GetFileNameAndSize( params->iFile, params->pnFileSizeInBytes ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetQuota( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetQuota_params *params ) +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; params->_ret = iface->GetQuota( params->pnTotalBytes, params->puAvailableBytes ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForAccount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForAccount_params *params ) +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; params->_ret = iface->IsCloudEnabledForAccount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForApp_params *params ) +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; params->_ret = iface->IsCloudEnabledForApp( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetCloudEnabledForApp_params *params ) +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; iface->SetCloudEnabledForApp( params->bEnabled ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCDownload( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCDownload_params *params ) +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; params->_ret = iface->UGCDownload( params->hContent ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDownloadProgress( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDownloadProgress_params *params ) +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; params->_ret = iface->GetUGCDownloadProgress( params->hContent, params->pnBytesDownloaded, params->pnBytesExpected ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDetails_params *params ) +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; params->_ret = iface->GetUGCDetails( params->hContent, params->pnAppID, params->ppchName, params->pnFileSizeInBytes, params->pSteamIDOwner ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCRead_params *params ) +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; params->_ret = iface->UGCRead( params->hContent, params->pvData, params->cubDataToRead, params->cOffset ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCCount_params *params ) +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; params->_ret = iface->GetCachedUGCCount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCHandle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCHandle_params *params ) +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; params->_ret = iface->GetCachedUGCHandle( params->iCachedContent ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishWorkshopFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishWorkshopFile_params *params ) +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; params->_ret = iface->PublishWorkshopFile( params->pchFile, params->pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags, params->eWorkshopFileType ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CreatePublishedFileUpdateRequest( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CreatePublishedFileUpdateRequest_params *params ) +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; params->_ret = iface->CreatePublishedFileUpdateRequest( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileFile_params *params ) +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; params->_ret = iface->UpdatePublishedFileFile( params->updateHandle, params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFilePreviewFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFilePreviewFile_params *params ) +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; params->_ret = iface->UpdatePublishedFilePreviewFile( params->updateHandle, params->pchPreviewFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTitle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTitle_params *params ) +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; params->_ret = iface->UpdatePublishedFileTitle( params->updateHandle, params->pchTitle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileDescription_params *params ) +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; params->_ret = iface->UpdatePublishedFileDescription( params->updateHandle, params->pchDescription ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileVisibility( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileVisibility_params *params ) +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; params->_ret = iface->UpdatePublishedFileVisibility( params->updateHandle, params->eVisibility ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTags( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTags_params *params ) +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; params->_ret = iface->UpdatePublishedFileTags( params->updateHandle, params->pTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CommitPublishedFileUpdate( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CommitPublishedFileUpdate_params *params ) +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; params->_ret = iface->CommitPublishedFileUpdate( params->updateHandle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedFileDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedFileDetails_params *params ) +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; params->_ret = iface->GetPublishedFileDetails( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_DeletePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_DeletePublishedFile_params *params ) +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; params->_ret = iface->DeletePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserPublishedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserPublishedFiles_params *params ) +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; params->_ret = iface->EnumerateUserPublishedFiles( params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SubscribePublishedFile_params *params ) +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; params->_ret = iface->SubscribePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSubscribedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSubscribedFiles_params *params ) +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; params->_ret = iface->EnumerateUserSubscribedFiles( params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UnsubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UnsubscribePublishedFile_params *params ) +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; params->_ret = iface->UnsubscribePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileSetChangeDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileSetChangeDescription_params *params ) +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; params->_ret = iface->UpdatePublishedFileSetChangeDescription( params->updateHandle, params->pchChangeDescription ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedItemVoteDetails_params *params ) +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; params->_ret = iface->GetPublishedItemVoteDetails( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdateUserPublishedItemVote( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdateUserPublishedItemVote_params *params ) +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; params->_ret = iface->UpdateUserPublishedItemVote( params->unPublishedFileId, params->bVoteUp ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUserPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUserPublishedItemVoteDetails_params *params ) +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; params->_ret = iface->GetUserPublishedItemVoteDetails( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSharedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSharedWorkshopFiles_params *params ) +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; params->_ret = iface->EnumerateUserSharedWorkshopFiles( params->steamId, params->unStartIndex, params->pRequiredTags, params->pExcludedTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishVideo( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishVideo_params *params ) +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; params->_ret = iface->PublishVideo( params->eVideoProvider, params->pchVideoAccount, params->pchVideoIdentifier, params->pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetUserPublishedFileAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetUserPublishedFileAction_params *params ) +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; params->_ret = iface->SetUserPublishedFileAction( params->unPublishedFileId, params->eAction ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedFilesByUserAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedFilesByUserAction_params *params ) +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; params->_ret = iface->EnumeratePublishedFilesByUserAction( params->eAction, params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedWorkshopFiles_params *params ) +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; 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.h b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009.h deleted file mode 100644 index 88cbe6c2..00000000 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009.h +++ /dev/null @@ -1,466 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWrite_params -{ - void *linux_side; - bool _ret; - const char *pchFile; - const void *pvData; - int32_t cubData; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWrite( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWrite_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileRead_params -{ - void *linux_side; - int32_t _ret; - const char *pchFile; - void *pvData; - int32_t cubDataToRead; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileRead_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileForget_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileForget( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileForget_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileDelete_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileDelete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileDelete_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileShare_params -{ - void *linux_side; - uint64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileShare( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileShare_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetSyncPlatforms_params -{ - void *linux_side; - bool _ret; - const char *pchFile; - uint32_t eRemoteStoragePlatform; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetSyncPlatforms_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamOpen_params -{ - void *linux_side; - uint64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamOpen( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamOpen_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamWriteChunk_params -{ - void *linux_side; - bool _ret; - uint64_t writeHandle; - const void *pvData; - int32_t cubData; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamWriteChunk( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamWriteChunk_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamClose_params -{ - void *linux_side; - bool _ret; - uint64_t writeHandle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamClose( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamClose_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamCancel_params -{ - void *linux_side; - bool _ret; - uint64_t writeHandle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamCancel( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamCancel_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileExists_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileExists( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileExists_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FilePersisted_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FilePersisted( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FilePersisted_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileSize_params -{ - void *linux_side; - int32_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileSize_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileTimestamp_params -{ - void *linux_side; - int64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileTimestamp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileTimestamp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetSyncPlatforms_params -{ - void *linux_side; - uint32_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetSyncPlatforms_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileCount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileNameAndSize_params -{ - void *linux_side; - const char *_ret; - int32_t iFile; - int32_t *pnFileSizeInBytes; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileNameAndSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileNameAndSize_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetQuota_params -{ - void *linux_side; - bool _ret; - int32_t *pnTotalBytes; - int32_t *puAvailableBytes; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetQuota( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetQuota_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForAccount_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForAccount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForAccount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForApp_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForApp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetCloudEnabledForApp_params -{ - void *linux_side; - bool bEnabled; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetCloudEnabledForApp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCDownload_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hContent; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCDownload( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCDownload_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDownloadProgress_params -{ - void *linux_side; - bool _ret; - uint64_t hContent; - int32_t *pnBytesDownloaded; - int32_t *pnBytesExpected; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDownloadProgress( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDownloadProgress_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDetails_params -{ - void *linux_side; - bool _ret; - uint64_t hContent; - uint32_t *pnAppID; - char **ppchName; - int32_t *pnFileSizeInBytes; - CSteamID *pSteamIDOwner; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCRead_params -{ - void *linux_side; - int32_t _ret; - uint64_t hContent; - void *pvData; - int32_t cubDataToRead; - uint32_t cOffset; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCRead_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCCount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCHandle_params -{ - void *linux_side; - uint64_t _ret; - int32_t iCachedContent; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCHandle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCHandle_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishWorkshopFile_params -{ - void *linux_side; - uint64_t _ret; - 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; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishWorkshopFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishWorkshopFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CreatePublishedFileUpdateRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CreatePublishedFileUpdateRequest( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CreatePublishedFileUpdateRequest_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileFile_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFilePreviewFile_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchPreviewFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFilePreviewFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFilePreviewFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTitle_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchTitle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTitle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTitle_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileDescription_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchDescription; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileDescription_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileVisibility_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - uint32_t eVisibility; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileVisibility( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileVisibility_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTags_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - w_SteamParamStringArray_t *pTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTags( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTags_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CommitPublishedFileUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint64_t updateHandle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CommitPublishedFileUpdate( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CommitPublishedFileUpdate_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedFileDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedFileDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedFileDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_DeletePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_DeletePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_DeletePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserPublishedFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserPublishedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserPublishedFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SubscribePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SubscribePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSubscribedFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSubscribedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSubscribedFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UnsubscribePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UnsubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UnsubscribePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileSetChangeDescription_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchChangeDescription; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileSetChangeDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileSetChangeDescription_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedItemVoteDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedItemVoteDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdateUserPublishedItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; - bool bVoteUp; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdateUserPublishedItemVote( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdateUserPublishedItemVote_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUserPublishedItemVoteDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUserPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUserPublishedItemVoteDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSharedWorkshopFiles_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamId; - uint32_t unStartIndex; - w_SteamParamStringArray_t *pRequiredTags; - w_SteamParamStringArray_t *pExcludedTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSharedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSharedWorkshopFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishVideo_params -{ - void *linux_side; - uint64_t _ret; - 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; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishVideo( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishVideo_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetUserPublishedFileAction_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; - uint32_t eAction; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetUserPublishedFileAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetUserPublishedFileAction_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedFilesByUserAction_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eAction; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedFilesByUserAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedFilesByUserAction_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedWorkshopFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eEnumerationType; - uint32_t unStartIndex; - uint32_t unCount; - uint32_t unDays; - w_SteamParamStringArray_t *pTags; - w_SteamParamStringArray_t *pUserTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedWorkshopFiles_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010.cpp b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010.cpp index 73e8475d..2e22353f 100644 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010.cpp +++ b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010.cpp @@ -1,316 +1,419 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010.h" -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWrite( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWrite_params *params ) +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; params->_ret = iface->FileWrite( params->pchFile, params->pvData, params->cubData ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileRead_params *params ) +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; params->_ret = iface->FileRead( params->pchFile, params->pvData, params->cubDataToRead ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileForget( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileForget_params *params ) +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; params->_ret = iface->FileForget( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileDelete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileDelete_params *params ) +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; params->_ret = iface->FileDelete( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileShare( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileShare_params *params ) +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; params->_ret = iface->FileShare( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetSyncPlatforms_params *params ) +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; params->_ret = iface->SetSyncPlatforms( params->pchFile, params->eRemoteStoragePlatform ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamOpen( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamOpen_params *params ) +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; params->_ret = iface->FileWriteStreamOpen( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamWriteChunk( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamWriteChunk_params *params ) +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; params->_ret = iface->FileWriteStreamWriteChunk( params->writeHandle, params->pvData, params->cubData ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamClose( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamClose_params *params ) +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; params->_ret = iface->FileWriteStreamClose( params->writeHandle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamCancel( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamCancel_params *params ) +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; params->_ret = iface->FileWriteStreamCancel( params->writeHandle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileExists( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileExists_params *params ) +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; params->_ret = iface->FileExists( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FilePersisted( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FilePersisted_params *params ) +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; params->_ret = iface->FilePersisted( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileSize_params *params ) +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; params->_ret = iface->GetFileSize( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileTimestamp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileTimestamp_params *params ) +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; params->_ret = iface->GetFileTimestamp( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetSyncPlatforms_params *params ) +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; params->_ret = iface->GetSyncPlatforms( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileCount_params *params ) +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; params->_ret = iface->GetFileCount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileNameAndSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileNameAndSize_params *params ) +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; params->_ret = iface->GetFileNameAndSize( params->iFile, params->pnFileSizeInBytes ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetQuota( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetQuota_params *params ) +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; params->_ret = iface->GetQuota( params->pnTotalBytes, params->puAvailableBytes ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForAccount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForAccount_params *params ) +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; params->_ret = iface->IsCloudEnabledForAccount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForApp_params *params ) +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; params->_ret = iface->IsCloudEnabledForApp( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetCloudEnabledForApp_params *params ) +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; iface->SetCloudEnabledForApp( params->bEnabled ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownload( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownload_params *params ) +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; params->_ret = iface->UGCDownload( params->hContent, params->unPriority ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDownloadProgress( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDownloadProgress_params *params ) +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; params->_ret = iface->GetUGCDownloadProgress( params->hContent, params->pnBytesDownloaded, params->pnBytesExpected ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDetails_params *params ) +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; params->_ret = iface->GetUGCDetails( params->hContent, params->pnAppID, params->ppchName, params->pnFileSizeInBytes, params->pSteamIDOwner ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCRead_params *params ) +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; params->_ret = iface->UGCRead( params->hContent, params->pvData, params->cubDataToRead, params->cOffset ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCCount_params *params ) +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; params->_ret = iface->GetCachedUGCCount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCHandle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCHandle_params *params ) +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; params->_ret = iface->GetCachedUGCHandle( params->iCachedContent ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishWorkshopFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishWorkshopFile_params *params ) +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; params->_ret = iface->PublishWorkshopFile( params->pchFile, params->pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags, params->eWorkshopFileType ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CreatePublishedFileUpdateRequest( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CreatePublishedFileUpdateRequest_params *params ) +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; params->_ret = iface->CreatePublishedFileUpdateRequest( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileFile_params *params ) +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; params->_ret = iface->UpdatePublishedFileFile( params->updateHandle, params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFilePreviewFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFilePreviewFile_params *params ) +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; params->_ret = iface->UpdatePublishedFilePreviewFile( params->updateHandle, params->pchPreviewFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTitle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTitle_params *params ) +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; params->_ret = iface->UpdatePublishedFileTitle( params->updateHandle, params->pchTitle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileDescription_params *params ) +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; params->_ret = iface->UpdatePublishedFileDescription( params->updateHandle, params->pchDescription ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileVisibility( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileVisibility_params *params ) +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; params->_ret = iface->UpdatePublishedFileVisibility( params->updateHandle, params->eVisibility ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTags( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTags_params *params ) +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; params->_ret = iface->UpdatePublishedFileTags( params->updateHandle, params->pTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CommitPublishedFileUpdate( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CommitPublishedFileUpdate_params *params ) +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; params->_ret = iface->CommitPublishedFileUpdate( params->updateHandle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedFileDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedFileDetails_params *params ) +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; params->_ret = iface->GetPublishedFileDetails( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_DeletePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_DeletePublishedFile_params *params ) +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; params->_ret = iface->DeletePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserPublishedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserPublishedFiles_params *params ) +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; params->_ret = iface->EnumerateUserPublishedFiles( params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SubscribePublishedFile_params *params ) +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; params->_ret = iface->SubscribePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSubscribedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSubscribedFiles_params *params ) +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; params->_ret = iface->EnumerateUserSubscribedFiles( params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UnsubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UnsubscribePublishedFile_params *params ) +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; params->_ret = iface->UnsubscribePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileSetChangeDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileSetChangeDescription_params *params ) +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; params->_ret = iface->UpdatePublishedFileSetChangeDescription( params->updateHandle, params->pchChangeDescription ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedItemVoteDetails_params *params ) +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; params->_ret = iface->GetPublishedItemVoteDetails( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdateUserPublishedItemVote( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdateUserPublishedItemVote_params *params ) +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; params->_ret = iface->UpdateUserPublishedItemVote( params->unPublishedFileId, params->bVoteUp ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUserPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUserPublishedItemVoteDetails_params *params ) +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; params->_ret = iface->GetUserPublishedItemVoteDetails( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSharedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSharedWorkshopFiles_params *params ) +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; params->_ret = iface->EnumerateUserSharedWorkshopFiles( params->steamId, params->unStartIndex, params->pRequiredTags, params->pExcludedTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishVideo( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishVideo_params *params ) +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; params->_ret = iface->PublishVideo( params->eVideoProvider, params->pchVideoAccount, params->pchVideoIdentifier, params->pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetUserPublishedFileAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetUserPublishedFileAction_params *params ) +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; params->_ret = iface->SetUserPublishedFileAction( params->unPublishedFileId, params->eAction ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedFilesByUserAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedFilesByUserAction_params *params ) +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; params->_ret = iface->EnumeratePublishedFilesByUserAction( params->eAction, params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedWorkshopFiles_params *params ) +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; params->_ret = iface->EnumeratePublishedWorkshopFiles( params->eEnumerationType, params->unStartIndex, params->unCount, params->unDays, params->pTags, params->pUserTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownloadToLocation( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownloadToLocation_params *params ) +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; params->_ret = iface->UGCDownloadToLocation( params->hContent, params->pchLocation, params->unPriority ); + return 0; } diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010.h b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010.h deleted file mode 100644 index 20dbdb23..00000000 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010.h +++ /dev/null @@ -1,477 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWrite_params -{ - void *linux_side; - bool _ret; - const char *pchFile; - const void *pvData; - int32_t cubData; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWrite( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWrite_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileRead_params -{ - void *linux_side; - int32_t _ret; - const char *pchFile; - void *pvData; - int32_t cubDataToRead; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileRead_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileForget_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileForget( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileForget_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileDelete_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileDelete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileDelete_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileShare_params -{ - void *linux_side; - uint64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileShare( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileShare_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetSyncPlatforms_params -{ - void *linux_side; - bool _ret; - const char *pchFile; - uint32_t eRemoteStoragePlatform; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetSyncPlatforms_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamOpen_params -{ - void *linux_side; - uint64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamOpen( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamOpen_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamWriteChunk_params -{ - void *linux_side; - bool _ret; - uint64_t writeHandle; - const void *pvData; - int32_t cubData; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamWriteChunk( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamWriteChunk_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamClose_params -{ - void *linux_side; - bool _ret; - uint64_t writeHandle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamClose( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamClose_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamCancel_params -{ - void *linux_side; - bool _ret; - uint64_t writeHandle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamCancel( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamCancel_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileExists_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileExists( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileExists_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FilePersisted_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FilePersisted( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FilePersisted_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileSize_params -{ - void *linux_side; - int32_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileSize_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileTimestamp_params -{ - void *linux_side; - int64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileTimestamp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileTimestamp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetSyncPlatforms_params -{ - void *linux_side; - uint32_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetSyncPlatforms_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileCount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileNameAndSize_params -{ - void *linux_side; - const char *_ret; - int32_t iFile; - int32_t *pnFileSizeInBytes; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileNameAndSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileNameAndSize_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetQuota_params -{ - void *linux_side; - bool _ret; - int32_t *pnTotalBytes; - int32_t *puAvailableBytes; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetQuota( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetQuota_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForAccount_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForAccount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForAccount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForApp_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForApp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetCloudEnabledForApp_params -{ - void *linux_side; - bool bEnabled; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetCloudEnabledForApp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownload_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hContent; - uint32_t unPriority; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownload( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownload_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDownloadProgress_params -{ - void *linux_side; - bool _ret; - uint64_t hContent; - int32_t *pnBytesDownloaded; - int32_t *pnBytesExpected; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDownloadProgress( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDownloadProgress_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDetails_params -{ - void *linux_side; - bool _ret; - uint64_t hContent; - uint32_t *pnAppID; - char **ppchName; - int32_t *pnFileSizeInBytes; - CSteamID *pSteamIDOwner; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCRead_params -{ - void *linux_side; - int32_t _ret; - uint64_t hContent; - void *pvData; - int32_t cubDataToRead; - uint32_t cOffset; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCRead_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCCount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCHandle_params -{ - void *linux_side; - uint64_t _ret; - int32_t iCachedContent; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCHandle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCHandle_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishWorkshopFile_params -{ - void *linux_side; - uint64_t _ret; - 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; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishWorkshopFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishWorkshopFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CreatePublishedFileUpdateRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CreatePublishedFileUpdateRequest( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CreatePublishedFileUpdateRequest_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileFile_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFilePreviewFile_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchPreviewFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFilePreviewFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFilePreviewFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTitle_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchTitle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTitle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTitle_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileDescription_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchDescription; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileDescription_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileVisibility_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - uint32_t eVisibility; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileVisibility( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileVisibility_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTags_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - w_SteamParamStringArray_t *pTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTags( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTags_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CommitPublishedFileUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint64_t updateHandle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CommitPublishedFileUpdate( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CommitPublishedFileUpdate_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedFileDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedFileDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedFileDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_DeletePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_DeletePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_DeletePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserPublishedFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserPublishedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserPublishedFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SubscribePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SubscribePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSubscribedFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSubscribedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSubscribedFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UnsubscribePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UnsubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UnsubscribePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileSetChangeDescription_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchChangeDescription; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileSetChangeDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileSetChangeDescription_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedItemVoteDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedItemVoteDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdateUserPublishedItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; - bool bVoteUp; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdateUserPublishedItemVote( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdateUserPublishedItemVote_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUserPublishedItemVoteDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUserPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUserPublishedItemVoteDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSharedWorkshopFiles_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamId; - uint32_t unStartIndex; - w_SteamParamStringArray_t *pRequiredTags; - w_SteamParamStringArray_t *pExcludedTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSharedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSharedWorkshopFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishVideo_params -{ - void *linux_side; - uint64_t _ret; - 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; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishVideo( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishVideo_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetUserPublishedFileAction_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; - uint32_t eAction; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetUserPublishedFileAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetUserPublishedFileAction_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedFilesByUserAction_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eAction; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedFilesByUserAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedFilesByUserAction_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedWorkshopFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eEnumerationType; - uint32_t unStartIndex; - uint32_t unCount; - uint32_t unDays; - w_SteamParamStringArray_t *pTags; - w_SteamParamStringArray_t *pUserTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedWorkshopFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownloadToLocation_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hContent; - const char *pchLocation; - uint32_t unPriority; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownloadToLocation( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownloadToLocation_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011.cpp b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011.cpp index 24dbb413..cc18d8ae 100644 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011.cpp +++ b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011.cpp @@ -1,316 +1,419 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011.h" -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWrite( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWrite_params *params ) +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; params->_ret = iface->FileWrite( params->pchFile, params->pvData, params->cubData ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileRead_params *params ) +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; params->_ret = iface->FileRead( params->pchFile, params->pvData, params->cubDataToRead ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileForget( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileForget_params *params ) +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; params->_ret = iface->FileForget( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileDelete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileDelete_params *params ) +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; params->_ret = iface->FileDelete( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileShare( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileShare_params *params ) +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; params->_ret = iface->FileShare( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetSyncPlatforms_params *params ) +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; params->_ret = iface->SetSyncPlatforms( params->pchFile, params->eRemoteStoragePlatform ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamOpen( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamOpen_params *params ) +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; params->_ret = iface->FileWriteStreamOpen( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamWriteChunk( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamWriteChunk_params *params ) +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; params->_ret = iface->FileWriteStreamWriteChunk( params->writeHandle, params->pvData, params->cubData ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamClose( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamClose_params *params ) +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; params->_ret = iface->FileWriteStreamClose( params->writeHandle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamCancel( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamCancel_params *params ) +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; params->_ret = iface->FileWriteStreamCancel( params->writeHandle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileExists( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileExists_params *params ) +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; params->_ret = iface->FileExists( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FilePersisted( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FilePersisted_params *params ) +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; params->_ret = iface->FilePersisted( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileSize_params *params ) +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; params->_ret = iface->GetFileSize( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileTimestamp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileTimestamp_params *params ) +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; params->_ret = iface->GetFileTimestamp( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetSyncPlatforms_params *params ) +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; params->_ret = iface->GetSyncPlatforms( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileCount_params *params ) +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; params->_ret = iface->GetFileCount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileNameAndSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileNameAndSize_params *params ) +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; params->_ret = iface->GetFileNameAndSize( params->iFile, params->pnFileSizeInBytes ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetQuota( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetQuota_params *params ) +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; params->_ret = iface->GetQuota( params->pnTotalBytes, params->puAvailableBytes ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForAccount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForAccount_params *params ) +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; params->_ret = iface->IsCloudEnabledForAccount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForApp_params *params ) +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; params->_ret = iface->IsCloudEnabledForApp( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetCloudEnabledForApp_params *params ) +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; iface->SetCloudEnabledForApp( params->bEnabled ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownload( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownload_params *params ) +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; params->_ret = iface->UGCDownload( params->hContent, params->unPriority ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDownloadProgress( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDownloadProgress_params *params ) +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; params->_ret = iface->GetUGCDownloadProgress( params->hContent, params->pnBytesDownloaded, params->pnBytesExpected ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDetails_params *params ) +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; params->_ret = iface->GetUGCDetails( params->hContent, params->pnAppID, params->ppchName, params->pnFileSizeInBytes, params->pSteamIDOwner ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCRead_params *params ) +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; params->_ret = iface->UGCRead( params->hContent, params->pvData, params->cubDataToRead, params->cOffset ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCCount_params *params ) +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; params->_ret = iface->GetCachedUGCCount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCHandle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCHandle_params *params ) +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; params->_ret = iface->GetCachedUGCHandle( params->iCachedContent ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishWorkshopFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishWorkshopFile_params *params ) +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; params->_ret = iface->PublishWorkshopFile( params->pchFile, params->pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags, params->eWorkshopFileType ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CreatePublishedFileUpdateRequest( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CreatePublishedFileUpdateRequest_params *params ) +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; params->_ret = iface->CreatePublishedFileUpdateRequest( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileFile_params *params ) +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; params->_ret = iface->UpdatePublishedFileFile( params->updateHandle, params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFilePreviewFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFilePreviewFile_params *params ) +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; params->_ret = iface->UpdatePublishedFilePreviewFile( params->updateHandle, params->pchPreviewFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTitle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTitle_params *params ) +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; params->_ret = iface->UpdatePublishedFileTitle( params->updateHandle, params->pchTitle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileDescription_params *params ) +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; params->_ret = iface->UpdatePublishedFileDescription( params->updateHandle, params->pchDescription ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileVisibility( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileVisibility_params *params ) +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; params->_ret = iface->UpdatePublishedFileVisibility( params->updateHandle, params->eVisibility ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTags( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTags_params *params ) +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; params->_ret = iface->UpdatePublishedFileTags( params->updateHandle, params->pTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CommitPublishedFileUpdate( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CommitPublishedFileUpdate_params *params ) +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; params->_ret = iface->CommitPublishedFileUpdate( params->updateHandle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedFileDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedFileDetails_params *params ) +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; params->_ret = iface->GetPublishedFileDetails( params->unPublishedFileId, params->unMaxSecondsOld ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_DeletePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_DeletePublishedFile_params *params ) +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; params->_ret = iface->DeletePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserPublishedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserPublishedFiles_params *params ) +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; params->_ret = iface->EnumerateUserPublishedFiles( params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SubscribePublishedFile_params *params ) +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; params->_ret = iface->SubscribePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSubscribedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSubscribedFiles_params *params ) +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; params->_ret = iface->EnumerateUserSubscribedFiles( params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UnsubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UnsubscribePublishedFile_params *params ) +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; params->_ret = iface->UnsubscribePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileSetChangeDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileSetChangeDescription_params *params ) +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; params->_ret = iface->UpdatePublishedFileSetChangeDescription( params->updateHandle, params->pchChangeDescription ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedItemVoteDetails_params *params ) +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; params->_ret = iface->GetPublishedItemVoteDetails( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdateUserPublishedItemVote( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdateUserPublishedItemVote_params *params ) +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; params->_ret = iface->UpdateUserPublishedItemVote( params->unPublishedFileId, params->bVoteUp ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUserPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUserPublishedItemVoteDetails_params *params ) +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; params->_ret = iface->GetUserPublishedItemVoteDetails( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSharedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSharedWorkshopFiles_params *params ) +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; params->_ret = iface->EnumerateUserSharedWorkshopFiles( params->steamId, params->unStartIndex, params->pRequiredTags, params->pExcludedTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishVideo( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishVideo_params *params ) +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; params->_ret = iface->PublishVideo( params->eVideoProvider, params->pchVideoAccount, params->pchVideoIdentifier, params->pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetUserPublishedFileAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetUserPublishedFileAction_params *params ) +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; params->_ret = iface->SetUserPublishedFileAction( params->unPublishedFileId, params->eAction ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedFilesByUserAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedFilesByUserAction_params *params ) +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; params->_ret = iface->EnumeratePublishedFilesByUserAction( params->eAction, params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedWorkshopFiles_params *params ) +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; params->_ret = iface->EnumeratePublishedWorkshopFiles( params->eEnumerationType, params->unStartIndex, params->unCount, params->unDays, params->pTags, params->pUserTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownloadToLocation( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownloadToLocation_params *params ) +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; params->_ret = iface->UGCDownloadToLocation( params->hContent, params->pchLocation, params->unPriority ); + return 0; } diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011.h b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011.h deleted file mode 100644 index f5b6235c..00000000 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011.h +++ /dev/null @@ -1,478 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWrite_params -{ - void *linux_side; - bool _ret; - const char *pchFile; - const void *pvData; - int32_t cubData; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWrite( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWrite_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileRead_params -{ - void *linux_side; - int32_t _ret; - const char *pchFile; - void *pvData; - int32_t cubDataToRead; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileRead_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileForget_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileForget( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileForget_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileDelete_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileDelete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileDelete_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileShare_params -{ - void *linux_side; - uint64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileShare( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileShare_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetSyncPlatforms_params -{ - void *linux_side; - bool _ret; - const char *pchFile; - uint32_t eRemoteStoragePlatform; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetSyncPlatforms_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamOpen_params -{ - void *linux_side; - uint64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamOpen( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamOpen_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamWriteChunk_params -{ - void *linux_side; - bool _ret; - uint64_t writeHandle; - const void *pvData; - int32_t cubData; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamWriteChunk( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamWriteChunk_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamClose_params -{ - void *linux_side; - bool _ret; - uint64_t writeHandle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamClose( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamClose_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamCancel_params -{ - void *linux_side; - bool _ret; - uint64_t writeHandle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamCancel( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamCancel_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileExists_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileExists( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileExists_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FilePersisted_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FilePersisted( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FilePersisted_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileSize_params -{ - void *linux_side; - int32_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileSize_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileTimestamp_params -{ - void *linux_side; - int64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileTimestamp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileTimestamp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetSyncPlatforms_params -{ - void *linux_side; - uint32_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetSyncPlatforms_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileCount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileNameAndSize_params -{ - void *linux_side; - const char *_ret; - int32_t iFile; - int32_t *pnFileSizeInBytes; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileNameAndSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileNameAndSize_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetQuota_params -{ - void *linux_side; - bool _ret; - int32_t *pnTotalBytes; - int32_t *puAvailableBytes; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetQuota( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetQuota_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForAccount_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForAccount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForAccount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForApp_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForApp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetCloudEnabledForApp_params -{ - void *linux_side; - bool bEnabled; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetCloudEnabledForApp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownload_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hContent; - uint32_t unPriority; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownload( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownload_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDownloadProgress_params -{ - void *linux_side; - bool _ret; - uint64_t hContent; - int32_t *pnBytesDownloaded; - int32_t *pnBytesExpected; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDownloadProgress( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDownloadProgress_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDetails_params -{ - void *linux_side; - bool _ret; - uint64_t hContent; - uint32_t *pnAppID; - char **ppchName; - int32_t *pnFileSizeInBytes; - CSteamID *pSteamIDOwner; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCRead_params -{ - void *linux_side; - int32_t _ret; - uint64_t hContent; - void *pvData; - int32_t cubDataToRead; - uint32_t cOffset; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCRead_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCCount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCHandle_params -{ - void *linux_side; - uint64_t _ret; - int32_t iCachedContent; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCHandle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCHandle_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishWorkshopFile_params -{ - void *linux_side; - uint64_t _ret; - 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; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishWorkshopFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishWorkshopFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CreatePublishedFileUpdateRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CreatePublishedFileUpdateRequest( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CreatePublishedFileUpdateRequest_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileFile_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFilePreviewFile_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchPreviewFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFilePreviewFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFilePreviewFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTitle_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchTitle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTitle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTitle_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileDescription_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchDescription; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileDescription_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileVisibility_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - uint32_t eVisibility; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileVisibility( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileVisibility_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTags_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - w_SteamParamStringArray_t *pTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTags( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTags_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CommitPublishedFileUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint64_t updateHandle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CommitPublishedFileUpdate( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CommitPublishedFileUpdate_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedFileDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; - uint32_t unMaxSecondsOld; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedFileDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedFileDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_DeletePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_DeletePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_DeletePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserPublishedFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserPublishedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserPublishedFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SubscribePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SubscribePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSubscribedFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSubscribedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSubscribedFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UnsubscribePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UnsubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UnsubscribePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileSetChangeDescription_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchChangeDescription; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileSetChangeDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileSetChangeDescription_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedItemVoteDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedItemVoteDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdateUserPublishedItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; - bool bVoteUp; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdateUserPublishedItemVote( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdateUserPublishedItemVote_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUserPublishedItemVoteDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUserPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUserPublishedItemVoteDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSharedWorkshopFiles_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamId; - uint32_t unStartIndex; - w_SteamParamStringArray_t *pRequiredTags; - w_SteamParamStringArray_t *pExcludedTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSharedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSharedWorkshopFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishVideo_params -{ - void *linux_side; - uint64_t _ret; - 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; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishVideo( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishVideo_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetUserPublishedFileAction_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; - uint32_t eAction; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetUserPublishedFileAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetUserPublishedFileAction_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedFilesByUserAction_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eAction; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedFilesByUserAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedFilesByUserAction_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedWorkshopFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eEnumerationType; - uint32_t unStartIndex; - uint32_t unCount; - uint32_t unDays; - w_SteamParamStringArray_t *pTags; - w_SteamParamStringArray_t *pUserTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedWorkshopFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownloadToLocation_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hContent; - const char *pchLocation; - uint32_t unPriority; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownloadToLocation( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownloadToLocation_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012.cpp b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012.cpp index b51e45c7..e77e2ea1 100644 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012.cpp +++ b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012.cpp @@ -1,316 +1,419 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012.h" -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWrite( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWrite_params *params ) +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; params->_ret = iface->FileWrite( params->pchFile, params->pvData, params->cubData ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileRead_params *params ) +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; params->_ret = iface->FileRead( params->pchFile, params->pvData, params->cubDataToRead ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileForget( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileForget_params *params ) +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; params->_ret = iface->FileForget( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileDelete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileDelete_params *params ) +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; params->_ret = iface->FileDelete( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileShare( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileShare_params *params ) +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; params->_ret = iface->FileShare( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetSyncPlatforms_params *params ) +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; params->_ret = iface->SetSyncPlatforms( params->pchFile, params->eRemoteStoragePlatform ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamOpen( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamOpen_params *params ) +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; params->_ret = iface->FileWriteStreamOpen( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamWriteChunk( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamWriteChunk_params *params ) +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; params->_ret = iface->FileWriteStreamWriteChunk( params->writeHandle, params->pvData, params->cubData ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamClose( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamClose_params *params ) +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; params->_ret = iface->FileWriteStreamClose( params->writeHandle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamCancel( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamCancel_params *params ) +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; params->_ret = iface->FileWriteStreamCancel( params->writeHandle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileExists( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileExists_params *params ) +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; params->_ret = iface->FileExists( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FilePersisted( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FilePersisted_params *params ) +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; params->_ret = iface->FilePersisted( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileSize_params *params ) +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; params->_ret = iface->GetFileSize( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileTimestamp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileTimestamp_params *params ) +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; params->_ret = iface->GetFileTimestamp( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetSyncPlatforms_params *params ) +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; params->_ret = iface->GetSyncPlatforms( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileCount_params *params ) +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; params->_ret = iface->GetFileCount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileNameAndSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileNameAndSize_params *params ) +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; params->_ret = iface->GetFileNameAndSize( params->iFile, params->pnFileSizeInBytes ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetQuota( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetQuota_params *params ) +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; params->_ret = iface->GetQuota( params->pnTotalBytes, params->puAvailableBytes ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForAccount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForAccount_params *params ) +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; params->_ret = iface->IsCloudEnabledForAccount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForApp_params *params ) +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; params->_ret = iface->IsCloudEnabledForApp( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetCloudEnabledForApp_params *params ) +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; iface->SetCloudEnabledForApp( params->bEnabled ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownload( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownload_params *params ) +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; params->_ret = iface->UGCDownload( params->hContent, params->unPriority ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDownloadProgress( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDownloadProgress_params *params ) +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; params->_ret = iface->GetUGCDownloadProgress( params->hContent, params->pnBytesDownloaded, params->pnBytesExpected ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDetails_params *params ) +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; params->_ret = iface->GetUGCDetails( params->hContent, params->pnAppID, params->ppchName, params->pnFileSizeInBytes, params->pSteamIDOwner ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCRead_params *params ) +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; params->_ret = iface->UGCRead( params->hContent, params->pvData, params->cubDataToRead, params->cOffset, params->eAction ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCCount_params *params ) +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; params->_ret = iface->GetCachedUGCCount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCHandle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCHandle_params *params ) +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; params->_ret = iface->GetCachedUGCHandle( params->iCachedContent ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishWorkshopFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishWorkshopFile_params *params ) +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; params->_ret = iface->PublishWorkshopFile( params->pchFile, params->pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags, params->eWorkshopFileType ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CreatePublishedFileUpdateRequest( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CreatePublishedFileUpdateRequest_params *params ) +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; params->_ret = iface->CreatePublishedFileUpdateRequest( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileFile_params *params ) +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; params->_ret = iface->UpdatePublishedFileFile( params->updateHandle, params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFilePreviewFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFilePreviewFile_params *params ) +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; params->_ret = iface->UpdatePublishedFilePreviewFile( params->updateHandle, params->pchPreviewFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTitle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTitle_params *params ) +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; params->_ret = iface->UpdatePublishedFileTitle( params->updateHandle, params->pchTitle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileDescription_params *params ) +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; params->_ret = iface->UpdatePublishedFileDescription( params->updateHandle, params->pchDescription ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileVisibility( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileVisibility_params *params ) +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; params->_ret = iface->UpdatePublishedFileVisibility( params->updateHandle, params->eVisibility ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTags( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTags_params *params ) +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; params->_ret = iface->UpdatePublishedFileTags( params->updateHandle, params->pTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CommitPublishedFileUpdate( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CommitPublishedFileUpdate_params *params ) +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; params->_ret = iface->CommitPublishedFileUpdate( params->updateHandle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedFileDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedFileDetails_params *params ) +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; params->_ret = iface->GetPublishedFileDetails( params->unPublishedFileId, params->unMaxSecondsOld ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_DeletePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_DeletePublishedFile_params *params ) +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; params->_ret = iface->DeletePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserPublishedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserPublishedFiles_params *params ) +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; params->_ret = iface->EnumerateUserPublishedFiles( params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SubscribePublishedFile_params *params ) +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; params->_ret = iface->SubscribePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSubscribedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSubscribedFiles_params *params ) +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; params->_ret = iface->EnumerateUserSubscribedFiles( params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UnsubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UnsubscribePublishedFile_params *params ) +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; params->_ret = iface->UnsubscribePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileSetChangeDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileSetChangeDescription_params *params ) +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; params->_ret = iface->UpdatePublishedFileSetChangeDescription( params->updateHandle, params->pchChangeDescription ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedItemVoteDetails_params *params ) +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; params->_ret = iface->GetPublishedItemVoteDetails( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdateUserPublishedItemVote( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdateUserPublishedItemVote_params *params ) +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; params->_ret = iface->UpdateUserPublishedItemVote( params->unPublishedFileId, params->bVoteUp ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUserPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUserPublishedItemVoteDetails_params *params ) +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; params->_ret = iface->GetUserPublishedItemVoteDetails( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSharedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSharedWorkshopFiles_params *params ) +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; params->_ret = iface->EnumerateUserSharedWorkshopFiles( params->steamId, params->unStartIndex, params->pRequiredTags, params->pExcludedTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishVideo( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishVideo_params *params ) +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; params->_ret = iface->PublishVideo( params->eVideoProvider, params->pchVideoAccount, params->pchVideoIdentifier, params->pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetUserPublishedFileAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetUserPublishedFileAction_params *params ) +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; params->_ret = iface->SetUserPublishedFileAction( params->unPublishedFileId, params->eAction ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedFilesByUserAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedFilesByUserAction_params *params ) +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; params->_ret = iface->EnumeratePublishedFilesByUserAction( params->eAction, params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedWorkshopFiles_params *params ) +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; params->_ret = iface->EnumeratePublishedWorkshopFiles( params->eEnumerationType, params->unStartIndex, params->unCount, params->unDays, params->pTags, params->pUserTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownloadToLocation( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownloadToLocation_params *params ) +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; params->_ret = iface->UGCDownloadToLocation( params->hContent, params->pchLocation, params->unPriority ); + return 0; } diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012.h b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012.h deleted file mode 100644 index dd1ca212..00000000 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012.h +++ /dev/null @@ -1,479 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWrite_params -{ - void *linux_side; - bool _ret; - const char *pchFile; - const void *pvData; - int32_t cubData; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWrite( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWrite_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileRead_params -{ - void *linux_side; - int32_t _ret; - const char *pchFile; - void *pvData; - int32_t cubDataToRead; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileRead_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileForget_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileForget( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileForget_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileDelete_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileDelete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileDelete_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileShare_params -{ - void *linux_side; - uint64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileShare( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileShare_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetSyncPlatforms_params -{ - void *linux_side; - bool _ret; - const char *pchFile; - uint32_t eRemoteStoragePlatform; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetSyncPlatforms_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamOpen_params -{ - void *linux_side; - uint64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamOpen( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamOpen_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamWriteChunk_params -{ - void *linux_side; - bool _ret; - uint64_t writeHandle; - const void *pvData; - int32_t cubData; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamWriteChunk( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamWriteChunk_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamClose_params -{ - void *linux_side; - bool _ret; - uint64_t writeHandle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamClose( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamClose_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamCancel_params -{ - void *linux_side; - bool _ret; - uint64_t writeHandle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamCancel( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamCancel_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileExists_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileExists( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileExists_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FilePersisted_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FilePersisted( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FilePersisted_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileSize_params -{ - void *linux_side; - int32_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileSize_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileTimestamp_params -{ - void *linux_side; - int64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileTimestamp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileTimestamp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetSyncPlatforms_params -{ - void *linux_side; - uint32_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetSyncPlatforms_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileCount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileNameAndSize_params -{ - void *linux_side; - const char *_ret; - int32_t iFile; - int32_t *pnFileSizeInBytes; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileNameAndSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileNameAndSize_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetQuota_params -{ - void *linux_side; - bool _ret; - int32_t *pnTotalBytes; - int32_t *puAvailableBytes; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetQuota( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetQuota_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForAccount_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForAccount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForAccount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForApp_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForApp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetCloudEnabledForApp_params -{ - void *linux_side; - bool bEnabled; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetCloudEnabledForApp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownload_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hContent; - uint32_t unPriority; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownload( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownload_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDownloadProgress_params -{ - void *linux_side; - bool _ret; - uint64_t hContent; - int32_t *pnBytesDownloaded; - int32_t *pnBytesExpected; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDownloadProgress( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDownloadProgress_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDetails_params -{ - void *linux_side; - bool _ret; - uint64_t hContent; - uint32_t *pnAppID; - char **ppchName; - int32_t *pnFileSizeInBytes; - CSteamID *pSteamIDOwner; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCRead_params -{ - void *linux_side; - int32_t _ret; - uint64_t hContent; - void *pvData; - int32_t cubDataToRead; - uint32_t cOffset; - uint32_t eAction; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCRead_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCCount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCHandle_params -{ - void *linux_side; - uint64_t _ret; - int32_t iCachedContent; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCHandle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCHandle_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishWorkshopFile_params -{ - void *linux_side; - uint64_t _ret; - 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; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishWorkshopFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishWorkshopFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CreatePublishedFileUpdateRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CreatePublishedFileUpdateRequest( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CreatePublishedFileUpdateRequest_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileFile_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFilePreviewFile_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchPreviewFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFilePreviewFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFilePreviewFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTitle_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchTitle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTitle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTitle_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileDescription_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchDescription; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileDescription_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileVisibility_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - uint32_t eVisibility; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileVisibility( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileVisibility_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTags_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - w_SteamParamStringArray_t *pTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTags( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTags_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CommitPublishedFileUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint64_t updateHandle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CommitPublishedFileUpdate( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CommitPublishedFileUpdate_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedFileDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; - uint32_t unMaxSecondsOld; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedFileDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedFileDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_DeletePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_DeletePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_DeletePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserPublishedFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserPublishedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserPublishedFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SubscribePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SubscribePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSubscribedFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSubscribedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSubscribedFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UnsubscribePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UnsubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UnsubscribePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileSetChangeDescription_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchChangeDescription; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileSetChangeDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileSetChangeDescription_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedItemVoteDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedItemVoteDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdateUserPublishedItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; - bool bVoteUp; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdateUserPublishedItemVote( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdateUserPublishedItemVote_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUserPublishedItemVoteDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUserPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUserPublishedItemVoteDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSharedWorkshopFiles_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamId; - uint32_t unStartIndex; - w_SteamParamStringArray_t *pRequiredTags; - w_SteamParamStringArray_t *pExcludedTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSharedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSharedWorkshopFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishVideo_params -{ - void *linux_side; - uint64_t _ret; - 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; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishVideo( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishVideo_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetUserPublishedFileAction_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; - uint32_t eAction; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetUserPublishedFileAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetUserPublishedFileAction_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedFilesByUserAction_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eAction; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedFilesByUserAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedFilesByUserAction_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedWorkshopFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eEnumerationType; - uint32_t unStartIndex; - uint32_t unCount; - uint32_t unDays; - w_SteamParamStringArray_t *pTags; - w_SteamParamStringArray_t *pUserTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedWorkshopFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownloadToLocation_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hContent; - const char *pchLocation; - uint32_t unPriority; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownloadToLocation( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownloadToLocation_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013.cpp b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013.cpp index 95f6edc3..55206cf7 100644 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013.cpp +++ b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013.cpp @@ -1,334 +1,443 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013.h" -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWrite( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWrite_params *params ) +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; params->_ret = iface->FileWrite( params->pchFile, params->pvData, params->cubData ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileRead_params *params ) +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; params->_ret = iface->FileRead( params->pchFile, params->pvData, params->cubDataToRead ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteAsync( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteAsync_params *params ) +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; params->_ret = iface->FileWriteAsync( params->pchFile, params->pvData, params->cubData ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsync( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsync_params *params ) +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; params->_ret = iface->FileReadAsync( params->pchFile, params->nOffset, params->cubToRead ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsyncComplete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsyncComplete_params *params ) +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; params->_ret = iface->FileReadAsyncComplete( params->hReadCall, params->pvBuffer, params->cubToRead ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileForget( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileForget_params *params ) +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; params->_ret = iface->FileForget( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileDelete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileDelete_params *params ) +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; params->_ret = iface->FileDelete( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileShare( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileShare_params *params ) +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; params->_ret = iface->FileShare( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetSyncPlatforms_params *params ) +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; params->_ret = iface->SetSyncPlatforms( params->pchFile, params->eRemoteStoragePlatform ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamOpen( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamOpen_params *params ) +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; params->_ret = iface->FileWriteStreamOpen( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamWriteChunk( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamWriteChunk_params *params ) +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; params->_ret = iface->FileWriteStreamWriteChunk( params->writeHandle, params->pvData, params->cubData ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamClose( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamClose_params *params ) +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; params->_ret = iface->FileWriteStreamClose( params->writeHandle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamCancel( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamCancel_params *params ) +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; params->_ret = iface->FileWriteStreamCancel( params->writeHandle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileExists( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileExists_params *params ) +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; params->_ret = iface->FileExists( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FilePersisted( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FilePersisted_params *params ) +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; params->_ret = iface->FilePersisted( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileSize_params *params ) +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; params->_ret = iface->GetFileSize( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileTimestamp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileTimestamp_params *params ) +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; params->_ret = iface->GetFileTimestamp( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetSyncPlatforms_params *params ) +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; params->_ret = iface->GetSyncPlatforms( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileCount_params *params ) +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; params->_ret = iface->GetFileCount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileNameAndSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileNameAndSize_params *params ) +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; params->_ret = iface->GetFileNameAndSize( params->iFile, params->pnFileSizeInBytes ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetQuota( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetQuota_params *params ) +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; params->_ret = iface->GetQuota( params->pnTotalBytes, params->puAvailableBytes ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForAccount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForAccount_params *params ) +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; params->_ret = iface->IsCloudEnabledForAccount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForApp_params *params ) +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; params->_ret = iface->IsCloudEnabledForApp( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetCloudEnabledForApp_params *params ) +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; iface->SetCloudEnabledForApp( params->bEnabled ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownload( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownload_params *params ) +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; params->_ret = iface->UGCDownload( params->hContent, params->unPriority ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDownloadProgress( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDownloadProgress_params *params ) +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; params->_ret = iface->GetUGCDownloadProgress( params->hContent, params->pnBytesDownloaded, params->pnBytesExpected ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDetails_params *params ) +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; params->_ret = iface->GetUGCDetails( params->hContent, params->pnAppID, params->ppchName, params->pnFileSizeInBytes, params->pSteamIDOwner ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCRead_params *params ) +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; params->_ret = iface->UGCRead( params->hContent, params->pvData, params->cubDataToRead, params->cOffset, params->eAction ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCCount_params *params ) +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; params->_ret = iface->GetCachedUGCCount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCHandle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCHandle_params *params ) +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; params->_ret = iface->GetCachedUGCHandle( params->iCachedContent ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishWorkshopFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishWorkshopFile_params *params ) +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; params->_ret = iface->PublishWorkshopFile( params->pchFile, params->pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags, params->eWorkshopFileType ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CreatePublishedFileUpdateRequest( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CreatePublishedFileUpdateRequest_params *params ) +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; params->_ret = iface->CreatePublishedFileUpdateRequest( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileFile_params *params ) +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; params->_ret = iface->UpdatePublishedFileFile( params->updateHandle, params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFilePreviewFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFilePreviewFile_params *params ) +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; params->_ret = iface->UpdatePublishedFilePreviewFile( params->updateHandle, params->pchPreviewFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTitle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTitle_params *params ) +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; params->_ret = iface->UpdatePublishedFileTitle( params->updateHandle, params->pchTitle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileDescription_params *params ) +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; params->_ret = iface->UpdatePublishedFileDescription( params->updateHandle, params->pchDescription ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileVisibility( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileVisibility_params *params ) +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; params->_ret = iface->UpdatePublishedFileVisibility( params->updateHandle, params->eVisibility ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTags( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTags_params *params ) +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; params->_ret = iface->UpdatePublishedFileTags( params->updateHandle, params->pTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CommitPublishedFileUpdate( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CommitPublishedFileUpdate_params *params ) +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; params->_ret = iface->CommitPublishedFileUpdate( params->updateHandle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedFileDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedFileDetails_params *params ) +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; params->_ret = iface->GetPublishedFileDetails( params->unPublishedFileId, params->unMaxSecondsOld ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_DeletePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_DeletePublishedFile_params *params ) +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; params->_ret = iface->DeletePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserPublishedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserPublishedFiles_params *params ) +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; params->_ret = iface->EnumerateUserPublishedFiles( params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SubscribePublishedFile_params *params ) +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; params->_ret = iface->SubscribePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSubscribedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSubscribedFiles_params *params ) +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; params->_ret = iface->EnumerateUserSubscribedFiles( params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UnsubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UnsubscribePublishedFile_params *params ) +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; params->_ret = iface->UnsubscribePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileSetChangeDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileSetChangeDescription_params *params ) +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; params->_ret = iface->UpdatePublishedFileSetChangeDescription( params->updateHandle, params->pchChangeDescription ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedItemVoteDetails_params *params ) +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; params->_ret = iface->GetPublishedItemVoteDetails( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdateUserPublishedItemVote( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdateUserPublishedItemVote_params *params ) +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; params->_ret = iface->UpdateUserPublishedItemVote( params->unPublishedFileId, params->bVoteUp ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUserPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUserPublishedItemVoteDetails_params *params ) +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; params->_ret = iface->GetUserPublishedItemVoteDetails( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSharedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSharedWorkshopFiles_params *params ) +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; params->_ret = iface->EnumerateUserSharedWorkshopFiles( params->steamId, params->unStartIndex, params->pRequiredTags, params->pExcludedTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishVideo( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishVideo_params *params ) +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; params->_ret = iface->PublishVideo( params->eVideoProvider, params->pchVideoAccount, params->pchVideoIdentifier, params->pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetUserPublishedFileAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetUserPublishedFileAction_params *params ) +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; params->_ret = iface->SetUserPublishedFileAction( params->unPublishedFileId, params->eAction ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedFilesByUserAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedFilesByUserAction_params *params ) +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; params->_ret = iface->EnumeratePublishedFilesByUserAction( params->eAction, params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedWorkshopFiles_params *params ) +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; params->_ret = iface->EnumeratePublishedWorkshopFiles( params->eEnumerationType, params->unStartIndex, params->unCount, params->unDays, params->pTags, params->pUserTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownloadToLocation( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownloadToLocation_params *params ) +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; params->_ret = iface->UGCDownloadToLocation( params->hContent, params->pchLocation, params->unPriority ); + return 0; } diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013.h b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013.h deleted file mode 100644 index 409d94be..00000000 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013.h +++ /dev/null @@ -1,509 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWrite_params -{ - void *linux_side; - bool _ret; - const char *pchFile; - const void *pvData; - int32_t cubData; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWrite( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWrite_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileRead_params -{ - void *linux_side; - int32_t _ret; - const char *pchFile; - void *pvData; - int32_t cubDataToRead; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileRead_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteAsync_params -{ - void *linux_side; - uint64_t _ret; - const char *pchFile; - const void *pvData; - uint32_t cubData; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteAsync( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteAsync_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsync_params -{ - void *linux_side; - uint64_t _ret; - const char *pchFile; - uint32_t nOffset; - uint32_t cubToRead; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsync( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsync_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsyncComplete_params -{ - void *linux_side; - bool _ret; - uint64_t hReadCall; - void *pvBuffer; - uint32_t cubToRead; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsyncComplete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsyncComplete_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileForget_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileForget( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileForget_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileDelete_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileDelete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileDelete_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileShare_params -{ - void *linux_side; - uint64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileShare( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileShare_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetSyncPlatforms_params -{ - void *linux_side; - bool _ret; - const char *pchFile; - uint32_t eRemoteStoragePlatform; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetSyncPlatforms_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamOpen_params -{ - void *linux_side; - uint64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamOpen( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamOpen_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamWriteChunk_params -{ - void *linux_side; - bool _ret; - uint64_t writeHandle; - const void *pvData; - int32_t cubData; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamWriteChunk( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamWriteChunk_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamClose_params -{ - void *linux_side; - bool _ret; - uint64_t writeHandle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamClose( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamClose_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamCancel_params -{ - void *linux_side; - bool _ret; - uint64_t writeHandle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamCancel( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamCancel_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileExists_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileExists( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileExists_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FilePersisted_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FilePersisted( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FilePersisted_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileSize_params -{ - void *linux_side; - int32_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileSize_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileTimestamp_params -{ - void *linux_side; - int64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileTimestamp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileTimestamp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetSyncPlatforms_params -{ - void *linux_side; - uint32_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetSyncPlatforms_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileCount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileNameAndSize_params -{ - void *linux_side; - const char *_ret; - int32_t iFile; - int32_t *pnFileSizeInBytes; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileNameAndSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileNameAndSize_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetQuota_params -{ - void *linux_side; - bool _ret; - int32_t *pnTotalBytes; - int32_t *puAvailableBytes; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetQuota( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetQuota_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForAccount_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForAccount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForAccount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForApp_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForApp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetCloudEnabledForApp_params -{ - void *linux_side; - bool bEnabled; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetCloudEnabledForApp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownload_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hContent; - uint32_t unPriority; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownload( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownload_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDownloadProgress_params -{ - void *linux_side; - bool _ret; - uint64_t hContent; - int32_t *pnBytesDownloaded; - int32_t *pnBytesExpected; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDownloadProgress( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDownloadProgress_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDetails_params -{ - void *linux_side; - bool _ret; - uint64_t hContent; - uint32_t *pnAppID; - char **ppchName; - int32_t *pnFileSizeInBytes; - CSteamID *pSteamIDOwner; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCRead_params -{ - void *linux_side; - int32_t _ret; - uint64_t hContent; - void *pvData; - int32_t cubDataToRead; - uint32_t cOffset; - uint32_t eAction; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCRead_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCCount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCHandle_params -{ - void *linux_side; - uint64_t _ret; - int32_t iCachedContent; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCHandle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCHandle_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishWorkshopFile_params -{ - void *linux_side; - uint64_t _ret; - 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; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishWorkshopFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishWorkshopFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CreatePublishedFileUpdateRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CreatePublishedFileUpdateRequest( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CreatePublishedFileUpdateRequest_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileFile_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFilePreviewFile_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchPreviewFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFilePreviewFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFilePreviewFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTitle_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchTitle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTitle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTitle_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileDescription_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchDescription; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileDescription_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileVisibility_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - uint32_t eVisibility; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileVisibility( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileVisibility_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTags_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - w_SteamParamStringArray_t *pTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTags( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTags_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CommitPublishedFileUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint64_t updateHandle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CommitPublishedFileUpdate( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CommitPublishedFileUpdate_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedFileDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; - uint32_t unMaxSecondsOld; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedFileDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedFileDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_DeletePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_DeletePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_DeletePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserPublishedFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserPublishedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserPublishedFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SubscribePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SubscribePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSubscribedFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSubscribedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSubscribedFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UnsubscribePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UnsubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UnsubscribePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileSetChangeDescription_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchChangeDescription; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileSetChangeDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileSetChangeDescription_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedItemVoteDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedItemVoteDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdateUserPublishedItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; - bool bVoteUp; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdateUserPublishedItemVote( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdateUserPublishedItemVote_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUserPublishedItemVoteDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUserPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUserPublishedItemVoteDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSharedWorkshopFiles_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamId; - uint32_t unStartIndex; - w_SteamParamStringArray_t *pRequiredTags; - w_SteamParamStringArray_t *pExcludedTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSharedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSharedWorkshopFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishVideo_params -{ - void *linux_side; - uint64_t _ret; - 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; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishVideo( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishVideo_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetUserPublishedFileAction_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; - uint32_t eAction; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetUserPublishedFileAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetUserPublishedFileAction_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedFilesByUserAction_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eAction; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedFilesByUserAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedFilesByUserAction_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedWorkshopFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eEnumerationType; - uint32_t unStartIndex; - uint32_t unCount; - uint32_t unDays; - w_SteamParamStringArray_t *pTags; - w_SteamParamStringArray_t *pUserTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedWorkshopFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownloadToLocation_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hContent; - const char *pchLocation; - uint32_t unPriority; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownloadToLocation( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownloadToLocation_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014.cpp b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014.cpp index b4d87470..653e0bb6 100644 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014.cpp +++ b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014.cpp @@ -1,334 +1,443 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014.h" -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWrite( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWrite_params *params ) +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; params->_ret = iface->FileWrite( params->pchFile, params->pvData, params->cubData ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileRead_params *params ) +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; params->_ret = iface->FileRead( params->pchFile, params->pvData, params->cubDataToRead ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteAsync( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteAsync_params *params ) +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; params->_ret = iface->FileWriteAsync( params->pchFile, params->pvData, params->cubData ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsync( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsync_params *params ) +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; params->_ret = iface->FileReadAsync( params->pchFile, params->nOffset, params->cubToRead ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsyncComplete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsyncComplete_params *params ) +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; params->_ret = iface->FileReadAsyncComplete( params->hReadCall, params->pvBuffer, params->cubToRead ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileForget( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileForget_params *params ) +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; params->_ret = iface->FileForget( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileDelete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileDelete_params *params ) +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; params->_ret = iface->FileDelete( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileShare( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileShare_params *params ) +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; params->_ret = iface->FileShare( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetSyncPlatforms_params *params ) +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; params->_ret = iface->SetSyncPlatforms( params->pchFile, params->eRemoteStoragePlatform ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamOpen( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamOpen_params *params ) +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; params->_ret = iface->FileWriteStreamOpen( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamWriteChunk( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamWriteChunk_params *params ) +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; params->_ret = iface->FileWriteStreamWriteChunk( params->writeHandle, params->pvData, params->cubData ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamClose( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamClose_params *params ) +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; params->_ret = iface->FileWriteStreamClose( params->writeHandle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamCancel( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamCancel_params *params ) +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; params->_ret = iface->FileWriteStreamCancel( params->writeHandle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileExists( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileExists_params *params ) +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; params->_ret = iface->FileExists( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FilePersisted( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FilePersisted_params *params ) +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; params->_ret = iface->FilePersisted( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileSize_params *params ) +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; params->_ret = iface->GetFileSize( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileTimestamp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileTimestamp_params *params ) +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; params->_ret = iface->GetFileTimestamp( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetSyncPlatforms_params *params ) +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; params->_ret = iface->GetSyncPlatforms( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileCount_params *params ) +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; params->_ret = iface->GetFileCount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileNameAndSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileNameAndSize_params *params ) +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; params->_ret = iface->GetFileNameAndSize( params->iFile, params->pnFileSizeInBytes ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetQuota( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetQuota_params *params ) +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; params->_ret = iface->GetQuota( params->pnTotalBytes, params->puAvailableBytes ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForAccount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForAccount_params *params ) +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; params->_ret = iface->IsCloudEnabledForAccount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForApp_params *params ) +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; params->_ret = iface->IsCloudEnabledForApp( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetCloudEnabledForApp_params *params ) +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; iface->SetCloudEnabledForApp( params->bEnabled ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownload( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownload_params *params ) +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; params->_ret = iface->UGCDownload( params->hContent, params->unPriority ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDownloadProgress( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDownloadProgress_params *params ) +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; params->_ret = iface->GetUGCDownloadProgress( params->hContent, params->pnBytesDownloaded, params->pnBytesExpected ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDetails_params *params ) +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; params->_ret = iface->GetUGCDetails( params->hContent, params->pnAppID, params->ppchName, params->pnFileSizeInBytes, params->pSteamIDOwner ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCRead_params *params ) +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; params->_ret = iface->UGCRead( params->hContent, params->pvData, params->cubDataToRead, params->cOffset, params->eAction ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCCount_params *params ) +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; params->_ret = iface->GetCachedUGCCount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCHandle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCHandle_params *params ) +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; params->_ret = iface->GetCachedUGCHandle( params->iCachedContent ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishWorkshopFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishWorkshopFile_params *params ) +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; params->_ret = iface->PublishWorkshopFile( params->pchFile, params->pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags, params->eWorkshopFileType ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CreatePublishedFileUpdateRequest( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CreatePublishedFileUpdateRequest_params *params ) +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; params->_ret = iface->CreatePublishedFileUpdateRequest( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileFile_params *params ) +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; params->_ret = iface->UpdatePublishedFileFile( params->updateHandle, params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFilePreviewFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFilePreviewFile_params *params ) +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; params->_ret = iface->UpdatePublishedFilePreviewFile( params->updateHandle, params->pchPreviewFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTitle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTitle_params *params ) +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; params->_ret = iface->UpdatePublishedFileTitle( params->updateHandle, params->pchTitle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileDescription_params *params ) +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; params->_ret = iface->UpdatePublishedFileDescription( params->updateHandle, params->pchDescription ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileVisibility( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileVisibility_params *params ) +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; params->_ret = iface->UpdatePublishedFileVisibility( params->updateHandle, params->eVisibility ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTags( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTags_params *params ) +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; params->_ret = iface->UpdatePublishedFileTags( params->updateHandle, params->pTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CommitPublishedFileUpdate( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CommitPublishedFileUpdate_params *params ) +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; params->_ret = iface->CommitPublishedFileUpdate( params->updateHandle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedFileDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedFileDetails_params *params ) +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; params->_ret = iface->GetPublishedFileDetails( params->unPublishedFileId, params->unMaxSecondsOld ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_DeletePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_DeletePublishedFile_params *params ) +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; params->_ret = iface->DeletePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserPublishedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserPublishedFiles_params *params ) +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; params->_ret = iface->EnumerateUserPublishedFiles( params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SubscribePublishedFile_params *params ) +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; params->_ret = iface->SubscribePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSubscribedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSubscribedFiles_params *params ) +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; params->_ret = iface->EnumerateUserSubscribedFiles( params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UnsubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UnsubscribePublishedFile_params *params ) +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; params->_ret = iface->UnsubscribePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileSetChangeDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileSetChangeDescription_params *params ) +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; params->_ret = iface->UpdatePublishedFileSetChangeDescription( params->updateHandle, params->pchChangeDescription ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedItemVoteDetails_params *params ) +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; params->_ret = iface->GetPublishedItemVoteDetails( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdateUserPublishedItemVote( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdateUserPublishedItemVote_params *params ) +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; params->_ret = iface->UpdateUserPublishedItemVote( params->unPublishedFileId, params->bVoteUp ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUserPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUserPublishedItemVoteDetails_params *params ) +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; params->_ret = iface->GetUserPublishedItemVoteDetails( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSharedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSharedWorkshopFiles_params *params ) +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; params->_ret = iface->EnumerateUserSharedWorkshopFiles( params->steamId, params->unStartIndex, params->pRequiredTags, params->pExcludedTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishVideo( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishVideo_params *params ) +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; params->_ret = iface->PublishVideo( params->eVideoProvider, params->pchVideoAccount, params->pchVideoIdentifier, params->pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetUserPublishedFileAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetUserPublishedFileAction_params *params ) +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; params->_ret = iface->SetUserPublishedFileAction( params->unPublishedFileId, params->eAction ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedFilesByUserAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedFilesByUserAction_params *params ) +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; params->_ret = iface->EnumeratePublishedFilesByUserAction( params->eAction, params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedWorkshopFiles_params *params ) +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; params->_ret = iface->EnumeratePublishedWorkshopFiles( params->eEnumerationType, params->unStartIndex, params->unCount, params->unDays, params->pTags, params->pUserTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownloadToLocation( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownloadToLocation_params *params ) +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; params->_ret = iface->UGCDownloadToLocation( params->hContent, params->pchLocation, params->unPriority ); + return 0; } diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014.h b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014.h deleted file mode 100644 index 57adb36a..00000000 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014.h +++ /dev/null @@ -1,509 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWrite_params -{ - void *linux_side; - bool _ret; - const char *pchFile; - const void *pvData; - int32_t cubData; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWrite( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWrite_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileRead_params -{ - void *linux_side; - int32_t _ret; - const char *pchFile; - void *pvData; - int32_t cubDataToRead; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileRead_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteAsync_params -{ - void *linux_side; - uint64_t _ret; - const char *pchFile; - const void *pvData; - uint32_t cubData; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteAsync( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteAsync_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsync_params -{ - void *linux_side; - uint64_t _ret; - const char *pchFile; - uint32_t nOffset; - uint32_t cubToRead; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsync( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsync_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsyncComplete_params -{ - void *linux_side; - bool _ret; - uint64_t hReadCall; - void *pvBuffer; - uint32_t cubToRead; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsyncComplete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsyncComplete_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileForget_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileForget( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileForget_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileDelete_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileDelete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileDelete_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileShare_params -{ - void *linux_side; - uint64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileShare( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileShare_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetSyncPlatforms_params -{ - void *linux_side; - bool _ret; - const char *pchFile; - uint32_t eRemoteStoragePlatform; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetSyncPlatforms_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamOpen_params -{ - void *linux_side; - uint64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamOpen( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamOpen_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamWriteChunk_params -{ - void *linux_side; - bool _ret; - uint64_t writeHandle; - const void *pvData; - int32_t cubData; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamWriteChunk( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamWriteChunk_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamClose_params -{ - void *linux_side; - bool _ret; - uint64_t writeHandle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamClose( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamClose_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamCancel_params -{ - void *linux_side; - bool _ret; - uint64_t writeHandle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamCancel( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamCancel_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileExists_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileExists( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileExists_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FilePersisted_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FilePersisted( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FilePersisted_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileSize_params -{ - void *linux_side; - int32_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileSize_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileTimestamp_params -{ - void *linux_side; - int64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileTimestamp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileTimestamp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetSyncPlatforms_params -{ - void *linux_side; - uint32_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetSyncPlatforms_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileCount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileNameAndSize_params -{ - void *linux_side; - const char *_ret; - int32_t iFile; - int32_t *pnFileSizeInBytes; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileNameAndSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileNameAndSize_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetQuota_params -{ - void *linux_side; - bool _ret; - uint64_t *pnTotalBytes; - uint64_t *puAvailableBytes; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetQuota( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetQuota_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForAccount_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForAccount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForAccount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForApp_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForApp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetCloudEnabledForApp_params -{ - void *linux_side; - bool bEnabled; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetCloudEnabledForApp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownload_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hContent; - uint32_t unPriority; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownload( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownload_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDownloadProgress_params -{ - void *linux_side; - bool _ret; - uint64_t hContent; - int32_t *pnBytesDownloaded; - int32_t *pnBytesExpected; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDownloadProgress( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDownloadProgress_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDetails_params -{ - void *linux_side; - bool _ret; - uint64_t hContent; - uint32_t *pnAppID; - char **ppchName; - int32_t *pnFileSizeInBytes; - CSteamID *pSteamIDOwner; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCRead_params -{ - void *linux_side; - int32_t _ret; - uint64_t hContent; - void *pvData; - int32_t cubDataToRead; - uint32_t cOffset; - uint32_t eAction; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCRead_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCCount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCHandle_params -{ - void *linux_side; - uint64_t _ret; - int32_t iCachedContent; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCHandle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCHandle_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishWorkshopFile_params -{ - void *linux_side; - uint64_t _ret; - 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; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishWorkshopFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishWorkshopFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CreatePublishedFileUpdateRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CreatePublishedFileUpdateRequest( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CreatePublishedFileUpdateRequest_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileFile_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFilePreviewFile_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchPreviewFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFilePreviewFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFilePreviewFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTitle_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchTitle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTitle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTitle_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileDescription_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchDescription; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileDescription_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileVisibility_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - uint32_t eVisibility; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileVisibility( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileVisibility_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTags_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - w_SteamParamStringArray_t *pTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTags( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTags_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CommitPublishedFileUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint64_t updateHandle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CommitPublishedFileUpdate( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CommitPublishedFileUpdate_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedFileDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; - uint32_t unMaxSecondsOld; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedFileDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedFileDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_DeletePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_DeletePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_DeletePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserPublishedFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserPublishedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserPublishedFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SubscribePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SubscribePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSubscribedFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSubscribedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSubscribedFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UnsubscribePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UnsubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UnsubscribePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileSetChangeDescription_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchChangeDescription; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileSetChangeDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileSetChangeDescription_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedItemVoteDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedItemVoteDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdateUserPublishedItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; - bool bVoteUp; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdateUserPublishedItemVote( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdateUserPublishedItemVote_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUserPublishedItemVoteDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUserPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUserPublishedItemVoteDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSharedWorkshopFiles_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamId; - uint32_t unStartIndex; - w_SteamParamStringArray_t *pRequiredTags; - w_SteamParamStringArray_t *pExcludedTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSharedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSharedWorkshopFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishVideo_params -{ - void *linux_side; - uint64_t _ret; - 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; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishVideo( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishVideo_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetUserPublishedFileAction_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; - uint32_t eAction; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetUserPublishedFileAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetUserPublishedFileAction_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedFilesByUserAction_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eAction; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedFilesByUserAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedFilesByUserAction_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedWorkshopFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eEnumerationType; - uint32_t unStartIndex; - uint32_t unCount; - uint32_t unDays; - w_SteamParamStringArray_t *pTags; - w_SteamParamStringArray_t *pUserTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedWorkshopFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownloadToLocation_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hContent; - const char *pchLocation; - uint32_t unPriority; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownloadToLocation( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownloadToLocation_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016.cpp b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016.cpp index 57a94cca..f2addd80 100644 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016.cpp +++ b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016.cpp @@ -1,358 +1,475 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016.h" -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWrite( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWrite_params *params ) +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; params->_ret = iface->FileWrite( params->pchFile, params->pvData, params->cubData ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileRead_params *params ) +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; params->_ret = iface->FileRead( params->pchFile, params->pvData, params->cubDataToRead ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteAsync( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteAsync_params *params ) +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; params->_ret = iface->FileWriteAsync( params->pchFile, params->pvData, params->cubData ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsync( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsync_params *params ) +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; params->_ret = iface->FileReadAsync( params->pchFile, params->nOffset, params->cubToRead ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsyncComplete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsyncComplete_params *params ) +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; params->_ret = iface->FileReadAsyncComplete( params->hReadCall, params->pvBuffer, params->cubToRead ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileForget( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileForget_params *params ) +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; params->_ret = iface->FileForget( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileDelete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileDelete_params *params ) +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; params->_ret = iface->FileDelete( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileShare( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileShare_params *params ) +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; params->_ret = iface->FileShare( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetSyncPlatforms_params *params ) +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; params->_ret = iface->SetSyncPlatforms( params->pchFile, params->eRemoteStoragePlatform ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamOpen( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamOpen_params *params ) +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; params->_ret = iface->FileWriteStreamOpen( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamWriteChunk( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamWriteChunk_params *params ) +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; params->_ret = iface->FileWriteStreamWriteChunk( params->writeHandle, params->pvData, params->cubData ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamClose( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamClose_params *params ) +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; params->_ret = iface->FileWriteStreamClose( params->writeHandle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamCancel( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamCancel_params *params ) +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; params->_ret = iface->FileWriteStreamCancel( params->writeHandle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileExists( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileExists_params *params ) +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; params->_ret = iface->FileExists( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FilePersisted( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FilePersisted_params *params ) +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; params->_ret = iface->FilePersisted( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileSize_params *params ) +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; params->_ret = iface->GetFileSize( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileTimestamp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileTimestamp_params *params ) +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; params->_ret = iface->GetFileTimestamp( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetSyncPlatforms_params *params ) +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; params->_ret = iface->GetSyncPlatforms( params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileCount_params *params ) +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; params->_ret = iface->GetFileCount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileNameAndSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileNameAndSize_params *params ) +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; params->_ret = iface->GetFileNameAndSize( params->iFile, params->pnFileSizeInBytes ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetQuota( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetQuota_params *params ) +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; params->_ret = iface->GetQuota( params->pnTotalBytes, params->puAvailableBytes ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForAccount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForAccount_params *params ) +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; params->_ret = iface->IsCloudEnabledForAccount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForApp_params *params ) +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; params->_ret = iface->IsCloudEnabledForApp( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetCloudEnabledForApp_params *params ) +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; iface->SetCloudEnabledForApp( params->bEnabled ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownload( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownload_params *params ) +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; params->_ret = iface->UGCDownload( params->hContent, params->unPriority ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDownloadProgress( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDownloadProgress_params *params ) +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; params->_ret = iface->GetUGCDownloadProgress( params->hContent, params->pnBytesDownloaded, params->pnBytesExpected ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDetails_params *params ) +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; params->_ret = iface->GetUGCDetails( params->hContent, params->pnAppID, params->ppchName, params->pnFileSizeInBytes, params->pSteamIDOwner ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCRead_params *params ) +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; params->_ret = iface->UGCRead( params->hContent, params->pvData, params->cubDataToRead, params->cOffset, params->eAction ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCCount_params *params ) +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; params->_ret = iface->GetCachedUGCCount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCHandle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCHandle_params *params ) +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; params->_ret = iface->GetCachedUGCHandle( params->iCachedContent ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishWorkshopFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishWorkshopFile_params *params ) +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; params->_ret = iface->PublishWorkshopFile( params->pchFile, params->pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags, params->eWorkshopFileType ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CreatePublishedFileUpdateRequest( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CreatePublishedFileUpdateRequest_params *params ) +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; params->_ret = iface->CreatePublishedFileUpdateRequest( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileFile_params *params ) +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; params->_ret = iface->UpdatePublishedFileFile( params->updateHandle, params->pchFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFilePreviewFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFilePreviewFile_params *params ) +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; params->_ret = iface->UpdatePublishedFilePreviewFile( params->updateHandle, params->pchPreviewFile ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTitle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTitle_params *params ) +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; params->_ret = iface->UpdatePublishedFileTitle( params->updateHandle, params->pchTitle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileDescription_params *params ) +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; params->_ret = iface->UpdatePublishedFileDescription( params->updateHandle, params->pchDescription ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileVisibility( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileVisibility_params *params ) +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; params->_ret = iface->UpdatePublishedFileVisibility( params->updateHandle, params->eVisibility ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTags( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTags_params *params ) +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; params->_ret = iface->UpdatePublishedFileTags( params->updateHandle, params->pTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CommitPublishedFileUpdate( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CommitPublishedFileUpdate_params *params ) +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; params->_ret = iface->CommitPublishedFileUpdate( params->updateHandle ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedFileDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedFileDetails_params *params ) +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; params->_ret = iface->GetPublishedFileDetails( params->unPublishedFileId, params->unMaxSecondsOld ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_DeletePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_DeletePublishedFile_params *params ) +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; params->_ret = iface->DeletePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserPublishedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserPublishedFiles_params *params ) +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; params->_ret = iface->EnumerateUserPublishedFiles( params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SubscribePublishedFile_params *params ) +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; params->_ret = iface->SubscribePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSubscribedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSubscribedFiles_params *params ) +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; params->_ret = iface->EnumerateUserSubscribedFiles( params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UnsubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UnsubscribePublishedFile_params *params ) +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; params->_ret = iface->UnsubscribePublishedFile( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileSetChangeDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileSetChangeDescription_params *params ) +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; params->_ret = iface->UpdatePublishedFileSetChangeDescription( params->updateHandle, params->pchChangeDescription ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedItemVoteDetails_params *params ) +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; params->_ret = iface->GetPublishedItemVoteDetails( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdateUserPublishedItemVote( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdateUserPublishedItemVote_params *params ) +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; params->_ret = iface->UpdateUserPublishedItemVote( params->unPublishedFileId, params->bVoteUp ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUserPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUserPublishedItemVoteDetails_params *params ) +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; params->_ret = iface->GetUserPublishedItemVoteDetails( params->unPublishedFileId ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSharedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSharedWorkshopFiles_params *params ) +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; params->_ret = iface->EnumerateUserSharedWorkshopFiles( params->steamId, params->unStartIndex, params->pRequiredTags, params->pExcludedTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishVideo( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishVideo_params *params ) +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; params->_ret = iface->PublishVideo( params->eVideoProvider, params->pchVideoAccount, params->pchVideoIdentifier, params->pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetUserPublishedFileAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetUserPublishedFileAction_params *params ) +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; params->_ret = iface->SetUserPublishedFileAction( params->unPublishedFileId, params->eAction ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedFilesByUserAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedFilesByUserAction_params *params ) +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; params->_ret = iface->EnumeratePublishedFilesByUserAction( params->eAction, params->unStartIndex ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedWorkshopFiles_params *params ) +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; params->_ret = iface->EnumeratePublishedWorkshopFiles( params->eEnumerationType, params->unStartIndex, params->unCount, params->unDays, params->pTags, params->pUserTags ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownloadToLocation( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownloadToLocation_params *params ) +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; params->_ret = iface->UGCDownloadToLocation( params->hContent, params->pchLocation, params->unPriority ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChangeCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChangeCount_params *params ) +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; params->_ret = iface->GetLocalFileChangeCount( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChange( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChange_params *params ) +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; params->_ret = iface->GetLocalFileChange( params->iFile, params->pEChangeType, params->pEFilePathType ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_BeginFileWriteBatch( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_BeginFileWriteBatch_params *params ) +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; params->_ret = iface->BeginFileWriteBatch( ); + return 0; } -void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EndFileWriteBatch( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EndFileWriteBatch_params *params ) +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; params->_ret = iface->EndFileWriteBatch( ); + return 0; } diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016.h b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016.h deleted file mode 100644 index 5cf853a9..00000000 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016.h +++ /dev/null @@ -1,540 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWrite_params -{ - void *linux_side; - bool _ret; - const char *pchFile; - const void *pvData; - int32_t cubData; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWrite( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWrite_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileRead_params -{ - void *linux_side; - int32_t _ret; - const char *pchFile; - void *pvData; - int32_t cubDataToRead; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileRead_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteAsync_params -{ - void *linux_side; - uint64_t _ret; - const char *pchFile; - const void *pvData; - uint32_t cubData; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteAsync( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteAsync_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsync_params -{ - void *linux_side; - uint64_t _ret; - const char *pchFile; - uint32_t nOffset; - uint32_t cubToRead; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsync( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsync_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsyncComplete_params -{ - void *linux_side; - bool _ret; - uint64_t hReadCall; - void *pvBuffer; - uint32_t cubToRead; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsyncComplete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsyncComplete_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileForget_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileForget( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileForget_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileDelete_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileDelete( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileDelete_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileShare_params -{ - void *linux_side; - uint64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileShare( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileShare_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetSyncPlatforms_params -{ - void *linux_side; - bool _ret; - const char *pchFile; - uint32_t eRemoteStoragePlatform; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetSyncPlatforms_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamOpen_params -{ - void *linux_side; - uint64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamOpen( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamOpen_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamWriteChunk_params -{ - void *linux_side; - bool _ret; - uint64_t writeHandle; - const void *pvData; - int32_t cubData; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamWriteChunk( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamWriteChunk_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamClose_params -{ - void *linux_side; - bool _ret; - uint64_t writeHandle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamClose( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamClose_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamCancel_params -{ - void *linux_side; - bool _ret; - uint64_t writeHandle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamCancel( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamCancel_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileExists_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileExists( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileExists_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FilePersisted_params -{ - void *linux_side; - bool _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FilePersisted( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FilePersisted_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileSize_params -{ - void *linux_side; - int32_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileSize_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileTimestamp_params -{ - void *linux_side; - int64_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileTimestamp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileTimestamp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetSyncPlatforms_params -{ - void *linux_side; - uint32_t _ret; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetSyncPlatforms( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetSyncPlatforms_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileCount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileNameAndSize_params -{ - void *linux_side; - const char *_ret; - int32_t iFile; - int32_t *pnFileSizeInBytes; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileNameAndSize( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileNameAndSize_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetQuota_params -{ - void *linux_side; - bool _ret; - uint64_t *pnTotalBytes; - uint64_t *puAvailableBytes; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetQuota( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetQuota_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForAccount_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForAccount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForAccount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForApp_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForApp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetCloudEnabledForApp_params -{ - void *linux_side; - bool bEnabled; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetCloudEnabledForApp( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetCloudEnabledForApp_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownload_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hContent; - uint32_t unPriority; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownload( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownload_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDownloadProgress_params -{ - void *linux_side; - bool _ret; - uint64_t hContent; - int32_t *pnBytesDownloaded; - int32_t *pnBytesExpected; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDownloadProgress( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDownloadProgress_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDetails_params -{ - void *linux_side; - bool _ret; - uint64_t hContent; - uint32_t *pnAppID; - char **ppchName; - int32_t *pnFileSizeInBytes; - CSteamID *pSteamIDOwner; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCRead_params -{ - void *linux_side; - int32_t _ret; - uint64_t hContent; - void *pvData; - int32_t cubDataToRead; - uint32_t cOffset; - uint32_t eAction; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCRead( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCRead_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCCount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCHandle_params -{ - void *linux_side; - uint64_t _ret; - int32_t iCachedContent; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCHandle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCHandle_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishWorkshopFile_params -{ - void *linux_side; - uint64_t _ret; - 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; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishWorkshopFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishWorkshopFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CreatePublishedFileUpdateRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CreatePublishedFileUpdateRequest( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CreatePublishedFileUpdateRequest_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileFile_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFilePreviewFile_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchPreviewFile; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFilePreviewFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFilePreviewFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTitle_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchTitle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTitle( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTitle_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileDescription_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchDescription; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileDescription_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileVisibility_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - uint32_t eVisibility; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileVisibility( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileVisibility_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTags_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - w_SteamParamStringArray_t *pTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTags( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTags_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CommitPublishedFileUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint64_t updateHandle; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CommitPublishedFileUpdate( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CommitPublishedFileUpdate_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedFileDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; - uint32_t unMaxSecondsOld; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedFileDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedFileDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_DeletePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_DeletePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_DeletePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserPublishedFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserPublishedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserPublishedFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SubscribePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SubscribePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSubscribedFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSubscribedFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSubscribedFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UnsubscribePublishedFile_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UnsubscribePublishedFile( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UnsubscribePublishedFile_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileSetChangeDescription_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const char *pchChangeDescription; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileSetChangeDescription( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileSetChangeDescription_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedItemVoteDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedItemVoteDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdateUserPublishedItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; - bool bVoteUp; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdateUserPublishedItemVote( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdateUserPublishedItemVote_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUserPublishedItemVoteDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUserPublishedItemVoteDetails( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUserPublishedItemVoteDetails_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSharedWorkshopFiles_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamId; - uint32_t unStartIndex; - w_SteamParamStringArray_t *pRequiredTags; - w_SteamParamStringArray_t *pExcludedTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSharedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSharedWorkshopFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishVideo_params -{ - void *linux_side; - uint64_t _ret; - 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; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishVideo( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishVideo_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetUserPublishedFileAction_params -{ - void *linux_side; - uint64_t _ret; - uint64_t unPublishedFileId; - uint32_t eAction; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetUserPublishedFileAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetUserPublishedFileAction_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedFilesByUserAction_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eAction; - uint32_t unStartIndex; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedFilesByUserAction( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedFilesByUserAction_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedWorkshopFiles_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eEnumerationType; - uint32_t unStartIndex; - uint32_t unCount; - uint32_t unDays; - w_SteamParamStringArray_t *pTags; - w_SteamParamStringArray_t *pUserTags; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedWorkshopFiles( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedWorkshopFiles_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownloadToLocation_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hContent; - const char *pchLocation; - uint32_t unPriority; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownloadToLocation( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownloadToLocation_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChangeCount_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChangeCount( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChangeCount_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChange_params -{ - void *linux_side; - const char *_ret; - int32_t iFile; - uint32_t *pEChangeType; - uint32_t *pEFilePathType; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChange( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChange_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_BeginFileWriteBatch_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_BeginFileWriteBatch( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_BeginFileWriteBatch_params *params ); - -struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EndFileWriteBatch_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EndFileWriteBatch( struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EndFileWriteBatch_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001.cpp b/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001.cpp index a0c461af..dbfc9ae8 100644 --- a/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001.cpp +++ b/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001.cpp @@ -1,40 +1,51 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001.h" -void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_WriteScreenshot( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_WriteScreenshot_params *params ) +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; params->_ret = iface->WriteScreenshot( params->pubRGB, params->cubRGB, params->nWidth, params->nHeight ); + return 0; } -void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_AddScreenshotToLibrary( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_AddScreenshotToLibrary_params *params ) +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; params->_ret = iface->AddScreenshotToLibrary( params->pchFilename, params->pchThumbnailFilename, params->nWidth, params->nHeight ); + return 0; } -void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TriggerScreenshot( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TriggerScreenshot_params *params ) +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; iface->TriggerScreenshot( ); + return 0; } -void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_HookScreenshots( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_HookScreenshots_params *params ) +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; iface->HookScreenshots( params->bHook ); + return 0; } -void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLocation( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLocation_params *params ) +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; params->_ret = iface->SetLocation( params->hScreenshot, params->pchLocation ); + return 0; } -void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TagUser( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TagUser_params *params ) +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; params->_ret = iface->TagUser( params->hScreenshot, params->steamID ); + return 0; } diff --git a/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001.h b/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001.h deleted file mode 100644 index 089bc919..00000000 --- a/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001.h +++ /dev/null @@ -1,65 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_WriteScreenshot_params -{ - void *linux_side; - uint32_t _ret; - void *pubRGB; - uint32_t cubRGB; - int32_t nWidth; - int32_t nHeight; -}; -extern void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_WriteScreenshot( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_WriteScreenshot_params *params ); - -struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_AddScreenshotToLibrary_params -{ - void *linux_side; - uint32_t _ret; - const char *pchFilename; - const char *pchThumbnailFilename; - int32_t nWidth; - int32_t nHeight; -}; -extern void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_AddScreenshotToLibrary( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_AddScreenshotToLibrary_params *params ); - -struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TriggerScreenshot_params -{ - void *linux_side; -}; -extern void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TriggerScreenshot( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TriggerScreenshot_params *params ); - -struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_HookScreenshots_params -{ - void *linux_side; - bool bHook; -}; -extern void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_HookScreenshots( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_HookScreenshots_params *params ); - -struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLocation_params -{ - void *linux_side; - bool _ret; - uint32_t hScreenshot; - const char *pchLocation; -}; -extern void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLocation( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLocation_params *params ); - -struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TagUser_params -{ - void *linux_side; - bool _ret; - uint32_t hScreenshot; - CSteamID steamID; -}; -extern void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TagUser( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TagUser_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002.cpp b/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002.cpp index 60bc66cc..d03c6213 100644 --- a/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002.cpp +++ b/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002.cpp @@ -1,46 +1,59 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002.h" -void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_WriteScreenshot( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_WriteScreenshot_params *params ) +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; params->_ret = iface->WriteScreenshot( params->pubRGB, params->cubRGB, params->nWidth, params->nHeight ); + return 0; } -void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_AddScreenshotToLibrary( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_AddScreenshotToLibrary_params *params ) +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; params->_ret = iface->AddScreenshotToLibrary( params->pchFilename, params->pchThumbnailFilename, params->nWidth, params->nHeight ); + return 0; } -void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TriggerScreenshot( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TriggerScreenshot_params *params ) +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; iface->TriggerScreenshot( ); + return 0; } -void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_HookScreenshots( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_HookScreenshots_params *params ) +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; iface->HookScreenshots( params->bHook ); + return 0; } -void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_SetLocation( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_SetLocation_params *params ) +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; params->_ret = iface->SetLocation( params->hScreenshot, params->pchLocation ); + return 0; } -void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUser( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUser_params *params ) +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; params->_ret = iface->TagUser( params->hScreenshot, params->steamID ); + return 0; } -void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagPublishedFile( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagPublishedFile_params *params ) +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; params->_ret = iface->TagPublishedFile( params->hScreenshot, params->unPublishedFileID ); + return 0; } diff --git a/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002.h b/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002.h deleted file mode 100644 index 38da5c4d..00000000 --- a/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002.h +++ /dev/null @@ -1,74 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_WriteScreenshot_params -{ - void *linux_side; - uint32_t _ret; - void *pubRGB; - uint32_t cubRGB; - int32_t nWidth; - int32_t nHeight; -}; -extern void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_WriteScreenshot( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_WriteScreenshot_params *params ); - -struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_AddScreenshotToLibrary_params -{ - void *linux_side; - uint32_t _ret; - const char *pchFilename; - const char *pchThumbnailFilename; - int32_t nWidth; - int32_t nHeight; -}; -extern void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_AddScreenshotToLibrary( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_AddScreenshotToLibrary_params *params ); - -struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TriggerScreenshot_params -{ - void *linux_side; -}; -extern void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TriggerScreenshot( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TriggerScreenshot_params *params ); - -struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_HookScreenshots_params -{ - void *linux_side; - bool bHook; -}; -extern void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_HookScreenshots( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_HookScreenshots_params *params ); - -struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_SetLocation_params -{ - void *linux_side; - bool _ret; - uint32_t hScreenshot; - const char *pchLocation; -}; -extern void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_SetLocation( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_SetLocation_params *params ); - -struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUser_params -{ - void *linux_side; - bool _ret; - uint32_t hScreenshot; - CSteamID steamID; -}; -extern void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUser( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUser_params *params ); - -struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagPublishedFile_params -{ - void *linux_side; - bool _ret; - uint32_t hScreenshot; - uint64_t unPublishedFileID; -}; -extern void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagPublishedFile( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagPublishedFile_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003.cpp b/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003.cpp index e17e370f..7278fa80 100644 --- a/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003.cpp +++ b/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003.cpp @@ -1,58 +1,75 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003.h" -void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_WriteScreenshot( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_WriteScreenshot_params *params ) +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; params->_ret = iface->WriteScreenshot( params->pubRGB, params->cubRGB, params->nWidth, params->nHeight ); + return 0; } -void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddScreenshotToLibrary( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddScreenshotToLibrary_params *params ) +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; params->_ret = iface->AddScreenshotToLibrary( params->pchFilename, params->pchThumbnailFilename, params->nWidth, params->nHeight ); + return 0; } -void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TriggerScreenshot( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TriggerScreenshot_params *params ) +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; iface->TriggerScreenshot( ); + return 0; } -void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_HookScreenshots( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_HookScreenshots_params *params ) +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; iface->HookScreenshots( params->bHook ); + return 0; } -void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_SetLocation( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_SetLocation_params *params ) +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; params->_ret = iface->SetLocation( params->hScreenshot, params->pchLocation ); + return 0; } -void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagUser( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagUser_params *params ) +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; params->_ret = iface->TagUser( params->hScreenshot, params->steamID ); + return 0; } -void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagPublishedFile( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagPublishedFile_params *params ) +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; params->_ret = iface->TagPublishedFile( params->hScreenshot, params->unPublishedFileID ); + return 0; } -void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_IsScreenshotsHooked( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_IsScreenshotsHooked_params *params ) +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; params->_ret = iface->IsScreenshotsHooked( ); + return 0; } -void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddVRScreenshotToLibrary( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddVRScreenshotToLibrary_params *params ) +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; params->_ret = iface->AddVRScreenshotToLibrary( params->eType, params->pchFilename, params->pchVRFilename ); + return 0; } diff --git a/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003.h b/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003.h deleted file mode 100644 index aff79336..00000000 --- a/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003.h +++ /dev/null @@ -1,91 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_WriteScreenshot_params -{ - void *linux_side; - uint32_t _ret; - void *pubRGB; - uint32_t cubRGB; - int32_t nWidth; - int32_t nHeight; -}; -extern void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_WriteScreenshot( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_WriteScreenshot_params *params ); - -struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddScreenshotToLibrary_params -{ - void *linux_side; - uint32_t _ret; - const char *pchFilename; - const char *pchThumbnailFilename; - int32_t nWidth; - int32_t nHeight; -}; -extern void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddScreenshotToLibrary( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddScreenshotToLibrary_params *params ); - -struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TriggerScreenshot_params -{ - void *linux_side; -}; -extern void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TriggerScreenshot( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TriggerScreenshot_params *params ); - -struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_HookScreenshots_params -{ - void *linux_side; - bool bHook; -}; -extern void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_HookScreenshots( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_HookScreenshots_params *params ); - -struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_SetLocation_params -{ - void *linux_side; - bool _ret; - uint32_t hScreenshot; - const char *pchLocation; -}; -extern void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_SetLocation( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_SetLocation_params *params ); - -struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagUser_params -{ - void *linux_side; - bool _ret; - uint32_t hScreenshot; - CSteamID steamID; -}; -extern void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagUser( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagUser_params *params ); - -struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagPublishedFile_params -{ - void *linux_side; - bool _ret; - uint32_t hScreenshot; - uint64_t unPublishedFileID; -}; -extern void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagPublishedFile( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagPublishedFile_params *params ); - -struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_IsScreenshotsHooked_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_IsScreenshotsHooked( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_IsScreenshotsHooked_params *params ); - -struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddVRScreenshotToLibrary_params -{ - void *linux_side; - uint32_t _ret; - uint32_t eType; - const char *pchFilename; - const char *pchVRFilename; -}; -extern void cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddVRScreenshotToLibrary( struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddVRScreenshotToLibrary_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION001.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION001.cpp index d4995b16..dbe6abf9 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION001.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION001.cpp @@ -1,90 +1,117 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION001.h" -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryUserUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryAllUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SendQueryUGCRequest_params *params ) +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; params->_ret = iface->SendQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult_params *params ) +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; u_SteamUGCDetails_t_126 u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_ReleaseQueryUGCRequest_params *params ) +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; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag_params *params ) +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; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag_params *params ) +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; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnLongDescription_params *params ) +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; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnTotalOnly_params *params ) +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; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFilter_params *params ) +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; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetMatchAnyTag_params *params ) +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; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText_params *params ) +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; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetRankedByTrendDays_params *params ) +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; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_RequestUGCDetails_params *params ) +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; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID ); + return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION001.h b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION001.h deleted file mode 100644 index 376707e8..00000000 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION001.h +++ /dev/null @@ -1,144 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryUserUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unAccountID; - uint32_t eListType; - uint32_t eMatchingUGCType; - uint32_t eSortOrder; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryUserUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryAllUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eQueryType; - uint32_t eMatchingeMatchingUGCTypeFileType; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryAllUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SendQueryUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SendQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - w_SteamUGCDetails_t_126 *pDetails; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_ReleaseQueryUGCRequest_params -{ - void *linux_side; - bool _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_ReleaseQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnLongDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnLongDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnLongDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnTotalOnly_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnTotalOnly; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnTotalOnly_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFilter_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pMatchCloudFileName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFilter_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetMatchAnyTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bMatchAnyTag; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetMatchAnyTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pSearchText; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetRankedByTrendDays_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unDays; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetRankedByTrendDays_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_RequestUGCDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_RequestUGCDetails_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION002.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION002.cpp index bac3398e..e3ca9bbc 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION002.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION002.cpp @@ -1,192 +1,253 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION002.h" -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryUserUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryAllUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SendQueryUGCRequest_params *params ) +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; params->_ret = iface->SendQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult_params *params ) +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; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_ReleaseQueryUGCRequest_params *params ) +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; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag_params *params ) +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; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag_params *params ) +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; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnLongDescription_params *params ) +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; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnTotalOnly_params *params ) +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; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedResponse_params *params ) +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; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFilter_params *params ) +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; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetMatchAnyTag_params *params ) +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; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText_params *params ) +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; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetRankedByTrendDays_params *params ) +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; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_RequestUGCDetails_params *params ) +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; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateItem_params *params ) +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; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_StartItemUpdate_params *params ) +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; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle_params *params ) +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; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription_params *params ) +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; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility_params *params ) +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; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags_params *params ) +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; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent_params *params ) +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; params->_ret = iface->SetItemContent( params->handle, params->pszContentFolder ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemPreview_params *params ) +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; params->_ret = iface->SetItemPreview( params->handle, params->pszPreviewFile ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubmitItemUpdate_params *params ) +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; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateProgress_params *params ) +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; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubscribeItem_params *params ) +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; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_UnsubscribeItem_params *params ) +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; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetNumSubscribedItems_params *params ) +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; params->_ret = iface->GetNumSubscribedItems( ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetSubscribedItems_params *params ) +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; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo_params *params ) +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; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateInfo_params *params ) +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; params->_ret = iface->GetItemUpdateInfo( params->nPublishedFileID, params->pbNeedsUpdate, params->pbIsDownloading, params->punBytesDownloaded, params->punBytesTotal ); + return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION002.h b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION002.h deleted file mode 100644 index 8e2f52cc..00000000 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION002.h +++ /dev/null @@ -1,300 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryUserUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unAccountID; - uint32_t eListType; - uint32_t eMatchingUGCType; - uint32_t eSortOrder; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryUserUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryAllUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eQueryType; - uint32_t eMatchingeMatchingUGCTypeFileType; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryAllUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SendQueryUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SendQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - w_SteamUGCDetails_t_128x *pDetails; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_ReleaseQueryUGCRequest_params -{ - void *linux_side; - bool _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_ReleaseQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnLongDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnLongDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnLongDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnTotalOnly_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnTotalOnly; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnTotalOnly_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedResponse_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedResponse_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFilter_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pMatchCloudFileName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFilter_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetMatchAnyTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bMatchAnyTag; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetMatchAnyTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pSearchText; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetRankedByTrendDays_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unDays; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetRankedByTrendDays_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_RequestUGCDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_RequestUGCDetails_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateItem_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint32_t eFileType; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_StartItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_StartItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchTitle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t eVisibility; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const w_SteamParamStringArray_t *pTags; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszContentFolder; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszPreviewFile; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubmitItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; - const char *pchChangeNote; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubmitItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateProgress_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint64_t *punBytesProcessed; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateProgress_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_UnsubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_UnsubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetNumSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetNumSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - uint64_t *punSizeOnDisk; - char *pchFolder; - uint32_t cchFolderSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - bool *pbNeedsUpdate; - bool *pbIsDownloading; - uint64_t *punBytesDownloaded; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateInfo_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION003.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION003.cpp index 4997fba8..43fb5839 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION003.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION003.cpp @@ -1,192 +1,253 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION003.h" -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryUserUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryAllUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SendQueryUGCRequest_params *params ) +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; params->_ret = iface->SendQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult_params *params ) +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; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_ReleaseQueryUGCRequest_params *params ) +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; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag_params *params ) +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; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag_params *params ) +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; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescription_params *params ) +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; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly_params *params ) +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; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse_params *params ) +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; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter_params *params ) +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; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag_params *params ) +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; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText_params *params ) +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; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDays_params *params ) +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; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_RequestUGCDetails_params *params ) +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; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateItem_params *params ) +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; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_StartItemUpdate_params *params ) +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; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle_params *params ) +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; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription_params *params ) +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; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility_params *params ) +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; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags_params *params ) +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; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent_params *params ) +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; params->_ret = iface->SetItemContent( params->handle, params->pszContentFolder ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview_params *params ) +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; params->_ret = iface->SetItemPreview( params->handle, params->pszPreviewFile ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubmitItemUpdate_params *params ) +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; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateProgress_params *params ) +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; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubscribeItem_params *params ) +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; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_UnsubscribeItem_params *params ) +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; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetNumSubscribedItems_params *params ) +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; params->_ret = iface->GetNumSubscribedItems( ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetSubscribedItems_params *params ) +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; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo_params *params ) +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; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->pbLegacyItem ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo_params *params ) +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; params->_ret = iface->GetItemUpdateInfo( params->nPublishedFileID, params->pbNeedsUpdate, params->pbIsDownloading, params->punBytesDownloaded, params->punBytesTotal ); + return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION003.h b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION003.h deleted file mode 100644 index 6312c7fd..00000000 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION003.h +++ /dev/null @@ -1,301 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryUserUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unAccountID; - uint32_t eListType; - uint32_t eMatchingUGCType; - uint32_t eSortOrder; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryUserUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryAllUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eQueryType; - uint32_t eMatchingeMatchingUGCTypeFileType; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryAllUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SendQueryUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SendQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - w_SteamUGCDetails_t_128x *pDetails; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_ReleaseQueryUGCRequest_params -{ - void *linux_side; - bool _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_ReleaseQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnLongDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnTotalOnly; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pMatchCloudFileName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bMatchAnyTag; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pSearchText; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDays_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unDays; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDays_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_RequestUGCDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_RequestUGCDetails_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateItem_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint32_t eFileType; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_StartItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_StartItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchTitle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t eVisibility; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const w_SteamParamStringArray_t *pTags; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszContentFolder; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszPreviewFile; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubmitItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; - const char *pchChangeNote; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubmitItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateProgress_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint64_t *punBytesProcessed; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateProgress_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_UnsubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_UnsubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetNumSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetNumSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - uint64_t *punSizeOnDisk; - char *pchFolder; - uint32_t cchFolderSize; - bool *pbLegacyItem; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - bool *pbNeedsUpdate; - bool *pbIsDownloading; - uint64_t *punBytesDownloaded; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION004.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION004.cpp index 230e530d..c27074cb 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION004.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION004.cpp @@ -1,204 +1,269 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION004.h" -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryUserUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryAllUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SendQueryUGCRequest_params *params ) +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; params->_ret = iface->SendQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult_params *params ) +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; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_ReleaseQueryUGCRequest_params *params ) +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; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag_params *params ) +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; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag_params *params ) +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; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnLongDescription_params *params ) +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; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnTotalOnly_params *params ) +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; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedResponse_params *params ) +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; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFilter_params *params ) +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; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetMatchAnyTag_params *params ) +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; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText_params *params ) +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; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetRankedByTrendDays_params *params ) +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; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_RequestUGCDetails_params *params ) +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; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateItem_params *params ) +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; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_StartItemUpdate_params *params ) +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; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle_params *params ) +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; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription_params *params ) +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; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility_params *params ) +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; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags_params *params ) +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; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent_params *params ) +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; params->_ret = iface->SetItemContent( params->handle, params->pszContentFolder ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemPreview_params *params ) +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; params->_ret = iface->SetItemPreview( params->handle, params->pszPreviewFile ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubmitItemUpdate_params *params ) +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; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemUpdateProgress_params *params ) +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; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubscribeItem_params *params ) +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; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_UnsubscribeItem_params *params ) +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; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetNumSubscribedItems_params *params ) +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; params->_ret = iface->GetNumSubscribedItems( ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetSubscribedItems_params *params ) +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; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemState( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemState_params *params ) +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; params->_ret = iface->GetItemState( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo_params *params ) +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; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->punTimeStamp ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo_params *params ) +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; params->_ret = iface->GetItemDownloadInfo( params->nPublishedFileID, params->punBytesDownloaded, params->punBytesTotal ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_DownloadItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_DownloadItem_params *params ) +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; params->_ret = iface->DownloadItem( params->nPublishedFileID, params->bHighPriority ); + return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION004.h b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION004.h deleted file mode 100644 index 4f84ef5b..00000000 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION004.h +++ /dev/null @@ -1,316 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryUserUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unAccountID; - uint32_t eListType; - uint32_t eMatchingUGCType; - uint32_t eSortOrder; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryUserUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryAllUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eQueryType; - uint32_t eMatchingeMatchingUGCTypeFileType; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryAllUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SendQueryUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SendQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - w_SteamUGCDetails_t_128x *pDetails; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_ReleaseQueryUGCRequest_params -{ - void *linux_side; - bool _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_ReleaseQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnLongDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnLongDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnLongDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnTotalOnly_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnTotalOnly; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnTotalOnly_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedResponse_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedResponse_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFilter_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pMatchCloudFileName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFilter_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetMatchAnyTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bMatchAnyTag; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetMatchAnyTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pSearchText; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetRankedByTrendDays_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unDays; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetRankedByTrendDays_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_RequestUGCDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_RequestUGCDetails_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateItem_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint32_t eFileType; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_StartItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_StartItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchTitle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t eVisibility; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const w_SteamParamStringArray_t *pTags; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszContentFolder; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszPreviewFile; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubmitItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; - const char *pchChangeNote; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubmitItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemUpdateProgress_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint64_t *punBytesProcessed; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemUpdateProgress_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_UnsubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_UnsubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetNumSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetNumSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemState_params -{ - void *linux_side; - uint32_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemState( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemState_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - uint64_t *punSizeOnDisk; - char *pchFolder; - uint32_t cchFolderSize; - uint32_t *punTimeStamp; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - uint64_t *punBytesDownloaded; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_DownloadItem_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - bool bHighPriority; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_DownloadItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_DownloadItem_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION005.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION005.cpp index 411b12b6..b8967346 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION005.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION005.cpp @@ -1,282 +1,373 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION005.h" -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUserUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryAllUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUGCDetailsRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUGCDetailsRequest_params *params ) +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; params->_ret = iface->CreateQueryUGCDetailsRequest( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SendQueryUGCRequest_params *params ) +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; params->_ret = iface->SendQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult_params *params ) +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; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL_params *params ) +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; params->_ret = iface->GetQueryUGCPreviewURL( params->handle, params->index, params->pchURL, params->cchURLSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata_params *params ) +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; params->_ret = iface->GetQueryUGCMetadata( params->handle, params->index, params->pchMetadata, params->cchMetadatasize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren_params *params ) +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; params->_ret = iface->GetQueryUGCChildren( params->handle, params->index, params->pvecPublishedFileID, params->cMaxEntries ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCStatistic( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCStatistic_params *params ) +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; params->_ret = iface->GetQueryUGCStatistic( params->handle, params->index, params->eStatType, params->pStatValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCNumAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCNumAdditionalPreviews_params *params ) +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; params->_ret = iface->GetQueryUGCNumAdditionalPreviews( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAdditionalPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAdditionalPreview_params *params ) +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; params->_ret = iface->GetQueryUGCAdditionalPreview( params->handle, params->index, params->previewIndex, params->pchURLOrVideoID, params->cchURLSize, params->pbIsImage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_ReleaseQueryUGCRequest_params *params ) +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; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag_params *params ) +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; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag_params *params ) +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; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnLongDescription_params *params ) +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; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnMetadata_params *params ) +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; params->_ret = iface->SetReturnMetadata( params->handle, params->bReturnMetadata ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnChildren_params *params ) +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; params->_ret = iface->SetReturnChildren( params->handle, params->bReturnChildren ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnAdditionalPreviews_params *params ) +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; params->_ret = iface->SetReturnAdditionalPreviews( params->handle, params->bReturnAdditionalPreviews ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnTotalOnly_params *params ) +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; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedResponse_params *params ) +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; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFilter_params *params ) +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; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetMatchAnyTag_params *params ) +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; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText_params *params ) +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; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetRankedByTrendDays_params *params ) +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; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_RequestUGCDetails_params *params ) +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; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateItem_params *params ) +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; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_StartItemUpdate_params *params ) +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; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle_params *params ) +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; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription_params *params ) +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; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata_params *params ) +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; params->_ret = iface->SetItemMetadata( params->handle, params->pchMetaData ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility_params *params ) +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; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags_params *params ) +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; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent_params *params ) +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; params->_ret = iface->SetItemContent( params->handle, params->pszContentFolder ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemPreview_params *params ) +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; params->_ret = iface->SetItemPreview( params->handle, params->pszPreviewFile ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubmitItemUpdate_params *params ) +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; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemUpdateProgress_params *params ) +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; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddItemToFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddItemToFavorites_params *params ) +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; params->_ret = iface->AddItemToFavorites( params->nAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_RemoveItemFromFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_RemoveItemFromFavorites_params *params ) +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; params->_ret = iface->RemoveItemFromFavorites( params->nAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubscribeItem_params *params ) +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; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_UnsubscribeItem_params *params ) +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; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetNumSubscribedItems_params *params ) +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; params->_ret = iface->GetNumSubscribedItems( ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetSubscribedItems_params *params ) +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; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemState( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemState_params *params ) +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; params->_ret = iface->GetItemState( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo_params *params ) +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; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->punTimeStamp ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo_params *params ) +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; params->_ret = iface->GetItemDownloadInfo( params->nPublishedFileID, params->punBytesDownloaded, params->punBytesTotal ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_DownloadItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_DownloadItem_params *params ) +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; params->_ret = iface->DownloadItem( params->nPublishedFileID, params->bHighPriority ); + return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION005.h b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION005.h deleted file mode 100644 index 0eae894f..00000000 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION005.h +++ /dev/null @@ -1,445 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUserUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unAccountID; - uint32_t eListType; - uint32_t eMatchingUGCType; - uint32_t eSortOrder; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUserUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryAllUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eQueryType; - uint32_t eMatchingeMatchingUGCTypeFileType; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryAllUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUGCDetailsRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t unNumPublishedFileIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUGCDetailsRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUGCDetailsRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SendQueryUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SendQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - w_SteamUGCDetails_t_128x *pDetails; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - char *pchURL; - uint32_t cchURLSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - char *pchMetadata; - uint32_t cchMetadatasize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint64_t *pvecPublishedFileID; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCStatistic_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t eStatType; - uint32_t *pStatValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCStatistic( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCStatistic_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCNumAdditionalPreviews_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCNumAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCNumAdditionalPreviews_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAdditionalPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t previewIndex; - char *pchURLOrVideoID; - uint32_t cchURLSize; - bool *pbIsImage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAdditionalPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAdditionalPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_ReleaseQueryUGCRequest_params -{ - void *linux_side; - bool _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_ReleaseQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnLongDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnLongDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnLongDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnMetadata; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnChildren_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnChildren; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnChildren_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnAdditionalPreviews_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnAdditionalPreviews; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnAdditionalPreviews_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnTotalOnly_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnTotalOnly; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnTotalOnly_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedResponse_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedResponse_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFilter_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pMatchCloudFileName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFilter_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetMatchAnyTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bMatchAnyTag; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetMatchAnyTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pSearchText; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetRankedByTrendDays_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unDays; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetRankedByTrendDays_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_RequestUGCDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_RequestUGCDetails_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateItem_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint32_t eFileType; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_StartItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_StartItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchTitle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchMetaData; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t eVisibility; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const w_SteamParamStringArray_t *pTags; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszContentFolder; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszPreviewFile; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubmitItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; - const char *pchChangeNote; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubmitItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemUpdateProgress_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint64_t *punBytesProcessed; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemUpdateProgress_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddItemToFavorites_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddItemToFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddItemToFavorites_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_RemoveItemFromFavorites_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_RemoveItemFromFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_RemoveItemFromFavorites_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_UnsubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_UnsubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetNumSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetNumSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemState_params -{ - void *linux_side; - uint32_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemState( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemState_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - uint64_t *punSizeOnDisk; - char *pchFolder; - uint32_t cchFolderSize; - uint32_t *punTimeStamp; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - uint64_t *punBytesDownloaded; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_DownloadItem_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - bool bHighPriority; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_DownloadItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_DownloadItem_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION006.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION006.cpp index 2c1b3189..ae21469f 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION006.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION006.cpp @@ -1,306 +1,405 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION006.h" -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUserUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryAllUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUGCDetailsRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUGCDetailsRequest_params *params ) +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; params->_ret = iface->CreateQueryUGCDetailsRequest( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SendQueryUGCRequest_params *params ) +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; params->_ret = iface->SendQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult_params *params ) +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; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL_params *params ) +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; params->_ret = iface->GetQueryUGCPreviewURL( params->handle, params->index, params->pchURL, params->cchURLSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata_params *params ) +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; params->_ret = iface->GetQueryUGCMetadata( params->handle, params->index, params->pchMetadata, params->cchMetadatasize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren_params *params ) +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; params->_ret = iface->GetQueryUGCChildren( params->handle, params->index, params->pvecPublishedFileID, params->cMaxEntries ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCStatistic( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCStatistic_params *params ) +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; params->_ret = iface->GetQueryUGCStatistic( params->handle, params->index, params->eStatType, params->pStatValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCNumAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCNumAdditionalPreviews_params *params ) +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; params->_ret = iface->GetQueryUGCNumAdditionalPreviews( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAdditionalPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAdditionalPreview_params *params ) +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; params->_ret = iface->GetQueryUGCAdditionalPreview( params->handle, params->index, params->previewIndex, params->pchURLOrVideoID, params->cchURLSize, params->pbIsImage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_ReleaseQueryUGCRequest_params *params ) +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; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag_params *params ) +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; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag_params *params ) +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; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnLongDescription_params *params ) +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; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnMetadata_params *params ) +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; params->_ret = iface->SetReturnMetadata( params->handle, params->bReturnMetadata ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnChildren_params *params ) +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; params->_ret = iface->SetReturnChildren( params->handle, params->bReturnChildren ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnAdditionalPreviews_params *params ) +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; params->_ret = iface->SetReturnAdditionalPreviews( params->handle, params->bReturnAdditionalPreviews ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnTotalOnly_params *params ) +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; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage_params *params ) +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; params->_ret = iface->SetLanguage( params->handle, params->pchLanguage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedResponse_params *params ) +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; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFilter_params *params ) +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; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetMatchAnyTag_params *params ) +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; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText_params *params ) +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; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetRankedByTrendDays_params *params ) +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; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_RequestUGCDetails_params *params ) +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; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateItem_params *params ) +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; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_StartItemUpdate_params *params ) +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; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle_params *params ) +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; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription_params *params ) +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; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLanguage_params *params ) +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; params->_ret = iface->SetItemUpdateLanguage( params->handle, params->pchLanguage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata_params *params ) +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; params->_ret = iface->SetItemMetadata( params->handle, params->pchMetaData ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility_params *params ) +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; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags_params *params ) +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; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent_params *params ) +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; params->_ret = iface->SetItemContent( params->handle, params->pszContentFolder ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemPreview_params *params ) +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; params->_ret = iface->SetItemPreview( params->handle, params->pszPreviewFile ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubmitItemUpdate_params *params ) +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; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemUpdateProgress_params *params ) +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; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetUserItemVote_params *params ) +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; params->_ret = iface->SetUserItemVote( params->nPublishedFileID, params->bVoteUp ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetUserItemVote_params *params ) +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; params->_ret = iface->GetUserItemVote( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddItemToFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddItemToFavorites_params *params ) +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; params->_ret = iface->AddItemToFavorites( params->nAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_RemoveItemFromFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_RemoveItemFromFavorites_params *params ) +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; params->_ret = iface->RemoveItemFromFavorites( params->nAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubscribeItem_params *params ) +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; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_UnsubscribeItem_params *params ) +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; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetNumSubscribedItems_params *params ) +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; params->_ret = iface->GetNumSubscribedItems( ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetSubscribedItems_params *params ) +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; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemState( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemState_params *params ) +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; params->_ret = iface->GetItemState( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo_params *params ) +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; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->punTimeStamp ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo_params *params ) +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; params->_ret = iface->GetItemDownloadInfo( params->nPublishedFileID, params->punBytesDownloaded, params->punBytesTotal ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_DownloadItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_DownloadItem_params *params ) +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; params->_ret = iface->DownloadItem( params->nPublishedFileID, params->bHighPriority ); + return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION006.h b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION006.h deleted file mode 100644 index bdc30505..00000000 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION006.h +++ /dev/null @@ -1,480 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUserUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unAccountID; - uint32_t eListType; - uint32_t eMatchingUGCType; - uint32_t eSortOrder; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUserUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryAllUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eQueryType; - uint32_t eMatchingeMatchingUGCTypeFileType; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryAllUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUGCDetailsRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t unNumPublishedFileIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUGCDetailsRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUGCDetailsRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SendQueryUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SendQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - w_SteamUGCDetails_t_128x *pDetails; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - char *pchURL; - uint32_t cchURLSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - char *pchMetadata; - uint32_t cchMetadatasize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint64_t *pvecPublishedFileID; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCStatistic_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t eStatType; - uint32_t *pStatValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCStatistic( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCStatistic_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCNumAdditionalPreviews_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCNumAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCNumAdditionalPreviews_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAdditionalPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t previewIndex; - char *pchURLOrVideoID; - uint32_t cchURLSize; - bool *pbIsImage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAdditionalPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAdditionalPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_ReleaseQueryUGCRequest_params -{ - void *linux_side; - bool _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_ReleaseQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnLongDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnLongDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnLongDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnMetadata; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnChildren_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnChildren; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnChildren_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnAdditionalPreviews_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnAdditionalPreviews; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnAdditionalPreviews_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnTotalOnly_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnTotalOnly; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnTotalOnly_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchLanguage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedResponse_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedResponse_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFilter_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pMatchCloudFileName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFilter_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetMatchAnyTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bMatchAnyTag; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetMatchAnyTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pSearchText; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetRankedByTrendDays_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unDays; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetRankedByTrendDays_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_RequestUGCDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_RequestUGCDetails_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateItem_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint32_t eFileType; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_StartItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_StartItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchTitle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLanguage_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchLanguage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLanguage_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchMetaData; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t eVisibility; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const w_SteamParamStringArray_t *pTags; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszContentFolder; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszPreviewFile; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubmitItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; - const char *pchChangeNote; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubmitItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemUpdateProgress_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint64_t *punBytesProcessed; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemUpdateProgress_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetUserItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - bool bVoteUp; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetUserItemVote_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetUserItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetUserItemVote_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddItemToFavorites_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddItemToFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddItemToFavorites_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_RemoveItemFromFavorites_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_RemoveItemFromFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_RemoveItemFromFavorites_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_UnsubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_UnsubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetNumSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetNumSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemState_params -{ - void *linux_side; - uint32_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemState( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemState_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - uint64_t *punSizeOnDisk; - char *pchFolder; - uint32_t cchFolderSize; - uint32_t *punTimeStamp; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - uint64_t *punBytesDownloaded; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_DownloadItem_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - bool bHighPriority; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_DownloadItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_DownloadItem_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION007.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION007.cpp index 8f48d396..a8840eca 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION007.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION007.cpp @@ -1,354 +1,469 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION007.h" -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUserUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryAllUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUGCDetailsRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUGCDetailsRequest_params *params ) +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; params->_ret = iface->CreateQueryUGCDetailsRequest( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SendQueryUGCRequest_params *params ) +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; params->_ret = iface->SendQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult_params *params ) +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; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL_params *params ) +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; params->_ret = iface->GetQueryUGCPreviewURL( params->handle, params->index, params->pchURL, params->cchURLSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata_params *params ) +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; params->_ret = iface->GetQueryUGCMetadata( params->handle, params->index, params->pchMetadata, params->cchMetadatasize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren_params *params ) +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; params->_ret = iface->GetQueryUGCChildren( params->handle, params->index, params->pvecPublishedFileID, params->cMaxEntries ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCStatistic( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCStatistic_params *params ) +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; params->_ret = iface->GetQueryUGCStatistic( params->handle, params->index, params->eStatType, params->pStatValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumAdditionalPreviews_params *params ) +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; params->_ret = iface->GetQueryUGCNumAdditionalPreviews( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCAdditionalPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCAdditionalPreview_params *params ) +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; params->_ret = iface->GetQueryUGCAdditionalPreview( params->handle, params->index, params->previewIndex, params->pchURLOrVideoID, params->cchURLSize, params->pbIsImage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumKeyValueTags_params *params ) +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; params->_ret = iface->GetQueryUGCNumKeyValueTags( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTag_params *params ) +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; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->keyValueTagIndex, params->pchKey, params->cchKeySize, params->pchValue, params->cchValueSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_ReleaseQueryUGCRequest_params *params ) +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; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag_params *params ) +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; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag_params *params ) +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; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnKeyValueTags_params *params ) +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; params->_ret = iface->SetReturnKeyValueTags( params->handle, params->bReturnKeyValueTags ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnLongDescription_params *params ) +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; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnMetadata_params *params ) +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; params->_ret = iface->SetReturnMetadata( params->handle, params->bReturnMetadata ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnChildren_params *params ) +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; params->_ret = iface->SetReturnChildren( params->handle, params->bReturnChildren ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnAdditionalPreviews_params *params ) +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; params->_ret = iface->SetReturnAdditionalPreviews( params->handle, params->bReturnAdditionalPreviews ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnTotalOnly_params *params ) +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; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage_params *params ) +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; params->_ret = iface->SetLanguage( params->handle, params->pchLanguage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedResponse_params *params ) +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; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFilter_params *params ) +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; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetMatchAnyTag_params *params ) +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; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText_params *params ) +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; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDays_params *params ) +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; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredKeyValueTag_params *params ) +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; params->_ret = iface->AddRequiredKeyValueTag( params->handle, params->pKey, params->pValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_RequestUGCDetails_params *params ) +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; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateItem_params *params ) +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; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_StartItemUpdate_params *params ) +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; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle_params *params ) +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; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription_params *params ) +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; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLanguage_params *params ) +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; params->_ret = iface->SetItemUpdateLanguage( params->handle, params->pchLanguage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata_params *params ) +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; params->_ret = iface->SetItemMetadata( params->handle, params->pchMetaData ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility_params *params ) +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; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags_params *params ) +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; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent_params *params ) +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; params->_ret = iface->SetItemContent( params->handle, params->pszContentFolder ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview_params *params ) +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; params->_ret = iface->SetItemPreview( params->handle, params->pszPreviewFile ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueTags_params *params ) +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; params->_ret = iface->RemoveItemKeyValueTags( params->handle, params->pchKey ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemKeyValueTag_params *params ) +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; params->_ret = iface->AddItemKeyValueTag( params->handle, params->pchKey, params->pchValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubmitItemUpdate_params *params ) +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; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemUpdateProgress_params *params ) +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; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetUserItemVote_params *params ) +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; params->_ret = iface->SetUserItemVote( params->nPublishedFileID, params->bVoteUp ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetUserItemVote_params *params ) +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; params->_ret = iface->GetUserItemVote( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemToFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemToFavorites_params *params ) +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; params->_ret = iface->AddItemToFavorites( params->nAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemFromFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemFromFavorites_params *params ) +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; params->_ret = iface->RemoveItemFromFavorites( params->nAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubscribeItem_params *params ) +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; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_UnsubscribeItem_params *params ) +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; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetNumSubscribedItems_params *params ) +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; params->_ret = iface->GetNumSubscribedItems( ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetSubscribedItems_params *params ) +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; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemState( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemState_params *params ) +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; params->_ret = iface->GetItemState( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo_params *params ) +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; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->punTimeStamp ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo_params *params ) +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; params->_ret = iface->GetItemDownloadInfo( params->nPublishedFileID, params->punBytesDownloaded, params->punBytesTotal ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem_params *params ) +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; params->_ret = iface->DownloadItem( params->nPublishedFileID, params->bHighPriority ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameServer( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameServer_params *params ) +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; params->_ret = iface->BInitWorkshopForGameServer( params->unWorkshopDepotID, params->pszFolder ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SuspendDownloads( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SuspendDownloads_params *params ) +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; iface->SuspendDownloads( params->bSuspend ); + return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION007.h b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION007.h deleted file mode 100644 index cb3e2fc7..00000000 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION007.h +++ /dev/null @@ -1,557 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUserUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unAccountID; - uint32_t eListType; - uint32_t eMatchingUGCType; - uint32_t eSortOrder; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUserUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryAllUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eQueryType; - uint32_t eMatchingeMatchingUGCTypeFileType; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryAllUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUGCDetailsRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t unNumPublishedFileIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUGCDetailsRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUGCDetailsRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SendQueryUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SendQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - w_SteamUGCDetails_t_128x *pDetails; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - char *pchURL; - uint32_t cchURLSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - char *pchMetadata; - uint32_t cchMetadatasize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint64_t *pvecPublishedFileID; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCStatistic_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t eStatType; - uint32_t *pStatValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCStatistic( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCStatistic_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumAdditionalPreviews_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumAdditionalPreviews_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCAdditionalPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t previewIndex; - char *pchURLOrVideoID; - uint32_t cchURLSize; - bool *pbIsImage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCAdditionalPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCAdditionalPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumKeyValueTags_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t keyValueTagIndex; - char *pchKey; - uint32_t cchKeySize; - char *pchValue; - uint32_t cchValueSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_ReleaseQueryUGCRequest_params -{ - void *linux_side; - bool _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_ReleaseQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnKeyValueTags_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnKeyValueTags; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnLongDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnLongDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnLongDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnMetadata; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnChildren_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnChildren; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnChildren_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnAdditionalPreviews_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnAdditionalPreviews; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnAdditionalPreviews_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnTotalOnly_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnTotalOnly; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnTotalOnly_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchLanguage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedResponse_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedResponse_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFilter_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pMatchCloudFileName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFilter_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetMatchAnyTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bMatchAnyTag; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetMatchAnyTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pSearchText; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDays_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unDays; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDays_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pKey; - const char *pValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_RequestUGCDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_RequestUGCDetails_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateItem_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint32_t eFileType; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_StartItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_StartItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchTitle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLanguage_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchLanguage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLanguage_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchMetaData; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t eVisibility; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const w_SteamParamStringArray_t *pTags; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszContentFolder; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszPreviewFile; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueTags_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchKey; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubmitItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; - const char *pchChangeNote; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubmitItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemUpdateProgress_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint64_t *punBytesProcessed; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemUpdateProgress_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetUserItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - bool bVoteUp; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetUserItemVote_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetUserItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetUserItemVote_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemToFavorites_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemToFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemToFavorites_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemFromFavorites_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemFromFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemFromFavorites_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_UnsubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_UnsubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetNumSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetNumSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemState_params -{ - void *linux_side; - uint32_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemState( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemState_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - uint64_t *punSizeOnDisk; - char *pchFolder; - uint32_t cchFolderSize; - uint32_t *punTimeStamp; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - uint64_t *punBytesDownloaded; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - bool bHighPriority; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameServer_params -{ - void *linux_side; - bool _ret; - uint32_t unWorkshopDepotID; - const char *pszFolder; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameServer( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameServer_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SuspendDownloads_params -{ - void *linux_side; - bool bSuspend; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SuspendDownloads( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SuspendDownloads_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION008.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION008.cpp index 8721d19c..9035c26b 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION008.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION008.cpp @@ -1,384 +1,509 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION008.h" -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUserUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryAllUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUGCDetailsRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUGCDetailsRequest_params *params ) +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; params->_ret = iface->CreateQueryUGCDetailsRequest( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SendQueryUGCRequest_params *params ) +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; params->_ret = iface->SendQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult_params *params ) +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; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL_params *params ) +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; params->_ret = iface->GetQueryUGCPreviewURL( params->handle, params->index, params->pchURL, params->cchURLSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata_params *params ) +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; params->_ret = iface->GetQueryUGCMetadata( params->handle, params->index, params->pchMetadata, params->cchMetadatasize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren_params *params ) +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; params->_ret = iface->GetQueryUGCChildren( params->handle, params->index, params->pvecPublishedFileID, params->cMaxEntries ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCStatistic( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCStatistic_params *params ) +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; params->_ret = iface->GetQueryUGCStatistic( params->handle, params->index, params->eStatType, params->pStatValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumAdditionalPreviews_params *params ) +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; params->_ret = iface->GetQueryUGCNumAdditionalPreviews( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCAdditionalPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCAdditionalPreview_params *params ) +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; params->_ret = iface->GetQueryUGCAdditionalPreview( params->handle, params->index, params->previewIndex, params->pchURLOrVideoID, params->cchURLSize, params->pchOriginalFileName, params->cchOriginalFileNameSize, params->pPreviewType ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumKeyValueTags_params *params ) +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; params->_ret = iface->GetQueryUGCNumKeyValueTags( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTag_params *params ) +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; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->keyValueTagIndex, params->pchKey, params->cchKeySize, params->pchValue, params->cchValueSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_ReleaseQueryUGCRequest_params *params ) +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; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag_params *params ) +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; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag_params *params ) +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; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnKeyValueTags_params *params ) +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; params->_ret = iface->SetReturnKeyValueTags( params->handle, params->bReturnKeyValueTags ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnLongDescription_params *params ) +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; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnMetadata_params *params ) +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; params->_ret = iface->SetReturnMetadata( params->handle, params->bReturnMetadata ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnChildren_params *params ) +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; params->_ret = iface->SetReturnChildren( params->handle, params->bReturnChildren ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnAdditionalPreviews_params *params ) +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; params->_ret = iface->SetReturnAdditionalPreviews( params->handle, params->bReturnAdditionalPreviews ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnTotalOnly_params *params ) +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; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage_params *params ) +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; params->_ret = iface->SetLanguage( params->handle, params->pchLanguage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedResponse_params *params ) +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; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFilter_params *params ) +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; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetMatchAnyTag_params *params ) +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; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText_params *params ) +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; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDays_params *params ) +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; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredKeyValueTag_params *params ) +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; params->_ret = iface->AddRequiredKeyValueTag( params->handle, params->pKey, params->pValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_RequestUGCDetails_params *params ) +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; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateItem_params *params ) +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; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_StartItemUpdate_params *params ) +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; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle_params *params ) +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; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription_params *params ) +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; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLanguage_params *params ) +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; params->_ret = iface->SetItemUpdateLanguage( params->handle, params->pchLanguage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata_params *params ) +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; params->_ret = iface->SetItemMetadata( params->handle, params->pchMetaData ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility_params *params ) +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; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags_params *params ) +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; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent_params *params ) +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; params->_ret = iface->SetItemContent( params->handle, params->pszContentFolder ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview_params *params ) +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; params->_ret = iface->SetItemPreview( params->handle, params->pszPreviewFile ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueTags_params *params ) +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; params->_ret = iface->RemoveItemKeyValueTags( params->handle, params->pchKey ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag_params *params ) +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; params->_ret = iface->AddItemKeyValueTag( params->handle, params->pchKey, params->pchValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile_params *params ) +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; params->_ret = iface->AddItemPreviewFile( params->handle, params->pszPreviewFile, params->type ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo_params *params ) +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; params->_ret = iface->AddItemPreviewVideo( params->handle, params->pszVideoID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile_params *params ) +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; params->_ret = iface->UpdateItemPreviewFile( params->handle, params->index, params->pszPreviewFile ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVideo_params *params ) +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; params->_ret = iface->UpdateItemPreviewVideo( params->handle, params->index, params->pszVideoID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemPreview_params *params ) +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; params->_ret = iface->RemoveItemPreview( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubmitItemUpdate_params *params ) +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; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemUpdateProgress_params *params ) +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; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetUserItemVote_params *params ) +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; params->_ret = iface->SetUserItemVote( params->nPublishedFileID, params->bVoteUp ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetUserItemVote_params *params ) +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; params->_ret = iface->GetUserItemVote( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemToFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemToFavorites_params *params ) +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; params->_ret = iface->AddItemToFavorites( params->nAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemFromFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemFromFavorites_params *params ) +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; params->_ret = iface->RemoveItemFromFavorites( params->nAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubscribeItem_params *params ) +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; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_UnsubscribeItem_params *params ) +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; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetNumSubscribedItems_params *params ) +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; params->_ret = iface->GetNumSubscribedItems( ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetSubscribedItems_params *params ) +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; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemState( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemState_params *params ) +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; params->_ret = iface->GetItemState( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo_params *params ) +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; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->punTimeStamp ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo_params *params ) +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; params->_ret = iface->GetItemDownloadInfo( params->nPublishedFileID, params->punBytesDownloaded, params->punBytesTotal ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem_params *params ) +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; params->_ret = iface->DownloadItem( params->nPublishedFileID, params->bHighPriority ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameServer( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameServer_params *params ) +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; params->_ret = iface->BInitWorkshopForGameServer( params->unWorkshopDepotID, params->pszFolder ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SuspendDownloads( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SuspendDownloads_params *params ) +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; iface->SuspendDownloads( params->bSuspend ); + return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION008.h b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION008.h deleted file mode 100644 index 49e1888f..00000000 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION008.h +++ /dev/null @@ -1,607 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUserUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unAccountID; - uint32_t eListType; - uint32_t eMatchingUGCType; - uint32_t eSortOrder; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUserUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryAllUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eQueryType; - uint32_t eMatchingeMatchingUGCTypeFileType; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryAllUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUGCDetailsRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t unNumPublishedFileIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUGCDetailsRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUGCDetailsRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SendQueryUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SendQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - w_SteamUGCDetails_t_128x *pDetails; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - char *pchURL; - uint32_t cchURLSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - char *pchMetadata; - uint32_t cchMetadatasize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint64_t *pvecPublishedFileID; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCStatistic_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t eStatType; - uint32_t *pStatValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCStatistic( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCStatistic_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumAdditionalPreviews_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumAdditionalPreviews_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCAdditionalPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t previewIndex; - char *pchURLOrVideoID; - uint32_t cchURLSize; - char *pchOriginalFileName; - uint32_t cchOriginalFileNameSize; - uint32_t *pPreviewType; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCAdditionalPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCAdditionalPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumKeyValueTags_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t keyValueTagIndex; - char *pchKey; - uint32_t cchKeySize; - char *pchValue; - uint32_t cchValueSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_ReleaseQueryUGCRequest_params -{ - void *linux_side; - bool _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_ReleaseQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnKeyValueTags_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnKeyValueTags; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnLongDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnLongDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnLongDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnMetadata; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnChildren_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnChildren; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnChildren_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnAdditionalPreviews_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnAdditionalPreviews; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnAdditionalPreviews_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnTotalOnly_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnTotalOnly; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnTotalOnly_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchLanguage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedResponse_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedResponse_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFilter_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pMatchCloudFileName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFilter_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetMatchAnyTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bMatchAnyTag; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetMatchAnyTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pSearchText; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDays_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unDays; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDays_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pKey; - const char *pValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_RequestUGCDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_RequestUGCDetails_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateItem_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint32_t eFileType; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_StartItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_StartItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchTitle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLanguage_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchLanguage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLanguage_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchMetaData; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t eVisibility; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const w_SteamParamStringArray_t *pTags; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszContentFolder; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszPreviewFile; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueTags_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchKey; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszPreviewFile; - uint32_t type; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszVideoID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - const char *pszPreviewFile; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVideo_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - const char *pszVideoID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVideo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubmitItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; - const char *pchChangeNote; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubmitItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemUpdateProgress_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint64_t *punBytesProcessed; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemUpdateProgress_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetUserItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - bool bVoteUp; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetUserItemVote_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetUserItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetUserItemVote_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemToFavorites_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemToFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemToFavorites_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemFromFavorites_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemFromFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemFromFavorites_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_UnsubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_UnsubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetNumSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetNumSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemState_params -{ - void *linux_side; - uint32_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemState( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemState_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - uint64_t *punSizeOnDisk; - char *pchFolder; - uint32_t cchFolderSize; - uint32_t *punTimeStamp; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - uint64_t *punBytesDownloaded; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - bool bHighPriority; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameServer_params -{ - void *linux_side; - bool _ret; - uint32_t unWorkshopDepotID; - const char *pszFolder; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameServer( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameServer_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SuspendDownloads_params -{ - void *linux_side; - bool bSuspend; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SuspendDownloads( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SuspendDownloads_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION009.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION009.cpp index 1474713c..75724afe 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION009.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION009.cpp @@ -1,408 +1,541 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION009.h" -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUserUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryAllUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUGCDetailsRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUGCDetailsRequest_params *params ) +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; params->_ret = iface->CreateQueryUGCDetailsRequest( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SendQueryUGCRequest_params *params ) +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; params->_ret = iface->SendQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult_params *params ) +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; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL_params *params ) +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; params->_ret = iface->GetQueryUGCPreviewURL( params->handle, params->index, params->pchURL, params->cchURLSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata_params *params ) +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; params->_ret = iface->GetQueryUGCMetadata( params->handle, params->index, params->pchMetadata, params->cchMetadatasize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren_params *params ) +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; params->_ret = iface->GetQueryUGCChildren( params->handle, params->index, params->pvecPublishedFileID, params->cMaxEntries ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCStatistic( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCStatistic_params *params ) +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; params->_ret = iface->GetQueryUGCStatistic( params->handle, params->index, params->eStatType, params->pStatValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumAdditionalPreviews_params *params ) +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; params->_ret = iface->GetQueryUGCNumAdditionalPreviews( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCAdditionalPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCAdditionalPreview_params *params ) +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; params->_ret = iface->GetQueryUGCAdditionalPreview( params->handle, params->index, params->previewIndex, params->pchURLOrVideoID, params->cchURLSize, params->pchOriginalFileName, params->cchOriginalFileNameSize, params->pPreviewType ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumKeyValueTags_params *params ) +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; params->_ret = iface->GetQueryUGCNumKeyValueTags( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTag_params *params ) +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; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->keyValueTagIndex, params->pchKey, params->cchKeySize, params->pchValue, params->cchValueSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_ReleaseQueryUGCRequest_params *params ) +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; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag_params *params ) +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; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag_params *params ) +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; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnOnlyIDs( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnOnlyIDs_params *params ) +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; params->_ret = iface->SetReturnOnlyIDs( params->handle, params->bReturnOnlyIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnKeyValueTags_params *params ) +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; params->_ret = iface->SetReturnKeyValueTags( params->handle, params->bReturnKeyValueTags ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnLongDescription_params *params ) +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; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnMetadata_params *params ) +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; params->_ret = iface->SetReturnMetadata( params->handle, params->bReturnMetadata ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnChildren_params *params ) +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; params->_ret = iface->SetReturnChildren( params->handle, params->bReturnChildren ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnAdditionalPreviews_params *params ) +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; params->_ret = iface->SetReturnAdditionalPreviews( params->handle, params->bReturnAdditionalPreviews ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnTotalOnly_params *params ) +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; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage_params *params ) +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; params->_ret = iface->SetLanguage( params->handle, params->pchLanguage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedResponse_params *params ) +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; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFilter_params *params ) +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; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetMatchAnyTag_params *params ) +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; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText_params *params ) +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; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDays_params *params ) +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; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredKeyValueTag_params *params ) +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; params->_ret = iface->AddRequiredKeyValueTag( params->handle, params->pKey, params->pValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_RequestUGCDetails_params *params ) +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; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateItem_params *params ) +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; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartItemUpdate_params *params ) +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; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle_params *params ) +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; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription_params *params ) +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; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLanguage_params *params ) +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; params->_ret = iface->SetItemUpdateLanguage( params->handle, params->pchLanguage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata_params *params ) +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; params->_ret = iface->SetItemMetadata( params->handle, params->pchMetaData ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility_params *params ) +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; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags_params *params ) +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; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent_params *params ) +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; params->_ret = iface->SetItemContent( params->handle, params->pszContentFolder ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview_params *params ) +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; params->_ret = iface->SetItemPreview( params->handle, params->pszPreviewFile ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueTags_params *params ) +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; params->_ret = iface->RemoveItemKeyValueTags( params->handle, params->pchKey ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag_params *params ) +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; params->_ret = iface->AddItemKeyValueTag( params->handle, params->pchKey, params->pchValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile_params *params ) +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; params->_ret = iface->AddItemPreviewFile( params->handle, params->pszPreviewFile, params->type ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo_params *params ) +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; params->_ret = iface->AddItemPreviewVideo( params->handle, params->pszVideoID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile_params *params ) +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; params->_ret = iface->UpdateItemPreviewFile( params->handle, params->index, params->pszPreviewFile ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVideo_params *params ) +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; params->_ret = iface->UpdateItemPreviewVideo( params->handle, params->index, params->pszVideoID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemPreview_params *params ) +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; params->_ret = iface->RemoveItemPreview( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubmitItemUpdate_params *params ) +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; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemUpdateProgress_params *params ) +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; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetUserItemVote_params *params ) +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; params->_ret = iface->SetUserItemVote( params->nPublishedFileID, params->bVoteUp ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetUserItemVote_params *params ) +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; params->_ret = iface->GetUserItemVote( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemToFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemToFavorites_params *params ) +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; params->_ret = iface->AddItemToFavorites( params->nAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemFromFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemFromFavorites_params *params ) +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; params->_ret = iface->RemoveItemFromFavorites( params->nAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubscribeItem_params *params ) +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; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_UnsubscribeItem_params *params ) +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; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetNumSubscribedItems_params *params ) +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; params->_ret = iface->GetNumSubscribedItems( ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetSubscribedItems_params *params ) +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; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemState( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemState_params *params ) +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; params->_ret = iface->GetItemState( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo_params *params ) +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; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->punTimeStamp ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo_params *params ) +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; params->_ret = iface->GetItemDownloadInfo( params->nPublishedFileID, params->punBytesDownloaded, params->punBytesTotal ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_DownloadItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_DownloadItem_params *params ) +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; params->_ret = iface->DownloadItem( params->nPublishedFileID, params->bHighPriority ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameServer( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameServer_params *params ) +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; params->_ret = iface->BInitWorkshopForGameServer( params->unWorkshopDepotID, params->pszFolder ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SuspendDownloads( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SuspendDownloads_params *params ) +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; iface->SuspendDownloads( params->bSuspend ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartPlaytimeTracking_params *params ) +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; params->_ret = iface->StartPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTracking_params *params ) +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; params->_ret = iface->StopPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTrackingForAllItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTrackingForAllItems_params *params ) +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; params->_ret = iface->StopPlaytimeTrackingForAllItems( ); + return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION009.h b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION009.h deleted file mode 100644 index ce2b722f..00000000 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION009.h +++ /dev/null @@ -1,641 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUserUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unAccountID; - uint32_t eListType; - uint32_t eMatchingUGCType; - uint32_t eSortOrder; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUserUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryAllUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eQueryType; - uint32_t eMatchingeMatchingUGCTypeFileType; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryAllUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUGCDetailsRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t unNumPublishedFileIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUGCDetailsRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUGCDetailsRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SendQueryUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SendQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - w_SteamUGCDetails_t_128x *pDetails; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - char *pchURL; - uint32_t cchURLSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - char *pchMetadata; - uint32_t cchMetadatasize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint64_t *pvecPublishedFileID; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCStatistic_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t eStatType; - uint64_t *pStatValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCStatistic( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCStatistic_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumAdditionalPreviews_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumAdditionalPreviews_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCAdditionalPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t previewIndex; - char *pchURLOrVideoID; - uint32_t cchURLSize; - char *pchOriginalFileName; - uint32_t cchOriginalFileNameSize; - uint32_t *pPreviewType; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCAdditionalPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCAdditionalPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumKeyValueTags_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t keyValueTagIndex; - char *pchKey; - uint32_t cchKeySize; - char *pchValue; - uint32_t cchValueSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_ReleaseQueryUGCRequest_params -{ - void *linux_side; - bool _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_ReleaseQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnOnlyIDs_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnOnlyIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnOnlyIDs( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnOnlyIDs_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnKeyValueTags_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnKeyValueTags; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnLongDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnLongDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnLongDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnMetadata; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnChildren_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnChildren; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnChildren_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnAdditionalPreviews_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnAdditionalPreviews; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnAdditionalPreviews_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnTotalOnly_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnTotalOnly; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnTotalOnly_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchLanguage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedResponse_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedResponse_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFilter_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pMatchCloudFileName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFilter_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetMatchAnyTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bMatchAnyTag; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetMatchAnyTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pSearchText; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDays_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unDays; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDays_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pKey; - const char *pValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_RequestUGCDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_RequestUGCDetails_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateItem_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint32_t eFileType; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchTitle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLanguage_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchLanguage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLanguage_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchMetaData; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t eVisibility; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const w_SteamParamStringArray_t *pTags; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszContentFolder; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszPreviewFile; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueTags_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchKey; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszPreviewFile; - uint32_t type; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszVideoID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - const char *pszPreviewFile; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVideo_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - const char *pszVideoID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVideo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubmitItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; - const char *pchChangeNote; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubmitItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemUpdateProgress_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint64_t *punBytesProcessed; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemUpdateProgress_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetUserItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - bool bVoteUp; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetUserItemVote_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetUserItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetUserItemVote_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemToFavorites_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemToFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemToFavorites_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemFromFavorites_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemFromFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemFromFavorites_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_UnsubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_UnsubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetNumSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetNumSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemState_params -{ - void *linux_side; - uint32_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemState( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemState_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - uint64_t *punSizeOnDisk; - char *pchFolder; - uint32_t cchFolderSize; - uint32_t *punTimeStamp; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - uint64_t *punBytesDownloaded; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_DownloadItem_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - bool bHighPriority; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_DownloadItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_DownloadItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameServer_params -{ - void *linux_side; - bool _ret; - uint32_t unWorkshopDepotID; - const char *pszFolder; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameServer( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameServer_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SuspendDownloads_params -{ - void *linux_side; - bool bSuspend; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SuspendDownloads( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SuspendDownloads_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartPlaytimeTracking_params -{ - void *linux_side; - uint64_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t unNumPublishedFileIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartPlaytimeTracking_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTracking_params -{ - void *linux_side; - uint64_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t unNumPublishedFileIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTracking_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTrackingForAllItems_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTrackingForAllItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTrackingForAllItems_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION010.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION010.cpp index 354f2199..6de5cd2f 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION010.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION010.cpp @@ -1,450 +1,597 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION010.h" -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUserUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryAllUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUGCDetailsRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUGCDetailsRequest_params *params ) +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; params->_ret = iface->CreateQueryUGCDetailsRequest( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SendQueryUGCRequest_params *params ) +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; params->_ret = iface->SendQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult_params *params ) +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; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL_params *params ) +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; params->_ret = iface->GetQueryUGCPreviewURL( params->handle, params->index, params->pchURL, params->cchURLSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata_params *params ) +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; params->_ret = iface->GetQueryUGCMetadata( params->handle, params->index, params->pchMetadata, params->cchMetadatasize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren_params *params ) +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; params->_ret = iface->GetQueryUGCChildren( params->handle, params->index, params->pvecPublishedFileID, params->cMaxEntries ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCStatistic( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCStatistic_params *params ) +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; params->_ret = iface->GetQueryUGCStatistic( params->handle, params->index, params->eStatType, params->pStatValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumAdditionalPreviews_params *params ) +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; params->_ret = iface->GetQueryUGCNumAdditionalPreviews( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCAdditionalPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCAdditionalPreview_params *params ) +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; params->_ret = iface->GetQueryUGCAdditionalPreview( params->handle, params->index, params->previewIndex, params->pchURLOrVideoID, params->cchURLSize, params->pchOriginalFileName, params->cchOriginalFileNameSize, params->pPreviewType ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumKeyValueTags_params *params ) +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; params->_ret = iface->GetQueryUGCNumKeyValueTags( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTag_params *params ) +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; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->keyValueTagIndex, params->pchKey, params->cchKeySize, params->pchValue, params->cchValueSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_ReleaseQueryUGCRequest_params *params ) +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; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag_params *params ) +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; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag_params *params ) +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; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnOnlyIDs( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnOnlyIDs_params *params ) +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; params->_ret = iface->SetReturnOnlyIDs( params->handle, params->bReturnOnlyIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnKeyValueTags_params *params ) +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; params->_ret = iface->SetReturnKeyValueTags( params->handle, params->bReturnKeyValueTags ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnLongDescription_params *params ) +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; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnMetadata_params *params ) +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; params->_ret = iface->SetReturnMetadata( params->handle, params->bReturnMetadata ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnChildren_params *params ) +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; params->_ret = iface->SetReturnChildren( params->handle, params->bReturnChildren ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnAdditionalPreviews_params *params ) +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; params->_ret = iface->SetReturnAdditionalPreviews( params->handle, params->bReturnAdditionalPreviews ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnTotalOnly_params *params ) +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; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeStats( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeStats_params *params ) +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; params->_ret = iface->SetReturnPlaytimeStats( params->handle, params->unDays ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage_params *params ) +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; params->_ret = iface->SetLanguage( params->handle, params->pchLanguage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedResponse_params *params ) +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; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFilter_params *params ) +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; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetMatchAnyTag_params *params ) +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; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText_params *params ) +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; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDays_params *params ) +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; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredKeyValueTag_params *params ) +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; params->_ret = iface->AddRequiredKeyValueTag( params->handle, params->pKey, params->pValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RequestUGCDetails_params *params ) +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; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateItem_params *params ) +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; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartItemUpdate_params *params ) +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; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle_params *params ) +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; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription_params *params ) +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; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLanguage_params *params ) +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; params->_ret = iface->SetItemUpdateLanguage( params->handle, params->pchLanguage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata_params *params ) +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; params->_ret = iface->SetItemMetadata( params->handle, params->pchMetaData ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility_params *params ) +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; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags_params *params ) +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; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent_params *params ) +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; params->_ret = iface->SetItemContent( params->handle, params->pszContentFolder ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview_params *params ) +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; params->_ret = iface->SetItemPreview( params->handle, params->pszPreviewFile ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueTags_params *params ) +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; params->_ret = iface->RemoveItemKeyValueTags( params->handle, params->pchKey ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag_params *params ) +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; params->_ret = iface->AddItemKeyValueTag( params->handle, params->pchKey, params->pchValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile_params *params ) +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; params->_ret = iface->AddItemPreviewFile( params->handle, params->pszPreviewFile, params->type ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo_params *params ) +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; params->_ret = iface->AddItemPreviewVideo( params->handle, params->pszVideoID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile_params *params ) +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; params->_ret = iface->UpdateItemPreviewFile( params->handle, params->index, params->pszPreviewFile ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVideo_params *params ) +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; params->_ret = iface->UpdateItemPreviewVideo( params->handle, params->index, params->pszVideoID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemPreview_params *params ) +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; params->_ret = iface->RemoveItemPreview( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubmitItemUpdate_params *params ) +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; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemUpdateProgress_params *params ) +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; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetUserItemVote_params *params ) +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; params->_ret = iface->SetUserItemVote( params->nPublishedFileID, params->bVoteUp ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetUserItemVote_params *params ) +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; params->_ret = iface->GetUserItemVote( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemToFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemToFavorites_params *params ) +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; params->_ret = iface->AddItemToFavorites( params->nAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemFromFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemFromFavorites_params *params ) +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; params->_ret = iface->RemoveItemFromFavorites( params->nAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubscribeItem_params *params ) +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; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_UnsubscribeItem_params *params ) +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; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetNumSubscribedItems_params *params ) +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; params->_ret = iface->GetNumSubscribedItems( ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetSubscribedItems_params *params ) +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; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemState( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemState_params *params ) +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; params->_ret = iface->GetItemState( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo_params *params ) +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; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->punTimeStamp ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo_params *params ) +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; params->_ret = iface->GetItemDownloadInfo( params->nPublishedFileID, params->punBytesDownloaded, params->punBytesTotal ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_DownloadItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_DownloadItem_params *params ) +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; params->_ret = iface->DownloadItem( params->nPublishedFileID, params->bHighPriority ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameServer( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameServer_params *params ) +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; params->_ret = iface->BInitWorkshopForGameServer( params->unWorkshopDepotID, params->pszFolder ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SuspendDownloads( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SuspendDownloads_params *params ) +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; iface->SuspendDownloads( params->bSuspend ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartPlaytimeTracking_params *params ) +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; params->_ret = iface->StartPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTracking_params *params ) +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; params->_ret = iface->StopPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTrackingForAllItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTrackingForAllItems_params *params ) +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; params->_ret = iface->StopPlaytimeTrackingForAllItems( ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddDependency_params *params ) +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; params->_ret = iface->AddDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveDependency_params *params ) +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; params->_ret = iface->RemoveDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddAppDependency_params *params ) +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; params->_ret = iface->AddAppDependency( params->nPublishedFileID, params->nAppID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveAppDependency_params *params ) +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; params->_ret = iface->RemoveAppDependency( params->nPublishedFileID, params->nAppID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetAppDependencies( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetAppDependencies_params *params ) +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; params->_ret = iface->GetAppDependencies( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_DeleteItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_DeleteItem_params *params ) +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; params->_ret = iface->DeleteItem( params->nPublishedFileID ); + return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION010.h b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION010.h deleted file mode 100644 index a8e889f5..00000000 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION010.h +++ /dev/null @@ -1,702 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUserUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unAccountID; - uint32_t eListType; - uint32_t eMatchingUGCType; - uint32_t eSortOrder; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUserUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryAllUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eQueryType; - uint32_t eMatchingeMatchingUGCTypeFileType; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryAllUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUGCDetailsRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t unNumPublishedFileIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUGCDetailsRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUGCDetailsRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SendQueryUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SendQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - w_SteamUGCDetails_t_128x *pDetails; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - char *pchURL; - uint32_t cchURLSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - char *pchMetadata; - uint32_t cchMetadatasize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint64_t *pvecPublishedFileID; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCStatistic_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t eStatType; - uint64_t *pStatValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCStatistic( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCStatistic_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumAdditionalPreviews_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumAdditionalPreviews_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCAdditionalPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t previewIndex; - char *pchURLOrVideoID; - uint32_t cchURLSize; - char *pchOriginalFileName; - uint32_t cchOriginalFileNameSize; - uint32_t *pPreviewType; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCAdditionalPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCAdditionalPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumKeyValueTags_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t keyValueTagIndex; - char *pchKey; - uint32_t cchKeySize; - char *pchValue; - uint32_t cchValueSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_ReleaseQueryUGCRequest_params -{ - void *linux_side; - bool _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_ReleaseQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnOnlyIDs_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnOnlyIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnOnlyIDs( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnOnlyIDs_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnKeyValueTags_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnKeyValueTags; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnLongDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnLongDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnLongDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnMetadata; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnChildren_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnChildren; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnChildren_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnAdditionalPreviews_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnAdditionalPreviews; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnAdditionalPreviews_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnTotalOnly_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnTotalOnly; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnTotalOnly_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeStats_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unDays; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeStats( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeStats_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchLanguage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedResponse_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedResponse_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFilter_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pMatchCloudFileName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFilter_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetMatchAnyTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bMatchAnyTag; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetMatchAnyTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pSearchText; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDays_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unDays; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDays_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pKey; - const char *pValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RequestUGCDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RequestUGCDetails_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateItem_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint32_t eFileType; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchTitle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLanguage_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchLanguage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLanguage_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchMetaData; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t eVisibility; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const w_SteamParamStringArray_t *pTags; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszContentFolder; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszPreviewFile; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueTags_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchKey; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszPreviewFile; - uint32_t type; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszVideoID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - const char *pszPreviewFile; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVideo_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - const char *pszVideoID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVideo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubmitItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; - const char *pchChangeNote; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubmitItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemUpdateProgress_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint64_t *punBytesProcessed; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemUpdateProgress_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetUserItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - bool bVoteUp; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetUserItemVote_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetUserItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetUserItemVote_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemToFavorites_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemToFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemToFavorites_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemFromFavorites_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemFromFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemFromFavorites_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_UnsubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_UnsubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetNumSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetNumSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemState_params -{ - void *linux_side; - uint32_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemState( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemState_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - uint64_t *punSizeOnDisk; - char *pchFolder; - uint32_t cchFolderSize; - uint32_t *punTimeStamp; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - uint64_t *punBytesDownloaded; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_DownloadItem_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - bool bHighPriority; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_DownloadItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_DownloadItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameServer_params -{ - void *linux_side; - bool _ret; - uint32_t unWorkshopDepotID; - const char *pszFolder; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameServer( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameServer_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SuspendDownloads_params -{ - void *linux_side; - bool bSuspend; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SuspendDownloads( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SuspendDownloads_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartPlaytimeTracking_params -{ - void *linux_side; - uint64_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t unNumPublishedFileIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartPlaytimeTracking_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTracking_params -{ - void *linux_side; - uint64_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t unNumPublishedFileIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTracking_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTrackingForAllItems_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTrackingForAllItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTrackingForAllItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nParentPublishedFileID; - uint64_t nChildPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nParentPublishedFileID; - uint64_t nChildPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddAppDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t nAppID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddAppDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveAppDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t nAppID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveAppDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetAppDependencies_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetAppDependencies( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetAppDependencies_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_DeleteItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_DeleteItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_DeleteItem_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION012.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION012.cpp index 95ba4ff1..8f8c77c4 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION012.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION012.cpp @@ -1,462 +1,613 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION012.h" -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUserUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_2( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_2_params *params ) +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; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->pchCursor ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUGCDetailsRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUGCDetailsRequest_params *params ) +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; params->_ret = iface->CreateQueryUGCDetailsRequest( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SendQueryUGCRequest_params *params ) +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; params->_ret = iface->SendQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult_params *params ) +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; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL_params *params ) +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; params->_ret = iface->GetQueryUGCPreviewURL( params->handle, params->index, params->pchURL, params->cchURLSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata_params *params ) +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; params->_ret = iface->GetQueryUGCMetadata( params->handle, params->index, params->pchMetadata, params->cchMetadatasize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren_params *params ) +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; params->_ret = iface->GetQueryUGCChildren( params->handle, params->index, params->pvecPublishedFileID, params->cMaxEntries ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCStatistic( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCStatistic_params *params ) +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; params->_ret = iface->GetQueryUGCStatistic( params->handle, params->index, params->eStatType, params->pStatValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumAdditionalPreviews_params *params ) +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; params->_ret = iface->GetQueryUGCNumAdditionalPreviews( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCAdditionalPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCAdditionalPreview_params *params ) +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; params->_ret = iface->GetQueryUGCAdditionalPreview( params->handle, params->index, params->previewIndex, params->pchURLOrVideoID, params->cchURLSize, params->pchOriginalFileName, params->cchOriginalFileNameSize, params->pPreviewType ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumKeyValueTags_params *params ) +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; params->_ret = iface->GetQueryUGCNumKeyValueTags( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTag_params *params ) +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; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->keyValueTagIndex, params->pchKey, params->cchKeySize, params->pchValue, params->cchValueSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_ReleaseQueryUGCRequest_params *params ) +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; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag_params *params ) +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; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag_params *params ) +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; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnOnlyIDs( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnOnlyIDs_params *params ) +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; params->_ret = iface->SetReturnOnlyIDs( params->handle, params->bReturnOnlyIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnKeyValueTags_params *params ) +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; params->_ret = iface->SetReturnKeyValueTags( params->handle, params->bReturnKeyValueTags ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnLongDescription_params *params ) +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; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnMetadata_params *params ) +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; params->_ret = iface->SetReturnMetadata( params->handle, params->bReturnMetadata ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnChildren_params *params ) +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; params->_ret = iface->SetReturnChildren( params->handle, params->bReturnChildren ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnAdditionalPreviews_params *params ) +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; params->_ret = iface->SetReturnAdditionalPreviews( params->handle, params->bReturnAdditionalPreviews ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnTotalOnly_params *params ) +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; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeStats( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeStats_params *params ) +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; params->_ret = iface->SetReturnPlaytimeStats( params->handle, params->unDays ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage_params *params ) +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; params->_ret = iface->SetLanguage( params->handle, params->pchLanguage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedResponse_params *params ) +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; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFilter_params *params ) +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; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetMatchAnyTag_params *params ) +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; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText_params *params ) +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; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDays_params *params ) +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; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredKeyValueTag_params *params ) +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; params->_ret = iface->AddRequiredKeyValueTag( params->handle, params->pKey, params->pValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RequestUGCDetails_params *params ) +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; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateItem_params *params ) +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; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartItemUpdate_params *params ) +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; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle_params *params ) +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; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription_params *params ) +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; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLanguage_params *params ) +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; params->_ret = iface->SetItemUpdateLanguage( params->handle, params->pchLanguage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata_params *params ) +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; params->_ret = iface->SetItemMetadata( params->handle, params->pchMetaData ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility_params *params ) +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; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags_params *params ) +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; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent_params *params ) +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; params->_ret = iface->SetItemContent( params->handle, params->pszContentFolder ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview_params *params ) +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; params->_ret = iface->SetItemPreview( params->handle, params->pszPreviewFile ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowLegacyUpload( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowLegacyUpload_params *params ) +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; params->_ret = iface->SetAllowLegacyUpload( params->handle, params->bAllowLegacyUpload ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueTags_params *params ) +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; params->_ret = iface->RemoveItemKeyValueTags( params->handle, params->pchKey ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag_params *params ) +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; params->_ret = iface->AddItemKeyValueTag( params->handle, params->pchKey, params->pchValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile_params *params ) +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; params->_ret = iface->AddItemPreviewFile( params->handle, params->pszPreviewFile, params->type ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo_params *params ) +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; params->_ret = iface->AddItemPreviewVideo( params->handle, params->pszVideoID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile_params *params ) +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; params->_ret = iface->UpdateItemPreviewFile( params->handle, params->index, params->pszPreviewFile ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVideo_params *params ) +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; params->_ret = iface->UpdateItemPreviewVideo( params->handle, params->index, params->pszVideoID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemPreview_params *params ) +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; params->_ret = iface->RemoveItemPreview( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubmitItemUpdate_params *params ) +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; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemUpdateProgress_params *params ) +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; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetUserItemVote_params *params ) +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; params->_ret = iface->SetUserItemVote( params->nPublishedFileID, params->bVoteUp ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetUserItemVote_params *params ) +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; params->_ret = iface->GetUserItemVote( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemToFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemToFavorites_params *params ) +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; params->_ret = iface->AddItemToFavorites( params->nAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemFromFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemFromFavorites_params *params ) +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; params->_ret = iface->RemoveItemFromFavorites( params->nAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubscribeItem_params *params ) +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; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_UnsubscribeItem_params *params ) +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; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetNumSubscribedItems_params *params ) +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; params->_ret = iface->GetNumSubscribedItems( ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetSubscribedItems_params *params ) +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; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemState( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemState_params *params ) +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; params->_ret = iface->GetItemState( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo_params *params ) +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; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->punTimeStamp ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo_params *params ) +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; params->_ret = iface->GetItemDownloadInfo( params->nPublishedFileID, params->punBytesDownloaded, params->punBytesTotal ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_DownloadItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_DownloadItem_params *params ) +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; params->_ret = iface->DownloadItem( params->nPublishedFileID, params->bHighPriority ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameServer( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameServer_params *params ) +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; params->_ret = iface->BInitWorkshopForGameServer( params->unWorkshopDepotID, params->pszFolder ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SuspendDownloads( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SuspendDownloads_params *params ) +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; iface->SuspendDownloads( params->bSuspend ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartPlaytimeTracking_params *params ) +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; params->_ret = iface->StartPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTracking_params *params ) +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; params->_ret = iface->StopPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTrackingForAllItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTrackingForAllItems_params *params ) +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; params->_ret = iface->StopPlaytimeTrackingForAllItems( ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddDependency_params *params ) +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; params->_ret = iface->AddDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveDependency_params *params ) +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; params->_ret = iface->RemoveDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddAppDependency_params *params ) +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; params->_ret = iface->AddAppDependency( params->nPublishedFileID, params->nAppID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveAppDependency_params *params ) +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; params->_ret = iface->RemoveAppDependency( params->nPublishedFileID, params->nAppID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetAppDependencies( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetAppDependencies_params *params ) +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; params->_ret = iface->GetAppDependencies( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_DeleteItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_DeleteItem_params *params ) +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; params->_ret = iface->DeleteItem( params->nPublishedFileID ); + return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION012.h b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION012.h deleted file mode 100644 index 9e79eccc..00000000 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION012.h +++ /dev/null @@ -1,723 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUserUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unAccountID; - uint32_t eListType; - uint32_t eMatchingUGCType; - uint32_t eSortOrder; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUserUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eQueryType; - uint32_t eMatchingeMatchingUGCTypeFileType; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_2_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eQueryType; - uint32_t eMatchingeMatchingUGCTypeFileType; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - const char *pchCursor; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_2( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_2_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUGCDetailsRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t unNumPublishedFileIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUGCDetailsRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUGCDetailsRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SendQueryUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SendQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - w_SteamUGCDetails_t_128x *pDetails; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - char *pchURL; - uint32_t cchURLSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - char *pchMetadata; - uint32_t cchMetadatasize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint64_t *pvecPublishedFileID; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCStatistic_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t eStatType; - uint64_t *pStatValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCStatistic( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCStatistic_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumAdditionalPreviews_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumAdditionalPreviews_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCAdditionalPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t previewIndex; - char *pchURLOrVideoID; - uint32_t cchURLSize; - char *pchOriginalFileName; - uint32_t cchOriginalFileNameSize; - uint32_t *pPreviewType; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCAdditionalPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCAdditionalPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumKeyValueTags_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t keyValueTagIndex; - char *pchKey; - uint32_t cchKeySize; - char *pchValue; - uint32_t cchValueSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_ReleaseQueryUGCRequest_params -{ - void *linux_side; - bool _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_ReleaseQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnOnlyIDs_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnOnlyIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnOnlyIDs( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnOnlyIDs_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnKeyValueTags_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnKeyValueTags; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnLongDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnLongDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnLongDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnMetadata; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnChildren_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnChildren; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnChildren_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnAdditionalPreviews_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnAdditionalPreviews; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnAdditionalPreviews_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnTotalOnly_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnTotalOnly; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnTotalOnly_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeStats_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unDays; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeStats( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeStats_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchLanguage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedResponse_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedResponse_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFilter_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pMatchCloudFileName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFilter_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetMatchAnyTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bMatchAnyTag; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetMatchAnyTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pSearchText; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDays_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unDays; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDays_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pKey; - const char *pValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RequestUGCDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RequestUGCDetails_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateItem_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint32_t eFileType; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchTitle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLanguage_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchLanguage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLanguage_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchMetaData; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t eVisibility; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const w_SteamParamStringArray_t *pTags; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszContentFolder; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszPreviewFile; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowLegacyUpload_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bAllowLegacyUpload; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowLegacyUpload( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowLegacyUpload_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueTags_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchKey; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszPreviewFile; - uint32_t type; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszVideoID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - const char *pszPreviewFile; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVideo_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - const char *pszVideoID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVideo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubmitItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; - const char *pchChangeNote; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubmitItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemUpdateProgress_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint64_t *punBytesProcessed; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemUpdateProgress_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetUserItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - bool bVoteUp; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetUserItemVote_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetUserItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetUserItemVote_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemToFavorites_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemToFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemToFavorites_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemFromFavorites_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemFromFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemFromFavorites_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_UnsubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_UnsubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetNumSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetNumSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemState_params -{ - void *linux_side; - uint32_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemState( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemState_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - uint64_t *punSizeOnDisk; - char *pchFolder; - uint32_t cchFolderSize; - uint32_t *punTimeStamp; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - uint64_t *punBytesDownloaded; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_DownloadItem_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - bool bHighPriority; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_DownloadItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_DownloadItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameServer_params -{ - void *linux_side; - bool _ret; - uint32_t unWorkshopDepotID; - const char *pszFolder; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameServer( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameServer_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SuspendDownloads_params -{ - void *linux_side; - bool bSuspend; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SuspendDownloads( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SuspendDownloads_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartPlaytimeTracking_params -{ - void *linux_side; - uint64_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t unNumPublishedFileIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartPlaytimeTracking_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTracking_params -{ - void *linux_side; - uint64_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t unNumPublishedFileIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTracking_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTrackingForAllItems_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTrackingForAllItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTrackingForAllItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nParentPublishedFileID; - uint64_t nChildPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nParentPublishedFileID; - uint64_t nChildPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddAppDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t nAppID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddAppDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveAppDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t nAppID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveAppDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetAppDependencies_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetAppDependencies( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetAppDependencies_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_DeleteItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_DeleteItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_DeleteItem_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION013.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION013.cpp index bbfea5d7..ba3db742 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION013.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION013.cpp @@ -1,474 +1,629 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION013.h" -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUserUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_2( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_2_params *params ) +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; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->pchCursor ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUGCDetailsRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUGCDetailsRequest_params *params ) +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; params->_ret = iface->CreateQueryUGCDetailsRequest( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SendQueryUGCRequest_params *params ) +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; params->_ret = iface->SendQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult_params *params ) +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; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL_params *params ) +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; params->_ret = iface->GetQueryUGCPreviewURL( params->handle, params->index, params->pchURL, params->cchURLSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata_params *params ) +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; params->_ret = iface->GetQueryUGCMetadata( params->handle, params->index, params->pchMetadata, params->cchMetadatasize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren_params *params ) +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; params->_ret = iface->GetQueryUGCChildren( params->handle, params->index, params->pvecPublishedFileID, params->cMaxEntries ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCStatistic( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCStatistic_params *params ) +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; params->_ret = iface->GetQueryUGCStatistic( params->handle, params->index, params->eStatType, params->pStatValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumAdditionalPreviews_params *params ) +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; params->_ret = iface->GetQueryUGCNumAdditionalPreviews( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCAdditionalPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCAdditionalPreview_params *params ) +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; params->_ret = iface->GetQueryUGCAdditionalPreview( params->handle, params->index, params->previewIndex, params->pchURLOrVideoID, params->cchURLSize, params->pchOriginalFileName, params->cchOriginalFileNameSize, params->pPreviewType ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumKeyValueTags_params *params ) +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; params->_ret = iface->GetQueryUGCNumKeyValueTags( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_params *params ) +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; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->keyValueTagIndex, params->pchKey, params->cchKeySize, params->pchValue, params->cchValueSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_2( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_2_params *params ) +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; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->pchKey, params->pchValue, params->cchValueSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_ReleaseQueryUGCRequest_params *params ) +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; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag_params *params ) +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; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag_params *params ) +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; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnOnlyIDs( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnOnlyIDs_params *params ) +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; params->_ret = iface->SetReturnOnlyIDs( params->handle, params->bReturnOnlyIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnKeyValueTags_params *params ) +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; params->_ret = iface->SetReturnKeyValueTags( params->handle, params->bReturnKeyValueTags ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnLongDescription_params *params ) +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; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnMetadata_params *params ) +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; params->_ret = iface->SetReturnMetadata( params->handle, params->bReturnMetadata ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnChildren_params *params ) +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; params->_ret = iface->SetReturnChildren( params->handle, params->bReturnChildren ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnAdditionalPreviews_params *params ) +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; params->_ret = iface->SetReturnAdditionalPreviews( params->handle, params->bReturnAdditionalPreviews ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnTotalOnly_params *params ) +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; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeStats( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeStats_params *params ) +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; params->_ret = iface->SetReturnPlaytimeStats( params->handle, params->unDays ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage_params *params ) +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; params->_ret = iface->SetLanguage( params->handle, params->pchLanguage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedResponse_params *params ) +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; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFilter_params *params ) +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; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetMatchAnyTag_params *params ) +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; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText_params *params ) +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; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDays_params *params ) +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; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredKeyValueTag_params *params ) +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; params->_ret = iface->AddRequiredKeyValueTag( params->handle, params->pKey, params->pValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RequestUGCDetails_params *params ) +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; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateItem_params *params ) +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; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartItemUpdate_params *params ) +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; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle_params *params ) +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; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription_params *params ) +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; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLanguage_params *params ) +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; params->_ret = iface->SetItemUpdateLanguage( params->handle, params->pchLanguage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata_params *params ) +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; params->_ret = iface->SetItemMetadata( params->handle, params->pchMetaData ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility_params *params ) +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; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags_params *params ) +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; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent_params *params ) +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; params->_ret = iface->SetItemContent( params->handle, params->pszContentFolder ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview_params *params ) +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; params->_ret = iface->SetItemPreview( params->handle, params->pszPreviewFile ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowLegacyUpload( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowLegacyUpload_params *params ) +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; params->_ret = iface->SetAllowLegacyUpload( params->handle, params->bAllowLegacyUpload ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAllItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAllItemKeyValueTags_params *params ) +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; params->_ret = iface->RemoveAllItemKeyValueTags( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueTags_params *params ) +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; params->_ret = iface->RemoveItemKeyValueTags( params->handle, params->pchKey ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag_params *params ) +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; params->_ret = iface->AddItemKeyValueTag( params->handle, params->pchKey, params->pchValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile_params *params ) +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; params->_ret = iface->AddItemPreviewFile( params->handle, params->pszPreviewFile, params->type ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo_params *params ) +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; params->_ret = iface->AddItemPreviewVideo( params->handle, params->pszVideoID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile_params *params ) +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; params->_ret = iface->UpdateItemPreviewFile( params->handle, params->index, params->pszPreviewFile ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVideo_params *params ) +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; params->_ret = iface->UpdateItemPreviewVideo( params->handle, params->index, params->pszVideoID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemPreview_params *params ) +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; params->_ret = iface->RemoveItemPreview( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubmitItemUpdate_params *params ) +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; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemUpdateProgress_params *params ) +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; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetUserItemVote_params *params ) +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; params->_ret = iface->SetUserItemVote( params->nPublishedFileID, params->bVoteUp ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetUserItemVote_params *params ) +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; params->_ret = iface->GetUserItemVote( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemToFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemToFavorites_params *params ) +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; params->_ret = iface->AddItemToFavorites( params->nAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemFromFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemFromFavorites_params *params ) +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; params->_ret = iface->RemoveItemFromFavorites( params->nAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubscribeItem_params *params ) +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; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_UnsubscribeItem_params *params ) +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; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetNumSubscribedItems_params *params ) +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; params->_ret = iface->GetNumSubscribedItems( ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetSubscribedItems_params *params ) +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; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemState( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemState_params *params ) +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; params->_ret = iface->GetItemState( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo_params *params ) +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; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->punTimeStamp ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo_params *params ) +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; params->_ret = iface->GetItemDownloadInfo( params->nPublishedFileID, params->punBytesDownloaded, params->punBytesTotal ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_DownloadItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_DownloadItem_params *params ) +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; params->_ret = iface->DownloadItem( params->nPublishedFileID, params->bHighPriority ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameServer( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameServer_params *params ) +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; params->_ret = iface->BInitWorkshopForGameServer( params->unWorkshopDepotID, params->pszFolder ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SuspendDownloads( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SuspendDownloads_params *params ) +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; iface->SuspendDownloads( params->bSuspend ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartPlaytimeTracking_params *params ) +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; params->_ret = iface->StartPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTracking_params *params ) +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; params->_ret = iface->StopPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTrackingForAllItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTrackingForAllItems_params *params ) +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; params->_ret = iface->StopPlaytimeTrackingForAllItems( ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddDependency_params *params ) +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; params->_ret = iface->AddDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveDependency_params *params ) +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; params->_ret = iface->RemoveDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddAppDependency_params *params ) +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; params->_ret = iface->AddAppDependency( params->nPublishedFileID, params->nAppID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAppDependency_params *params ) +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; params->_ret = iface->RemoveAppDependency( params->nPublishedFileID, params->nAppID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetAppDependencies( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetAppDependencies_params *params ) +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; params->_ret = iface->GetAppDependencies( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_DeleteItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_DeleteItem_params *params ) +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; params->_ret = iface->DeleteItem( params->nPublishedFileID ); + return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION013.h b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION013.h deleted file mode 100644 index ea8c982c..00000000 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION013.h +++ /dev/null @@ -1,743 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUserUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unAccountID; - uint32_t eListType; - uint32_t eMatchingUGCType; - uint32_t eSortOrder; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUserUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eQueryType; - uint32_t eMatchingeMatchingUGCTypeFileType; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_2_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eQueryType; - uint32_t eMatchingeMatchingUGCTypeFileType; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - const char *pchCursor; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_2( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_2_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUGCDetailsRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t unNumPublishedFileIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUGCDetailsRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUGCDetailsRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SendQueryUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SendQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - w_SteamUGCDetails_t_128x *pDetails; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - char *pchURL; - uint32_t cchURLSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - char *pchMetadata; - uint32_t cchMetadatasize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint64_t *pvecPublishedFileID; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCStatistic_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t eStatType; - uint64_t *pStatValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCStatistic( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCStatistic_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumAdditionalPreviews_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumAdditionalPreviews_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCAdditionalPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t previewIndex; - char *pchURLOrVideoID; - uint32_t cchURLSize; - char *pchOriginalFileName; - uint32_t cchOriginalFileNameSize; - uint32_t *pPreviewType; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCAdditionalPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCAdditionalPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumKeyValueTags_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t keyValueTagIndex; - char *pchKey; - uint32_t cchKeySize; - char *pchValue; - uint32_t cchValueSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_2_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - const char *pchKey; - char *pchValue; - uint32_t cchValueSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_2( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_2_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_ReleaseQueryUGCRequest_params -{ - void *linux_side; - bool _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_ReleaseQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnOnlyIDs_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnOnlyIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnOnlyIDs( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnOnlyIDs_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnKeyValueTags_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnKeyValueTags; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnLongDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnLongDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnLongDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnMetadata; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnChildren_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnChildren; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnChildren_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnAdditionalPreviews_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnAdditionalPreviews; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnAdditionalPreviews_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnTotalOnly_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnTotalOnly; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnTotalOnly_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeStats_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unDays; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeStats( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeStats_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchLanguage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedResponse_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedResponse_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFilter_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pMatchCloudFileName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFilter_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetMatchAnyTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bMatchAnyTag; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetMatchAnyTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pSearchText; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDays_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unDays; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDays_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pKey; - const char *pValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RequestUGCDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RequestUGCDetails_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateItem_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint32_t eFileType; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchTitle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLanguage_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchLanguage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLanguage_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchMetaData; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t eVisibility; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const w_SteamParamStringArray_t *pTags; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszContentFolder; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszPreviewFile; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowLegacyUpload_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bAllowLegacyUpload; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowLegacyUpload( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowLegacyUpload_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAllItemKeyValueTags_params -{ - void *linux_side; - bool _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAllItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAllItemKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueTags_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchKey; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszPreviewFile; - uint32_t type; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszVideoID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - const char *pszPreviewFile; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVideo_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - const char *pszVideoID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVideo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubmitItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; - const char *pchChangeNote; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubmitItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemUpdateProgress_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint64_t *punBytesProcessed; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemUpdateProgress_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetUserItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - bool bVoteUp; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetUserItemVote_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetUserItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetUserItemVote_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemToFavorites_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemToFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemToFavorites_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemFromFavorites_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemFromFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemFromFavorites_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_UnsubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_UnsubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetNumSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetNumSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemState_params -{ - void *linux_side; - uint32_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemState( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemState_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - uint64_t *punSizeOnDisk; - char *pchFolder; - uint32_t cchFolderSize; - uint32_t *punTimeStamp; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - uint64_t *punBytesDownloaded; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_DownloadItem_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - bool bHighPriority; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_DownloadItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_DownloadItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameServer_params -{ - void *linux_side; - bool _ret; - uint32_t unWorkshopDepotID; - const char *pszFolder; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameServer( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameServer_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SuspendDownloads_params -{ - void *linux_side; - bool bSuspend; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SuspendDownloads( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SuspendDownloads_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartPlaytimeTracking_params -{ - void *linux_side; - uint64_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t unNumPublishedFileIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartPlaytimeTracking_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTracking_params -{ - void *linux_side; - uint64_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t unNumPublishedFileIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTracking_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTrackingForAllItems_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTrackingForAllItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTrackingForAllItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nParentPublishedFileID; - uint64_t nChildPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nParentPublishedFileID; - uint64_t nChildPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddAppDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t nAppID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddAppDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAppDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t nAppID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAppDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetAppDependencies_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetAppDependencies( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetAppDependencies_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_DeleteItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_DeleteItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_DeleteItem_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION014.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION014.cpp index e7f5111b..50c79dd5 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION014.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION014.cpp @@ -1,480 +1,637 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION014.h" -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUserUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_2( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_2_params *params ) +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; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->pchCursor ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUGCDetailsRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUGCDetailsRequest_params *params ) +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; params->_ret = iface->CreateQueryUGCDetailsRequest( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SendQueryUGCRequest_params *params ) +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; params->_ret = iface->SendQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult_params *params ) +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; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL_params *params ) +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; params->_ret = iface->GetQueryUGCPreviewURL( params->handle, params->index, params->pchURL, params->cchURLSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata_params *params ) +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; params->_ret = iface->GetQueryUGCMetadata( params->handle, params->index, params->pchMetadata, params->cchMetadatasize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren_params *params ) +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; params->_ret = iface->GetQueryUGCChildren( params->handle, params->index, params->pvecPublishedFileID, params->cMaxEntries ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCStatistic( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCStatistic_params *params ) +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; params->_ret = iface->GetQueryUGCStatistic( params->handle, params->index, params->eStatType, params->pStatValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumAdditionalPreviews_params *params ) +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; params->_ret = iface->GetQueryUGCNumAdditionalPreviews( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCAdditionalPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCAdditionalPreview_params *params ) +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; params->_ret = iface->GetQueryUGCAdditionalPreview( params->handle, params->index, params->previewIndex, params->pchURLOrVideoID, params->cchURLSize, params->pchOriginalFileName, params->cchOriginalFileNameSize, params->pPreviewType ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumKeyValueTags_params *params ) +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; params->_ret = iface->GetQueryUGCNumKeyValueTags( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_params *params ) +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; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->keyValueTagIndex, params->pchKey, params->cchKeySize, params->pchValue, params->cchValueSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_2( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_2_params *params ) +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; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->pchKey, params->pchValue, params->cchValueSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_ReleaseQueryUGCRequest_params *params ) +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; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag_params *params ) +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; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup_params *params ) +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; params->_ret = iface->AddRequiredTagGroup( params->handle, params->pTagGroups ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag_params *params ) +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; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnOnlyIDs( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnOnlyIDs_params *params ) +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; params->_ret = iface->SetReturnOnlyIDs( params->handle, params->bReturnOnlyIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnKeyValueTags_params *params ) +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; params->_ret = iface->SetReturnKeyValueTags( params->handle, params->bReturnKeyValueTags ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnLongDescription_params *params ) +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; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnMetadata_params *params ) +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; params->_ret = iface->SetReturnMetadata( params->handle, params->bReturnMetadata ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnChildren_params *params ) +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; params->_ret = iface->SetReturnChildren( params->handle, params->bReturnChildren ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnAdditionalPreviews_params *params ) +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; params->_ret = iface->SetReturnAdditionalPreviews( params->handle, params->bReturnAdditionalPreviews ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnTotalOnly_params *params ) +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; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeStats( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeStats_params *params ) +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; params->_ret = iface->SetReturnPlaytimeStats( params->handle, params->unDays ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage_params *params ) +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; params->_ret = iface->SetLanguage( params->handle, params->pchLanguage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedResponse_params *params ) +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; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFilter_params *params ) +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; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetMatchAnyTag_params *params ) +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; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText_params *params ) +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; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDays_params *params ) +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; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredKeyValueTag_params *params ) +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; params->_ret = iface->AddRequiredKeyValueTag( params->handle, params->pKey, params->pValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RequestUGCDetails_params *params ) +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; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateItem_params *params ) +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; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartItemUpdate_params *params ) +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; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle_params *params ) +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; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription_params *params ) +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; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLanguage_params *params ) +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; params->_ret = iface->SetItemUpdateLanguage( params->handle, params->pchLanguage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata_params *params ) +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; params->_ret = iface->SetItemMetadata( params->handle, params->pchMetaData ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility_params *params ) +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; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags_params *params ) +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; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent_params *params ) +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; params->_ret = iface->SetItemContent( params->handle, params->pszContentFolder ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview_params *params ) +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; params->_ret = iface->SetItemPreview( params->handle, params->pszPreviewFile ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowLegacyUpload( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowLegacyUpload_params *params ) +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; params->_ret = iface->SetAllowLegacyUpload( params->handle, params->bAllowLegacyUpload ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAllItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAllItemKeyValueTags_params *params ) +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; params->_ret = iface->RemoveAllItemKeyValueTags( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueTags_params *params ) +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; params->_ret = iface->RemoveItemKeyValueTags( params->handle, params->pchKey ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag_params *params ) +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; params->_ret = iface->AddItemKeyValueTag( params->handle, params->pchKey, params->pchValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile_params *params ) +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; params->_ret = iface->AddItemPreviewFile( params->handle, params->pszPreviewFile, params->type ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo_params *params ) +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; params->_ret = iface->AddItemPreviewVideo( params->handle, params->pszVideoID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile_params *params ) +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; params->_ret = iface->UpdateItemPreviewFile( params->handle, params->index, params->pszPreviewFile ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVideo_params *params ) +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; params->_ret = iface->UpdateItemPreviewVideo( params->handle, params->index, params->pszVideoID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemPreview_params *params ) +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; params->_ret = iface->RemoveItemPreview( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubmitItemUpdate_params *params ) +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; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemUpdateProgress_params *params ) +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; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetUserItemVote_params *params ) +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; params->_ret = iface->SetUserItemVote( params->nPublishedFileID, params->bVoteUp ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetUserItemVote_params *params ) +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; params->_ret = iface->GetUserItemVote( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemToFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemToFavorites_params *params ) +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; params->_ret = iface->AddItemToFavorites( params->nAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemFromFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemFromFavorites_params *params ) +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; params->_ret = iface->RemoveItemFromFavorites( params->nAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubscribeItem_params *params ) +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; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_UnsubscribeItem_params *params ) +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; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetNumSubscribedItems_params *params ) +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; params->_ret = iface->GetNumSubscribedItems( ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetSubscribedItems_params *params ) +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; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemState( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemState_params *params ) +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; params->_ret = iface->GetItemState( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo_params *params ) +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; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->punTimeStamp ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo_params *params ) +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; params->_ret = iface->GetItemDownloadInfo( params->nPublishedFileID, params->punBytesDownloaded, params->punBytesTotal ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_DownloadItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_DownloadItem_params *params ) +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; params->_ret = iface->DownloadItem( params->nPublishedFileID, params->bHighPriority ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameServer( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameServer_params *params ) +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; params->_ret = iface->BInitWorkshopForGameServer( params->unWorkshopDepotID, params->pszFolder ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SuspendDownloads( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SuspendDownloads_params *params ) +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; iface->SuspendDownloads( params->bSuspend ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartPlaytimeTracking_params *params ) +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; params->_ret = iface->StartPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTracking_params *params ) +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; params->_ret = iface->StopPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTrackingForAllItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTrackingForAllItems_params *params ) +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; params->_ret = iface->StopPlaytimeTrackingForAllItems( ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddDependency_params *params ) +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; params->_ret = iface->AddDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveDependency_params *params ) +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; params->_ret = iface->RemoveDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddAppDependency_params *params ) +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; params->_ret = iface->AddAppDependency( params->nPublishedFileID, params->nAppID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAppDependency_params *params ) +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; params->_ret = iface->RemoveAppDependency( params->nPublishedFileID, params->nAppID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetAppDependencies( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetAppDependencies_params *params ) +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; params->_ret = iface->GetAppDependencies( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_DeleteItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_DeleteItem_params *params ) +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; params->_ret = iface->DeleteItem( params->nPublishedFileID ); + return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION014.h b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION014.h deleted file mode 100644 index 75e9d546..00000000 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION014.h +++ /dev/null @@ -1,752 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUserUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unAccountID; - uint32_t eListType; - uint32_t eMatchingUGCType; - uint32_t eSortOrder; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUserUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eQueryType; - uint32_t eMatchingeMatchingUGCTypeFileType; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_2_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eQueryType; - uint32_t eMatchingeMatchingUGCTypeFileType; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - const char *pchCursor; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_2( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_2_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUGCDetailsRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t unNumPublishedFileIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUGCDetailsRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUGCDetailsRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SendQueryUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SendQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - w_SteamUGCDetails_t_128x *pDetails; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - char *pchURL; - uint32_t cchURLSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - char *pchMetadata; - uint32_t cchMetadatasize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint64_t *pvecPublishedFileID; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCStatistic_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t eStatType; - uint64_t *pStatValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCStatistic( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCStatistic_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumAdditionalPreviews_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumAdditionalPreviews_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCAdditionalPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t previewIndex; - char *pchURLOrVideoID; - uint32_t cchURLSize; - char *pchOriginalFileName; - uint32_t cchOriginalFileNameSize; - uint32_t *pPreviewType; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCAdditionalPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCAdditionalPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumKeyValueTags_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t keyValueTagIndex; - char *pchKey; - uint32_t cchKeySize; - char *pchValue; - uint32_t cchValueSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_2_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - const char *pchKey; - char *pchValue; - uint32_t cchValueSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_2( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_2_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_ReleaseQueryUGCRequest_params -{ - void *linux_side; - bool _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_ReleaseQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const w_SteamParamStringArray_t *pTagGroups; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnOnlyIDs_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnOnlyIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnOnlyIDs( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnOnlyIDs_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnKeyValueTags_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnKeyValueTags; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnLongDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnLongDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnLongDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnMetadata; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnChildren_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnChildren; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnChildren_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnAdditionalPreviews_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnAdditionalPreviews; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnAdditionalPreviews_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnTotalOnly_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnTotalOnly; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnTotalOnly_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeStats_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unDays; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeStats( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeStats_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchLanguage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedResponse_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedResponse_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFilter_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pMatchCloudFileName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFilter_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetMatchAnyTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bMatchAnyTag; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetMatchAnyTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pSearchText; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDays_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unDays; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDays_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pKey; - const char *pValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RequestUGCDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RequestUGCDetails_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateItem_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint32_t eFileType; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchTitle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLanguage_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchLanguage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLanguage_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchMetaData; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t eVisibility; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const w_SteamParamStringArray_t *pTags; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszContentFolder; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszPreviewFile; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowLegacyUpload_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bAllowLegacyUpload; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowLegacyUpload( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowLegacyUpload_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAllItemKeyValueTags_params -{ - void *linux_side; - bool _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAllItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAllItemKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueTags_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchKey; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszPreviewFile; - uint32_t type; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszVideoID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - const char *pszPreviewFile; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVideo_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - const char *pszVideoID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVideo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubmitItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; - const char *pchChangeNote; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubmitItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemUpdateProgress_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint64_t *punBytesProcessed; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemUpdateProgress_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetUserItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - bool bVoteUp; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetUserItemVote_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetUserItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetUserItemVote_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemToFavorites_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemToFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemToFavorites_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemFromFavorites_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemFromFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemFromFavorites_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_UnsubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_UnsubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetNumSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetNumSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemState_params -{ - void *linux_side; - uint32_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemState( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemState_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - uint64_t *punSizeOnDisk; - char *pchFolder; - uint32_t cchFolderSize; - uint32_t *punTimeStamp; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - uint64_t *punBytesDownloaded; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_DownloadItem_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - bool bHighPriority; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_DownloadItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_DownloadItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameServer_params -{ - void *linux_side; - bool _ret; - uint32_t unWorkshopDepotID; - const char *pszFolder; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameServer( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameServer_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SuspendDownloads_params -{ - void *linux_side; - bool bSuspend; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SuspendDownloads( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SuspendDownloads_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartPlaytimeTracking_params -{ - void *linux_side; - uint64_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t unNumPublishedFileIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartPlaytimeTracking_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTracking_params -{ - void *linux_side; - uint64_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t unNumPublishedFileIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTracking_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTrackingForAllItems_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTrackingForAllItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTrackingForAllItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nParentPublishedFileID; - uint64_t nChildPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nParentPublishedFileID; - uint64_t nChildPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddAppDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t nAppID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddAppDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAppDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t nAppID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAppDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetAppDependencies_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetAppDependencies( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetAppDependencies_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_DeleteItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_DeleteItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_DeleteItem_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION015.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION015.cpp index 89b91717..7ebc954b 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION015.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION015.cpp @@ -1,510 +1,677 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION015.h" -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUserUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_2( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_2_params *params ) +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; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->pchCursor ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUGCDetailsRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUGCDetailsRequest_params *params ) +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; params->_ret = iface->CreateQueryUGCDetailsRequest( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SendQueryUGCRequest_params *params ) +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; params->_ret = iface->SendQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCResult_params *params ) +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; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumTags_params *params ) +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; params->_ret = iface->GetQueryUGCNumTags( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag_params *params ) +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; params->_ret = iface->GetQueryUGCTag( params->handle, params->index, params->indexTag, params->pchValue, params->cchValueSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplayName( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplayName_params *params ) +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; params->_ret = iface->GetQueryUGCTagDisplayName( params->handle, params->index, params->indexTag, params->pchValue, params->cchValueSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL_params *params ) +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; params->_ret = iface->GetQueryUGCPreviewURL( params->handle, params->index, params->pchURL, params->cchURLSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata_params *params ) +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; params->_ret = iface->GetQueryUGCMetadata( params->handle, params->index, params->pchMetadata, params->cchMetadatasize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren_params *params ) +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; params->_ret = iface->GetQueryUGCChildren( params->handle, params->index, params->pvecPublishedFileID, params->cMaxEntries ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCStatistic( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCStatistic_params *params ) +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; params->_ret = iface->GetQueryUGCStatistic( params->handle, params->index, params->eStatType, params->pStatValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumAdditionalPreviews_params *params ) +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; params->_ret = iface->GetQueryUGCNumAdditionalPreviews( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCAdditionalPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCAdditionalPreview_params *params ) +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; params->_ret = iface->GetQueryUGCAdditionalPreview( params->handle, params->index, params->previewIndex, params->pchURLOrVideoID, params->cchURLSize, params->pchOriginalFileName, params->cchOriginalFileNameSize, params->pPreviewType ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumKeyValueTags_params *params ) +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; params->_ret = iface->GetQueryUGCNumKeyValueTags( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_params *params ) +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; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->keyValueTagIndex, params->pchKey, params->cchKeySize, params->pchValue, params->cchValueSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_2( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_2_params *params ) +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; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->pchKey, params->pchValue, params->cchValueSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_ReleaseQueryUGCRequest_params *params ) +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; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag_params *params ) +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; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup_params *params ) +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; params->_ret = iface->AddRequiredTagGroup( params->handle, params->pTagGroups ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag_params *params ) +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; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnOnlyIDs( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnOnlyIDs_params *params ) +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; params->_ret = iface->SetReturnOnlyIDs( params->handle, params->bReturnOnlyIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnKeyValueTags_params *params ) +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; params->_ret = iface->SetReturnKeyValueTags( params->handle, params->bReturnKeyValueTags ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnLongDescription_params *params ) +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; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnMetadata_params *params ) +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; params->_ret = iface->SetReturnMetadata( params->handle, params->bReturnMetadata ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnChildren_params *params ) +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; params->_ret = iface->SetReturnChildren( params->handle, params->bReturnChildren ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnAdditionalPreviews_params *params ) +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; params->_ret = iface->SetReturnAdditionalPreviews( params->handle, params->bReturnAdditionalPreviews ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnTotalOnly_params *params ) +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; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeStats( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeStats_params *params ) +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; params->_ret = iface->SetReturnPlaytimeStats( params->handle, params->unDays ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage_params *params ) +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; params->_ret = iface->SetLanguage( params->handle, params->pchLanguage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedResponse_params *params ) +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; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFilter_params *params ) +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; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetMatchAnyTag_params *params ) +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; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText_params *params ) +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; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDays_params *params ) +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; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredKeyValueTag_params *params ) +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; params->_ret = iface->AddRequiredKeyValueTag( params->handle, params->pKey, params->pValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RequestUGCDetails_params *params ) +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; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateItem_params *params ) +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; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartItemUpdate_params *params ) +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; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle_params *params ) +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; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription_params *params ) +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; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLanguage_params *params ) +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; params->_ret = iface->SetItemUpdateLanguage( params->handle, params->pchLanguage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata_params *params ) +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; params->_ret = iface->SetItemMetadata( params->handle, params->pchMetaData ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility_params *params ) +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; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags_params *params ) +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; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent_params *params ) +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; params->_ret = iface->SetItemContent( params->handle, params->pszContentFolder ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview_params *params ) +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; params->_ret = iface->SetItemPreview( params->handle, params->pszPreviewFile ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowLegacyUpload( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowLegacyUpload_params *params ) +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; params->_ret = iface->SetAllowLegacyUpload( params->handle, params->bAllowLegacyUpload ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAllItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAllItemKeyValueTags_params *params ) +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; params->_ret = iface->RemoveAllItemKeyValueTags( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueTags_params *params ) +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; params->_ret = iface->RemoveItemKeyValueTags( params->handle, params->pchKey ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag_params *params ) +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; params->_ret = iface->AddItemKeyValueTag( params->handle, params->pchKey, params->pchValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile_params *params ) +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; params->_ret = iface->AddItemPreviewFile( params->handle, params->pszPreviewFile, params->type ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo_params *params ) +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; params->_ret = iface->AddItemPreviewVideo( params->handle, params->pszVideoID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile_params *params ) +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; params->_ret = iface->UpdateItemPreviewFile( params->handle, params->index, params->pszPreviewFile ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVideo_params *params ) +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; params->_ret = iface->UpdateItemPreviewVideo( params->handle, params->index, params->pszVideoID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemPreview_params *params ) +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; params->_ret = iface->RemoveItemPreview( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubmitItemUpdate_params *params ) +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; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemUpdateProgress_params *params ) +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; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetUserItemVote_params *params ) +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; params->_ret = iface->SetUserItemVote( params->nPublishedFileID, params->bVoteUp ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetUserItemVote_params *params ) +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; params->_ret = iface->GetUserItemVote( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemToFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemToFavorites_params *params ) +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; params->_ret = iface->AddItemToFavorites( params->nAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemFromFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemFromFavorites_params *params ) +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; params->_ret = iface->RemoveItemFromFavorites( params->nAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubscribeItem_params *params ) +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; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_UnsubscribeItem_params *params ) +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; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetNumSubscribedItems_params *params ) +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; params->_ret = iface->GetNumSubscribedItems( ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetSubscribedItems_params *params ) +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; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemState( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemState_params *params ) +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; params->_ret = iface->GetItemState( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo_params *params ) +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; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->punTimeStamp ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo_params *params ) +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; params->_ret = iface->GetItemDownloadInfo( params->nPublishedFileID, params->punBytesDownloaded, params->punBytesTotal ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_DownloadItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_DownloadItem_params *params ) +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; params->_ret = iface->DownloadItem( params->nPublishedFileID, params->bHighPriority ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameServer( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameServer_params *params ) +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; params->_ret = iface->BInitWorkshopForGameServer( params->unWorkshopDepotID, params->pszFolder ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SuspendDownloads( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SuspendDownloads_params *params ) +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; iface->SuspendDownloads( params->bSuspend ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartPlaytimeTracking_params *params ) +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; params->_ret = iface->StartPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTracking_params *params ) +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; params->_ret = iface->StopPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTrackingForAllItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTrackingForAllItems_params *params ) +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; params->_ret = iface->StopPlaytimeTrackingForAllItems( ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddDependency_params *params ) +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; params->_ret = iface->AddDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveDependency_params *params ) +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; params->_ret = iface->RemoveDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddAppDependency_params *params ) +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; params->_ret = iface->AddAppDependency( params->nPublishedFileID, params->nAppID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAppDependency_params *params ) +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; params->_ret = iface->RemoveAppDependency( params->nPublishedFileID, params->nAppID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetAppDependencies( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetAppDependencies_params *params ) +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; params->_ret = iface->GetAppDependencies( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_DeleteItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_DeleteItem_params *params ) +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; params->_ret = iface->DeleteItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_ShowWorkshopEULA( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_ShowWorkshopEULA_params *params ) +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; params->_ret = iface->ShowWorkshopEULA( ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetWorkshopEULAStatus( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetWorkshopEULAStatus_params *params ) +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; params->_ret = iface->GetWorkshopEULAStatus( ); + return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION015.h b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION015.h deleted file mode 100644 index e4cad7a2..00000000 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION015.h +++ /dev/null @@ -1,799 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUserUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unAccountID; - uint32_t eListType; - uint32_t eMatchingUGCType; - uint32_t eSortOrder; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUserUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eQueryType; - uint32_t eMatchingeMatchingUGCTypeFileType; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_2_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eQueryType; - uint32_t eMatchingeMatchingUGCTypeFileType; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - const char *pchCursor; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_2( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_2_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUGCDetailsRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t unNumPublishedFileIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUGCDetailsRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUGCDetailsRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SendQueryUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SendQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCResult_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - w_SteamUGCDetails_t_128x *pDetails; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCResult_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumTags_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t indexTag; - char *pchValue; - uint32_t cchValueSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplayName_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t indexTag; - char *pchValue; - uint32_t cchValueSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplayName( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplayName_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - char *pchURL; - uint32_t cchURLSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - char *pchMetadata; - uint32_t cchMetadatasize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint64_t *pvecPublishedFileID; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCStatistic_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t eStatType; - uint64_t *pStatValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCStatistic( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCStatistic_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumAdditionalPreviews_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumAdditionalPreviews_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCAdditionalPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t previewIndex; - char *pchURLOrVideoID; - uint32_t cchURLSize; - char *pchOriginalFileName; - uint32_t cchOriginalFileNameSize; - uint32_t *pPreviewType; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCAdditionalPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCAdditionalPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumKeyValueTags_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t keyValueTagIndex; - char *pchKey; - uint32_t cchKeySize; - char *pchValue; - uint32_t cchValueSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_2_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - const char *pchKey; - char *pchValue; - uint32_t cchValueSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_2( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_2_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_ReleaseQueryUGCRequest_params -{ - void *linux_side; - bool _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_ReleaseQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const w_SteamParamStringArray_t *pTagGroups; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnOnlyIDs_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnOnlyIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnOnlyIDs( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnOnlyIDs_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnKeyValueTags_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnKeyValueTags; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnLongDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnLongDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnLongDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnMetadata; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnChildren_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnChildren; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnChildren_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnAdditionalPreviews_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnAdditionalPreviews; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnAdditionalPreviews_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnTotalOnly_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnTotalOnly; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnTotalOnly_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeStats_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unDays; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeStats( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeStats_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchLanguage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedResponse_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedResponse_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFilter_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pMatchCloudFileName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFilter_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetMatchAnyTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bMatchAnyTag; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetMatchAnyTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pSearchText; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDays_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unDays; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDays_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pKey; - const char *pValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RequestUGCDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RequestUGCDetails_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateItem_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint32_t eFileType; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchTitle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLanguage_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchLanguage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLanguage_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchMetaData; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t eVisibility; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const w_SteamParamStringArray_t *pTags; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszContentFolder; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszPreviewFile; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowLegacyUpload_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bAllowLegacyUpload; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowLegacyUpload( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowLegacyUpload_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAllItemKeyValueTags_params -{ - void *linux_side; - bool _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAllItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAllItemKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueTags_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchKey; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszPreviewFile; - uint32_t type; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszVideoID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - const char *pszPreviewFile; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVideo_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - const char *pszVideoID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVideo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubmitItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; - const char *pchChangeNote; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubmitItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemUpdateProgress_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint64_t *punBytesProcessed; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemUpdateProgress_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetUserItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - bool bVoteUp; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetUserItemVote_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetUserItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetUserItemVote_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemToFavorites_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemToFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemToFavorites_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemFromFavorites_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemFromFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemFromFavorites_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_UnsubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_UnsubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetNumSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetNumSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemState_params -{ - void *linux_side; - uint32_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemState( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemState_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - uint64_t *punSizeOnDisk; - char *pchFolder; - uint32_t cchFolderSize; - uint32_t *punTimeStamp; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - uint64_t *punBytesDownloaded; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_DownloadItem_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - bool bHighPriority; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_DownloadItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_DownloadItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameServer_params -{ - void *linux_side; - bool _ret; - uint32_t unWorkshopDepotID; - const char *pszFolder; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameServer( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameServer_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SuspendDownloads_params -{ - void *linux_side; - bool bSuspend; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SuspendDownloads( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SuspendDownloads_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartPlaytimeTracking_params -{ - void *linux_side; - uint64_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t unNumPublishedFileIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartPlaytimeTracking_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTracking_params -{ - void *linux_side; - uint64_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t unNumPublishedFileIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTracking_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTrackingForAllItems_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTrackingForAllItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTrackingForAllItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nParentPublishedFileID; - uint64_t nChildPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nParentPublishedFileID; - uint64_t nChildPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddAppDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t nAppID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddAppDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAppDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t nAppID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAppDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetAppDependencies_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetAppDependencies( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetAppDependencies_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_DeleteItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_DeleteItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_DeleteItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_ShowWorkshopEULA_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_ShowWorkshopEULA( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_ShowWorkshopEULA_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetWorkshopEULAStatus_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetWorkshopEULAStatus( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetWorkshopEULAStatus_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION016.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION016.cpp index de9b3feb..d648b055 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION016.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION016.cpp @@ -1,522 +1,693 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION016.h" -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUserUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_2( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_2_params *params ) +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; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->pchCursor ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUGCDetailsRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUGCDetailsRequest_params *params ) +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; params->_ret = iface->CreateQueryUGCDetailsRequest( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SendQueryUGCRequest_params *params ) +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; params->_ret = iface->SendQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCResult_params *params ) +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; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumTags_params *params ) +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; params->_ret = iface->GetQueryUGCNumTags( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag_params *params ) +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; params->_ret = iface->GetQueryUGCTag( params->handle, params->index, params->indexTag, params->pchValue, params->cchValueSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplayName( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplayName_params *params ) +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; params->_ret = iface->GetQueryUGCTagDisplayName( params->handle, params->index, params->indexTag, params->pchValue, params->cchValueSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL_params *params ) +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; params->_ret = iface->GetQueryUGCPreviewURL( params->handle, params->index, params->pchURL, params->cchURLSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata_params *params ) +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; params->_ret = iface->GetQueryUGCMetadata( params->handle, params->index, params->pchMetadata, params->cchMetadatasize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren_params *params ) +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; params->_ret = iface->GetQueryUGCChildren( params->handle, params->index, params->pvecPublishedFileID, params->cMaxEntries ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic_params *params ) +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; params->_ret = iface->GetQueryUGCStatistic( params->handle, params->index, params->eStatType, params->pStatValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumAdditionalPreviews_params *params ) +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; params->_ret = iface->GetQueryUGCNumAdditionalPreviews( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview_params *params ) +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; params->_ret = iface->GetQueryUGCAdditionalPreview( params->handle, params->index, params->previewIndex, params->pchURLOrVideoID, params->cchURLSize, params->pchOriginalFileName, params->cchOriginalFileNameSize, params->pPreviewType ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumKeyValueTags_params *params ) +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; params->_ret = iface->GetQueryUGCNumKeyValueTags( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_params *params ) +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; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->keyValueTagIndex, params->pchKey, params->cchKeySize, params->pchValue, params->cchValueSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_2( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_2_params *params ) +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; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->pchKey, params->pchValue, params->cchValueSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_ReleaseQueryUGCRequest_params *params ) +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; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag_params *params ) +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; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup_params *params ) +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; params->_ret = iface->AddRequiredTagGroup( params->handle, params->pTagGroups ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag_params *params ) +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; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnOnlyIDs( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnOnlyIDs_params *params ) +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; params->_ret = iface->SetReturnOnlyIDs( params->handle, params->bReturnOnlyIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnKeyValueTags_params *params ) +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; params->_ret = iface->SetReturnKeyValueTags( params->handle, params->bReturnKeyValueTags ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnLongDescription_params *params ) +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; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnMetadata_params *params ) +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; params->_ret = iface->SetReturnMetadata( params->handle, params->bReturnMetadata ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnChildren_params *params ) +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; params->_ret = iface->SetReturnChildren( params->handle, params->bReturnChildren ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnAdditionalPreviews_params *params ) +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; params->_ret = iface->SetReturnAdditionalPreviews( params->handle, params->bReturnAdditionalPreviews ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnTotalOnly_params *params ) +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; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeStats( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeStats_params *params ) +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; params->_ret = iface->SetReturnPlaytimeStats( params->handle, params->unDays ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage_params *params ) +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; params->_ret = iface->SetLanguage( params->handle, params->pchLanguage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedResponse_params *params ) +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; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFilter_params *params ) +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; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetMatchAnyTag_params *params ) +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; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText_params *params ) +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; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDays_params *params ) +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; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRange( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRange_params *params ) +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; params->_ret = iface->SetTimeCreatedDateRange( params->handle, params->rtStart, params->rtEnd ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRange( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRange_params *params ) +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; params->_ret = iface->SetTimeUpdatedDateRange( params->handle, params->rtStart, params->rtEnd ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredKeyValueTag_params *params ) +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; params->_ret = iface->AddRequiredKeyValueTag( params->handle, params->pKey, params->pValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RequestUGCDetails_params *params ) +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; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateItem_params *params ) +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; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartItemUpdate_params *params ) +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; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle_params *params ) +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; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription_params *params ) +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; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLanguage_params *params ) +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; params->_ret = iface->SetItemUpdateLanguage( params->handle, params->pchLanguage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata_params *params ) +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; params->_ret = iface->SetItemMetadata( params->handle, params->pchMetaData ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility_params *params ) +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; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags_params *params ) +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; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent_params *params ) +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; params->_ret = iface->SetItemContent( params->handle, params->pszContentFolder ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview_params *params ) +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; params->_ret = iface->SetItemPreview( params->handle, params->pszPreviewFile ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowLegacyUpload( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowLegacyUpload_params *params ) +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; params->_ret = iface->SetAllowLegacyUpload( params->handle, params->bAllowLegacyUpload ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAllItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAllItemKeyValueTags_params *params ) +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; params->_ret = iface->RemoveAllItemKeyValueTags( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueTags_params *params ) +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; params->_ret = iface->RemoveItemKeyValueTags( params->handle, params->pchKey ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag_params *params ) +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; params->_ret = iface->AddItemKeyValueTag( params->handle, params->pchKey, params->pchValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile_params *params ) +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; params->_ret = iface->AddItemPreviewFile( params->handle, params->pszPreviewFile, params->type ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo_params *params ) +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; params->_ret = iface->AddItemPreviewVideo( params->handle, params->pszVideoID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile_params *params ) +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; params->_ret = iface->UpdateItemPreviewFile( params->handle, params->index, params->pszPreviewFile ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVideo_params *params ) +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; params->_ret = iface->UpdateItemPreviewVideo( params->handle, params->index, params->pszVideoID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemPreview_params *params ) +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; params->_ret = iface->RemoveItemPreview( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubmitItemUpdate_params *params ) +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; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemUpdateProgress_params *params ) +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; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetUserItemVote_params *params ) +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; params->_ret = iface->SetUserItemVote( params->nPublishedFileID, params->bVoteUp ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetUserItemVote_params *params ) +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; params->_ret = iface->GetUserItemVote( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemToFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemToFavorites_params *params ) +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; params->_ret = iface->AddItemToFavorites( params->nAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemFromFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemFromFavorites_params *params ) +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; params->_ret = iface->RemoveItemFromFavorites( params->nAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubscribeItem_params *params ) +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; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_UnsubscribeItem_params *params ) +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; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetNumSubscribedItems_params *params ) +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; params->_ret = iface->GetNumSubscribedItems( ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetSubscribedItems_params *params ) +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; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemState( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemState_params *params ) +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; params->_ret = iface->GetItemState( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo_params *params ) +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; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->punTimeStamp ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo_params *params ) +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; params->_ret = iface->GetItemDownloadInfo( params->nPublishedFileID, params->punBytesDownloaded, params->punBytesTotal ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_DownloadItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_DownloadItem_params *params ) +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; params->_ret = iface->DownloadItem( params->nPublishedFileID, params->bHighPriority ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameServer( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameServer_params *params ) +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; params->_ret = iface->BInitWorkshopForGameServer( params->unWorkshopDepotID, params->pszFolder ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SuspendDownloads( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SuspendDownloads_params *params ) +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; iface->SuspendDownloads( params->bSuspend ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartPlaytimeTracking_params *params ) +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; params->_ret = iface->StartPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTracking_params *params ) +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; params->_ret = iface->StopPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTrackingForAllItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTrackingForAllItems_params *params ) +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; params->_ret = iface->StopPlaytimeTrackingForAllItems( ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddDependency_params *params ) +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; params->_ret = iface->AddDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveDependency_params *params ) +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; params->_ret = iface->RemoveDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddAppDependency_params *params ) +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; params->_ret = iface->AddAppDependency( params->nPublishedFileID, params->nAppID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAppDependency_params *params ) +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; params->_ret = iface->RemoveAppDependency( params->nPublishedFileID, params->nAppID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetAppDependencies( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetAppDependencies_params *params ) +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; params->_ret = iface->GetAppDependencies( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_DeleteItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_DeleteItem_params *params ) +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; params->_ret = iface->DeleteItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_ShowWorkshopEULA( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_ShowWorkshopEULA_params *params ) +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; params->_ret = iface->ShowWorkshopEULA( ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetWorkshopEULAStatus( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetWorkshopEULAStatus_params *params ) +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; params->_ret = iface->GetWorkshopEULAStatus( ); + return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION016.h b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION016.h deleted file mode 100644 index 1ef1b1c3..00000000 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION016.h +++ /dev/null @@ -1,819 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUserUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unAccountID; - uint32_t eListType; - uint32_t eMatchingUGCType; - uint32_t eSortOrder; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUserUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eQueryType; - uint32_t eMatchingeMatchingUGCTypeFileType; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_2_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eQueryType; - uint32_t eMatchingeMatchingUGCTypeFileType; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - const char *pchCursor; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_2( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_2_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUGCDetailsRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t unNumPublishedFileIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUGCDetailsRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUGCDetailsRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SendQueryUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SendQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCResult_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - w_SteamUGCDetails_t_128x *pDetails; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCResult_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumTags_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t indexTag; - char *pchValue; - uint32_t cchValueSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplayName_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t indexTag; - char *pchValue; - uint32_t cchValueSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplayName( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplayName_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - char *pchURL; - uint32_t cchURLSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - char *pchMetadata; - uint32_t cchMetadatasize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint64_t *pvecPublishedFileID; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t eStatType; - uint64_t *pStatValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumAdditionalPreviews_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumAdditionalPreviews_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t previewIndex; - char *pchURLOrVideoID; - uint32_t cchURLSize; - char *pchOriginalFileName; - uint32_t cchOriginalFileNameSize; - uint32_t *pPreviewType; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumKeyValueTags_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t keyValueTagIndex; - char *pchKey; - uint32_t cchKeySize; - char *pchValue; - uint32_t cchValueSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_2_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - const char *pchKey; - char *pchValue; - uint32_t cchValueSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_2( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_2_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_ReleaseQueryUGCRequest_params -{ - void *linux_side; - bool _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_ReleaseQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const w_SteamParamStringArray_t *pTagGroups; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnOnlyIDs_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnOnlyIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnOnlyIDs( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnOnlyIDs_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnKeyValueTags_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnKeyValueTags; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnLongDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnLongDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnLongDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnMetadata; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnChildren_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnChildren; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnChildren_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnAdditionalPreviews_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnAdditionalPreviews; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnAdditionalPreviews_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnTotalOnly_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnTotalOnly; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnTotalOnly_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeStats_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unDays; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeStats( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeStats_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchLanguage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedResponse_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedResponse_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFilter_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pMatchCloudFileName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFilter_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetMatchAnyTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bMatchAnyTag; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetMatchAnyTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pSearchText; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDays_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unDays; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDays_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRange_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t rtStart; - uint32_t rtEnd; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRange( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRange_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRange_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t rtStart; - uint32_t rtEnd; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRange( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRange_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pKey; - const char *pValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RequestUGCDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RequestUGCDetails_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateItem_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint32_t eFileType; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchTitle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLanguage_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchLanguage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLanguage_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchMetaData; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t eVisibility; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const w_SteamParamStringArray_t *pTags; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszContentFolder; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszPreviewFile; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowLegacyUpload_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bAllowLegacyUpload; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowLegacyUpload( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowLegacyUpload_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAllItemKeyValueTags_params -{ - void *linux_side; - bool _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAllItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAllItemKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueTags_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchKey; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszPreviewFile; - uint32_t type; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszVideoID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - const char *pszPreviewFile; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVideo_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - const char *pszVideoID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVideo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubmitItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; - const char *pchChangeNote; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubmitItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemUpdateProgress_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint64_t *punBytesProcessed; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemUpdateProgress_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetUserItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - bool bVoteUp; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetUserItemVote_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetUserItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetUserItemVote_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemToFavorites_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemToFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemToFavorites_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemFromFavorites_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemFromFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemFromFavorites_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_UnsubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_UnsubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetNumSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetNumSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemState_params -{ - void *linux_side; - uint32_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemState( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemState_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - uint64_t *punSizeOnDisk; - char *pchFolder; - uint32_t cchFolderSize; - uint32_t *punTimeStamp; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - uint64_t *punBytesDownloaded; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_DownloadItem_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - bool bHighPriority; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_DownloadItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_DownloadItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameServer_params -{ - void *linux_side; - bool _ret; - uint32_t unWorkshopDepotID; - const char *pszFolder; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameServer( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameServer_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SuspendDownloads_params -{ - void *linux_side; - bool bSuspend; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SuspendDownloads( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SuspendDownloads_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartPlaytimeTracking_params -{ - void *linux_side; - uint64_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t unNumPublishedFileIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartPlaytimeTracking_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTracking_params -{ - void *linux_side; - uint64_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t unNumPublishedFileIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTracking_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTrackingForAllItems_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTrackingForAllItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTrackingForAllItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nParentPublishedFileID; - uint64_t nChildPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nParentPublishedFileID; - uint64_t nChildPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddAppDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t nAppID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddAppDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAppDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t nAppID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAppDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetAppDependencies_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetAppDependencies( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetAppDependencies_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_DeleteItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_DeleteItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_DeleteItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_ShowWorkshopEULA_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_ShowWorkshopEULA( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_ShowWorkshopEULA_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetWorkshopEULAStatus_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetWorkshopEULAStatus( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetWorkshopEULAStatus_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION017.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION017.cpp index 0eb67906..6378daef 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION017.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION017.cpp @@ -1,540 +1,717 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION017.h" -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUserUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_2( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_2_params *params ) +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; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->pchCursor ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUGCDetailsRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUGCDetailsRequest_params *params ) +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; params->_ret = iface->CreateQueryUGCDetailsRequest( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SendQueryUGCRequest_params *params ) +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; params->_ret = iface->SendQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCResult_params *params ) +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; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumTags_params *params ) +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; params->_ret = iface->GetQueryUGCNumTags( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag_params *params ) +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; params->_ret = iface->GetQueryUGCTag( params->handle, params->index, params->indexTag, params->pchValue, params->cchValueSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplayName( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplayName_params *params ) +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; params->_ret = iface->GetQueryUGCTagDisplayName( params->handle, params->index, params->indexTag, params->pchValue, params->cchValueSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL_params *params ) +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; params->_ret = iface->GetQueryUGCPreviewURL( params->handle, params->index, params->pchURL, params->cchURLSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata_params *params ) +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; params->_ret = iface->GetQueryUGCMetadata( params->handle, params->index, params->pchMetadata, params->cchMetadatasize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren_params *params ) +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; params->_ret = iface->GetQueryUGCChildren( params->handle, params->index, params->pvecPublishedFileID, params->cMaxEntries ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCStatistic( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCStatistic_params *params ) +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; params->_ret = iface->GetQueryUGCStatistic( params->handle, params->index, params->eStatType, params->pStatValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumAdditionalPreviews_params *params ) +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; params->_ret = iface->GetQueryUGCNumAdditionalPreviews( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCAdditionalPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCAdditionalPreview_params *params ) +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; params->_ret = iface->GetQueryUGCAdditionalPreview( params->handle, params->index, params->previewIndex, params->pchURLOrVideoID, params->cchURLSize, params->pchOriginalFileName, params->cchOriginalFileNameSize, params->pPreviewType ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumKeyValueTags_params *params ) +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; params->_ret = iface->GetQueryUGCNumKeyValueTags( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_params *params ) +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; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->keyValueTagIndex, params->pchKey, params->cchKeySize, params->pchValue, params->cchValueSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_2( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_2_params *params ) +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; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->pchKey, params->pchValue, params->cchValueSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCContentDescriptors( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCContentDescriptors_params *params ) +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; params->_ret = iface->GetQueryUGCContentDescriptors( params->handle, params->index, params->pvecDescriptors, params->cMaxEntries ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_ReleaseQueryUGCRequest_params *params ) +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; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag_params *params ) +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; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup_params *params ) +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; params->_ret = iface->AddRequiredTagGroup( params->handle, params->pTagGroups ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag_params *params ) +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; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnOnlyIDs( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnOnlyIDs_params *params ) +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; params->_ret = iface->SetReturnOnlyIDs( params->handle, params->bReturnOnlyIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnKeyValueTags_params *params ) +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; params->_ret = iface->SetReturnKeyValueTags( params->handle, params->bReturnKeyValueTags ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnLongDescription_params *params ) +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; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnMetadata_params *params ) +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; params->_ret = iface->SetReturnMetadata( params->handle, params->bReturnMetadata ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnChildren_params *params ) +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; params->_ret = iface->SetReturnChildren( params->handle, params->bReturnChildren ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnAdditionalPreviews_params *params ) +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; params->_ret = iface->SetReturnAdditionalPreviews( params->handle, params->bReturnAdditionalPreviews ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnTotalOnly_params *params ) +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; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeStats( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeStats_params *params ) +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; params->_ret = iface->SetReturnPlaytimeStats( params->handle, params->unDays ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage_params *params ) +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; params->_ret = iface->SetLanguage( params->handle, params->pchLanguage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedResponse_params *params ) +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; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFilter_params *params ) +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; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetMatchAnyTag_params *params ) +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; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText_params *params ) +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; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDays_params *params ) +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; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRange( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRange_params *params ) +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; params->_ret = iface->SetTimeCreatedDateRange( params->handle, params->rtStart, params->rtEnd ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRange( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRange_params *params ) +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; params->_ret = iface->SetTimeUpdatedDateRange( params->handle, params->rtStart, params->rtEnd ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredKeyValueTag_params *params ) +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; params->_ret = iface->AddRequiredKeyValueTag( params->handle, params->pKey, params->pValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RequestUGCDetails_params *params ) +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; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateItem_params *params ) +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; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartItemUpdate_params *params ) +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; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle_params *params ) +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; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription_params *params ) +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; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLanguage_params *params ) +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; params->_ret = iface->SetItemUpdateLanguage( params->handle, params->pchLanguage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata_params *params ) +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; params->_ret = iface->SetItemMetadata( params->handle, params->pchMetaData ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility_params *params ) +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; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags_params *params ) +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; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent_params *params ) +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; params->_ret = iface->SetItemContent( params->handle, params->pszContentFolder ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview_params *params ) +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; params->_ret = iface->SetItemPreview( params->handle, params->pszPreviewFile ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowLegacyUpload( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowLegacyUpload_params *params ) +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; params->_ret = iface->SetAllowLegacyUpload( params->handle, params->bAllowLegacyUpload ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAllItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAllItemKeyValueTags_params *params ) +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; params->_ret = iface->RemoveAllItemKeyValueTags( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueTags_params *params ) +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; params->_ret = iface->RemoveItemKeyValueTags( params->handle, params->pchKey ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag_params *params ) +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; params->_ret = iface->AddItemKeyValueTag( params->handle, params->pchKey, params->pchValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile_params *params ) +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; params->_ret = iface->AddItemPreviewFile( params->handle, params->pszPreviewFile, params->type ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo_params *params ) +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; params->_ret = iface->AddItemPreviewVideo( params->handle, params->pszVideoID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile_params *params ) +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; params->_ret = iface->UpdateItemPreviewFile( params->handle, params->index, params->pszPreviewFile ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVideo_params *params ) +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; params->_ret = iface->UpdateItemPreviewVideo( params->handle, params->index, params->pszVideoID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview_params *params ) +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; params->_ret = iface->RemoveItemPreview( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescriptor( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescriptor_params *params ) +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; params->_ret = iface->AddContentDescriptor( params->handle, params->descid ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveContentDescriptor( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveContentDescriptor_params *params ) +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; params->_ret = iface->RemoveContentDescriptor( params->handle, params->descid ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubmitItemUpdate_params *params ) +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; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemUpdateProgress_params *params ) +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; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetUserItemVote_params *params ) +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; params->_ret = iface->SetUserItemVote( params->nPublishedFileID, params->bVoteUp ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetUserItemVote_params *params ) +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; params->_ret = iface->GetUserItemVote( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemToFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemToFavorites_params *params ) +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; params->_ret = iface->AddItemToFavorites( params->nAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemFromFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemFromFavorites_params *params ) +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; params->_ret = iface->RemoveItemFromFavorites( params->nAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubscribeItem_params *params ) +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; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_UnsubscribeItem_params *params ) +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; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetNumSubscribedItems_params *params ) +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; params->_ret = iface->GetNumSubscribedItems( ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetSubscribedItems_params *params ) +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; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemState( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemState_params *params ) +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; params->_ret = iface->GetItemState( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo_params *params ) +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; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->punTimeStamp ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo_params *params ) +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; params->_ret = iface->GetItemDownloadInfo( params->nPublishedFileID, params->punBytesDownloaded, params->punBytesTotal ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_DownloadItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_DownloadItem_params *params ) +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; params->_ret = iface->DownloadItem( params->nPublishedFileID, params->bHighPriority ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameServer( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameServer_params *params ) +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; params->_ret = iface->BInitWorkshopForGameServer( params->unWorkshopDepotID, params->pszFolder ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SuspendDownloads( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SuspendDownloads_params *params ) +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; iface->SuspendDownloads( params->bSuspend ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartPlaytimeTracking_params *params ) +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; params->_ret = iface->StartPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTracking_params *params ) +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; params->_ret = iface->StopPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTrackingForAllItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTrackingForAllItems_params *params ) +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; params->_ret = iface->StopPlaytimeTrackingForAllItems( ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddDependency_params *params ) +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; params->_ret = iface->AddDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveDependency_params *params ) +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; params->_ret = iface->RemoveDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddAppDependency_params *params ) +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; params->_ret = iface->AddAppDependency( params->nPublishedFileID, params->nAppID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAppDependency_params *params ) +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; params->_ret = iface->RemoveAppDependency( params->nPublishedFileID, params->nAppID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetAppDependencies( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetAppDependencies_params *params ) +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; params->_ret = iface->GetAppDependencies( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_DeleteItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_DeleteItem_params *params ) +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; params->_ret = iface->DeleteItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_ShowWorkshopEULA( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_ShowWorkshopEULA_params *params ) +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; params->_ret = iface->ShowWorkshopEULA( ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetWorkshopEULAStatus( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetWorkshopEULAStatus_params *params ) +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; params->_ret = iface->GetWorkshopEULAStatus( ); + return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION017.h b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION017.h deleted file mode 100644 index 6b6f052c..00000000 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION017.h +++ /dev/null @@ -1,848 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUserUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unAccountID; - uint32_t eListType; - uint32_t eMatchingUGCType; - uint32_t eSortOrder; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUserUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eQueryType; - uint32_t eMatchingeMatchingUGCTypeFileType; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_2_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eQueryType; - uint32_t eMatchingeMatchingUGCTypeFileType; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - const char *pchCursor; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_2( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_2_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUGCDetailsRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t unNumPublishedFileIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUGCDetailsRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUGCDetailsRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SendQueryUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SendQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCResult_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - w_SteamUGCDetails_t_128x *pDetails; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCResult_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumTags_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t indexTag; - char *pchValue; - uint32_t cchValueSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplayName_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t indexTag; - char *pchValue; - uint32_t cchValueSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplayName( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplayName_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - char *pchURL; - uint32_t cchURLSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - char *pchMetadata; - uint32_t cchMetadatasize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint64_t *pvecPublishedFileID; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCStatistic_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t eStatType; - uint64_t *pStatValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCStatistic( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCStatistic_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumAdditionalPreviews_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumAdditionalPreviews_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCAdditionalPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t previewIndex; - char *pchURLOrVideoID; - uint32_t cchURLSize; - char *pchOriginalFileName; - uint32_t cchOriginalFileNameSize; - uint32_t *pPreviewType; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCAdditionalPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCAdditionalPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumKeyValueTags_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t keyValueTagIndex; - char *pchKey; - uint32_t cchKeySize; - char *pchValue; - uint32_t cchValueSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_2_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - const char *pchKey; - char *pchValue; - uint32_t cchValueSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_2( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_2_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCContentDescriptors_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint32_t index; - uint32_t *pvecDescriptors; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCContentDescriptors( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCContentDescriptors_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_ReleaseQueryUGCRequest_params -{ - void *linux_side; - bool _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_ReleaseQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const w_SteamParamStringArray_t *pTagGroups; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnOnlyIDs_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnOnlyIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnOnlyIDs( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnOnlyIDs_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnKeyValueTags_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnKeyValueTags; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnLongDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnLongDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnLongDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnMetadata; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnChildren_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnChildren; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnChildren_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnAdditionalPreviews_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnAdditionalPreviews; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnAdditionalPreviews_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnTotalOnly_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnTotalOnly; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnTotalOnly_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeStats_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unDays; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeStats( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeStats_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchLanguage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedResponse_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedResponse_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFilter_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pMatchCloudFileName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFilter_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetMatchAnyTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bMatchAnyTag; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetMatchAnyTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pSearchText; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDays_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unDays; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDays_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRange_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t rtStart; - uint32_t rtEnd; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRange( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRange_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRange_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t rtStart; - uint32_t rtEnd; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRange( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRange_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pKey; - const char *pValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RequestUGCDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RequestUGCDetails_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateItem_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint32_t eFileType; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchTitle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLanguage_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchLanguage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLanguage_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchMetaData; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t eVisibility; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const w_SteamParamStringArray_t *pTags; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszContentFolder; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszPreviewFile; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowLegacyUpload_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bAllowLegacyUpload; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowLegacyUpload( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowLegacyUpload_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAllItemKeyValueTags_params -{ - void *linux_side; - bool _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAllItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAllItemKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueTags_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchKey; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszPreviewFile; - uint32_t type; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszVideoID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - const char *pszPreviewFile; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVideo_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - const char *pszVideoID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVideo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescriptor_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t descid; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescriptor( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescriptor_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveContentDescriptor_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t descid; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveContentDescriptor( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveContentDescriptor_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubmitItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; - const char *pchChangeNote; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubmitItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemUpdateProgress_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint64_t *punBytesProcessed; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemUpdateProgress_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetUserItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - bool bVoteUp; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetUserItemVote_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetUserItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetUserItemVote_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemToFavorites_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemToFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemToFavorites_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemFromFavorites_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemFromFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemFromFavorites_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_UnsubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_UnsubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetNumSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetNumSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemState_params -{ - void *linux_side; - uint32_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemState( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemState_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - uint64_t *punSizeOnDisk; - char *pchFolder; - uint32_t cchFolderSize; - uint32_t *punTimeStamp; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - uint64_t *punBytesDownloaded; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_DownloadItem_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - bool bHighPriority; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_DownloadItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_DownloadItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameServer_params -{ - void *linux_side; - bool _ret; - uint32_t unWorkshopDepotID; - const char *pszFolder; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameServer( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameServer_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SuspendDownloads_params -{ - void *linux_side; - bool bSuspend; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SuspendDownloads( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SuspendDownloads_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartPlaytimeTracking_params -{ - void *linux_side; - uint64_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t unNumPublishedFileIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartPlaytimeTracking_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTracking_params -{ - void *linux_side; - uint64_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t unNumPublishedFileIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTracking_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTrackingForAllItems_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTrackingForAllItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTrackingForAllItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nParentPublishedFileID; - uint64_t nChildPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nParentPublishedFileID; - uint64_t nChildPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddAppDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t nAppID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddAppDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAppDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t nAppID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAppDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetAppDependencies_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetAppDependencies( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetAppDependencies_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_DeleteItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_DeleteItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_DeleteItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_ShowWorkshopEULA_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_ShowWorkshopEULA( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_ShowWorkshopEULA_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetWorkshopEULAStatus_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetWorkshopEULAStatus( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetWorkshopEULAStatus_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION018.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION018.cpp index bc0ae8b1..01190419 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION018.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION018.cpp @@ -1,546 +1,725 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION018.h" -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUserUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_params *params ) +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; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_2( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_2_params *params ) +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; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->pchCursor ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUGCDetailsRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUGCDetailsRequest_params *params ) +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; params->_ret = iface->CreateQueryUGCDetailsRequest( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SendQueryUGCRequest_params *params ) +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; params->_ret = iface->SendQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCResult_params *params ) +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; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumTags_params *params ) +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; params->_ret = iface->GetQueryUGCNumTags( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag_params *params ) +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; params->_ret = iface->GetQueryUGCTag( params->handle, params->index, params->indexTag, params->pchValue, params->cchValueSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplayName( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplayName_params *params ) +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; params->_ret = iface->GetQueryUGCTagDisplayName( params->handle, params->index, params->indexTag, params->pchValue, params->cchValueSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL_params *params ) +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; params->_ret = iface->GetQueryUGCPreviewURL( params->handle, params->index, params->pchURL, params->cchURLSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata_params *params ) +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; params->_ret = iface->GetQueryUGCMetadata( params->handle, params->index, params->pchMetadata, params->cchMetadatasize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren_params *params ) +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; params->_ret = iface->GetQueryUGCChildren( params->handle, params->index, params->pvecPublishedFileID, params->cMaxEntries ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCStatistic( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCStatistic_params *params ) +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; params->_ret = iface->GetQueryUGCStatistic( params->handle, params->index, params->eStatType, params->pStatValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumAdditionalPreviews_params *params ) +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; params->_ret = iface->GetQueryUGCNumAdditionalPreviews( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCAdditionalPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCAdditionalPreview_params *params ) +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; params->_ret = iface->GetQueryUGCAdditionalPreview( params->handle, params->index, params->previewIndex, params->pchURLOrVideoID, params->cchURLSize, params->pchOriginalFileName, params->cchOriginalFileNameSize, params->pPreviewType ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumKeyValueTags_params *params ) +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; params->_ret = iface->GetQueryUGCNumKeyValueTags( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_params *params ) +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; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->keyValueTagIndex, params->pchKey, params->cchKeySize, params->pchValue, params->cchValueSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_2( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_2_params *params ) +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; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->pchKey, params->pchValue, params->cchValueSize ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCContentDescriptors( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCContentDescriptors_params *params ) +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; params->_ret = iface->GetQueryUGCContentDescriptors( params->handle, params->index, params->pvecDescriptors, params->cMaxEntries ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_ReleaseQueryUGCRequest_params *params ) +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; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag_params *params ) +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; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup_params *params ) +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; params->_ret = iface->AddRequiredTagGroup( params->handle, params->pTagGroups ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag_params *params ) +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; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnOnlyIDs( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnOnlyIDs_params *params ) +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; params->_ret = iface->SetReturnOnlyIDs( params->handle, params->bReturnOnlyIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnKeyValueTags_params *params ) +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; params->_ret = iface->SetReturnKeyValueTags( params->handle, params->bReturnKeyValueTags ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnLongDescription_params *params ) +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; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnMetadata_params *params ) +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; params->_ret = iface->SetReturnMetadata( params->handle, params->bReturnMetadata ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnChildren_params *params ) +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; params->_ret = iface->SetReturnChildren( params->handle, params->bReturnChildren ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnAdditionalPreviews_params *params ) +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; params->_ret = iface->SetReturnAdditionalPreviews( params->handle, params->bReturnAdditionalPreviews ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnTotalOnly_params *params ) +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; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeStats( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeStats_params *params ) +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; params->_ret = iface->SetReturnPlaytimeStats( params->handle, params->unDays ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage_params *params ) +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; params->_ret = iface->SetLanguage( params->handle, params->pchLanguage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedResponse_params *params ) +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; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFilter_params *params ) +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; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetMatchAnyTag_params *params ) +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; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText_params *params ) +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; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDays_params *params ) +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; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRange( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRange_params *params ) +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; params->_ret = iface->SetTimeCreatedDateRange( params->handle, params->rtStart, params->rtEnd ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRange( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRange_params *params ) +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; params->_ret = iface->SetTimeUpdatedDateRange( params->handle, params->rtStart, params->rtEnd ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredKeyValueTag_params *params ) +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; params->_ret = iface->AddRequiredKeyValueTag( params->handle, params->pKey, params->pValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RequestUGCDetails_params *params ) +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; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateItem_params *params ) +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; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartItemUpdate_params *params ) +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; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle_params *params ) +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; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription_params *params ) +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; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLanguage_params *params ) +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; params->_ret = iface->SetItemUpdateLanguage( params->handle, params->pchLanguage ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata_params *params ) +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; params->_ret = iface->SetItemMetadata( params->handle, params->pchMetaData ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility_params *params ) +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; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags_params *params ) +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; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags, params->bAllowAdminTags ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent_params *params ) +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; params->_ret = iface->SetItemContent( params->handle, params->pszContentFolder ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview_params *params ) +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; params->_ret = iface->SetItemPreview( params->handle, params->pszPreviewFile ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowLegacyUpload( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowLegacyUpload_params *params ) +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; params->_ret = iface->SetAllowLegacyUpload( params->handle, params->bAllowLegacyUpload ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAllItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAllItemKeyValueTags_params *params ) +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; params->_ret = iface->RemoveAllItemKeyValueTags( params->handle ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueTags_params *params ) +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; params->_ret = iface->RemoveItemKeyValueTags( params->handle, params->pchKey ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag_params *params ) +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; params->_ret = iface->AddItemKeyValueTag( params->handle, params->pchKey, params->pchValue ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile_params *params ) +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; params->_ret = iface->AddItemPreviewFile( params->handle, params->pszPreviewFile, params->type ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo_params *params ) +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; params->_ret = iface->AddItemPreviewVideo( params->handle, params->pszVideoID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile_params *params ) +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; params->_ret = iface->UpdateItemPreviewFile( params->handle, params->index, params->pszPreviewFile ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVideo_params *params ) +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; params->_ret = iface->UpdateItemPreviewVideo( params->handle, params->index, params->pszVideoID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview_params *params ) +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; params->_ret = iface->RemoveItemPreview( params->handle, params->index ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescriptor( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescriptor_params *params ) +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; params->_ret = iface->AddContentDescriptor( params->handle, params->descid ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveContentDescriptor( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveContentDescriptor_params *params ) +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; params->_ret = iface->RemoveContentDescriptor( params->handle, params->descid ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubmitItemUpdate_params *params ) +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; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemUpdateProgress_params *params ) +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; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetUserItemVote_params *params ) +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; params->_ret = iface->SetUserItemVote( params->nPublishedFileID, params->bVoteUp ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserItemVote_params *params ) +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; params->_ret = iface->GetUserItemVote( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemToFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemToFavorites_params *params ) +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; params->_ret = iface->AddItemToFavorites( params->nAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemFromFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemFromFavorites_params *params ) +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; params->_ret = iface->RemoveItemFromFavorites( params->nAppId, params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubscribeItem_params *params ) +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; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_UnsubscribeItem_params *params ) +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; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetNumSubscribedItems_params *params ) +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; params->_ret = iface->GetNumSubscribedItems( ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetSubscribedItems_params *params ) +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; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemState( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemState_params *params ) +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; params->_ret = iface->GetItemState( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo_params *params ) +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; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->punTimeStamp ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo_params *params ) +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; params->_ret = iface->GetItemDownloadInfo( params->nPublishedFileID, params->punBytesDownloaded, params->punBytesTotal ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_DownloadItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_DownloadItem_params *params ) +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; params->_ret = iface->DownloadItem( params->nPublishedFileID, params->bHighPriority ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameServer( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameServer_params *params ) +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; params->_ret = iface->BInitWorkshopForGameServer( params->unWorkshopDepotID, params->pszFolder ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SuspendDownloads( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SuspendDownloads_params *params ) +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; iface->SuspendDownloads( params->bSuspend ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartPlaytimeTracking_params *params ) +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; params->_ret = iface->StartPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTracking_params *params ) +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; params->_ret = iface->StopPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTrackingForAllItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTrackingForAllItems_params *params ) +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; params->_ret = iface->StopPlaytimeTrackingForAllItems( ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddDependency_params *params ) +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; params->_ret = iface->AddDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveDependency_params *params ) +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; params->_ret = iface->RemoveDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddAppDependency_params *params ) +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; params->_ret = iface->AddAppDependency( params->nPublishedFileID, params->nAppID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAppDependency_params *params ) +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; params->_ret = iface->RemoveAppDependency( params->nPublishedFileID, params->nAppID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetAppDependencies( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetAppDependencies_params *params ) +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; params->_ret = iface->GetAppDependencies( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_DeleteItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_DeleteItem_params *params ) +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; params->_ret = iface->DeleteItem( params->nPublishedFileID ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_ShowWorkshopEULA( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_ShowWorkshopEULA_params *params ) +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; params->_ret = iface->ShowWorkshopEULA( ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetWorkshopEULAStatus( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetWorkshopEULAStatus_params *params ) +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; params->_ret = iface->GetWorkshopEULAStatus( ); + return 0; } -void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserContentDescriptorPreferences( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserContentDescriptorPreferences_params *params ) +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; params->_ret = iface->GetUserContentDescriptorPreferences( params->pvecDescriptors, params->cMaxEntries ); + return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION018.h b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION018.h deleted file mode 100644 index 4c2ee685..00000000 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION018.h +++ /dev/null @@ -1,858 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUserUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t unAccountID; - uint32_t eListType; - uint32_t eMatchingUGCType; - uint32_t eSortOrder; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUserUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eQueryType; - uint32_t eMatchingeMatchingUGCTypeFileType; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - uint32_t unPage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_2_params -{ - void *linux_side; - uint64_t _ret; - uint32_t eQueryType; - uint32_t eMatchingeMatchingUGCTypeFileType; - uint32_t nCreatorAppID; - uint32_t nConsumerAppID; - const char *pchCursor; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_2( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_2_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUGCDetailsRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t unNumPublishedFileIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUGCDetailsRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUGCDetailsRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SendQueryUGCRequest_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SendQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCResult_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - w_SteamUGCDetails_t_128x *pDetails; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCResult_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumTags_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t indexTag; - char *pchValue; - uint32_t cchValueSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplayName_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t indexTag; - char *pchValue; - uint32_t cchValueSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplayName( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplayName_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - char *pchURL; - uint32_t cchURLSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - char *pchMetadata; - uint32_t cchMetadatasize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint64_t *pvecPublishedFileID; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCStatistic_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t eStatType; - uint64_t *pStatValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCStatistic( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCStatistic_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumAdditionalPreviews_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumAdditionalPreviews_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCAdditionalPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t previewIndex; - char *pchURLOrVideoID; - uint32_t cchURLSize; - char *pchOriginalFileName; - uint32_t cchOriginalFileNameSize; - uint32_t *pPreviewType; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCAdditionalPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCAdditionalPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumKeyValueTags_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - uint32_t keyValueTagIndex; - char *pchKey; - uint32_t cchKeySize; - char *pchValue; - uint32_t cchValueSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_2_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - const char *pchKey; - char *pchValue; - uint32_t cchValueSize; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_2( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_2_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCContentDescriptors_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint32_t index; - uint32_t *pvecDescriptors; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCContentDescriptors( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCContentDescriptors_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_ReleaseQueryUGCRequest_params -{ - void *linux_side; - bool _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_ReleaseQueryUGCRequest_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const w_SteamParamStringArray_t *pTagGroups; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pTagName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnOnlyIDs_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnOnlyIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnOnlyIDs( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnOnlyIDs_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnKeyValueTags_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnKeyValueTags; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnLongDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnLongDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnLongDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnMetadata; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnChildren_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnChildren; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnChildren( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnChildren_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnAdditionalPreviews_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnAdditionalPreviews; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnAdditionalPreviews( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnAdditionalPreviews_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnTotalOnly_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bReturnTotalOnly; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnTotalOnly_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeStats_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unDays; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeStats( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeStats_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchLanguage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedResponse_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedResponse_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFilter_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pMatchCloudFileName; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFilter_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetMatchAnyTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bMatchAnyTag; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetMatchAnyTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pSearchText; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDays_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t unDays; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDays_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRange_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t rtStart; - uint32_t rtEnd; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRange( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRange_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRange_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t rtStart; - uint32_t rtEnd; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRange( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRange_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pKey; - const char *pValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RequestUGCDetails_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t unMaxAgeSeconds; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RequestUGCDetails_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateItem_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint32_t eFileType; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nConsumerAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchTitle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchDescription; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLanguage_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchLanguage; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLanguage( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLanguage_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchMetaData; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t eVisibility; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags_params -{ - void *linux_side; - bool _ret; - uint64_t updateHandle; - const w_SteamParamStringArray_t *pTags; - bool bAllowAdminTags; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszContentFolder; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszPreviewFile; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowLegacyUpload_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - bool bAllowLegacyUpload; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowLegacyUpload( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowLegacyUpload_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAllItemKeyValueTags_params -{ - void *linux_side; - bool _ret; - uint64_t handle; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAllItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAllItemKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueTags_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchKey; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueTags_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszPreviewFile; - uint32_t type; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - const char *pszVideoID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - const char *pszPreviewFile; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVideo_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; - const char *pszVideoID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVideo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVideo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t index; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescriptor_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t descid; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescriptor( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescriptor_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveContentDescriptor_params -{ - void *linux_side; - bool _ret; - uint64_t handle; - uint32_t descid; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveContentDescriptor( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveContentDescriptor_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubmitItemUpdate_params -{ - void *linux_side; - uint64_t _ret; - uint64_t handle; - const char *pchChangeNote; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubmitItemUpdate_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemUpdateProgress_params -{ - void *linux_side; - uint32_t _ret; - uint64_t handle; - uint64_t *punBytesProcessed; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemUpdateProgress_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetUserItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - bool bVoteUp; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetUserItemVote_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserItemVote_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserItemVote( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserItemVote_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemToFavorites_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemToFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemToFavorites_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemFromFavorites_params -{ - void *linux_side; - uint64_t _ret; - uint32_t nAppId; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemFromFavorites( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemFromFavorites_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_UnsubscribeItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_UnsubscribeItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetNumSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetNumSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetSubscribedItems_params -{ - void *linux_side; - uint32_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetSubscribedItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemState_params -{ - void *linux_side; - uint32_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemState( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemState_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - uint64_t *punSizeOnDisk; - char *pchFolder; - uint32_t cchFolderSize; - uint32_t *punTimeStamp; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - uint64_t *punBytesDownloaded; - uint64_t *punBytesTotal; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_DownloadItem_params -{ - void *linux_side; - bool _ret; - uint64_t nPublishedFileID; - bool bHighPriority; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_DownloadItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_DownloadItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameServer_params -{ - void *linux_side; - bool _ret; - uint32_t unWorkshopDepotID; - const char *pszFolder; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameServer( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameServer_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SuspendDownloads_params -{ - void *linux_side; - bool bSuspend; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SuspendDownloads( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SuspendDownloads_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartPlaytimeTracking_params -{ - void *linux_side; - uint64_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t unNumPublishedFileIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartPlaytimeTracking_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTracking_params -{ - void *linux_side; - uint64_t _ret; - uint64_t *pvecPublishedFileID; - uint32_t unNumPublishedFileIDs; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTracking( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTracking_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTrackingForAllItems_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTrackingForAllItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTrackingForAllItems_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nParentPublishedFileID; - uint64_t nChildPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nParentPublishedFileID; - uint64_t nChildPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddAppDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t nAppID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddAppDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAppDependency_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; - uint32_t nAppID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAppDependency( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAppDependency_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetAppDependencies_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetAppDependencies( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetAppDependencies_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_DeleteItem_params -{ - void *linux_side; - uint64_t _ret; - uint64_t nPublishedFileID; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_DeleteItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_DeleteItem_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_ShowWorkshopEULA_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_ShowWorkshopEULA( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_ShowWorkshopEULA_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetWorkshopEULAStatus_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetWorkshopEULAStatus( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetWorkshopEULAStatus_params *params ); - -struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserContentDescriptorPreferences_params -{ - void *linux_side; - uint32_t _ret; - uint32_t *pvecDescriptors; - uint32_t cMaxEntries; -}; -extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserContentDescriptorPreferences( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserContentDescriptorPreferences_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001.cpp b/lsteamclient/cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001.cpp index e4ac2d15..63419465 100644 --- a/lsteamclient/cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001.cpp +++ b/lsteamclient/cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001.cpp @@ -1,34 +1,43 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001.h" -void cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendMethod( struct cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendMethod_params *params ) +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; params->_ret = iface->SendMethod( params->pchServiceMethod, params->pRequestBuffer, params->unRequestBufferSize, params->unContext ); + return 0; } -void cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseInfo( struct cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseInfo_params *params ) +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; params->_ret = iface->GetMethodResponseInfo( params->hHandle, params->punResponseSize, params->peResult ); + return 0; } -void cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseData( struct cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseData_params *params ) +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; params->_ret = iface->GetMethodResponseData( params->hHandle, params->pResponseBuffer, params->unResponseBufferSize, params->bAutoRelease ); + return 0; } -void cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_ReleaseMethod( struct cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_ReleaseMethod_params *params ) +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; params->_ret = iface->ReleaseMethod( params->hHandle ); + return 0; } -void cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNotification( struct cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNotification_params *params ) +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; params->_ret = iface->SendNotification( params->pchServiceNotification, params->pNotificationBuffer, params->unNotificationBufferSize ); + return 0; } diff --git a/lsteamclient/cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001.h b/lsteamclient/cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001.h deleted file mode 100644 index dfaeab1a..00000000 --- a/lsteamclient/cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001.h +++ /dev/null @@ -1,62 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendMethod_params -{ - void *linux_side; - uint64_t _ret; - const char *pchServiceMethod; - const void *pRequestBuffer; - uint32_t unRequestBufferSize; - uint64_t unContext; -}; -extern void cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendMethod( struct cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendMethod_params *params ); - -struct cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseInfo_params -{ - void *linux_side; - bool _ret; - uint64_t hHandle; - uint32_t *punResponseSize; - uint32_t *peResult; -}; -extern void cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseInfo( struct cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseInfo_params *params ); - -struct cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseData_params -{ - void *linux_side; - bool _ret; - uint64_t hHandle; - void *pResponseBuffer; - uint32_t unResponseBufferSize; - bool bAutoRelease; -}; -extern void cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseData( struct cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseData_params *params ); - -struct cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_ReleaseMethod_params -{ - void *linux_side; - bool _ret; - uint64_t hHandle; -}; -extern void cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_ReleaseMethod( struct cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_ReleaseMethod_params *params ); - -struct cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNotification_params -{ - void *linux_side; - bool _ret; - const char *pchServiceNotification; - const void *pNotificationBuffer; - uint32_t unNotificationBufferSize; -}; -extern void cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNotification( struct cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNotification_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001.cpp b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001.cpp index 0b92b81c..133c038f 100644 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001.cpp +++ b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001.cpp @@ -1,136 +1,179 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001.h" -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumStats_params *params ) +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; params->_ret = iface->GetNumStats( params->nGameID ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatName( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatName_params *params ) +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; params->_ret = iface->GetStatName( params->nGameID, params->iStat ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatType( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatType_params *params ) +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; params->_ret = iface->GetStatType( params->nGameID, params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumAchievements( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumAchievements_params *params ) +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; params->_ret = iface->GetNumAchievements( params->nGameID ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementName( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementName_params *params ) +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; params->_ret = iface->GetAchievementName( params->nGameID, params->iAchievement ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumGroupAchievements( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumGroupAchievements_params *params ) +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; params->_ret = iface->GetNumGroupAchievements( params->nGameID ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievementName( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievementName_params *params ) +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; params->_ret = iface->GetGroupAchievementName( params->nGameID, params->iAchievement ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_RequestCurrentStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_RequestCurrentStats_params *params ) +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; params->_ret = iface->RequestCurrentStats( params->nGameID ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_params *params ) +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; params->_ret = iface->GetStat( params->nGameID, params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2_params *params ) +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; params->_ret = iface->GetStat( params->nGameID, params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_params *params ) +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; params->_ret = iface->SetStat( params->nGameID, params->pchName, params->nData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2_params *params ) +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; params->_ret = iface->SetStat( params->nGameID, params->pchName, params->fData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvgRateStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvgRateStat_params *params ) +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; params->_ret = iface->UpdateAvgRateStat( params->nGameID, params->pchName, params->flCountThisSession, params->dSessionLength ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievement_params *params ) +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; params->_ret = iface->GetAchievement( params->nGameID, params->pchName, params->pbAchieved ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievement_params *params ) +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; params->_ret = iface->GetGroupAchievement( params->nGameID, params->pchName, params->pbAchieved ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchievement_params *params ) +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; params->_ret = iface->SetAchievement( params->nGameID, params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGroupAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGroupAchievement_params *params ) +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; params->_ret = iface->SetGroupAchievement( params->nGameID, params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_StoreStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_StoreStats_params *params ) +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; params->_ret = iface->StoreStats( params->nGameID ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAchievement_params *params ) +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; params->_ret = iface->ClearAchievement( params->nGameID, params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearGroupAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearGroupAchievement_params *params ) +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; params->_ret = iface->ClearGroupAchievement( params->nGameID, params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementIcon( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementIcon_params *params ) +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; params->_ret = iface->GetAchievementIcon( params->nGameID, params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementDisplayAttribute( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementDisplayAttribute_params *params ) +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; params->_ret = iface->GetAchievementDisplayAttribute( params->nGameID, params->pchName, params->pchKey ); + return 0; } diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001.h b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001.h deleted file mode 100644 index cc589253..00000000 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001.h +++ /dev/null @@ -1,214 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumStats_params -{ - void *linux_side; - uint32_t _ret; - CGameID nGameID; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatName_params -{ - void *linux_side; - const char *_ret; - CGameID nGameID; - uint32_t iStat; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatName( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatName_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatType_params -{ - void *linux_side; - uint32_t _ret; - CGameID nGameID; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatType( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatType_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumAchievements_params -{ - void *linux_side; - uint32_t _ret; - CGameID nGameID; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumAchievements( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumAchievements_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementName_params -{ - void *linux_side; - const char *_ret; - CGameID nGameID; - uint32_t iAchievement; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementName( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementName_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumGroupAchievements_params -{ - void *linux_side; - uint32_t _ret; - CGameID nGameID; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumGroupAchievements( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumGroupAchievements_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievementName_params -{ - void *linux_side; - const char *_ret; - CGameID nGameID; - uint32_t iAchievement; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievementName( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievementName_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_RequestCurrentStats_params -{ - void *linux_side; - bool _ret; - CGameID nGameID; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_RequestCurrentStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_RequestCurrentStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_params -{ - void *linux_side; - bool _ret; - CGameID nGameID; - const char *pchName; - int32_t *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2_params -{ - void *linux_side; - bool _ret; - CGameID nGameID; - const char *pchName; - float *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_params -{ - void *linux_side; - bool _ret; - CGameID nGameID; - const char *pchName; - int32_t nData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2_params -{ - void *linux_side; - bool _ret; - CGameID nGameID; - const char *pchName; - float fData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvgRateStat_params -{ - void *linux_side; - bool _ret; - CGameID nGameID; - const char *pchName; - float flCountThisSession; - double dSessionLength; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvgRateStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvgRateStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievement_params -{ - void *linux_side; - bool _ret; - CGameID nGameID; - const char *pchName; - bool *pbAchieved; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievement_params -{ - void *linux_side; - bool _ret; - CGameID nGameID; - const char *pchName; - bool *pbAchieved; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchievement_params -{ - void *linux_side; - bool _ret; - CGameID nGameID; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGroupAchievement_params -{ - void *linux_side; - bool _ret; - CGameID nGameID; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGroupAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGroupAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_StoreStats_params -{ - void *linux_side; - bool _ret; - CGameID nGameID; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_StoreStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_StoreStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAchievement_params -{ - void *linux_side; - bool _ret; - CGameID nGameID; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearGroupAchievement_params -{ - void *linux_side; - bool _ret; - CGameID nGameID; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearGroupAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearGroupAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementIcon_params -{ - void *linux_side; - int32_t _ret; - CGameID nGameID; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementIcon( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementIcon_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementDisplayAttribute_params -{ - void *linux_side; - const char *_ret; - CGameID nGameID; - const char *pchName; - const char *pchKey; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementDisplayAttribute( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementDisplayAttribute_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002.cpp b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002.cpp index 3c112594..7bc6d5ed 100644 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002.cpp +++ b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002.cpp @@ -1,112 +1,147 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002.h" -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumStats_params *params ) +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; params->_ret = iface->GetNumStats( params->nGameID ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatName( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatName_params *params ) +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; params->_ret = iface->GetStatName( params->nGameID, params->iStat ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatType( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatType_params *params ) +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; params->_ret = iface->GetStatType( params->nGameID, params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumAchievements( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumAchievements_params *params ) +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; params->_ret = iface->GetNumAchievements( params->nGameID ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementName( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementName_params *params ) +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; params->_ret = iface->GetAchievementName( params->nGameID, params->iAchievement ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_RequestCurrentStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_RequestCurrentStats_params *params ) +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; params->_ret = iface->RequestCurrentStats( params->nGameID ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_params *params ) +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; params->_ret = iface->GetStat( params->nGameID, params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2_params *params ) +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; params->_ret = iface->GetStat( params->nGameID, params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_params *params ) +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; params->_ret = iface->SetStat( params->nGameID, params->pchName, params->nData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2_params *params ) +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; params->_ret = iface->SetStat( params->nGameID, params->pchName, params->fData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvgRateStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvgRateStat_params *params ) +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; params->_ret = iface->UpdateAvgRateStat( params->nGameID, params->pchName, params->flCountThisSession, params->dSessionLength ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievement_params *params ) +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; params->_ret = iface->GetAchievement( params->nGameID, params->pchName, params->pbAchieved ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchievement_params *params ) +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; params->_ret = iface->SetAchievement( params->nGameID, params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAchievement_params *params ) +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; params->_ret = iface->ClearAchievement( params->nGameID, params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_StoreStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_StoreStats_params *params ) +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; params->_ret = iface->StoreStats( params->nGameID ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementIcon( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementIcon_params *params ) +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; params->_ret = iface->GetAchievementIcon( params->nGameID, params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementDisplayAttribute( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementDisplayAttribute_params *params ) +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; params->_ret = iface->GetAchievementDisplayAttribute( params->nGameID, params->pchName, params->pchKey ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_IndicateAchievementProgress( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_IndicateAchievementProgress_params *params ) +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; params->_ret = iface->IndicateAchievementProgress( params->nGameID, params->pchName, params->nCurProgress, params->nMaxProgress ); + return 0; } diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002.h b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002.h deleted file mode 100644 index 78151b7c..00000000 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002.h +++ /dev/null @@ -1,180 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumStats_params -{ - void *linux_side; - uint32_t _ret; - CGameID nGameID; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatName_params -{ - void *linux_side; - const char *_ret; - CGameID nGameID; - uint32_t iStat; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatName( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatName_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatType_params -{ - void *linux_side; - uint32_t _ret; - CGameID nGameID; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatType( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatType_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumAchievements_params -{ - void *linux_side; - uint32_t _ret; - CGameID nGameID; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumAchievements( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumAchievements_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementName_params -{ - void *linux_side; - const char *_ret; - CGameID nGameID; - uint32_t iAchievement; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementName( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementName_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_RequestCurrentStats_params -{ - void *linux_side; - bool _ret; - CGameID nGameID; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_RequestCurrentStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_RequestCurrentStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_params -{ - void *linux_side; - bool _ret; - CGameID nGameID; - const char *pchName; - int32_t *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2_params -{ - void *linux_side; - bool _ret; - CGameID nGameID; - const char *pchName; - float *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_params -{ - void *linux_side; - bool _ret; - CGameID nGameID; - const char *pchName; - int32_t nData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2_params -{ - void *linux_side; - bool _ret; - CGameID nGameID; - const char *pchName; - float fData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvgRateStat_params -{ - void *linux_side; - bool _ret; - CGameID nGameID; - const char *pchName; - float flCountThisSession; - double dSessionLength; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvgRateStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvgRateStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievement_params -{ - void *linux_side; - bool _ret; - CGameID nGameID; - const char *pchName; - bool *pbAchieved; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchievement_params -{ - void *linux_side; - bool _ret; - CGameID nGameID; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAchievement_params -{ - void *linux_side; - bool _ret; - CGameID nGameID; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_StoreStats_params -{ - void *linux_side; - bool _ret; - CGameID nGameID; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_StoreStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_StoreStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementIcon_params -{ - void *linux_side; - int32_t _ret; - CGameID nGameID; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementIcon( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementIcon_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementDisplayAttribute_params -{ - void *linux_side; - const char *_ret; - CGameID nGameID; - const char *pchName; - const char *pchKey; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementDisplayAttribute( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementDisplayAttribute_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_IndicateAchievementProgress_params -{ - void *linux_side; - bool _ret; - CGameID nGameID; - const char *pchName; - uint32_t nCurProgress; - uint32_t nMaxProgress; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_IndicateAchievementProgress( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_IndicateAchievementProgress_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003.cpp b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003.cpp index 65205c06..056144b0 100644 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003.cpp +++ b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003.cpp @@ -1,82 +1,107 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003.h" -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_RequestCurrentStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_RequestCurrentStats_params *params ) +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; params->_ret = iface->RequestCurrentStats( ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_params *params ) +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; params->_ret = iface->GetStat( params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2_params *params ) +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; params->_ret = iface->GetStat( params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_params *params ) +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; params->_ret = iface->SetStat( params->pchName, params->nData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2_params *params ) +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; params->_ret = iface->SetStat( params->pchName, params->fData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvgRateStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvgRateStat_params *params ) +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; params->_ret = iface->UpdateAvgRateStat( params->pchName, params->flCountThisSession, params->dSessionLength ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievement_params *params ) +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; params->_ret = iface->GetAchievement( params->pchName, params->pbAchieved ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetAchievement_params *params ) +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; params->_ret = iface->SetAchievement( params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_ClearAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_ClearAchievement_params *params ) +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; params->_ret = iface->ClearAchievement( params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_StoreStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_StoreStats_params *params ) +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; params->_ret = iface->StoreStats( ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementIcon( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementIcon_params *params ) +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; params->_ret = iface->GetAchievementIcon( params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementDisplayAttribute( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementDisplayAttribute_params *params ) +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; params->_ret = iface->GetAchievementDisplayAttribute( params->pchName, params->pchKey ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementProgress( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementProgress_params *params ) +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; params->_ret = iface->IndicateAchievementProgress( params->pchName, params->nCurProgress, params->nMaxProgress ); + return 0; } diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003.h b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003.h deleted file mode 100644 index dd6e3e48..00000000 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003.h +++ /dev/null @@ -1,124 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_RequestCurrentStats_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_RequestCurrentStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_RequestCurrentStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_params -{ - void *linux_side; - bool _ret; - const char *pchName; - int32_t *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_params -{ - void *linux_side; - bool _ret; - const char *pchName; - int32_t nData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float fData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvgRateStat_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float flCountThisSession; - double dSessionLength; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvgRateStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvgRateStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievement_params -{ - void *linux_side; - bool _ret; - const char *pchName; - bool *pbAchieved; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetAchievement_params -{ - void *linux_side; - bool _ret; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_ClearAchievement_params -{ - void *linux_side; - bool _ret; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_ClearAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_ClearAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_StoreStats_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_StoreStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_StoreStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementIcon_params -{ - void *linux_side; - int32_t _ret; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementIcon( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementIcon_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementDisplayAttribute_params -{ - void *linux_side; - const char *_ret; - const char *pchName; - const char *pchKey; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementDisplayAttribute( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementDisplayAttribute_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementProgress_params -{ - void *linux_side; - bool _ret; - const char *pchName; - uint32_t nCurProgress; - uint32_t nMaxProgress; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementProgress( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementProgress_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004.cpp b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004.cpp index 8aa1c35a..9c763ac9 100644 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004.cpp +++ b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004.cpp @@ -1,106 +1,139 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004.h" -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestCurrentStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestCurrentStats_params *params ) +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; params->_ret = iface->RequestCurrentStats( ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_params *params ) +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; params->_ret = iface->GetStat( params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2_params *params ) +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; params->_ret = iface->GetStat( params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_params *params ) +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; params->_ret = iface->SetStat( params->pchName, params->nData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_2_params *params ) +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; params->_ret = iface->SetStat( params->pchName, params->fData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvgRateStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvgRateStat_params *params ) +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; params->_ret = iface->UpdateAvgRateStat( params->pchName, params->flCountThisSession, params->dSessionLength ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievement_params *params ) +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; params->_ret = iface->GetAchievement( params->pchName, params->pbAchieved ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetAchievement_params *params ) +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; params->_ret = iface->SetAchievement( params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_ClearAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_ClearAchievement_params *params ) +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; params->_ret = iface->ClearAchievement( params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_StoreStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_StoreStats_params *params ) +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; params->_ret = iface->StoreStats( ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementIcon( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementIcon_params *params ) +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; params->_ret = iface->GetAchievementIcon( params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementDisplayAttribute( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementDisplayAttribute_params *params ) +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; params->_ret = iface->GetAchievementDisplayAttribute( params->pchName, params->pchKey ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_IndicateAchievementProgress( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_IndicateAchievementProgress_params *params ) +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; params->_ret = iface->IndicateAchievementProgress( params->pchName, params->nCurProgress, params->nMaxProgress ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestUserStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestUserStats_params *params ) +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; params->_ret = iface->RequestUserStats( params->steamIDUser ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_params *params ) +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; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2_params *params ) +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; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserAchievement_params *params ) +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; params->_ret = iface->GetUserAchievement( params->steamIDUser, params->pchName, params->pbAchieved ); + return 0; } diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004.h b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004.h deleted file mode 100644 index d9506af4..00000000 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004.h +++ /dev/null @@ -1,162 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestCurrentStats_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestCurrentStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestCurrentStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_params -{ - void *linux_side; - bool _ret; - const char *pchName; - int32_t *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_params -{ - void *linux_side; - bool _ret; - const char *pchName; - int32_t nData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_2_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float fData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvgRateStat_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float flCountThisSession; - double dSessionLength; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvgRateStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvgRateStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievement_params -{ - void *linux_side; - bool _ret; - const char *pchName; - bool *pbAchieved; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetAchievement_params -{ - void *linux_side; - bool _ret; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_ClearAchievement_params -{ - void *linux_side; - bool _ret; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_ClearAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_ClearAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_StoreStats_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_StoreStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_StoreStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementIcon_params -{ - void *linux_side; - int32_t _ret; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementIcon( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementIcon_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementDisplayAttribute_params -{ - void *linux_side; - const char *_ret; - const char *pchName; - const char *pchKey; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementDisplayAttribute( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementDisplayAttribute_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_IndicateAchievementProgress_params -{ - void *linux_side; - bool _ret; - const char *pchName; - uint32_t nCurProgress; - uint32_t nMaxProgress; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_IndicateAchievementProgress( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_IndicateAchievementProgress_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestUserStats_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDUser; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestUserStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestUserStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - int32_t *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - float *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserAchievement_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - bool *pbAchieved; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserAchievement_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005.cpp b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005.cpp index e81c6194..8108c2a7 100644 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005.cpp +++ b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005.cpp @@ -1,166 +1,219 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005.h" -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestCurrentStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestCurrentStats_params *params ) +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; params->_ret = iface->RequestCurrentStats( ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_params *params ) +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; params->_ret = iface->GetStat( params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2_params *params ) +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; params->_ret = iface->GetStat( params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_params *params ) +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; params->_ret = iface->SetStat( params->pchName, params->nData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_2_params *params ) +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; params->_ret = iface->SetStat( params->pchName, params->fData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvgRateStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvgRateStat_params *params ) +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; params->_ret = iface->UpdateAvgRateStat( params->pchName, params->flCountThisSession, params->dSessionLength ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievement_params *params ) +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; params->_ret = iface->GetAchievement( params->pchName, params->pbAchieved ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetAchievement_params *params ) +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; params->_ret = iface->SetAchievement( params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ClearAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ClearAchievement_params *params ) +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; params->_ret = iface->ClearAchievement( params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_StoreStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_StoreStats_params *params ) +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; params->_ret = iface->StoreStats( ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementIcon( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementIcon_params *params ) +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; params->_ret = iface->GetAchievementIcon( params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementDisplayAttribute( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementDisplayAttribute_params *params ) +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; params->_ret = iface->GetAchievementDisplayAttribute( params->pchName, params->pchKey ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_IndicateAchievementProgress( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_IndicateAchievementProgress_params *params ) +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; params->_ret = iface->IndicateAchievementProgress( params->pchName, params->nCurProgress, params->nMaxProgress ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestUserStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestUserStats_params *params ) +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; params->_ret = iface->RequestUserStats( params->steamIDUser ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_params *params ) +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; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_2_params *params ) +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; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserAchievement_params *params ) +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; params->_ret = iface->GetUserAchievement( params->steamIDUser, params->pchName, params->pbAchieved ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ResetAllStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ResetAllStats_params *params ) +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; params->_ret = iface->ResetAllStats( params->bAchievementsToo ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindOrCreateLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindOrCreateLeaderboard_params *params ) +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; params->_ret = iface->FindOrCreateLeaderboard( params->pchLeaderboardName, params->eLeaderboardSortMethod, params->eLeaderboardDisplayType ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindLeaderboard_params *params ) +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; params->_ret = iface->FindLeaderboard( params->pchLeaderboardName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardName( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardName_params *params ) +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; params->_ret = iface->GetLeaderboardName( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardEntryCount( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardEntryCount_params *params ) +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; params->_ret = iface->GetLeaderboardEntryCount( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardSortMethod( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardSortMethod_params *params ) +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; params->_ret = iface->GetLeaderboardSortMethod( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardDisplayType( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardDisplayType_params *params ) +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; params->_ret = iface->GetLeaderboardDisplayType( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_DownloadLeaderboardEntries( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_DownloadLeaderboardEntries_params *params ) +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; params->_ret = iface->DownloadLeaderboardEntries( params->hSteamLeaderboard, params->eLeaderboardDataRequest, params->nRangeStart, params->nRangeEnd ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownloadedLeaderboardEntry( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownloadedLeaderboardEntry_params *params ) +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; params->_ret = iface->GetDownloadedLeaderboardEntry( params->hSteamLeaderboardEntries, params->index, params->pLeaderboardEntry, params->pDetails, params->cDetailsMax ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UploadLeaderboardScore( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UploadLeaderboardScore_params *params ) +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; params->_ret = iface->UploadLeaderboardScore( params->hSteamLeaderboard, params->nScore, params->pScoreDetails, params->cScoreDetailsCount ); + return 0; } diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005.h b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005.h deleted file mode 100644 index 5c9598d1..00000000 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005.h +++ /dev/null @@ -1,254 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestCurrentStats_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestCurrentStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestCurrentStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_params -{ - void *linux_side; - bool _ret; - const char *pchName; - int32_t *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_params -{ - void *linux_side; - bool _ret; - const char *pchName; - int32_t nData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_2_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float fData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvgRateStat_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float flCountThisSession; - double dSessionLength; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvgRateStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvgRateStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievement_params -{ - void *linux_side; - bool _ret; - const char *pchName; - bool *pbAchieved; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetAchievement_params -{ - void *linux_side; - bool _ret; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ClearAchievement_params -{ - void *linux_side; - bool _ret; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ClearAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ClearAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_StoreStats_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_StoreStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_StoreStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementIcon_params -{ - void *linux_side; - int32_t _ret; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementIcon( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementIcon_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementDisplayAttribute_params -{ - void *linux_side; - const char *_ret; - const char *pchName; - const char *pchKey; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementDisplayAttribute( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementDisplayAttribute_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_IndicateAchievementProgress_params -{ - void *linux_side; - bool _ret; - const char *pchName; - uint32_t nCurProgress; - uint32_t nMaxProgress; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_IndicateAchievementProgress( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_IndicateAchievementProgress_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestUserStats_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDUser; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestUserStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestUserStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - int32_t *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_2_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - float *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserAchievement_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - bool *pbAchieved; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ResetAllStats_params -{ - void *linux_side; - bool _ret; - bool bAchievementsToo; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ResetAllStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ResetAllStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindOrCreateLeaderboard_params -{ - void *linux_side; - uint64_t _ret; - const char *pchLeaderboardName; - uint32_t eLeaderboardSortMethod; - uint32_t eLeaderboardDisplayType; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindOrCreateLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindOrCreateLeaderboard_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindLeaderboard_params -{ - void *linux_side; - uint64_t _ret; - const char *pchLeaderboardName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindLeaderboard_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardName_params -{ - void *linux_side; - const char *_ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardName( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardName_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardEntryCount_params -{ - void *linux_side; - int32_t _ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardEntryCount( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardEntryCount_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardSortMethod_params -{ - void *linux_side; - uint32_t _ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardSortMethod( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardSortMethod_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardDisplayType_params -{ - void *linux_side; - uint32_t _ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardDisplayType( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardDisplayType_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_DownloadLeaderboardEntries_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hSteamLeaderboard; - uint32_t eLeaderboardDataRequest; - int32_t nRangeStart; - int32_t nRangeEnd; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_DownloadLeaderboardEntries( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_DownloadLeaderboardEntries_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownloadedLeaderboardEntry_params -{ - void *linux_side; - bool _ret; - uint64_t hSteamLeaderboardEntries; - int32_t index; - w_LeaderboardEntry_t_104 *pLeaderboardEntry; - int32_t *pDetails; - int32_t cDetailsMax; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownloadedLeaderboardEntry( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownloadedLeaderboardEntry_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UploadLeaderboardScore_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hSteamLeaderboard; - int32_t nScore; - int32_t *pScoreDetails; - int32_t cScoreDetailsCount; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UploadLeaderboardScore( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UploadLeaderboardScore_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006.cpp b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006.cpp index 8262946c..e29949e9 100644 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006.cpp +++ b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006.cpp @@ -1,172 +1,227 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006.h" -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestCurrentStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestCurrentStats_params *params ) +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; params->_ret = iface->RequestCurrentStats( ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_params *params ) +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; params->_ret = iface->GetStat( params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2_params *params ) +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; params->_ret = iface->GetStat( params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_params *params ) +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; params->_ret = iface->SetStat( params->pchName, params->nData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_2_params *params ) +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; params->_ret = iface->SetStat( params->pchName, params->fData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvgRateStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvgRateStat_params *params ) +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; params->_ret = iface->UpdateAvgRateStat( params->pchName, params->flCountThisSession, params->dSessionLength ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievement_params *params ) +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; params->_ret = iface->GetAchievement( params->pchName, params->pbAchieved ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetAchievement_params *params ) +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; params->_ret = iface->SetAchievement( params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ClearAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ClearAchievement_params *params ) +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; params->_ret = iface->ClearAchievement( params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_StoreStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_StoreStats_params *params ) +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; params->_ret = iface->StoreStats( ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementIcon( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementIcon_params *params ) +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; params->_ret = iface->GetAchievementIcon( params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementDisplayAttribute( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementDisplayAttribute_params *params ) +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; params->_ret = iface->GetAchievementDisplayAttribute( params->pchName, params->pchKey ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_IndicateAchievementProgress( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_IndicateAchievementProgress_params *params ) +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; params->_ret = iface->IndicateAchievementProgress( params->pchName, params->nCurProgress, params->nMaxProgress ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestUserStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestUserStats_params *params ) +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; params->_ret = iface->RequestUserStats( params->steamIDUser ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_params *params ) +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; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_2_params *params ) +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; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserAchievement_params *params ) +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; params->_ret = iface->GetUserAchievement( params->steamIDUser, params->pchName, params->pbAchieved ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ResetAllStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ResetAllStats_params *params ) +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; params->_ret = iface->ResetAllStats( params->bAchievementsToo ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindOrCreateLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindOrCreateLeaderboard_params *params ) +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; params->_ret = iface->FindOrCreateLeaderboard( params->pchLeaderboardName, params->eLeaderboardSortMethod, params->eLeaderboardDisplayType ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindLeaderboard_params *params ) +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; params->_ret = iface->FindLeaderboard( params->pchLeaderboardName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardName( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardName_params *params ) +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; params->_ret = iface->GetLeaderboardName( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardEntryCount( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardEntryCount_params *params ) +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; params->_ret = iface->GetLeaderboardEntryCount( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardSortMethod( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardSortMethod_params *params ) +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; params->_ret = iface->GetLeaderboardSortMethod( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardDisplayType( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardDisplayType_params *params ) +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; params->_ret = iface->GetLeaderboardDisplayType( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_DownloadLeaderboardEntries( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_DownloadLeaderboardEntries_params *params ) +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; params->_ret = iface->DownloadLeaderboardEntries( params->hSteamLeaderboard, params->eLeaderboardDataRequest, params->nRangeStart, params->nRangeEnd ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetDownloadedLeaderboardEntry( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetDownloadedLeaderboardEntry_params *params ) +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; params->_ret = iface->GetDownloadedLeaderboardEntry( params->hSteamLeaderboardEntries, params->index, params->pLeaderboardEntry, params->pDetails, params->cDetailsMax ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UploadLeaderboardScore( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UploadLeaderboardScore_params *params ) +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; params->_ret = iface->UploadLeaderboardScore( params->hSteamLeaderboard, params->eLeaderboardUploadScoreMethod, params->nScore, params->pScoreDetails, params->cScoreDetailsCount ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetNumberOfCurrentPlayers( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetNumberOfCurrentPlayers_params *params ) +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; params->_ret = iface->GetNumberOfCurrentPlayers( ); + return 0; } diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006.h b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006.h deleted file mode 100644 index 69c3f1fc..00000000 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006.h +++ /dev/null @@ -1,262 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestCurrentStats_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestCurrentStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestCurrentStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_params -{ - void *linux_side; - bool _ret; - const char *pchName; - int32_t *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_params -{ - void *linux_side; - bool _ret; - const char *pchName; - int32_t nData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_2_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float fData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvgRateStat_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float flCountThisSession; - double dSessionLength; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvgRateStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvgRateStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievement_params -{ - void *linux_side; - bool _ret; - const char *pchName; - bool *pbAchieved; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetAchievement_params -{ - void *linux_side; - bool _ret; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ClearAchievement_params -{ - void *linux_side; - bool _ret; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ClearAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ClearAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_StoreStats_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_StoreStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_StoreStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementIcon_params -{ - void *linux_side; - int32_t _ret; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementIcon( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementIcon_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementDisplayAttribute_params -{ - void *linux_side; - const char *_ret; - const char *pchName; - const char *pchKey; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementDisplayAttribute( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementDisplayAttribute_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_IndicateAchievementProgress_params -{ - void *linux_side; - bool _ret; - const char *pchName; - uint32_t nCurProgress; - uint32_t nMaxProgress; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_IndicateAchievementProgress( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_IndicateAchievementProgress_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestUserStats_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDUser; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestUserStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestUserStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - int32_t *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_2_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - float *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserAchievement_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - bool *pbAchieved; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ResetAllStats_params -{ - void *linux_side; - bool _ret; - bool bAchievementsToo; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ResetAllStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ResetAllStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindOrCreateLeaderboard_params -{ - void *linux_side; - uint64_t _ret; - const char *pchLeaderboardName; - uint32_t eLeaderboardSortMethod; - uint32_t eLeaderboardDisplayType; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindOrCreateLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindOrCreateLeaderboard_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindLeaderboard_params -{ - void *linux_side; - uint64_t _ret; - const char *pchLeaderboardName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindLeaderboard_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardName_params -{ - void *linux_side; - const char *_ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardName( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardName_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardEntryCount_params -{ - void *linux_side; - int32_t _ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardEntryCount( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardEntryCount_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardSortMethod_params -{ - void *linux_side; - uint32_t _ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardSortMethod( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardSortMethod_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardDisplayType_params -{ - void *linux_side; - uint32_t _ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardDisplayType( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardDisplayType_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_DownloadLeaderboardEntries_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hSteamLeaderboard; - uint32_t eLeaderboardDataRequest; - int32_t nRangeStart; - int32_t nRangeEnd; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_DownloadLeaderboardEntries( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_DownloadLeaderboardEntries_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetDownloadedLeaderboardEntry_params -{ - void *linux_side; - bool _ret; - uint64_t hSteamLeaderboardEntries; - int32_t index; - w_LeaderboardEntry_t_104 *pLeaderboardEntry; - int32_t *pDetails; - int32_t cDetailsMax; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetDownloadedLeaderboardEntry( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetDownloadedLeaderboardEntry_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UploadLeaderboardScore_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hSteamLeaderboard; - uint32_t eLeaderboardUploadScoreMethod; - int32_t nScore; - const int32_t *pScoreDetails; - int32_t cScoreDetailsCount; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UploadLeaderboardScore( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UploadLeaderboardScore_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetNumberOfCurrentPlayers_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetNumberOfCurrentPlayers( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetNumberOfCurrentPlayers_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007.cpp b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007.cpp index f5942f40..528f6344 100644 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007.cpp +++ b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007.cpp @@ -1,184 +1,243 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007.h" -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestCurrentStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestCurrentStats_params *params ) +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; params->_ret = iface->RequestCurrentStats( ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_params *params ) +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; params->_ret = iface->GetStat( params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2_params *params ) +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; params->_ret = iface->GetStat( params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_params *params ) +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; params->_ret = iface->SetStat( params->pchName, params->nData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_2_params *params ) +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; params->_ret = iface->SetStat( params->pchName, params->fData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvgRateStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvgRateStat_params *params ) +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; params->_ret = iface->UpdateAvgRateStat( params->pchName, params->flCountThisSession, params->dSessionLength ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievement_params *params ) +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; params->_ret = iface->GetAchievement( params->pchName, params->pbAchieved ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetAchievement_params *params ) +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; params->_ret = iface->SetAchievement( params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ClearAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ClearAchievement_params *params ) +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; params->_ret = iface->ClearAchievement( params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementAndUnlockTime( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementAndUnlockTime_params *params ) +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; params->_ret = iface->GetAchievementAndUnlockTime( params->pchName, params->pbAchieved, params->punUnlockTime ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_StoreStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_StoreStats_params *params ) +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; params->_ret = iface->StoreStats( ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementIcon( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementIcon_params *params ) +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; params->_ret = iface->GetAchievementIcon( params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementDisplayAttribute( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementDisplayAttribute_params *params ) +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; params->_ret = iface->GetAchievementDisplayAttribute( params->pchName, params->pchKey ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_IndicateAchievementProgress( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_IndicateAchievementProgress_params *params ) +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; params->_ret = iface->IndicateAchievementProgress( params->pchName, params->nCurProgress, params->nMaxProgress ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestUserStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestUserStats_params *params ) +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; params->_ret = iface->RequestUserStats( params->steamIDUser ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_params *params ) +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; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_2_params *params ) +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; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievement_params *params ) +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; params->_ret = iface->GetUserAchievement( params->steamIDUser, params->pchName, params->pbAchieved ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievementAndUnlockTime( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievementAndUnlockTime_params *params ) +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; params->_ret = iface->GetUserAchievementAndUnlockTime( params->steamIDUser, params->pchName, params->pbAchieved, params->punUnlockTime ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ResetAllStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ResetAllStats_params *params ) +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; params->_ret = iface->ResetAllStats( params->bAchievementsToo ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindOrCreateLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindOrCreateLeaderboard_params *params ) +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; params->_ret = iface->FindOrCreateLeaderboard( params->pchLeaderboardName, params->eLeaderboardSortMethod, params->eLeaderboardDisplayType ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindLeaderboard_params *params ) +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; params->_ret = iface->FindLeaderboard( params->pchLeaderboardName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardName( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardName_params *params ) +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; params->_ret = iface->GetLeaderboardName( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardEntryCount( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardEntryCount_params *params ) +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; params->_ret = iface->GetLeaderboardEntryCount( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardSortMethod( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardSortMethod_params *params ) +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; params->_ret = iface->GetLeaderboardSortMethod( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardDisplayType( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardDisplayType_params *params ) +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; params->_ret = iface->GetLeaderboardDisplayType( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_DownloadLeaderboardEntries( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_DownloadLeaderboardEntries_params *params ) +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; params->_ret = iface->DownloadLeaderboardEntries( params->hSteamLeaderboard, params->eLeaderboardDataRequest, params->nRangeStart, params->nRangeEnd ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetDownloadedLeaderboardEntry( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetDownloadedLeaderboardEntry_params *params ) +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; params->_ret = iface->GetDownloadedLeaderboardEntry( params->hSteamLeaderboardEntries, params->index, params->pLeaderboardEntry, params->pDetails, params->cDetailsMax ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UploadLeaderboardScore( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UploadLeaderboardScore_params *params ) +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; params->_ret = iface->UploadLeaderboardScore( params->hSteamLeaderboard, params->eLeaderboardUploadScoreMethod, params->nScore, params->pScoreDetails, params->cScoreDetailsCount ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetNumberOfCurrentPlayers( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetNumberOfCurrentPlayers_params *params ) +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; params->_ret = iface->GetNumberOfCurrentPlayers( ); + return 0; } diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007.h b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007.h deleted file mode 100644 index eabea8df..00000000 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007.h +++ /dev/null @@ -1,283 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestCurrentStats_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestCurrentStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestCurrentStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_params -{ - void *linux_side; - bool _ret; - const char *pchName; - int32_t *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_params -{ - void *linux_side; - bool _ret; - const char *pchName; - int32_t nData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_2_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float fData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvgRateStat_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float flCountThisSession; - double dSessionLength; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvgRateStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvgRateStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievement_params -{ - void *linux_side; - bool _ret; - const char *pchName; - bool *pbAchieved; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetAchievement_params -{ - void *linux_side; - bool _ret; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ClearAchievement_params -{ - void *linux_side; - bool _ret; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ClearAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ClearAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementAndUnlockTime_params -{ - void *linux_side; - bool _ret; - const char *pchName; - bool *pbAchieved; - uint32_t *punUnlockTime; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementAndUnlockTime( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementAndUnlockTime_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_StoreStats_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_StoreStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_StoreStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementIcon_params -{ - void *linux_side; - int32_t _ret; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementIcon( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementIcon_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementDisplayAttribute_params -{ - void *linux_side; - const char *_ret; - const char *pchName; - const char *pchKey; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementDisplayAttribute( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementDisplayAttribute_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_IndicateAchievementProgress_params -{ - void *linux_side; - bool _ret; - const char *pchName; - uint32_t nCurProgress; - uint32_t nMaxProgress; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_IndicateAchievementProgress( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_IndicateAchievementProgress_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestUserStats_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDUser; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestUserStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestUserStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - int32_t *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_2_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - float *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievement_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - bool *pbAchieved; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievementAndUnlockTime_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - bool *pbAchieved; - uint32_t *punUnlockTime; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievementAndUnlockTime( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievementAndUnlockTime_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ResetAllStats_params -{ - void *linux_side; - bool _ret; - bool bAchievementsToo; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ResetAllStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ResetAllStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindOrCreateLeaderboard_params -{ - void *linux_side; - uint64_t _ret; - const char *pchLeaderboardName; - uint32_t eLeaderboardSortMethod; - uint32_t eLeaderboardDisplayType; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindOrCreateLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindOrCreateLeaderboard_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindLeaderboard_params -{ - void *linux_side; - uint64_t _ret; - const char *pchLeaderboardName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindLeaderboard_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardName_params -{ - void *linux_side; - const char *_ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardName( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardName_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardEntryCount_params -{ - void *linux_side; - int32_t _ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardEntryCount( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardEntryCount_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardSortMethod_params -{ - void *linux_side; - uint32_t _ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardSortMethod( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardSortMethod_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardDisplayType_params -{ - void *linux_side; - uint32_t _ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardDisplayType( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardDisplayType_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_DownloadLeaderboardEntries_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hSteamLeaderboard; - uint32_t eLeaderboardDataRequest; - int32_t nRangeStart; - int32_t nRangeEnd; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_DownloadLeaderboardEntries( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_DownloadLeaderboardEntries_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetDownloadedLeaderboardEntry_params -{ - void *linux_side; - bool _ret; - uint64_t hSteamLeaderboardEntries; - int32_t index; - w_LeaderboardEntry_t_104 *pLeaderboardEntry; - int32_t *pDetails; - int32_t cDetailsMax; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetDownloadedLeaderboardEntry( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetDownloadedLeaderboardEntry_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UploadLeaderboardScore_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hSteamLeaderboard; - uint32_t eLeaderboardUploadScoreMethod; - int32_t nScore; - const int32_t *pScoreDetails; - int32_t cScoreDetailsCount; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UploadLeaderboardScore( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UploadLeaderboardScore_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetNumberOfCurrentPlayers_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetNumberOfCurrentPlayers( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetNumberOfCurrentPlayers_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008.cpp b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008.cpp index e22de718..14bf8f0d 100644 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008.cpp +++ b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008.cpp @@ -1,192 +1,253 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008.h" -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestCurrentStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestCurrentStats_params *params ) +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; params->_ret = iface->RequestCurrentStats( ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_params *params ) +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; params->_ret = iface->GetStat( params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2_params *params ) +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; params->_ret = iface->GetStat( params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_params *params ) +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; params->_ret = iface->SetStat( params->pchName, params->nData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_2_params *params ) +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; params->_ret = iface->SetStat( params->pchName, params->fData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvgRateStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvgRateStat_params *params ) +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; params->_ret = iface->UpdateAvgRateStat( params->pchName, params->flCountThisSession, params->dSessionLength ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievement_params *params ) +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; params->_ret = iface->GetAchievement( params->pchName, params->pbAchieved ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetAchievement_params *params ) +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; params->_ret = iface->SetAchievement( params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ClearAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ClearAchievement_params *params ) +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; params->_ret = iface->ClearAchievement( params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementAndUnlockTime( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementAndUnlockTime_params *params ) +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; params->_ret = iface->GetAchievementAndUnlockTime( params->pchName, params->pbAchieved, params->punUnlockTime ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_StoreStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_StoreStats_params *params ) +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; params->_ret = iface->StoreStats( ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementIcon( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementIcon_params *params ) +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; params->_ret = iface->GetAchievementIcon( params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementDisplayAttribute( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementDisplayAttribute_params *params ) +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; params->_ret = iface->GetAchievementDisplayAttribute( params->pchName, params->pchKey ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_IndicateAchievementProgress( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_IndicateAchievementProgress_params *params ) +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; params->_ret = iface->IndicateAchievementProgress( params->pchName, params->nCurProgress, params->nMaxProgress ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestUserStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestUserStats_params *params ) +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; params->_ret = iface->RequestUserStats( params->steamIDUser ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_params *params ) +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; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_2_params *params ) +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; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievement_params *params ) +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; params->_ret = iface->GetUserAchievement( params->steamIDUser, params->pchName, params->pbAchieved ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievementAndUnlockTime( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievementAndUnlockTime_params *params ) +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; params->_ret = iface->GetUserAchievementAndUnlockTime( params->steamIDUser, params->pchName, params->pbAchieved, params->punUnlockTime ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ResetAllStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ResetAllStats_params *params ) +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; params->_ret = iface->ResetAllStats( params->bAchievementsToo ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindOrCreateLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindOrCreateLeaderboard_params *params ) +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; params->_ret = iface->FindOrCreateLeaderboard( params->pchLeaderboardName, params->eLeaderboardSortMethod, params->eLeaderboardDisplayType ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindLeaderboard_params *params ) +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; params->_ret = iface->FindLeaderboard( params->pchLeaderboardName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardName( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardName_params *params ) +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; params->_ret = iface->GetLeaderboardName( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardEntryCount( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardEntryCount_params *params ) +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; params->_ret = iface->GetLeaderboardEntryCount( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardSortMethod( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardSortMethod_params *params ) +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; params->_ret = iface->GetLeaderboardSortMethod( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardDisplayType( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardDisplayType_params *params ) +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; params->_ret = iface->GetLeaderboardDisplayType( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_DownloadLeaderboardEntries( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_DownloadLeaderboardEntries_params *params ) +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; params->_ret = iface->DownloadLeaderboardEntries( params->hSteamLeaderboard, params->eLeaderboardDataRequest, params->nRangeStart, params->nRangeEnd ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetDownloadedLeaderboardEntry( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetDownloadedLeaderboardEntry_params *params ) +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; 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; + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UploadLeaderboardScore( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UploadLeaderboardScore_params *params ) +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; params->_ret = iface->UploadLeaderboardScore( params->hSteamLeaderboard, params->eLeaderboardUploadScoreMethod, params->nScore, params->pScoreDetails, params->cScoreDetailsCount ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_AttachLeaderboardUGC( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_AttachLeaderboardUGC_params *params ) +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; params->_ret = iface->AttachLeaderboardUGC( params->hSteamLeaderboard, params->hUGC ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetNumberOfCurrentPlayers( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetNumberOfCurrentPlayers_params *params ) +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; params->_ret = iface->GetNumberOfCurrentPlayers( ); + return 0; } diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008.h b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008.h deleted file mode 100644 index 8d352402..00000000 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008.h +++ /dev/null @@ -1,292 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestCurrentStats_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestCurrentStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestCurrentStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_params -{ - void *linux_side; - bool _ret; - const char *pchName; - int32_t *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_params -{ - void *linux_side; - bool _ret; - const char *pchName; - int32_t nData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_2_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float fData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvgRateStat_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float flCountThisSession; - double dSessionLength; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvgRateStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvgRateStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievement_params -{ - void *linux_side; - bool _ret; - const char *pchName; - bool *pbAchieved; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetAchievement_params -{ - void *linux_side; - bool _ret; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ClearAchievement_params -{ - void *linux_side; - bool _ret; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ClearAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ClearAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementAndUnlockTime_params -{ - void *linux_side; - bool _ret; - const char *pchName; - bool *pbAchieved; - uint32_t *punUnlockTime; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementAndUnlockTime( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementAndUnlockTime_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_StoreStats_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_StoreStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_StoreStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementIcon_params -{ - void *linux_side; - int32_t _ret; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementIcon( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementIcon_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementDisplayAttribute_params -{ - void *linux_side; - const char *_ret; - const char *pchName; - const char *pchKey; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementDisplayAttribute( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementDisplayAttribute_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_IndicateAchievementProgress_params -{ - void *linux_side; - bool _ret; - const char *pchName; - uint32_t nCurProgress; - uint32_t nMaxProgress; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_IndicateAchievementProgress( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_IndicateAchievementProgress_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestUserStats_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDUser; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestUserStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestUserStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - int32_t *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_2_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - float *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievement_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - bool *pbAchieved; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievementAndUnlockTime_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - bool *pbAchieved; - uint32_t *punUnlockTime; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievementAndUnlockTime( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievementAndUnlockTime_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ResetAllStats_params -{ - void *linux_side; - bool _ret; - bool bAchievementsToo; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ResetAllStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ResetAllStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindOrCreateLeaderboard_params -{ - void *linux_side; - uint64_t _ret; - const char *pchLeaderboardName; - uint32_t eLeaderboardSortMethod; - uint32_t eLeaderboardDisplayType; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindOrCreateLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindOrCreateLeaderboard_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindLeaderboard_params -{ - void *linux_side; - uint64_t _ret; - const char *pchLeaderboardName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindLeaderboard_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardName_params -{ - void *linux_side; - const char *_ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardName( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardName_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardEntryCount_params -{ - void *linux_side; - int32_t _ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardEntryCount( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardEntryCount_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardSortMethod_params -{ - void *linux_side; - uint32_t _ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardSortMethod( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardSortMethod_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardDisplayType_params -{ - void *linux_side; - uint32_t _ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardDisplayType( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardDisplayType_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_DownloadLeaderboardEntries_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hSteamLeaderboard; - uint32_t eLeaderboardDataRequest; - int32_t nRangeStart; - int32_t nRangeEnd; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_DownloadLeaderboardEntries( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_DownloadLeaderboardEntries_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetDownloadedLeaderboardEntry_params -{ - void *linux_side; - bool _ret; - uint64_t hSteamLeaderboardEntries; - int32_t index; - w_LeaderboardEntry_t_111x *pLeaderboardEntry; - int32_t *pDetails; - int32_t cDetailsMax; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetDownloadedLeaderboardEntry( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetDownloadedLeaderboardEntry_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UploadLeaderboardScore_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hSteamLeaderboard; - uint32_t eLeaderboardUploadScoreMethod; - int32_t nScore; - const int32_t *pScoreDetails; - int32_t cScoreDetailsCount; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UploadLeaderboardScore( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UploadLeaderboardScore_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_AttachLeaderboardUGC_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hSteamLeaderboard; - uint64_t hUGC; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_AttachLeaderboardUGC( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_AttachLeaderboardUGC_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetNumberOfCurrentPlayers_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetNumberOfCurrentPlayers( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetNumberOfCurrentPlayers_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009.cpp b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009.cpp index d81b0b49..023a3c58 100644 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009.cpp +++ b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009.cpp @@ -1,198 +1,261 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009.h" -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestCurrentStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestCurrentStats_params *params ) +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; params->_ret = iface->RequestCurrentStats( ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_params *params ) +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; params->_ret = iface->GetStat( params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2_params *params ) +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; params->_ret = iface->GetStat( params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_params *params ) +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; params->_ret = iface->SetStat( params->pchName, params->nData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_2_params *params ) +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; params->_ret = iface->SetStat( params->pchName, params->fData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvgRateStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvgRateStat_params *params ) +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; params->_ret = iface->UpdateAvgRateStat( params->pchName, params->flCountThisSession, params->dSessionLength ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievement_params *params ) +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; params->_ret = iface->GetAchievement( params->pchName, params->pbAchieved ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetAchievement_params *params ) +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; params->_ret = iface->SetAchievement( params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ClearAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ClearAchievement_params *params ) +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; params->_ret = iface->ClearAchievement( params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementAndUnlockTime( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementAndUnlockTime_params *params ) +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; params->_ret = iface->GetAchievementAndUnlockTime( params->pchName, params->pbAchieved, params->punUnlockTime ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_StoreStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_StoreStats_params *params ) +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; params->_ret = iface->StoreStats( ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementIcon( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementIcon_params *params ) +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; params->_ret = iface->GetAchievementIcon( params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementDisplayAttribute( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementDisplayAttribute_params *params ) +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; params->_ret = iface->GetAchievementDisplayAttribute( params->pchName, params->pchKey ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_IndicateAchievementProgress( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_IndicateAchievementProgress_params *params ) +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; params->_ret = iface->IndicateAchievementProgress( params->pchName, params->nCurProgress, params->nMaxProgress ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestUserStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestUserStats_params *params ) +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; params->_ret = iface->RequestUserStats( params->steamIDUser ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_params *params ) +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; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_2_params *params ) +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; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievement_params *params ) +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; params->_ret = iface->GetUserAchievement( params->steamIDUser, params->pchName, params->pbAchieved ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievementAndUnlockTime( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievementAndUnlockTime_params *params ) +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; params->_ret = iface->GetUserAchievementAndUnlockTime( params->steamIDUser, params->pchName, params->pbAchieved, params->punUnlockTime ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ResetAllStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ResetAllStats_params *params ) +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; params->_ret = iface->ResetAllStats( params->bAchievementsToo ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindOrCreateLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindOrCreateLeaderboard_params *params ) +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; params->_ret = iface->FindOrCreateLeaderboard( params->pchLeaderboardName, params->eLeaderboardSortMethod, params->eLeaderboardDisplayType ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindLeaderboard_params *params ) +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; params->_ret = iface->FindLeaderboard( params->pchLeaderboardName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardName( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardName_params *params ) +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; params->_ret = iface->GetLeaderboardName( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardEntryCount( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardEntryCount_params *params ) +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; params->_ret = iface->GetLeaderboardEntryCount( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardSortMethod( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardSortMethod_params *params ) +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; params->_ret = iface->GetLeaderboardSortMethod( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardDisplayType( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardDisplayType_params *params ) +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; params->_ret = iface->GetLeaderboardDisplayType( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntries( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntries_params *params ) +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; params->_ret = iface->DownloadLeaderboardEntries( params->hSteamLeaderboard, params->eLeaderboardDataRequest, params->nRangeStart, params->nRangeEnd ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntriesForUsers( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntriesForUsers_params *params ) +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; params->_ret = iface->DownloadLeaderboardEntriesForUsers( params->hSteamLeaderboard, params->prgUsers, params->cUsers ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetDownloadedLeaderboardEntry( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetDownloadedLeaderboardEntry_params *params ) +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; 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; + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UploadLeaderboardScore( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UploadLeaderboardScore_params *params ) +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; params->_ret = iface->UploadLeaderboardScore( params->hSteamLeaderboard, params->eLeaderboardUploadScoreMethod, params->nScore, params->pScoreDetails, params->cScoreDetailsCount ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_AttachLeaderboardUGC( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_AttachLeaderboardUGC_params *params ) +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; params->_ret = iface->AttachLeaderboardUGC( params->hSteamLeaderboard, params->hUGC ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetNumberOfCurrentPlayers( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetNumberOfCurrentPlayers_params *params ) +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; params->_ret = iface->GetNumberOfCurrentPlayers( ); + return 0; } diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009.h b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009.h deleted file mode 100644 index 6b6bce37..00000000 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009.h +++ /dev/null @@ -1,302 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestCurrentStats_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestCurrentStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestCurrentStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_params -{ - void *linux_side; - bool _ret; - const char *pchName; - int32_t *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_params -{ - void *linux_side; - bool _ret; - const char *pchName; - int32_t nData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_2_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float fData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvgRateStat_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float flCountThisSession; - double dSessionLength; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvgRateStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvgRateStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievement_params -{ - void *linux_side; - bool _ret; - const char *pchName; - bool *pbAchieved; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetAchievement_params -{ - void *linux_side; - bool _ret; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ClearAchievement_params -{ - void *linux_side; - bool _ret; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ClearAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ClearAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementAndUnlockTime_params -{ - void *linux_side; - bool _ret; - const char *pchName; - bool *pbAchieved; - uint32_t *punUnlockTime; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementAndUnlockTime( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementAndUnlockTime_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_StoreStats_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_StoreStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_StoreStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementIcon_params -{ - void *linux_side; - int32_t _ret; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementIcon( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementIcon_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementDisplayAttribute_params -{ - void *linux_side; - const char *_ret; - const char *pchName; - const char *pchKey; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementDisplayAttribute( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementDisplayAttribute_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_IndicateAchievementProgress_params -{ - void *linux_side; - bool _ret; - const char *pchName; - uint32_t nCurProgress; - uint32_t nMaxProgress; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_IndicateAchievementProgress( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_IndicateAchievementProgress_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestUserStats_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDUser; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestUserStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestUserStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - int32_t *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_2_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - float *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievement_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - bool *pbAchieved; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievementAndUnlockTime_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - bool *pbAchieved; - uint32_t *punUnlockTime; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievementAndUnlockTime( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievementAndUnlockTime_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ResetAllStats_params -{ - void *linux_side; - bool _ret; - bool bAchievementsToo; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ResetAllStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ResetAllStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindOrCreateLeaderboard_params -{ - void *linux_side; - uint64_t _ret; - const char *pchLeaderboardName; - uint32_t eLeaderboardSortMethod; - uint32_t eLeaderboardDisplayType; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindOrCreateLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindOrCreateLeaderboard_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindLeaderboard_params -{ - void *linux_side; - uint64_t _ret; - const char *pchLeaderboardName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindLeaderboard_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardName_params -{ - void *linux_side; - const char *_ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardName( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardName_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardEntryCount_params -{ - void *linux_side; - int32_t _ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardEntryCount( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardEntryCount_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardSortMethod_params -{ - void *linux_side; - uint32_t _ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardSortMethod( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardSortMethod_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardDisplayType_params -{ - void *linux_side; - uint32_t _ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardDisplayType( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardDisplayType_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntries_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hSteamLeaderboard; - uint32_t eLeaderboardDataRequest; - int32_t nRangeStart; - int32_t nRangeEnd; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntries( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntries_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntriesForUsers_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hSteamLeaderboard; - CSteamID *prgUsers; - int32_t cUsers; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntriesForUsers( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntriesForUsers_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetDownloadedLeaderboardEntry_params -{ - void *linux_side; - bool _ret; - uint64_t hSteamLeaderboardEntries; - int32_t index; - w_LeaderboardEntry_t_111x *pLeaderboardEntry; - int32_t *pDetails; - int32_t cDetailsMax; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetDownloadedLeaderboardEntry( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetDownloadedLeaderboardEntry_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UploadLeaderboardScore_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hSteamLeaderboard; - uint32_t eLeaderboardUploadScoreMethod; - int32_t nScore; - const int32_t *pScoreDetails; - int32_t cScoreDetailsCount; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UploadLeaderboardScore( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UploadLeaderboardScore_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_AttachLeaderboardUGC_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hSteamLeaderboard; - uint64_t hUGC; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_AttachLeaderboardUGC( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_AttachLeaderboardUGC_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetNumberOfCurrentPlayers_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetNumberOfCurrentPlayers( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetNumberOfCurrentPlayers_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010.cpp b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010.cpp index 3687b097..1a2e2f01 100644 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010.cpp +++ b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010.cpp @@ -1,252 +1,333 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010.h" -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCurrentStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCurrentStats_params *params ) +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; params->_ret = iface->RequestCurrentStats( ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_params *params ) +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; params->_ret = iface->GetStat( params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2_params *params ) +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; params->_ret = iface->GetStat( params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_params *params ) +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; params->_ret = iface->SetStat( params->pchName, params->nData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2_params *params ) +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; params->_ret = iface->SetStat( params->pchName, params->fData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat_params *params ) +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; params->_ret = iface->UpdateAvgRateStat( params->pchName, params->flCountThisSession, params->dSessionLength ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievement_params *params ) +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; params->_ret = iface->GetAchievement( params->pchName, params->pbAchieved ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetAchievement_params *params ) +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; params->_ret = iface->SetAchievement( params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ClearAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ClearAchievement_params *params ) +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; params->_ret = iface->ClearAchievement( params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAndUnlockTime( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAndUnlockTime_params *params ) +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; params->_ret = iface->GetAchievementAndUnlockTime( params->pchName, params->pbAchieved, params->punUnlockTime ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_StoreStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_StoreStats_params *params ) +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; params->_ret = iface->StoreStats( ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementIcon( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementIcon_params *params ) +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; params->_ret = iface->GetAchievementIcon( params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementDisplayAttribute( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementDisplayAttribute_params *params ) +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; params->_ret = iface->GetAchievementDisplayAttribute( params->pchName, params->pchKey ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateAchievementProgress( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateAchievementProgress_params *params ) +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; params->_ret = iface->IndicateAchievementProgress( params->pchName, params->nCurProgress, params->nMaxProgress ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestUserStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestUserStats_params *params ) +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; params->_ret = iface->RequestUserStats( params->steamIDUser ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_params *params ) +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; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2_params *params ) +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; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievement_params *params ) +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; params->_ret = iface->GetUserAchievement( params->steamIDUser, params->pchName, params->pbAchieved ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievementAndUnlockTime( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievementAndUnlockTime_params *params ) +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; params->_ret = iface->GetUserAchievementAndUnlockTime( params->steamIDUser, params->pchName, params->pbAchieved, params->punUnlockTime ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ResetAllStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ResetAllStats_params *params ) +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; params->_ret = iface->ResetAllStats( params->bAchievementsToo ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindOrCreateLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindOrCreateLeaderboard_params *params ) +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; params->_ret = iface->FindOrCreateLeaderboard( params->pchLeaderboardName, params->eLeaderboardSortMethod, params->eLeaderboardDisplayType ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindLeaderboard_params *params ) +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; params->_ret = iface->FindLeaderboard( params->pchLeaderboardName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardName( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardName_params *params ) +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; params->_ret = iface->GetLeaderboardName( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardEntryCount( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardEntryCount_params *params ) +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; params->_ret = iface->GetLeaderboardEntryCount( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardSortMethod( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardSortMethod_params *params ) +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; params->_ret = iface->GetLeaderboardSortMethod( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardDisplayType( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardDisplayType_params *params ) +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; params->_ret = iface->GetLeaderboardDisplayType( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntries( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntries_params *params ) +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; params->_ret = iface->DownloadLeaderboardEntries( params->hSteamLeaderboard, params->eLeaderboardDataRequest, params->nRangeStart, params->nRangeEnd ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntriesForUsers( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntriesForUsers_params *params ) +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; params->_ret = iface->DownloadLeaderboardEntriesForUsers( params->hSteamLeaderboard, params->prgUsers, params->cUsers ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownloadedLeaderboardEntry( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownloadedLeaderboardEntry_params *params ) +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; 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; + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UploadLeaderboardScore( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UploadLeaderboardScore_params *params ) +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; params->_ret = iface->UploadLeaderboardScore( params->hSteamLeaderboard, params->eLeaderboardUploadScoreMethod, params->nScore, params->pScoreDetails, params->cScoreDetailsCount ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_AttachLeaderboardUGC( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_AttachLeaderboardUGC_params *params ) +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; params->_ret = iface->AttachLeaderboardUGC( params->hSteamLeaderboard, params->hUGC ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNumberOfCurrentPlayers( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNumberOfCurrentPlayers_params *params ) +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; params->_ret = iface->GetNumberOfCurrentPlayers( ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalAchievementPercentages( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalAchievementPercentages_params *params ) +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; params->_ret = iface->RequestGlobalAchievementPercentages( ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMostAchievedAchievementInfo( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMostAchievedAchievementInfo_params *params ) +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; params->_ret = iface->GetMostAchievedAchievementInfo( params->pchName, params->unNameBufLen, params->pflPercent, params->pbAchieved ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchievedAchievementInfo( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchievedAchievementInfo_params *params ) +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; params->_ret = iface->GetNextMostAchievedAchievementInfo( params->iIteratorPrevious, params->pchName, params->unNameBufLen, params->pflPercent, params->pbAchieved ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAchievedPercent( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAchievedPercent_params *params ) +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; params->_ret = iface->GetAchievementAchievedPercent( params->pchName, params->pflPercent ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalStats_params *params ) +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; params->_ret = iface->RequestGlobalStats( params->nHistoryDays ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_params *params ) +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; params->_ret = iface->GetGlobalStat( params->pchStatName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_2_params *params ) +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; params->_ret = iface->GetGlobalStat( params->pchStatName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_params *params ) +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; params->_ret = iface->GetGlobalStatHistory( params->pchStatName, params->pData, params->cubData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_2_params *params ) +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; params->_ret = iface->GetGlobalStatHistory( params->pchStatName, params->pData, params->cubData ); + return 0; } diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010.h b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010.h deleted file mode 100644 index 848ded5a..00000000 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010.h +++ /dev/null @@ -1,387 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCurrentStats_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCurrentStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCurrentStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_params -{ - void *linux_side; - bool _ret; - const char *pchName; - int32_t *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_params -{ - void *linux_side; - bool _ret; - const char *pchName; - int32_t nData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float fData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float flCountThisSession; - double dSessionLength; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievement_params -{ - void *linux_side; - bool _ret; - const char *pchName; - bool *pbAchieved; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetAchievement_params -{ - void *linux_side; - bool _ret; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ClearAchievement_params -{ - void *linux_side; - bool _ret; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ClearAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ClearAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAndUnlockTime_params -{ - void *linux_side; - bool _ret; - const char *pchName; - bool *pbAchieved; - uint32_t *punUnlockTime; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAndUnlockTime( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAndUnlockTime_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_StoreStats_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_StoreStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_StoreStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementIcon_params -{ - void *linux_side; - int32_t _ret; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementIcon( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementIcon_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementDisplayAttribute_params -{ - void *linux_side; - const char *_ret; - const char *pchName; - const char *pchKey; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementDisplayAttribute( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementDisplayAttribute_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateAchievementProgress_params -{ - void *linux_side; - bool _ret; - const char *pchName; - uint32_t nCurProgress; - uint32_t nMaxProgress; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateAchievementProgress( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateAchievementProgress_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestUserStats_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDUser; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestUserStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestUserStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - int32_t *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - float *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievement_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - bool *pbAchieved; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievementAndUnlockTime_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - bool *pbAchieved; - uint32_t *punUnlockTime; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievementAndUnlockTime( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievementAndUnlockTime_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ResetAllStats_params -{ - void *linux_side; - bool _ret; - bool bAchievementsToo; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ResetAllStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ResetAllStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindOrCreateLeaderboard_params -{ - void *linux_side; - uint64_t _ret; - const char *pchLeaderboardName; - uint32_t eLeaderboardSortMethod; - uint32_t eLeaderboardDisplayType; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindOrCreateLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindOrCreateLeaderboard_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindLeaderboard_params -{ - void *linux_side; - uint64_t _ret; - const char *pchLeaderboardName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindLeaderboard_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardName_params -{ - void *linux_side; - const char *_ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardName( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardName_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardEntryCount_params -{ - void *linux_side; - int32_t _ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardEntryCount( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardEntryCount_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardSortMethod_params -{ - void *linux_side; - uint32_t _ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardSortMethod( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardSortMethod_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardDisplayType_params -{ - void *linux_side; - uint32_t _ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardDisplayType( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardDisplayType_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntries_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hSteamLeaderboard; - uint32_t eLeaderboardDataRequest; - int32_t nRangeStart; - int32_t nRangeEnd; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntries( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntries_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntriesForUsers_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hSteamLeaderboard; - CSteamID *prgUsers; - int32_t cUsers; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntriesForUsers( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntriesForUsers_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownloadedLeaderboardEntry_params -{ - void *linux_side; - bool _ret; - uint64_t hSteamLeaderboardEntries; - int32_t index; - w_LeaderboardEntry_t_111x *pLeaderboardEntry; - int32_t *pDetails; - int32_t cDetailsMax; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownloadedLeaderboardEntry( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownloadedLeaderboardEntry_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UploadLeaderboardScore_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hSteamLeaderboard; - uint32_t eLeaderboardUploadScoreMethod; - int32_t nScore; - const int32_t *pScoreDetails; - int32_t cScoreDetailsCount; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UploadLeaderboardScore( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UploadLeaderboardScore_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_AttachLeaderboardUGC_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hSteamLeaderboard; - uint64_t hUGC; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_AttachLeaderboardUGC( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_AttachLeaderboardUGC_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNumberOfCurrentPlayers_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNumberOfCurrentPlayers( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNumberOfCurrentPlayers_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalAchievementPercentages_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalAchievementPercentages( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalAchievementPercentages_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMostAchievedAchievementInfo_params -{ - void *linux_side; - int32_t _ret; - char *pchName; - uint32_t unNameBufLen; - float *pflPercent; - bool *pbAchieved; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMostAchievedAchievementInfo( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMostAchievedAchievementInfo_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchievedAchievementInfo_params -{ - void *linux_side; - int32_t _ret; - int32_t iIteratorPrevious; - char *pchName; - uint32_t unNameBufLen; - float *pflPercent; - bool *pbAchieved; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchievedAchievementInfo( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchievedAchievementInfo_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAchievedPercent_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float *pflPercent; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAchievedPercent( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAchievedPercent_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalStats_params -{ - void *linux_side; - uint64_t _ret; - int32_t nHistoryDays; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_params -{ - void *linux_side; - bool _ret; - const char *pchStatName; - int64_t *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_2_params -{ - void *linux_side; - bool _ret; - const char *pchStatName; - double *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_params -{ - void *linux_side; - int32_t _ret; - const char *pchStatName; - int64_t *pData; - uint32_t cubData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_2_params -{ - void *linux_side; - int32_t _ret; - const char *pchStatName; - double *pData; - uint32_t cubData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_2_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011.cpp b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011.cpp index b09329d0..3a4bc889 100644 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011.cpp +++ b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011.cpp @@ -1,264 +1,349 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011.h" -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestCurrentStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestCurrentStats_params *params ) +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; params->_ret = iface->RequestCurrentStats( ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_params *params ) +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; params->_ret = iface->GetStat( params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2_params *params ) +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; params->_ret = iface->GetStat( params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_params *params ) +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; params->_ret = iface->SetStat( params->pchName, params->nData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_2_params *params ) +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; params->_ret = iface->SetStat( params->pchName, params->fData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvgRateStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvgRateStat_params *params ) +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; params->_ret = iface->UpdateAvgRateStat( params->pchName, params->flCountThisSession, params->dSessionLength ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievement_params *params ) +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; params->_ret = iface->GetAchievement( params->pchName, params->pbAchieved ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetAchievement_params *params ) +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; params->_ret = iface->SetAchievement( params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ClearAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ClearAchievement_params *params ) +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; params->_ret = iface->ClearAchievement( params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAndUnlockTime( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAndUnlockTime_params *params ) +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; params->_ret = iface->GetAchievementAndUnlockTime( params->pchName, params->pbAchieved, params->punUnlockTime ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_StoreStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_StoreStats_params *params ) +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; params->_ret = iface->StoreStats( ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementIcon( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementIcon_params *params ) +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; params->_ret = iface->GetAchievementIcon( params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementDisplayAttribute( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementDisplayAttribute_params *params ) +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; params->_ret = iface->GetAchievementDisplayAttribute( params->pchName, params->pchKey ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_IndicateAchievementProgress( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_IndicateAchievementProgress_params *params ) +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; params->_ret = iface->IndicateAchievementProgress( params->pchName, params->nCurProgress, params->nMaxProgress ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumAchievements( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumAchievements_params *params ) +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; params->_ret = iface->GetNumAchievements( ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementName( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementName_params *params ) +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; params->_ret = iface->GetAchievementName( params->iAchievement ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestUserStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestUserStats_params *params ) +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; params->_ret = iface->RequestUserStats( params->steamIDUser ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_params *params ) +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; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_2_params *params ) +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; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievement_params *params ) +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; params->_ret = iface->GetUserAchievement( params->steamIDUser, params->pchName, params->pbAchieved ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievementAndUnlockTime( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievementAndUnlockTime_params *params ) +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; params->_ret = iface->GetUserAchievementAndUnlockTime( params->steamIDUser, params->pchName, params->pbAchieved, params->punUnlockTime ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ResetAllStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ResetAllStats_params *params ) +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; params->_ret = iface->ResetAllStats( params->bAchievementsToo ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindOrCreateLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindOrCreateLeaderboard_params *params ) +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; params->_ret = iface->FindOrCreateLeaderboard( params->pchLeaderboardName, params->eLeaderboardSortMethod, params->eLeaderboardDisplayType ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindLeaderboard_params *params ) +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; params->_ret = iface->FindLeaderboard( params->pchLeaderboardName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardName( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardName_params *params ) +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; params->_ret = iface->GetLeaderboardName( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardEntryCount( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardEntryCount_params *params ) +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; params->_ret = iface->GetLeaderboardEntryCount( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardSortMethod( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardSortMethod_params *params ) +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; params->_ret = iface->GetLeaderboardSortMethod( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardDisplayType( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardDisplayType_params *params ) +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; params->_ret = iface->GetLeaderboardDisplayType( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntries( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntries_params *params ) +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; params->_ret = iface->DownloadLeaderboardEntries( params->hSteamLeaderboard, params->eLeaderboardDataRequest, params->nRangeStart, params->nRangeEnd ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntriesForUsers( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntriesForUsers_params *params ) +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; params->_ret = iface->DownloadLeaderboardEntriesForUsers( params->hSteamLeaderboard, params->prgUsers, params->cUsers ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetDownloadedLeaderboardEntry( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetDownloadedLeaderboardEntry_params *params ) +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; 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; + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UploadLeaderboardScore( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UploadLeaderboardScore_params *params ) +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; params->_ret = iface->UploadLeaderboardScore( params->hSteamLeaderboard, params->eLeaderboardUploadScoreMethod, params->nScore, params->pScoreDetails, params->cScoreDetailsCount ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_AttachLeaderboardUGC( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_AttachLeaderboardUGC_params *params ) +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; params->_ret = iface->AttachLeaderboardUGC( params->hSteamLeaderboard, params->hUGC ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumberOfCurrentPlayers( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumberOfCurrentPlayers_params *params ) +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; params->_ret = iface->GetNumberOfCurrentPlayers( ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalAchievementPercentages( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalAchievementPercentages_params *params ) +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; params->_ret = iface->RequestGlobalAchievementPercentages( ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetMostAchievedAchievementInfo( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetMostAchievedAchievementInfo_params *params ) +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; params->_ret = iface->GetMostAchievedAchievementInfo( params->pchName, params->unNameBufLen, params->pflPercent, params->pbAchieved ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNextMostAchievedAchievementInfo( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNextMostAchievedAchievementInfo_params *params ) +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; params->_ret = iface->GetNextMostAchievedAchievementInfo( params->iIteratorPrevious, params->pchName, params->unNameBufLen, params->pflPercent, params->pbAchieved ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAchievedPercent( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAchievedPercent_params *params ) +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; params->_ret = iface->GetAchievementAchievedPercent( params->pchName, params->pflPercent ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalStats_params *params ) +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; params->_ret = iface->RequestGlobalStats( params->nHistoryDays ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_params *params ) +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; params->_ret = iface->GetGlobalStat( params->pchStatName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_2_params *params ) +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; params->_ret = iface->GetGlobalStat( params->pchStatName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_params *params ) +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; params->_ret = iface->GetGlobalStatHistory( params->pchStatName, params->pData, params->cubData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_2_params *params ) +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; params->_ret = iface->GetGlobalStatHistory( params->pchStatName, params->pData, params->cubData ); + return 0; } diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011.h b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011.h deleted file mode 100644 index 1e30a6c7..00000000 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011.h +++ /dev/null @@ -1,402 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestCurrentStats_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestCurrentStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestCurrentStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_params -{ - void *linux_side; - bool _ret; - const char *pchName; - int32_t *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_params -{ - void *linux_side; - bool _ret; - const char *pchName; - int32_t nData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_2_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float fData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvgRateStat_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float flCountThisSession; - double dSessionLength; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvgRateStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvgRateStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievement_params -{ - void *linux_side; - bool _ret; - const char *pchName; - bool *pbAchieved; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetAchievement_params -{ - void *linux_side; - bool _ret; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ClearAchievement_params -{ - void *linux_side; - bool _ret; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ClearAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ClearAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAndUnlockTime_params -{ - void *linux_side; - bool _ret; - const char *pchName; - bool *pbAchieved; - uint32_t *punUnlockTime; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAndUnlockTime( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAndUnlockTime_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_StoreStats_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_StoreStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_StoreStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementIcon_params -{ - void *linux_side; - int32_t _ret; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementIcon( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementIcon_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementDisplayAttribute_params -{ - void *linux_side; - const char *_ret; - const char *pchName; - const char *pchKey; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementDisplayAttribute( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementDisplayAttribute_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_IndicateAchievementProgress_params -{ - void *linux_side; - bool _ret; - const char *pchName; - uint32_t nCurProgress; - uint32_t nMaxProgress; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_IndicateAchievementProgress( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_IndicateAchievementProgress_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumAchievements_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumAchievements( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumAchievements_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementName_params -{ - void *linux_side; - const char *_ret; - uint32_t iAchievement; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementName( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementName_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestUserStats_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDUser; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestUserStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestUserStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - int32_t *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_2_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - float *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievement_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - bool *pbAchieved; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievementAndUnlockTime_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - bool *pbAchieved; - uint32_t *punUnlockTime; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievementAndUnlockTime( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievementAndUnlockTime_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ResetAllStats_params -{ - void *linux_side; - bool _ret; - bool bAchievementsToo; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ResetAllStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ResetAllStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindOrCreateLeaderboard_params -{ - void *linux_side; - uint64_t _ret; - const char *pchLeaderboardName; - uint32_t eLeaderboardSortMethod; - uint32_t eLeaderboardDisplayType; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindOrCreateLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindOrCreateLeaderboard_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindLeaderboard_params -{ - void *linux_side; - uint64_t _ret; - const char *pchLeaderboardName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindLeaderboard_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardName_params -{ - void *linux_side; - const char *_ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardName( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardName_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardEntryCount_params -{ - void *linux_side; - int32_t _ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardEntryCount( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardEntryCount_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardSortMethod_params -{ - void *linux_side; - uint32_t _ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardSortMethod( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardSortMethod_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardDisplayType_params -{ - void *linux_side; - uint32_t _ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardDisplayType( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardDisplayType_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntries_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hSteamLeaderboard; - uint32_t eLeaderboardDataRequest; - int32_t nRangeStart; - int32_t nRangeEnd; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntries( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntries_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntriesForUsers_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hSteamLeaderboard; - CSteamID *prgUsers; - int32_t cUsers; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntriesForUsers( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntriesForUsers_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetDownloadedLeaderboardEntry_params -{ - void *linux_side; - bool _ret; - uint64_t hSteamLeaderboardEntries; - int32_t index; - w_LeaderboardEntry_t_123 *pLeaderboardEntry; - int32_t *pDetails; - int32_t cDetailsMax; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetDownloadedLeaderboardEntry( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetDownloadedLeaderboardEntry_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UploadLeaderboardScore_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hSteamLeaderboard; - uint32_t eLeaderboardUploadScoreMethod; - int32_t nScore; - const int32_t *pScoreDetails; - int32_t cScoreDetailsCount; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UploadLeaderboardScore( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UploadLeaderboardScore_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_AttachLeaderboardUGC_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hSteamLeaderboard; - uint64_t hUGC; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_AttachLeaderboardUGC( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_AttachLeaderboardUGC_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumberOfCurrentPlayers_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumberOfCurrentPlayers( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumberOfCurrentPlayers_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalAchievementPercentages_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalAchievementPercentages( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalAchievementPercentages_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetMostAchievedAchievementInfo_params -{ - void *linux_side; - int32_t _ret; - char *pchName; - uint32_t unNameBufLen; - float *pflPercent; - bool *pbAchieved; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetMostAchievedAchievementInfo( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetMostAchievedAchievementInfo_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNextMostAchievedAchievementInfo_params -{ - void *linux_side; - int32_t _ret; - int32_t iIteratorPrevious; - char *pchName; - uint32_t unNameBufLen; - float *pflPercent; - bool *pbAchieved; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNextMostAchievedAchievementInfo( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNextMostAchievedAchievementInfo_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAchievedPercent_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float *pflPercent; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAchievedPercent( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAchievedPercent_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalStats_params -{ - void *linux_side; - uint64_t _ret; - int32_t nHistoryDays; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_params -{ - void *linux_side; - bool _ret; - const char *pchStatName; - int64_t *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_2_params -{ - void *linux_side; - bool _ret; - const char *pchStatName; - double *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_params -{ - void *linux_side; - int32_t _ret; - const char *pchStatName; - int64_t *pData; - uint32_t cubData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_2_params -{ - void *linux_side; - int32_t _ret; - const char *pchStatName; - double *pData; - uint32_t cubData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_2_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012.cpp b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012.cpp index b41094d8..08d636c0 100644 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012.cpp +++ b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012.cpp @@ -1,276 +1,365 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012.h" -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestCurrentStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestCurrentStats_params *params ) +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; params->_ret = iface->RequestCurrentStats( ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_params *params ) +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; params->_ret = iface->GetStat( params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2_params *params ) +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; params->_ret = iface->GetStat( params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_params *params ) +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; params->_ret = iface->SetStat( params->pchName, params->nData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_2_params *params ) +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; params->_ret = iface->SetStat( params->pchName, params->fData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvgRateStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvgRateStat_params *params ) +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; params->_ret = iface->UpdateAvgRateStat( params->pchName, params->flCountThisSession, params->dSessionLength ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievement_params *params ) +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; params->_ret = iface->GetAchievement( params->pchName, params->pbAchieved ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetAchievement_params *params ) +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; params->_ret = iface->SetAchievement( params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ClearAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ClearAchievement_params *params ) +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; params->_ret = iface->ClearAchievement( params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAndUnlockTime( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAndUnlockTime_params *params ) +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; params->_ret = iface->GetAchievementAndUnlockTime( params->pchName, params->pbAchieved, params->punUnlockTime ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_StoreStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_StoreStats_params *params ) +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; params->_ret = iface->StoreStats( ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementIcon( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementIcon_params *params ) +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; params->_ret = iface->GetAchievementIcon( params->pchName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementDisplayAttribute( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementDisplayAttribute_params *params ) +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; params->_ret = iface->GetAchievementDisplayAttribute( params->pchName, params->pchKey ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_IndicateAchievementProgress( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_IndicateAchievementProgress_params *params ) +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; params->_ret = iface->IndicateAchievementProgress( params->pchName, params->nCurProgress, params->nMaxProgress ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumAchievements( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumAchievements_params *params ) +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; params->_ret = iface->GetNumAchievements( ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementName( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementName_params *params ) +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; params->_ret = iface->GetAchievementName( params->iAchievement ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestUserStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestUserStats_params *params ) +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; params->_ret = iface->RequestUserStats( params->steamIDUser ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_params *params ) +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; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_2_params *params ) +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; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievement_params *params ) +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; params->_ret = iface->GetUserAchievement( params->steamIDUser, params->pchName, params->pbAchieved ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievementAndUnlockTime( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievementAndUnlockTime_params *params ) +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; params->_ret = iface->GetUserAchievementAndUnlockTime( params->steamIDUser, params->pchName, params->pbAchieved, params->punUnlockTime ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ResetAllStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ResetAllStats_params *params ) +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; params->_ret = iface->ResetAllStats( params->bAchievementsToo ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindOrCreateLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindOrCreateLeaderboard_params *params ) +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; params->_ret = iface->FindOrCreateLeaderboard( params->pchLeaderboardName, params->eLeaderboardSortMethod, params->eLeaderboardDisplayType ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindLeaderboard_params *params ) +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; params->_ret = iface->FindLeaderboard( params->pchLeaderboardName ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardName( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardName_params *params ) +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; params->_ret = iface->GetLeaderboardName( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardEntryCount( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardEntryCount_params *params ) +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; params->_ret = iface->GetLeaderboardEntryCount( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardSortMethod( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardSortMethod_params *params ) +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; params->_ret = iface->GetLeaderboardSortMethod( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardDisplayType( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardDisplayType_params *params ) +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; params->_ret = iface->GetLeaderboardDisplayType( params->hSteamLeaderboard ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntries( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntries_params *params ) +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; params->_ret = iface->DownloadLeaderboardEntries( params->hSteamLeaderboard, params->eLeaderboardDataRequest, params->nRangeStart, params->nRangeEnd ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntriesForUsers( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntriesForUsers_params *params ) +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; params->_ret = iface->DownloadLeaderboardEntriesForUsers( params->hSteamLeaderboard, params->prgUsers, params->cUsers ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetDownloadedLeaderboardEntry( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetDownloadedLeaderboardEntry_params *params ) +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; 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; + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UploadLeaderboardScore( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UploadLeaderboardScore_params *params ) +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; params->_ret = iface->UploadLeaderboardScore( params->hSteamLeaderboard, params->eLeaderboardUploadScoreMethod, params->nScore, params->pScoreDetails, params->cScoreDetailsCount ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_AttachLeaderboardUGC( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_AttachLeaderboardUGC_params *params ) +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; params->_ret = iface->AttachLeaderboardUGC( params->hSteamLeaderboard, params->hUGC ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumberOfCurrentPlayers( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumberOfCurrentPlayers_params *params ) +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; params->_ret = iface->GetNumberOfCurrentPlayers( ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalAchievementPercentages( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalAchievementPercentages_params *params ) +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; params->_ret = iface->RequestGlobalAchievementPercentages( ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetMostAchievedAchievementInfo( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetMostAchievedAchievementInfo_params *params ) +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; params->_ret = iface->GetMostAchievedAchievementInfo( params->pchName, params->unNameBufLen, params->pflPercent, params->pbAchieved ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNextMostAchievedAchievementInfo( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNextMostAchievedAchievementInfo_params *params ) +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; params->_ret = iface->GetNextMostAchievedAchievementInfo( params->iIteratorPrevious, params->pchName, params->unNameBufLen, params->pflPercent, params->pbAchieved ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAchievedPercent( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAchievedPercent_params *params ) +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; params->_ret = iface->GetAchievementAchievedPercent( params->pchName, params->pflPercent ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalStats_params *params ) +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; params->_ret = iface->RequestGlobalStats( params->nHistoryDays ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_params *params ) +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; params->_ret = iface->GetGlobalStat( params->pchStatName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_2_params *params ) +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; params->_ret = iface->GetGlobalStat( params->pchStatName, params->pData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_params *params ) +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; params->_ret = iface->GetGlobalStatHistory( params->pchStatName, params->pData, params->cubData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_2_params *params ) +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; params->_ret = iface->GetGlobalStatHistory( params->pchStatName, params->pData, params->cubData ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_params *params ) +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; params->_ret = iface->GetAchievementProgressLimits( params->pchName, params->pnMinProgress, params->pnMaxProgress ); + return 0; } -void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_2_params *params ) +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; params->_ret = iface->GetAchievementProgressLimits( params->pchName, params->pfMinProgress, params->pfMaxProgress ); + return 0; } diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012.h b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012.h deleted file mode 100644 index c75a2994..00000000 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012.h +++ /dev/null @@ -1,422 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestCurrentStats_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestCurrentStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestCurrentStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_params -{ - void *linux_side; - bool _ret; - const char *pchName; - int32_t *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_params -{ - void *linux_side; - bool _ret; - const char *pchName; - int32_t nData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_2_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float fData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvgRateStat_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float flCountThisSession; - double dSessionLength; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvgRateStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvgRateStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievement_params -{ - void *linux_side; - bool _ret; - const char *pchName; - bool *pbAchieved; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetAchievement_params -{ - void *linux_side; - bool _ret; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ClearAchievement_params -{ - void *linux_side; - bool _ret; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ClearAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ClearAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAndUnlockTime_params -{ - void *linux_side; - bool _ret; - const char *pchName; - bool *pbAchieved; - uint32_t *punUnlockTime; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAndUnlockTime( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAndUnlockTime_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_StoreStats_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_StoreStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_StoreStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementIcon_params -{ - void *linux_side; - int32_t _ret; - const char *pchName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementIcon( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementIcon_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementDisplayAttribute_params -{ - void *linux_side; - const char *_ret; - const char *pchName; - const char *pchKey; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementDisplayAttribute( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementDisplayAttribute_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_IndicateAchievementProgress_params -{ - void *linux_side; - bool _ret; - const char *pchName; - uint32_t nCurProgress; - uint32_t nMaxProgress; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_IndicateAchievementProgress( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_IndicateAchievementProgress_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumAchievements_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumAchievements( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumAchievements_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementName_params -{ - void *linux_side; - const char *_ret; - uint32_t iAchievement; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementName( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementName_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestUserStats_params -{ - void *linux_side; - uint64_t _ret; - CSteamID steamIDUser; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestUserStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestUserStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - int32_t *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_2_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - float *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievement_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - bool *pbAchieved; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievement_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievementAndUnlockTime_params -{ - void *linux_side; - bool _ret; - CSteamID steamIDUser; - const char *pchName; - bool *pbAchieved; - uint32_t *punUnlockTime; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievementAndUnlockTime( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievementAndUnlockTime_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ResetAllStats_params -{ - void *linux_side; - bool _ret; - bool bAchievementsToo; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ResetAllStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ResetAllStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindOrCreateLeaderboard_params -{ - void *linux_side; - uint64_t _ret; - const char *pchLeaderboardName; - uint32_t eLeaderboardSortMethod; - uint32_t eLeaderboardDisplayType; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindOrCreateLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindOrCreateLeaderboard_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindLeaderboard_params -{ - void *linux_side; - uint64_t _ret; - const char *pchLeaderboardName; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindLeaderboard_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardName_params -{ - void *linux_side; - const char *_ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardName( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardName_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardEntryCount_params -{ - void *linux_side; - int32_t _ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardEntryCount( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardEntryCount_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardSortMethod_params -{ - void *linux_side; - uint32_t _ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardSortMethod( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardSortMethod_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardDisplayType_params -{ - void *linux_side; - uint32_t _ret; - uint64_t hSteamLeaderboard; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardDisplayType( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardDisplayType_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntries_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hSteamLeaderboard; - uint32_t eLeaderboardDataRequest; - int32_t nRangeStart; - int32_t nRangeEnd; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntries( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntries_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntriesForUsers_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hSteamLeaderboard; - CSteamID *prgUsers; - int32_t cUsers; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntriesForUsers( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntriesForUsers_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetDownloadedLeaderboardEntry_params -{ - void *linux_side; - bool _ret; - uint64_t hSteamLeaderboardEntries; - int32_t index; - w_LeaderboardEntry_t_123 *pLeaderboardEntry; - int32_t *pDetails; - int32_t cDetailsMax; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetDownloadedLeaderboardEntry( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetDownloadedLeaderboardEntry_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UploadLeaderboardScore_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hSteamLeaderboard; - uint32_t eLeaderboardUploadScoreMethod; - int32_t nScore; - const int32_t *pScoreDetails; - int32_t cScoreDetailsCount; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UploadLeaderboardScore( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UploadLeaderboardScore_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_AttachLeaderboardUGC_params -{ - void *linux_side; - uint64_t _ret; - uint64_t hSteamLeaderboard; - uint64_t hUGC; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_AttachLeaderboardUGC( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_AttachLeaderboardUGC_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumberOfCurrentPlayers_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumberOfCurrentPlayers( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumberOfCurrentPlayers_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalAchievementPercentages_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalAchievementPercentages( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalAchievementPercentages_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetMostAchievedAchievementInfo_params -{ - void *linux_side; - int32_t _ret; - char *pchName; - uint32_t unNameBufLen; - float *pflPercent; - bool *pbAchieved; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetMostAchievedAchievementInfo( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetMostAchievedAchievementInfo_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNextMostAchievedAchievementInfo_params -{ - void *linux_side; - int32_t _ret; - int32_t iIteratorPrevious; - char *pchName; - uint32_t unNameBufLen; - float *pflPercent; - bool *pbAchieved; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNextMostAchievedAchievementInfo( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNextMostAchievedAchievementInfo_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAchievedPercent_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float *pflPercent; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAchievedPercent( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAchievedPercent_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalStats_params -{ - void *linux_side; - uint64_t _ret; - int32_t nHistoryDays; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalStats_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_params -{ - void *linux_side; - bool _ret; - const char *pchStatName; - int64_t *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_2_params -{ - void *linux_side; - bool _ret; - const char *pchStatName; - double *pData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_params -{ - void *linux_side; - int32_t _ret; - const char *pchStatName; - int64_t *pData; - uint32_t cubData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_2_params -{ - void *linux_side; - int32_t _ret; - const char *pchStatName; - double *pData; - uint32_t cubData; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_2_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_params -{ - void *linux_side; - bool _ret; - const char *pchName; - int32_t *pnMinProgress; - int32_t *pnMaxProgress; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_params *params ); - -struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_2_params -{ - void *linux_side; - bool _ret; - const char *pchName; - float *pfMinProgress; - float *pfMaxProgress; -}; -extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_2_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUser_SteamUser004.cpp b/lsteamclient/cppISteamUser_SteamUser004.cpp index f1f6f5f8..274c0bce 100644 --- a/lsteamclient/cppISteamUser_SteamUser004.cpp +++ b/lsteamclient/cppISteamUser_SteamUser004.cpp @@ -1,160 +1,211 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUser_SteamUser004.h" -void cppISteamUser_SteamUser004_GetHSteamUser( struct cppISteamUser_SteamUser004_GetHSteamUser_params *params ) +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; params->_ret = iface->GetHSteamUser( ); + return 0; } -void cppISteamUser_SteamUser004_LogOn( struct cppISteamUser_SteamUser004_LogOn_params *params ) +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; iface->LogOn( params->steamID ); + return 0; } -void cppISteamUser_SteamUser004_LogOff( struct cppISteamUser_SteamUser004_LogOff_params *params ) +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; iface->LogOff( ); + return 0; } -void cppISteamUser_SteamUser004_BLoggedOn( struct cppISteamUser_SteamUser004_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamUser_SteamUser004_GetLogonState( struct cppISteamUser_SteamUser004_GetLogonState_params *params ) +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; params->_ret = iface->GetLogonState( ); + return 0; } -void cppISteamUser_SteamUser004_BConnected( struct cppISteamUser_SteamUser004_BConnected_params *params ) +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; params->_ret = iface->BConnected( ); + return 0; } -void cppISteamUser_SteamUser004_GetSteamID( struct cppISteamUser_SteamUser004_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamUser_SteamUser004_IsVACBanned( struct cppISteamUser_SteamUser004_IsVACBanned_params *params ) +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; params->_ret = iface->IsVACBanned( params->nGameID ); + return 0; } -void cppISteamUser_SteamUser004_RequireShowVACBannedMessage( struct cppISteamUser_SteamUser004_RequireShowVACBannedMessage_params *params ) +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; params->_ret = iface->RequireShowVACBannedMessage( params->nGameID ); + return 0; } -void cppISteamUser_SteamUser004_AcknowledgeVACBanning( struct cppISteamUser_SteamUser004_AcknowledgeVACBanning_params *params ) +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; iface->AcknowledgeVACBanning( params->nGameID ); + return 0; } -void cppISteamUser_SteamUser004_NClientGameIDAdd( struct cppISteamUser_SteamUser004_NClientGameIDAdd_params *params ) +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; params->_ret = iface->NClientGameIDAdd( params->nGameID ); + return 0; } -void cppISteamUser_SteamUser004_RemoveClientGame( struct cppISteamUser_SteamUser004_RemoveClientGame_params *params ) +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; iface->RemoveClientGame( params->nClientGameID ); + return 0; } -void cppISteamUser_SteamUser004_SetClientGameServer( struct cppISteamUser_SteamUser004_SetClientGameServer_params *params ) +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; iface->SetClientGameServer( params->nClientGameID, params->unIPServer, params->usPortServer ); + return 0; } -void cppISteamUser_SteamUser004_SetSteam2Ticket( struct cppISteamUser_SteamUser004_SetSteam2Ticket_params *params ) +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; iface->SetSteam2Ticket( params->pubTicket, params->cubTicket ); + return 0; } -void cppISteamUser_SteamUser004_AddServerNetAddress( struct cppISteamUser_SteamUser004_AddServerNetAddress_params *params ) +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; iface->AddServerNetAddress( params->unIP, params->unPort ); + return 0; } -void cppISteamUser_SteamUser004_SetEmail( struct cppISteamUser_SteamUser004_SetEmail_params *params ) +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; params->_ret = iface->SetEmail( params->pchEmail ); + return 0; } -void cppISteamUser_SteamUser004_GetSteamGameConnectToken( struct cppISteamUser_SteamUser004_GetSteamGameConnectToken_params *params ) +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; params->_ret = iface->GetSteamGameConnectToken( params->pBlob, params->cbMaxBlob ); + return 0; } -void cppISteamUser_SteamUser004_SetRegistryString( struct cppISteamUser_SteamUser004_SetRegistryString_params *params ) +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; params->_ret = iface->SetRegistryString( params->eRegistrySubTree, params->pchKey, params->pchValue ); + return 0; } -void cppISteamUser_SteamUser004_GetRegistryString( struct cppISteamUser_SteamUser004_GetRegistryString_params *params ) +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; params->_ret = iface->GetRegistryString( params->eRegistrySubTree, params->pchKey, params->pchValue, params->cbValue ); + return 0; } -void cppISteamUser_SteamUser004_SetRegistryInt( struct cppISteamUser_SteamUser004_SetRegistryInt_params *params ) +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; params->_ret = iface->SetRegistryInt( params->eRegistrySubTree, params->pchKey, params->iValue ); + return 0; } -void cppISteamUser_SteamUser004_GetRegistryInt( struct cppISteamUser_SteamUser004_GetRegistryInt_params *params ) +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; params->_ret = iface->GetRegistryInt( params->eRegistrySubTree, params->pchKey, params->piValue ); + return 0; } -void cppISteamUser_SteamUser004_InitiateGameConnection( struct cppISteamUser_SteamUser004_InitiateGameConnection_params *params ) +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; params->_ret = iface->InitiateGameConnection( params->pBlob, params->cbMaxBlob, params->steamID, params->nGameAppID, params->unIPServer, params->usPortServer, params->bSecure ); + return 0; } -void cppISteamUser_SteamUser004_TerminateGameConnection( struct cppISteamUser_SteamUser004_TerminateGameConnection_params *params ) +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; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); + return 0; } -void cppISteamUser_SteamUser004_SetSelfAsPrimaryChatDestination( struct cppISteamUser_SteamUser004_SetSelfAsPrimaryChatDestination_params *params ) +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; iface->SetSelfAsPrimaryChatDestination( ); + return 0; } -void cppISteamUser_SteamUser004_IsPrimaryChatDestination( struct cppISteamUser_SteamUser004_IsPrimaryChatDestination_params *params ) +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; params->_ret = iface->IsPrimaryChatDestination( ); + return 0; } -void cppISteamUser_SteamUser004_RequestLegacyCDKey( struct cppISteamUser_SteamUser004_RequestLegacyCDKey_params *params ) +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; iface->RequestLegacyCDKey( params->iAppID ); + return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser004.h b/lsteamclient/cppISteamUser_SteamUser004.h deleted file mode 100644 index 2f68f907..00000000 --- a/lsteamclient/cppISteamUser_SteamUser004.h +++ /dev/null @@ -1,223 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUser_SteamUser004_GetHSteamUser_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamUser_SteamUser004_GetHSteamUser( struct cppISteamUser_SteamUser004_GetHSteamUser_params *params ); - -struct cppISteamUser_SteamUser004_LogOn_params -{ - void *linux_side; - CSteamID steamID; -}; -extern void cppISteamUser_SteamUser004_LogOn( struct cppISteamUser_SteamUser004_LogOn_params *params ); - -struct cppISteamUser_SteamUser004_LogOff_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser004_LogOff( struct cppISteamUser_SteamUser004_LogOff_params *params ); - -struct cppISteamUser_SteamUser004_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser004_BLoggedOn( struct cppISteamUser_SteamUser004_BLoggedOn_params *params ); - -struct cppISteamUser_SteamUser004_GetLogonState_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUser_SteamUser004_GetLogonState( struct cppISteamUser_SteamUser004_GetLogonState_params *params ); - -struct cppISteamUser_SteamUser004_BConnected_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser004_BConnected( struct cppISteamUser_SteamUser004_BConnected_params *params ); - -struct cppISteamUser_SteamUser004_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamUser_SteamUser004_GetSteamID( struct cppISteamUser_SteamUser004_GetSteamID_params *params ); - -struct cppISteamUser_SteamUser004_IsVACBanned_params -{ - void *linux_side; - bool _ret; - int32_t nGameID; -}; -extern void cppISteamUser_SteamUser004_IsVACBanned( struct cppISteamUser_SteamUser004_IsVACBanned_params *params ); - -struct cppISteamUser_SteamUser004_RequireShowVACBannedMessage_params -{ - void *linux_side; - bool _ret; - int32_t nGameID; -}; -extern void cppISteamUser_SteamUser004_RequireShowVACBannedMessage( struct cppISteamUser_SteamUser004_RequireShowVACBannedMessage_params *params ); - -struct cppISteamUser_SteamUser004_AcknowledgeVACBanning_params -{ - void *linux_side; - int32_t nGameID; -}; -extern void cppISteamUser_SteamUser004_AcknowledgeVACBanning( struct cppISteamUser_SteamUser004_AcknowledgeVACBanning_params *params ); - -struct cppISteamUser_SteamUser004_NClientGameIDAdd_params -{ - void *linux_side; - int32_t _ret; - int32_t nGameID; -}; -extern void cppISteamUser_SteamUser004_NClientGameIDAdd( struct cppISteamUser_SteamUser004_NClientGameIDAdd_params *params ); - -struct cppISteamUser_SteamUser004_RemoveClientGame_params -{ - void *linux_side; - int32_t nClientGameID; -}; -extern void cppISteamUser_SteamUser004_RemoveClientGame( struct cppISteamUser_SteamUser004_RemoveClientGame_params *params ); - -struct cppISteamUser_SteamUser004_SetClientGameServer_params -{ - void *linux_side; - int32_t nClientGameID; - uint32_t unIPServer; - uint16_t usPortServer; -}; -extern void cppISteamUser_SteamUser004_SetClientGameServer( struct cppISteamUser_SteamUser004_SetClientGameServer_params *params ); - -struct cppISteamUser_SteamUser004_SetSteam2Ticket_params -{ - void *linux_side; - uint8_t *pubTicket; - int32_t cubTicket; -}; -extern void cppISteamUser_SteamUser004_SetSteam2Ticket( struct cppISteamUser_SteamUser004_SetSteam2Ticket_params *params ); - -struct cppISteamUser_SteamUser004_AddServerNetAddress_params -{ - void *linux_side; - uint32_t unIP; - uint16_t unPort; -}; -extern void cppISteamUser_SteamUser004_AddServerNetAddress( struct cppISteamUser_SteamUser004_AddServerNetAddress_params *params ); - -struct cppISteamUser_SteamUser004_SetEmail_params -{ - void *linux_side; - bool _ret; - const char *pchEmail; -}; -extern void cppISteamUser_SteamUser004_SetEmail( struct cppISteamUser_SteamUser004_SetEmail_params *params ); - -struct cppISteamUser_SteamUser004_GetSteamGameConnectToken_params -{ - void *linux_side; - int32_t _ret; - void *pBlob; - int32_t cbMaxBlob; -}; -extern void cppISteamUser_SteamUser004_GetSteamGameConnectToken( struct cppISteamUser_SteamUser004_GetSteamGameConnectToken_params *params ); - -struct cppISteamUser_SteamUser004_SetRegistryString_params -{ - void *linux_side; - bool _ret; - uint32_t eRegistrySubTree; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamUser_SteamUser004_SetRegistryString( struct cppISteamUser_SteamUser004_SetRegistryString_params *params ); - -struct cppISteamUser_SteamUser004_GetRegistryString_params -{ - void *linux_side; - bool _ret; - uint32_t eRegistrySubTree; - const char *pchKey; - char *pchValue; - int32_t cbValue; -}; -extern void cppISteamUser_SteamUser004_GetRegistryString( struct cppISteamUser_SteamUser004_GetRegistryString_params *params ); - -struct cppISteamUser_SteamUser004_SetRegistryInt_params -{ - void *linux_side; - bool _ret; - uint32_t eRegistrySubTree; - const char *pchKey; - int32_t iValue; -}; -extern void cppISteamUser_SteamUser004_SetRegistryInt( struct cppISteamUser_SteamUser004_SetRegistryInt_params *params ); - -struct cppISteamUser_SteamUser004_GetRegistryInt_params -{ - void *linux_side; - bool _ret; - uint32_t eRegistrySubTree; - const char *pchKey; - int32_t *piValue; -}; -extern void cppISteamUser_SteamUser004_GetRegistryInt( struct cppISteamUser_SteamUser004_GetRegistryInt_params *params ); - -struct cppISteamUser_SteamUser004_InitiateGameConnection_params -{ - void *linux_side; - int32_t _ret; - void *pBlob; - int32_t cbMaxBlob; - CSteamID steamID; - int32_t nGameAppID; - uint32_t unIPServer; - uint16_t usPortServer; - bool bSecure; -}; -extern void cppISteamUser_SteamUser004_InitiateGameConnection( struct cppISteamUser_SteamUser004_InitiateGameConnection_params *params ); - -struct cppISteamUser_SteamUser004_TerminateGameConnection_params -{ - void *linux_side; - uint32_t unIPServer; - uint16_t usPortServer; -}; -extern void cppISteamUser_SteamUser004_TerminateGameConnection( struct cppISteamUser_SteamUser004_TerminateGameConnection_params *params ); - -struct cppISteamUser_SteamUser004_SetSelfAsPrimaryChatDestination_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser004_SetSelfAsPrimaryChatDestination( struct cppISteamUser_SteamUser004_SetSelfAsPrimaryChatDestination_params *params ); - -struct cppISteamUser_SteamUser004_IsPrimaryChatDestination_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser004_IsPrimaryChatDestination( struct cppISteamUser_SteamUser004_IsPrimaryChatDestination_params *params ); - -struct cppISteamUser_SteamUser004_RequestLegacyCDKey_params -{ - void *linux_side; - uint32_t iAppID; -}; -extern void cppISteamUser_SteamUser004_RequestLegacyCDKey( struct cppISteamUser_SteamUser004_RequestLegacyCDKey_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUser_SteamUser005.cpp b/lsteamclient/cppISteamUser_SteamUser005.cpp index 3df38793..34a73883 100644 --- a/lsteamclient/cppISteamUser_SteamUser005.cpp +++ b/lsteamclient/cppISteamUser_SteamUser005.cpp @@ -1,238 +1,315 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUser_SteamUser005.h" -void cppISteamUser_SteamUser005_GetHSteamUser( struct cppISteamUser_SteamUser005_GetHSteamUser_params *params ) +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; params->_ret = iface->GetHSteamUser( ); + return 0; } -void cppISteamUser_SteamUser005_LogOn( struct cppISteamUser_SteamUser005_LogOn_params *params ) +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; iface->LogOn( params->steamID ); + return 0; } -void cppISteamUser_SteamUser005_LogOff( struct cppISteamUser_SteamUser005_LogOff_params *params ) +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; iface->LogOff( ); + return 0; } -void cppISteamUser_SteamUser005_BLoggedOn( struct cppISteamUser_SteamUser005_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamUser_SteamUser005_GetLogonState( struct cppISteamUser_SteamUser005_GetLogonState_params *params ) +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; params->_ret = iface->GetLogonState( ); + return 0; } -void cppISteamUser_SteamUser005_BConnected( struct cppISteamUser_SteamUser005_BConnected_params *params ) +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; params->_ret = iface->BConnected( ); + return 0; } -void cppISteamUser_SteamUser005_GetSteamID( struct cppISteamUser_SteamUser005_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamUser_SteamUser005_IsVACBanned( struct cppISteamUser_SteamUser005_IsVACBanned_params *params ) +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; params->_ret = iface->IsVACBanned( params->nGameID ); + return 0; } -void cppISteamUser_SteamUser005_RequireShowVACBannedMessage( struct cppISteamUser_SteamUser005_RequireShowVACBannedMessage_params *params ) +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; params->_ret = iface->RequireShowVACBannedMessage( params->nAppID ); + return 0; } -void cppISteamUser_SteamUser005_AcknowledgeVACBanning( struct cppISteamUser_SteamUser005_AcknowledgeVACBanning_params *params ) +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; iface->AcknowledgeVACBanning( params->nAppID ); + return 0; } -void cppISteamUser_SteamUser005_SetSteam2Ticket( struct cppISteamUser_SteamUser005_SetSteam2Ticket_params *params ) +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; iface->SetSteam2Ticket( params->pubTicket, params->cubTicket ); + return 0; } -void cppISteamUser_SteamUser005_AddServerNetAddress( struct cppISteamUser_SteamUser005_AddServerNetAddress_params *params ) +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; iface->AddServerNetAddress( params->unIP, params->unPort ); + return 0; } -void cppISteamUser_SteamUser005_SetEmail( struct cppISteamUser_SteamUser005_SetEmail_params *params ) +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; params->_ret = iface->SetEmail( params->pchEmail ); + return 0; } -void cppISteamUser_SteamUser005_SetRegistryString( struct cppISteamUser_SteamUser005_SetRegistryString_params *params ) +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; params->_ret = iface->SetRegistryString( params->eRegistrySubTree, params->pchKey, params->pchValue ); + return 0; } -void cppISteamUser_SteamUser005_GetRegistryString( struct cppISteamUser_SteamUser005_GetRegistryString_params *params ) +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; params->_ret = iface->GetRegistryString( params->eRegistrySubTree, params->pchKey, params->pchValue, params->cbValue ); + return 0; } -void cppISteamUser_SteamUser005_SetRegistryInt( struct cppISteamUser_SteamUser005_SetRegistryInt_params *params ) +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; params->_ret = iface->SetRegistryInt( params->eRegistrySubTree, params->pchKey, params->iValue ); + return 0; } -void cppISteamUser_SteamUser005_GetRegistryInt( struct cppISteamUser_SteamUser005_GetRegistryInt_params *params ) +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; params->_ret = iface->GetRegistryInt( params->eRegistrySubTree, params->pchKey, params->piValue ); + return 0; } -void cppISteamUser_SteamUser005_InitiateGameConnection( struct cppISteamUser_SteamUser005_InitiateGameConnection_params *params ) +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; params->_ret = iface->InitiateGameConnection( params->pBlob, params->cbMaxBlob, params->steamID, params->gameID, params->unIPServer, params->usPortServer, params->bSecure ); + return 0; } -void cppISteamUser_SteamUser005_TerminateGameConnection( struct cppISteamUser_SteamUser005_TerminateGameConnection_params *params ) +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; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); + return 0; } -void cppISteamUser_SteamUser005_SetSelfAsPrimaryChatDestination( struct cppISteamUser_SteamUser005_SetSelfAsPrimaryChatDestination_params *params ) +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; iface->SetSelfAsPrimaryChatDestination( ); + return 0; } -void cppISteamUser_SteamUser005_IsPrimaryChatDestination( struct cppISteamUser_SteamUser005_IsPrimaryChatDestination_params *params ) +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; params->_ret = iface->IsPrimaryChatDestination( ); + return 0; } -void cppISteamUser_SteamUser005_RequestLegacyCDKey( struct cppISteamUser_SteamUser005_RequestLegacyCDKey_params *params ) +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; iface->RequestLegacyCDKey( params->nAppID ); + return 0; } -void cppISteamUser_SteamUser005_SendGuestPassByEmail( struct cppISteamUser_SteamUser005_SendGuestPassByEmail_params *params ) +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; params->_ret = iface->SendGuestPassByEmail( params->pchEmailAccount, params->gidGuestPassID, params->bResending ); + return 0; } -void cppISteamUser_SteamUser005_SendGuestPassByAccountID( struct cppISteamUser_SteamUser005_SendGuestPassByAccountID_params *params ) +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; params->_ret = iface->SendGuestPassByAccountID( params->uAccountID, params->gidGuestPassID, params->bResending ); + return 0; } -void cppISteamUser_SteamUser005_AckGuestPass( struct cppISteamUser_SteamUser005_AckGuestPass_params *params ) +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; params->_ret = iface->AckGuestPass( params->pchGuestPassCode ); + return 0; } -void cppISteamUser_SteamUser005_RedeemGuestPass( struct cppISteamUser_SteamUser005_RedeemGuestPass_params *params ) +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; params->_ret = iface->RedeemGuestPass( params->pchGuestPassCode ); + return 0; } -void cppISteamUser_SteamUser005_GetGuestPassToGiveCount( struct cppISteamUser_SteamUser005_GetGuestPassToGiveCount_params *params ) +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; params->_ret = iface->GetGuestPassToGiveCount( ); + return 0; } -void cppISteamUser_SteamUser005_GetGuestPassToRedeemCount( struct cppISteamUser_SteamUser005_GetGuestPassToRedeemCount_params *params ) +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; params->_ret = iface->GetGuestPassToRedeemCount( ); + return 0; } -void cppISteamUser_SteamUser005_GetGuestPassLastUpdateTime( struct cppISteamUser_SteamUser005_GetGuestPassLastUpdateTime_params *params ) +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; params->_ret = iface->GetGuestPassLastUpdateTime( ); + return 0; } -void cppISteamUser_SteamUser005_GetGuestPassToGiveInfo( struct cppISteamUser_SteamUser005_GetGuestPassToGiveInfo_params *params ) +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; params->_ret = iface->GetGuestPassToGiveInfo( params->nPassIndex, params->pgidGuestPassID, params->pnPackageID, params->pRTime32Created, params->pRTime32Expiration, params->pRTime32Sent, params->pRTime32Redeemed, params->pchRecipientAddress, params->cRecipientAddressSize ); + return 0; } -void cppISteamUser_SteamUser005_GetGuestPassToRedeemInfo( struct cppISteamUser_SteamUser005_GetGuestPassToRedeemInfo_params *params ) +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; params->_ret = iface->GetGuestPassToRedeemInfo( params->nPassIndex, params->pgidGuestPassID, params->pnPackageID, params->pRTime32Created, params->pRTime32Expiration, params->pRTime32Sent, params->pRTime32Redeemed ); + return 0; } -void cppISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress( struct cppISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress_params *params ) +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; params->_ret = iface->GetGuestPassToRedeemSenderAddress( params->nPassIndex, params->pchSenderAddress, params->cSenderAddressSize ); + return 0; } -void cppISteamUser_SteamUser005_GetGuestPassToRedeemSenderName( struct cppISteamUser_SteamUser005_GetGuestPassToRedeemSenderName_params *params ) +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; params->_ret = iface->GetGuestPassToRedeemSenderName( params->nPassIndex, params->pchSenderName, params->cSenderNameSize ); + return 0; } -void cppISteamUser_SteamUser005_AcknowledgeMessageByGID( struct cppISteamUser_SteamUser005_AcknowledgeMessageByGID_params *params ) +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; iface->AcknowledgeMessageByGID( params->pchMessageGID ); + return 0; } -void cppISteamUser_SteamUser005_SetLanguage( struct cppISteamUser_SteamUser005_SetLanguage_params *params ) +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; params->_ret = iface->SetLanguage( params->pchLanguage ); + return 0; } -void cppISteamUser_SteamUser005_TrackAppUsageEvent( struct cppISteamUser_SteamUser005_TrackAppUsageEvent_params *params ) +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; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); + return 0; } -void cppISteamUser_SteamUser005_SetAccountName( struct cppISteamUser_SteamUser005_SetAccountName_params *params ) +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; iface->SetAccountName( params->pchAccountName ); + return 0; } -void cppISteamUser_SteamUser005_SetPassword( struct cppISteamUser_SteamUser005_SetPassword_params *params ) +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; iface->SetPassword( params->pchPassword ); + return 0; } -void cppISteamUser_SteamUser005_SetAccountCreationTime( struct cppISteamUser_SteamUser005_SetAccountCreationTime_params *params ) +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; iface->SetAccountCreationTime( params->rt ); + return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser005.h b/lsteamclient/cppISteamUser_SteamUser005.h deleted file mode 100644 index 1f144572..00000000 --- a/lsteamclient/cppISteamUser_SteamUser005.h +++ /dev/null @@ -1,342 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUser_SteamUser005_GetHSteamUser_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamUser_SteamUser005_GetHSteamUser( struct cppISteamUser_SteamUser005_GetHSteamUser_params *params ); - -struct cppISteamUser_SteamUser005_LogOn_params -{ - void *linux_side; - CSteamID steamID; -}; -extern void cppISteamUser_SteamUser005_LogOn( struct cppISteamUser_SteamUser005_LogOn_params *params ); - -struct cppISteamUser_SteamUser005_LogOff_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser005_LogOff( struct cppISteamUser_SteamUser005_LogOff_params *params ); - -struct cppISteamUser_SteamUser005_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser005_BLoggedOn( struct cppISteamUser_SteamUser005_BLoggedOn_params *params ); - -struct cppISteamUser_SteamUser005_GetLogonState_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUser_SteamUser005_GetLogonState( struct cppISteamUser_SteamUser005_GetLogonState_params *params ); - -struct cppISteamUser_SteamUser005_BConnected_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser005_BConnected( struct cppISteamUser_SteamUser005_BConnected_params *params ); - -struct cppISteamUser_SteamUser005_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamUser_SteamUser005_GetSteamID( struct cppISteamUser_SteamUser005_GetSteamID_params *params ); - -struct cppISteamUser_SteamUser005_IsVACBanned_params -{ - void *linux_side; - bool _ret; - int32_t nGameID; -}; -extern void cppISteamUser_SteamUser005_IsVACBanned( struct cppISteamUser_SteamUser005_IsVACBanned_params *params ); - -struct cppISteamUser_SteamUser005_RequireShowVACBannedMessage_params -{ - void *linux_side; - bool _ret; - int32_t nAppID; -}; -extern void cppISteamUser_SteamUser005_RequireShowVACBannedMessage( struct cppISteamUser_SteamUser005_RequireShowVACBannedMessage_params *params ); - -struct cppISteamUser_SteamUser005_AcknowledgeVACBanning_params -{ - void *linux_side; - int32_t nAppID; -}; -extern void cppISteamUser_SteamUser005_AcknowledgeVACBanning( struct cppISteamUser_SteamUser005_AcknowledgeVACBanning_params *params ); - -struct cppISteamUser_SteamUser005_SetSteam2Ticket_params -{ - void *linux_side; - uint8_t *pubTicket; - int32_t cubTicket; -}; -extern void cppISteamUser_SteamUser005_SetSteam2Ticket( struct cppISteamUser_SteamUser005_SetSteam2Ticket_params *params ); - -struct cppISteamUser_SteamUser005_AddServerNetAddress_params -{ - void *linux_side; - uint32_t unIP; - uint16_t unPort; -}; -extern void cppISteamUser_SteamUser005_AddServerNetAddress( struct cppISteamUser_SteamUser005_AddServerNetAddress_params *params ); - -struct cppISteamUser_SteamUser005_SetEmail_params -{ - void *linux_side; - bool _ret; - const char *pchEmail; -}; -extern void cppISteamUser_SteamUser005_SetEmail( struct cppISteamUser_SteamUser005_SetEmail_params *params ); - -struct cppISteamUser_SteamUser005_SetRegistryString_params -{ - void *linux_side; - bool _ret; - uint32_t eRegistrySubTree; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamUser_SteamUser005_SetRegistryString( struct cppISteamUser_SteamUser005_SetRegistryString_params *params ); - -struct cppISteamUser_SteamUser005_GetRegistryString_params -{ - void *linux_side; - bool _ret; - uint32_t eRegistrySubTree; - const char *pchKey; - char *pchValue; - int32_t cbValue; -}; -extern void cppISteamUser_SteamUser005_GetRegistryString( struct cppISteamUser_SteamUser005_GetRegistryString_params *params ); - -struct cppISteamUser_SteamUser005_SetRegistryInt_params -{ - void *linux_side; - bool _ret; - uint32_t eRegistrySubTree; - const char *pchKey; - int32_t iValue; -}; -extern void cppISteamUser_SteamUser005_SetRegistryInt( struct cppISteamUser_SteamUser005_SetRegistryInt_params *params ); - -struct cppISteamUser_SteamUser005_GetRegistryInt_params -{ - void *linux_side; - bool _ret; - uint32_t eRegistrySubTree; - const char *pchKey; - int32_t *piValue; -}; -extern void cppISteamUser_SteamUser005_GetRegistryInt( struct cppISteamUser_SteamUser005_GetRegistryInt_params *params ); - -struct cppISteamUser_SteamUser005_InitiateGameConnection_params -{ - void *linux_side; - int32_t _ret; - void *pBlob; - int32_t cbMaxBlob; - CSteamID steamID; - CGameID gameID; - uint32_t unIPServer; - uint16_t usPortServer; - bool bSecure; -}; -extern void cppISteamUser_SteamUser005_InitiateGameConnection( struct cppISteamUser_SteamUser005_InitiateGameConnection_params *params ); - -struct cppISteamUser_SteamUser005_TerminateGameConnection_params -{ - void *linux_side; - uint32_t unIPServer; - uint16_t usPortServer; -}; -extern void cppISteamUser_SteamUser005_TerminateGameConnection( struct cppISteamUser_SteamUser005_TerminateGameConnection_params *params ); - -struct cppISteamUser_SteamUser005_SetSelfAsPrimaryChatDestination_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser005_SetSelfAsPrimaryChatDestination( struct cppISteamUser_SteamUser005_SetSelfAsPrimaryChatDestination_params *params ); - -struct cppISteamUser_SteamUser005_IsPrimaryChatDestination_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser005_IsPrimaryChatDestination( struct cppISteamUser_SteamUser005_IsPrimaryChatDestination_params *params ); - -struct cppISteamUser_SteamUser005_RequestLegacyCDKey_params -{ - void *linux_side; - uint32_t nAppID; -}; -extern void cppISteamUser_SteamUser005_RequestLegacyCDKey( struct cppISteamUser_SteamUser005_RequestLegacyCDKey_params *params ); - -struct cppISteamUser_SteamUser005_SendGuestPassByEmail_params -{ - void *linux_side; - bool _ret; - const char *pchEmailAccount; - uint64_t gidGuestPassID; - bool bResending; -}; -extern void cppISteamUser_SteamUser005_SendGuestPassByEmail( struct cppISteamUser_SteamUser005_SendGuestPassByEmail_params *params ); - -struct cppISteamUser_SteamUser005_SendGuestPassByAccountID_params -{ - void *linux_side; - bool _ret; - uint32_t uAccountID; - uint64_t gidGuestPassID; - bool bResending; -}; -extern void cppISteamUser_SteamUser005_SendGuestPassByAccountID( struct cppISteamUser_SteamUser005_SendGuestPassByAccountID_params *params ); - -struct cppISteamUser_SteamUser005_AckGuestPass_params -{ - void *linux_side; - bool _ret; - const char *pchGuestPassCode; -}; -extern void cppISteamUser_SteamUser005_AckGuestPass( struct cppISteamUser_SteamUser005_AckGuestPass_params *params ); - -struct cppISteamUser_SteamUser005_RedeemGuestPass_params -{ - void *linux_side; - bool _ret; - const char *pchGuestPassCode; -}; -extern void cppISteamUser_SteamUser005_RedeemGuestPass( struct cppISteamUser_SteamUser005_RedeemGuestPass_params *params ); - -struct cppISteamUser_SteamUser005_GetGuestPassToGiveCount_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUser_SteamUser005_GetGuestPassToGiveCount( struct cppISteamUser_SteamUser005_GetGuestPassToGiveCount_params *params ); - -struct cppISteamUser_SteamUser005_GetGuestPassToRedeemCount_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUser_SteamUser005_GetGuestPassToRedeemCount( struct cppISteamUser_SteamUser005_GetGuestPassToRedeemCount_params *params ); - -struct cppISteamUser_SteamUser005_GetGuestPassLastUpdateTime_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUser_SteamUser005_GetGuestPassLastUpdateTime( struct cppISteamUser_SteamUser005_GetGuestPassLastUpdateTime_params *params ); - -struct cppISteamUser_SteamUser005_GetGuestPassToGiveInfo_params -{ - void *linux_side; - bool _ret; - 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; -}; -extern void cppISteamUser_SteamUser005_GetGuestPassToGiveInfo( struct cppISteamUser_SteamUser005_GetGuestPassToGiveInfo_params *params ); - -struct cppISteamUser_SteamUser005_GetGuestPassToRedeemInfo_params -{ - void *linux_side; - bool _ret; - uint32_t nPassIndex; - uint64_t *pgidGuestPassID; - uint32_t *pnPackageID; - uint32_t *pRTime32Created; - uint32_t *pRTime32Expiration; - uint32_t *pRTime32Sent; - uint32_t *pRTime32Redeemed; -}; -extern void cppISteamUser_SteamUser005_GetGuestPassToRedeemInfo( struct cppISteamUser_SteamUser005_GetGuestPassToRedeemInfo_params *params ); - -struct cppISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress_params -{ - void *linux_side; - bool _ret; - uint32_t nPassIndex; - char *pchSenderAddress; - int32_t cSenderAddressSize; -}; -extern void cppISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress( struct cppISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress_params *params ); - -struct cppISteamUser_SteamUser005_GetGuestPassToRedeemSenderName_params -{ - void *linux_side; - bool _ret; - uint32_t nPassIndex; - char *pchSenderName; - int32_t cSenderNameSize; -}; -extern void cppISteamUser_SteamUser005_GetGuestPassToRedeemSenderName( struct cppISteamUser_SteamUser005_GetGuestPassToRedeemSenderName_params *params ); - -struct cppISteamUser_SteamUser005_AcknowledgeMessageByGID_params -{ - void *linux_side; - const char *pchMessageGID; -}; -extern void cppISteamUser_SteamUser005_AcknowledgeMessageByGID( struct cppISteamUser_SteamUser005_AcknowledgeMessageByGID_params *params ); - -struct cppISteamUser_SteamUser005_SetLanguage_params -{ - void *linux_side; - bool _ret; - const char *pchLanguage; -}; -extern void cppISteamUser_SteamUser005_SetLanguage( struct cppISteamUser_SteamUser005_SetLanguage_params *params ); - -struct cppISteamUser_SteamUser005_TrackAppUsageEvent_params -{ - void *linux_side; - CGameID gameID; - int32_t eAppUsageEvent; - const char *pchExtraInfo; -}; -extern void cppISteamUser_SteamUser005_TrackAppUsageEvent( struct cppISteamUser_SteamUser005_TrackAppUsageEvent_params *params ); - -struct cppISteamUser_SteamUser005_SetAccountName_params -{ - void *linux_side; - const char *pchAccountName; -}; -extern void cppISteamUser_SteamUser005_SetAccountName( struct cppISteamUser_SteamUser005_SetAccountName_params *params ); - -struct cppISteamUser_SteamUser005_SetPassword_params -{ - void *linux_side; - const char *pchPassword; -}; -extern void cppISteamUser_SteamUser005_SetPassword( struct cppISteamUser_SteamUser005_SetPassword_params *params ); - -struct cppISteamUser_SteamUser005_SetAccountCreationTime_params -{ - void *linux_side; - uint32_t rt; -}; -extern void cppISteamUser_SteamUser005_SetAccountCreationTime( struct cppISteamUser_SteamUser005_SetAccountCreationTime_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUser_SteamUser006.cpp b/lsteamclient/cppISteamUser_SteamUser006.cpp index 9b77d8c2..45c38534 100644 --- a/lsteamclient/cppISteamUser_SteamUser006.cpp +++ b/lsteamclient/cppISteamUser_SteamUser006.cpp @@ -1,76 +1,99 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUser_SteamUser006.h" -void cppISteamUser_SteamUser006_GetHSteamUser( struct cppISteamUser_SteamUser006_GetHSteamUser_params *params ) +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; params->_ret = iface->GetHSteamUser( ); + return 0; } -void cppISteamUser_SteamUser006_LogOn( struct cppISteamUser_SteamUser006_LogOn_params *params ) +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; iface->LogOn( params->steamID ); + return 0; } -void cppISteamUser_SteamUser006_LogOff( struct cppISteamUser_SteamUser006_LogOff_params *params ) +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; iface->LogOff( ); + return 0; } -void cppISteamUser_SteamUser006_BLoggedOn( struct cppISteamUser_SteamUser006_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamUser_SteamUser006_GetSteamID( struct cppISteamUser_SteamUser006_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamUser_SteamUser006_SetRegistryString( struct cppISteamUser_SteamUser006_SetRegistryString_params *params ) +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; params->_ret = iface->SetRegistryString( params->eRegistrySubTree, params->pchKey, params->pchValue ); + return 0; } -void cppISteamUser_SteamUser006_GetRegistryString( struct cppISteamUser_SteamUser006_GetRegistryString_params *params ) +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; params->_ret = iface->GetRegistryString( params->eRegistrySubTree, params->pchKey, params->pchValue, params->cbValue ); + return 0; } -void cppISteamUser_SteamUser006_SetRegistryInt( struct cppISteamUser_SteamUser006_SetRegistryInt_params *params ) +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; params->_ret = iface->SetRegistryInt( params->eRegistrySubTree, params->pchKey, params->iValue ); + return 0; } -void cppISteamUser_SteamUser006_GetRegistryInt( struct cppISteamUser_SteamUser006_GetRegistryInt_params *params ) +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; params->_ret = iface->GetRegistryInt( params->eRegistrySubTree, params->pchKey, params->piValue ); + return 0; } -void cppISteamUser_SteamUser006_InitiateGameConnection( struct cppISteamUser_SteamUser006_InitiateGameConnection_params *params ) +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; params->_ret = iface->InitiateGameConnection( params->pBlob, params->cbMaxBlob, params->steamID, params->gameID, params->unIPServer, params->usPortServer, params->bSecure ); + return 0; } -void cppISteamUser_SteamUser006_TerminateGameConnection( struct cppISteamUser_SteamUser006_TerminateGameConnection_params *params ) +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; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); + return 0; } -void cppISteamUser_SteamUser006_TrackAppUsageEvent( struct cppISteamUser_SteamUser006_TrackAppUsageEvent_params *params ) +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; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); + return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser006.h b/lsteamclient/cppISteamUser_SteamUser006.h deleted file mode 100644 index e6908375..00000000 --- a/lsteamclient/cppISteamUser_SteamUser006.h +++ /dev/null @@ -1,118 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUser_SteamUser006_GetHSteamUser_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamUser_SteamUser006_GetHSteamUser( struct cppISteamUser_SteamUser006_GetHSteamUser_params *params ); - -struct cppISteamUser_SteamUser006_LogOn_params -{ - void *linux_side; - CSteamID steamID; -}; -extern void cppISteamUser_SteamUser006_LogOn( struct cppISteamUser_SteamUser006_LogOn_params *params ); - -struct cppISteamUser_SteamUser006_LogOff_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser006_LogOff( struct cppISteamUser_SteamUser006_LogOff_params *params ); - -struct cppISteamUser_SteamUser006_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser006_BLoggedOn( struct cppISteamUser_SteamUser006_BLoggedOn_params *params ); - -struct cppISteamUser_SteamUser006_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamUser_SteamUser006_GetSteamID( struct cppISteamUser_SteamUser006_GetSteamID_params *params ); - -struct cppISteamUser_SteamUser006_SetRegistryString_params -{ - void *linux_side; - bool _ret; - uint32_t eRegistrySubTree; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamUser_SteamUser006_SetRegistryString( struct cppISteamUser_SteamUser006_SetRegistryString_params *params ); - -struct cppISteamUser_SteamUser006_GetRegistryString_params -{ - void *linux_side; - bool _ret; - uint32_t eRegistrySubTree; - const char *pchKey; - char *pchValue; - int32_t cbValue; -}; -extern void cppISteamUser_SteamUser006_GetRegistryString( struct cppISteamUser_SteamUser006_GetRegistryString_params *params ); - -struct cppISteamUser_SteamUser006_SetRegistryInt_params -{ - void *linux_side; - bool _ret; - uint32_t eRegistrySubTree; - const char *pchKey; - int32_t iValue; -}; -extern void cppISteamUser_SteamUser006_SetRegistryInt( struct cppISteamUser_SteamUser006_SetRegistryInt_params *params ); - -struct cppISteamUser_SteamUser006_GetRegistryInt_params -{ - void *linux_side; - bool _ret; - uint32_t eRegistrySubTree; - const char *pchKey; - int32_t *piValue; -}; -extern void cppISteamUser_SteamUser006_GetRegistryInt( struct cppISteamUser_SteamUser006_GetRegistryInt_params *params ); - -struct cppISteamUser_SteamUser006_InitiateGameConnection_params -{ - void *linux_side; - int32_t _ret; - void *pBlob; - int32_t cbMaxBlob; - CSteamID steamID; - CGameID gameID; - uint32_t unIPServer; - uint16_t usPortServer; - bool bSecure; -}; -extern void cppISteamUser_SteamUser006_InitiateGameConnection( struct cppISteamUser_SteamUser006_InitiateGameConnection_params *params ); - -struct cppISteamUser_SteamUser006_TerminateGameConnection_params -{ - void *linux_side; - uint32_t unIPServer; - uint16_t usPortServer; -}; -extern void cppISteamUser_SteamUser006_TerminateGameConnection( struct cppISteamUser_SteamUser006_TerminateGameConnection_params *params ); - -struct cppISteamUser_SteamUser006_TrackAppUsageEvent_params -{ - void *linux_side; - CGameID gameID; - int32_t eAppUsageEvent; - const char *pchExtraInfo; -}; -extern void cppISteamUser_SteamUser006_TrackAppUsageEvent( struct cppISteamUser_SteamUser006_TrackAppUsageEvent_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUser_SteamUser007.cpp b/lsteamclient/cppISteamUser_SteamUser007.cpp index 05594362..52e13f17 100644 --- a/lsteamclient/cppISteamUser_SteamUser007.cpp +++ b/lsteamclient/cppISteamUser_SteamUser007.cpp @@ -1,82 +1,107 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUser_SteamUser007.h" -void cppISteamUser_SteamUser007_GetHSteamUser( struct cppISteamUser_SteamUser007_GetHSteamUser_params *params ) +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; params->_ret = iface->GetHSteamUser( ); + return 0; } -void cppISteamUser_SteamUser007_LogOn( struct cppISteamUser_SteamUser007_LogOn_params *params ) +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; iface->LogOn( params->steamID ); + return 0; } -void cppISteamUser_SteamUser007_LogOff( struct cppISteamUser_SteamUser007_LogOff_params *params ) +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; iface->LogOff( ); + return 0; } -void cppISteamUser_SteamUser007_BLoggedOn( struct cppISteamUser_SteamUser007_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamUser_SteamUser007_GetSteamID( struct cppISteamUser_SteamUser007_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamUser_SteamUser007_SetRegistryString( struct cppISteamUser_SteamUser007_SetRegistryString_params *params ) +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; params->_ret = iface->SetRegistryString( params->eRegistrySubTree, params->pchKey, params->pchValue ); + return 0; } -void cppISteamUser_SteamUser007_GetRegistryString( struct cppISteamUser_SteamUser007_GetRegistryString_params *params ) +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; params->_ret = iface->GetRegistryString( params->eRegistrySubTree, params->pchKey, params->pchValue, params->cbValue ); + return 0; } -void cppISteamUser_SteamUser007_SetRegistryInt( struct cppISteamUser_SteamUser007_SetRegistryInt_params *params ) +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; params->_ret = iface->SetRegistryInt( params->eRegistrySubTree, params->pchKey, params->iValue ); + return 0; } -void cppISteamUser_SteamUser007_GetRegistryInt( struct cppISteamUser_SteamUser007_GetRegistryInt_params *params ) +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; params->_ret = iface->GetRegistryInt( params->eRegistrySubTree, params->pchKey, params->piValue ); + return 0; } -void cppISteamUser_SteamUser007_InitiateGameConnection( struct cppISteamUser_SteamUser007_InitiateGameConnection_params *params ) +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; params->_ret = iface->InitiateGameConnection( params->pBlob, params->cbMaxBlob, params->steamID, params->gameID, params->unIPServer, params->usPortServer, params->bSecure, params->pvSteam2GetEncryptionKey, params->cbSteam2GetEncryptionKey ); + return 0; } -void cppISteamUser_SteamUser007_TerminateGameConnection( struct cppISteamUser_SteamUser007_TerminateGameConnection_params *params ) +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; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); + return 0; } -void cppISteamUser_SteamUser007_TrackAppUsageEvent( struct cppISteamUser_SteamUser007_TrackAppUsageEvent_params *params ) +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; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); + return 0; } -void cppISteamUser_SteamUser007_RefreshSteam2Login( struct cppISteamUser_SteamUser007_RefreshSteam2Login_params *params ) +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; iface->RefreshSteam2Login( ); + return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser007.h b/lsteamclient/cppISteamUser_SteamUser007.h deleted file mode 100644 index ec46f684..00000000 --- a/lsteamclient/cppISteamUser_SteamUser007.h +++ /dev/null @@ -1,126 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUser_SteamUser007_GetHSteamUser_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamUser_SteamUser007_GetHSteamUser( struct cppISteamUser_SteamUser007_GetHSteamUser_params *params ); - -struct cppISteamUser_SteamUser007_LogOn_params -{ - void *linux_side; - CSteamID steamID; -}; -extern void cppISteamUser_SteamUser007_LogOn( struct cppISteamUser_SteamUser007_LogOn_params *params ); - -struct cppISteamUser_SteamUser007_LogOff_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser007_LogOff( struct cppISteamUser_SteamUser007_LogOff_params *params ); - -struct cppISteamUser_SteamUser007_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser007_BLoggedOn( struct cppISteamUser_SteamUser007_BLoggedOn_params *params ); - -struct cppISteamUser_SteamUser007_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamUser_SteamUser007_GetSteamID( struct cppISteamUser_SteamUser007_GetSteamID_params *params ); - -struct cppISteamUser_SteamUser007_SetRegistryString_params -{ - void *linux_side; - bool _ret; - uint32_t eRegistrySubTree; - const char *pchKey; - const char *pchValue; -}; -extern void cppISteamUser_SteamUser007_SetRegistryString( struct cppISteamUser_SteamUser007_SetRegistryString_params *params ); - -struct cppISteamUser_SteamUser007_GetRegistryString_params -{ - void *linux_side; - bool _ret; - uint32_t eRegistrySubTree; - const char *pchKey; - char *pchValue; - int32_t cbValue; -}; -extern void cppISteamUser_SteamUser007_GetRegistryString( struct cppISteamUser_SteamUser007_GetRegistryString_params *params ); - -struct cppISteamUser_SteamUser007_SetRegistryInt_params -{ - void *linux_side; - bool _ret; - uint32_t eRegistrySubTree; - const char *pchKey; - int32_t iValue; -}; -extern void cppISteamUser_SteamUser007_SetRegistryInt( struct cppISteamUser_SteamUser007_SetRegistryInt_params *params ); - -struct cppISteamUser_SteamUser007_GetRegistryInt_params -{ - void *linux_side; - bool _ret; - uint32_t eRegistrySubTree; - const char *pchKey; - int32_t *piValue; -}; -extern void cppISteamUser_SteamUser007_GetRegistryInt( struct cppISteamUser_SteamUser007_GetRegistryInt_params *params ); - -struct cppISteamUser_SteamUser007_InitiateGameConnection_params -{ - void *linux_side; - int32_t _ret; - void *pBlob; - int32_t cbMaxBlob; - CSteamID steamID; - CGameID gameID; - uint32_t unIPServer; - uint16_t usPortServer; - bool bSecure; - void *pvSteam2GetEncryptionKey; - int32_t cbSteam2GetEncryptionKey; -}; -extern void cppISteamUser_SteamUser007_InitiateGameConnection( struct cppISteamUser_SteamUser007_InitiateGameConnection_params *params ); - -struct cppISteamUser_SteamUser007_TerminateGameConnection_params -{ - void *linux_side; - uint32_t unIPServer; - uint16_t usPortServer; -}; -extern void cppISteamUser_SteamUser007_TerminateGameConnection( struct cppISteamUser_SteamUser007_TerminateGameConnection_params *params ); - -struct cppISteamUser_SteamUser007_TrackAppUsageEvent_params -{ - void *linux_side; - CGameID gameID; - int32_t eAppUsageEvent; - const char *pchExtraInfo; -}; -extern void cppISteamUser_SteamUser007_TrackAppUsageEvent( struct cppISteamUser_SteamUser007_TrackAppUsageEvent_params *params ); - -struct cppISteamUser_SteamUser007_RefreshSteam2Login_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser007_RefreshSteam2Login( struct cppISteamUser_SteamUser007_RefreshSteam2Login_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUser_SteamUser008.cpp b/lsteamclient/cppISteamUser_SteamUser008.cpp index d7d82917..8777379c 100644 --- a/lsteamclient/cppISteamUser_SteamUser008.cpp +++ b/lsteamclient/cppISteamUser_SteamUser008.cpp @@ -1,46 +1,59 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUser_SteamUser008.h" -void cppISteamUser_SteamUser008_GetHSteamUser( struct cppISteamUser_SteamUser008_GetHSteamUser_params *params ) +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; params->_ret = iface->GetHSteamUser( ); + return 0; } -void cppISteamUser_SteamUser008_BLoggedOn( struct cppISteamUser_SteamUser008_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamUser_SteamUser008_GetSteamID( struct cppISteamUser_SteamUser008_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamUser_SteamUser008_InitiateGameConnection( struct cppISteamUser_SteamUser008_InitiateGameConnection_params *params ) +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; params->_ret = iface->InitiateGameConnection( params->pBlob, params->cbMaxBlob, params->steamID, ¶ms->gameID, params->unIPServer, params->usPortServer, params->bSecure, params->pvSteam2GetEncryptionKey, params->cbSteam2GetEncryptionKey ); + return 0; } -void cppISteamUser_SteamUser008_TerminateGameConnection( struct cppISteamUser_SteamUser008_TerminateGameConnection_params *params ) +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; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); + return 0; } -void cppISteamUser_SteamUser008_TrackAppUsageEvent( struct cppISteamUser_SteamUser008_TrackAppUsageEvent_params *params ) +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; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); + return 0; } -void cppISteamUser_SteamUser008_RefreshSteam2Login( struct cppISteamUser_SteamUser008_RefreshSteam2Login_params *params ) +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; iface->RefreshSteam2Login( ); + return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser008.h b/lsteamclient/cppISteamUser_SteamUser008.h deleted file mode 100644 index c3351bba..00000000 --- a/lsteamclient/cppISteamUser_SteamUser008.h +++ /dev/null @@ -1,72 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUser_SteamUser008_GetHSteamUser_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamUser_SteamUser008_GetHSteamUser( struct cppISteamUser_SteamUser008_GetHSteamUser_params *params ); - -struct cppISteamUser_SteamUser008_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser008_BLoggedOn( struct cppISteamUser_SteamUser008_BLoggedOn_params *params ); - -struct cppISteamUser_SteamUser008_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamUser_SteamUser008_GetSteamID( struct cppISteamUser_SteamUser008_GetSteamID_params *params ); - -struct cppISteamUser_SteamUser008_InitiateGameConnection_params -{ - void *linux_side; - int32_t _ret; - void *pBlob; - int32_t cbMaxBlob; - CSteamID steamID; - CGameID gameID; - uint32_t unIPServer; - uint16_t usPortServer; - bool bSecure; - void *pvSteam2GetEncryptionKey; - int32_t cbSteam2GetEncryptionKey; -}; -extern void cppISteamUser_SteamUser008_InitiateGameConnection( struct cppISteamUser_SteamUser008_InitiateGameConnection_params *params ); - -struct cppISteamUser_SteamUser008_TerminateGameConnection_params -{ - void *linux_side; - uint32_t unIPServer; - uint16_t usPortServer; -}; -extern void cppISteamUser_SteamUser008_TerminateGameConnection( struct cppISteamUser_SteamUser008_TerminateGameConnection_params *params ); - -struct cppISteamUser_SteamUser008_TrackAppUsageEvent_params -{ - void *linux_side; - CGameID gameID; - int32_t eAppUsageEvent; - const char *pchExtraInfo; -}; -extern void cppISteamUser_SteamUser008_TrackAppUsageEvent( struct cppISteamUser_SteamUser008_TrackAppUsageEvent_params *params ); - -struct cppISteamUser_SteamUser008_RefreshSteam2Login_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser008_RefreshSteam2Login( struct cppISteamUser_SteamUser008_RefreshSteam2Login_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUser_SteamUser009.cpp b/lsteamclient/cppISteamUser_SteamUser009.cpp index 244adc9b..849f1d97 100644 --- a/lsteamclient/cppISteamUser_SteamUser009.cpp +++ b/lsteamclient/cppISteamUser_SteamUser009.cpp @@ -1,46 +1,59 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUser_SteamUser009.h" -void cppISteamUser_SteamUser009_GetHSteamUser( struct cppISteamUser_SteamUser009_GetHSteamUser_params *params ) +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; params->_ret = iface->GetHSteamUser( ); + return 0; } -void cppISteamUser_SteamUser009_BLoggedOn( struct cppISteamUser_SteamUser009_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamUser_SteamUser009_GetSteamID( struct cppISteamUser_SteamUser009_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamUser_SteamUser009_InitiateGameConnection( struct cppISteamUser_SteamUser009_InitiateGameConnection_params *params ) +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; params->_ret = iface->InitiateGameConnection( params->pAuthBlob, params->cbMaxAuthBlob, params->steamIDGameServer, params->gameID, params->unIPServer, params->usPortServer, params->bSecure ); + return 0; } -void cppISteamUser_SteamUser009_TerminateGameConnection( struct cppISteamUser_SteamUser009_TerminateGameConnection_params *params ) +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; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); + return 0; } -void cppISteamUser_SteamUser009_TrackAppUsageEvent( struct cppISteamUser_SteamUser009_TrackAppUsageEvent_params *params ) +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; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); + return 0; } -void cppISteamUser_SteamUser009_RefreshSteam2Login( struct cppISteamUser_SteamUser009_RefreshSteam2Login_params *params ) +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; iface->RefreshSteam2Login( ); + return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser009.h b/lsteamclient/cppISteamUser_SteamUser009.h deleted file mode 100644 index f7a433ee..00000000 --- a/lsteamclient/cppISteamUser_SteamUser009.h +++ /dev/null @@ -1,70 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUser_SteamUser009_GetHSteamUser_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamUser_SteamUser009_GetHSteamUser( struct cppISteamUser_SteamUser009_GetHSteamUser_params *params ); - -struct cppISteamUser_SteamUser009_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser009_BLoggedOn( struct cppISteamUser_SteamUser009_BLoggedOn_params *params ); - -struct cppISteamUser_SteamUser009_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamUser_SteamUser009_GetSteamID( struct cppISteamUser_SteamUser009_GetSteamID_params *params ); - -struct cppISteamUser_SteamUser009_InitiateGameConnection_params -{ - void *linux_side; - int32_t _ret; - void *pAuthBlob; - int32_t cbMaxAuthBlob; - CSteamID steamIDGameServer; - CGameID gameID; - uint32_t unIPServer; - uint16_t usPortServer; - bool bSecure; -}; -extern void cppISteamUser_SteamUser009_InitiateGameConnection( struct cppISteamUser_SteamUser009_InitiateGameConnection_params *params ); - -struct cppISteamUser_SteamUser009_TerminateGameConnection_params -{ - void *linux_side; - uint32_t unIPServer; - uint16_t usPortServer; -}; -extern void cppISteamUser_SteamUser009_TerminateGameConnection( struct cppISteamUser_SteamUser009_TerminateGameConnection_params *params ); - -struct cppISteamUser_SteamUser009_TrackAppUsageEvent_params -{ - void *linux_side; - CGameID gameID; - int32_t eAppUsageEvent; - const char *pchExtraInfo; -}; -extern void cppISteamUser_SteamUser009_TrackAppUsageEvent( struct cppISteamUser_SteamUser009_TrackAppUsageEvent_params *params ); - -struct cppISteamUser_SteamUser009_RefreshSteam2Login_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser009_RefreshSteam2Login( struct cppISteamUser_SteamUser009_RefreshSteam2Login_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUser_SteamUser010.cpp b/lsteamclient/cppISteamUser_SteamUser010.cpp index 96dbc0a6..01d29a5a 100644 --- a/lsteamclient/cppISteamUser_SteamUser010.cpp +++ b/lsteamclient/cppISteamUser_SteamUser010.cpp @@ -1,40 +1,51 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUser_SteamUser010.h" -void cppISteamUser_SteamUser010_GetHSteamUser( struct cppISteamUser_SteamUser010_GetHSteamUser_params *params ) +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; params->_ret = iface->GetHSteamUser( ); + return 0; } -void cppISteamUser_SteamUser010_BLoggedOn( struct cppISteamUser_SteamUser010_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamUser_SteamUser010_GetSteamID( struct cppISteamUser_SteamUser010_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamUser_SteamUser010_InitiateGameConnection( struct cppISteamUser_SteamUser010_InitiateGameConnection_params *params ) +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; params->_ret = iface->InitiateGameConnection( params->pAuthBlob, params->cbMaxAuthBlob, params->steamIDGameServer, params->unIPServer, params->usPortServer, params->bSecure ); + return 0; } -void cppISteamUser_SteamUser010_TerminateGameConnection( struct cppISteamUser_SteamUser010_TerminateGameConnection_params *params ) +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; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); + return 0; } -void cppISteamUser_SteamUser010_TrackAppUsageEvent( struct cppISteamUser_SteamUser010_TrackAppUsageEvent_params *params ) +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; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); + return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser010.h b/lsteamclient/cppISteamUser_SteamUser010.h deleted file mode 100644 index 042cee48..00000000 --- a/lsteamclient/cppISteamUser_SteamUser010.h +++ /dev/null @@ -1,63 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUser_SteamUser010_GetHSteamUser_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamUser_SteamUser010_GetHSteamUser( struct cppISteamUser_SteamUser010_GetHSteamUser_params *params ); - -struct cppISteamUser_SteamUser010_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser010_BLoggedOn( struct cppISteamUser_SteamUser010_BLoggedOn_params *params ); - -struct cppISteamUser_SteamUser010_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamUser_SteamUser010_GetSteamID( struct cppISteamUser_SteamUser010_GetSteamID_params *params ); - -struct cppISteamUser_SteamUser010_InitiateGameConnection_params -{ - void *linux_side; - int32_t _ret; - void *pAuthBlob; - int32_t cbMaxAuthBlob; - CSteamID steamIDGameServer; - uint32_t unIPServer; - uint16_t usPortServer; - bool bSecure; -}; -extern void cppISteamUser_SteamUser010_InitiateGameConnection( struct cppISteamUser_SteamUser010_InitiateGameConnection_params *params ); - -struct cppISteamUser_SteamUser010_TerminateGameConnection_params -{ - void *linux_side; - uint32_t unIPServer; - uint16_t usPortServer; -}; -extern void cppISteamUser_SteamUser010_TerminateGameConnection( struct cppISteamUser_SteamUser010_TerminateGameConnection_params *params ); - -struct cppISteamUser_SteamUser010_TrackAppUsageEvent_params -{ - void *linux_side; - CGameID gameID; - int32_t eAppUsageEvent; - const char *pchExtraInfo; -}; -extern void cppISteamUser_SteamUser010_TrackAppUsageEvent( struct cppISteamUser_SteamUser010_TrackAppUsageEvent_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUser_SteamUser011.cpp b/lsteamclient/cppISteamUser_SteamUser011.cpp index 6b2b1ae1..dc2f95ec 100644 --- a/lsteamclient/cppISteamUser_SteamUser011.cpp +++ b/lsteamclient/cppISteamUser_SteamUser011.cpp @@ -1,70 +1,91 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUser_SteamUser011.h" -void cppISteamUser_SteamUser011_GetHSteamUser( struct cppISteamUser_SteamUser011_GetHSteamUser_params *params ) +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; params->_ret = iface->GetHSteamUser( ); + return 0; } -void cppISteamUser_SteamUser011_BLoggedOn( struct cppISteamUser_SteamUser011_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamUser_SteamUser011_GetSteamID( struct cppISteamUser_SteamUser011_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamUser_SteamUser011_InitiateGameConnection( struct cppISteamUser_SteamUser011_InitiateGameConnection_params *params ) +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; params->_ret = iface->InitiateGameConnection( params->pAuthBlob, params->cbMaxAuthBlob, params->steamIDGameServer, params->unIPServer, params->usPortServer, params->bSecure ); + return 0; } -void cppISteamUser_SteamUser011_TerminateGameConnection( struct cppISteamUser_SteamUser011_TerminateGameConnection_params *params ) +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; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); + return 0; } -void cppISteamUser_SteamUser011_TrackAppUsageEvent( struct cppISteamUser_SteamUser011_TrackAppUsageEvent_params *params ) +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; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); + return 0; } -void cppISteamUser_SteamUser011_GetUserDataFolder( struct cppISteamUser_SteamUser011_GetUserDataFolder_params *params ) +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; params->_ret = iface->GetUserDataFolder( params->pchBuffer, params->cubBuffer ); + return 0; } -void cppISteamUser_SteamUser011_StartVoiceRecording( struct cppISteamUser_SteamUser011_StartVoiceRecording_params *params ) +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; iface->StartVoiceRecording( ); + return 0; } -void cppISteamUser_SteamUser011_StopVoiceRecording( struct cppISteamUser_SteamUser011_StopVoiceRecording_params *params ) +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; iface->StopVoiceRecording( ); + return 0; } -void cppISteamUser_SteamUser011_GetCompressedVoice( struct cppISteamUser_SteamUser011_GetCompressedVoice_params *params ) +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; params->_ret = iface->GetCompressedVoice( params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten ); + return 0; } -void cppISteamUser_SteamUser011_DecompressVoice( struct cppISteamUser_SteamUser011_DecompressVoice_params *params ) +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; params->_ret = iface->DecompressVoice( params->pCompressed, params->cbCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten ); + return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser011.h b/lsteamclient/cppISteamUser_SteamUser011.h deleted file mode 100644 index 0c5b2c43..00000000 --- a/lsteamclient/cppISteamUser_SteamUser011.h +++ /dev/null @@ -1,106 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUser_SteamUser011_GetHSteamUser_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamUser_SteamUser011_GetHSteamUser( struct cppISteamUser_SteamUser011_GetHSteamUser_params *params ); - -struct cppISteamUser_SteamUser011_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser011_BLoggedOn( struct cppISteamUser_SteamUser011_BLoggedOn_params *params ); - -struct cppISteamUser_SteamUser011_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamUser_SteamUser011_GetSteamID( struct cppISteamUser_SteamUser011_GetSteamID_params *params ); - -struct cppISteamUser_SteamUser011_InitiateGameConnection_params -{ - void *linux_side; - int32_t _ret; - void *pAuthBlob; - int32_t cbMaxAuthBlob; - CSteamID steamIDGameServer; - uint32_t unIPServer; - uint16_t usPortServer; - bool bSecure; -}; -extern void cppISteamUser_SteamUser011_InitiateGameConnection( struct cppISteamUser_SteamUser011_InitiateGameConnection_params *params ); - -struct cppISteamUser_SteamUser011_TerminateGameConnection_params -{ - void *linux_side; - uint32_t unIPServer; - uint16_t usPortServer; -}; -extern void cppISteamUser_SteamUser011_TerminateGameConnection( struct cppISteamUser_SteamUser011_TerminateGameConnection_params *params ); - -struct cppISteamUser_SteamUser011_TrackAppUsageEvent_params -{ - void *linux_side; - CGameID gameID; - int32_t eAppUsageEvent; - const char *pchExtraInfo; -}; -extern void cppISteamUser_SteamUser011_TrackAppUsageEvent( struct cppISteamUser_SteamUser011_TrackAppUsageEvent_params *params ); - -struct cppISteamUser_SteamUser011_GetUserDataFolder_params -{ - void *linux_side; - bool _ret; - char *pchBuffer; - int32_t cubBuffer; -}; -extern void cppISteamUser_SteamUser011_GetUserDataFolder( struct cppISteamUser_SteamUser011_GetUserDataFolder_params *params ); - -struct cppISteamUser_SteamUser011_StartVoiceRecording_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser011_StartVoiceRecording( struct cppISteamUser_SteamUser011_StartVoiceRecording_params *params ); - -struct cppISteamUser_SteamUser011_StopVoiceRecording_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser011_StopVoiceRecording( struct cppISteamUser_SteamUser011_StopVoiceRecording_params *params ); - -struct cppISteamUser_SteamUser011_GetCompressedVoice_params -{ - void *linux_side; - uint32_t _ret; - void *pDestBuffer; - uint32_t cbDestBufferSize; - uint32_t *nBytesWritten; -}; -extern void cppISteamUser_SteamUser011_GetCompressedVoice( struct cppISteamUser_SteamUser011_GetCompressedVoice_params *params ); - -struct cppISteamUser_SteamUser011_DecompressVoice_params -{ - void *linux_side; - uint32_t _ret; - void *pCompressed; - uint32_t cbCompressed; - void *pDestBuffer; - uint32_t cbDestBufferSize; - uint32_t *nBytesWritten; -}; -extern void cppISteamUser_SteamUser011_DecompressVoice( struct cppISteamUser_SteamUser011_DecompressVoice_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUser_SteamUser012.cpp b/lsteamclient/cppISteamUser_SteamUser012.cpp index eba9903b..95c535d5 100644 --- a/lsteamclient/cppISteamUser_SteamUser012.cpp +++ b/lsteamclient/cppISteamUser_SteamUser012.cpp @@ -1,100 +1,131 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUser_SteamUser012.h" -void cppISteamUser_SteamUser012_GetHSteamUser( struct cppISteamUser_SteamUser012_GetHSteamUser_params *params ) +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; params->_ret = iface->GetHSteamUser( ); + return 0; } -void cppISteamUser_SteamUser012_BLoggedOn( struct cppISteamUser_SteamUser012_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamUser_SteamUser012_GetSteamID( struct cppISteamUser_SteamUser012_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamUser_SteamUser012_InitiateGameConnection( struct cppISteamUser_SteamUser012_InitiateGameConnection_params *params ) +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; params->_ret = iface->InitiateGameConnection( params->pAuthBlob, params->cbMaxAuthBlob, params->steamIDGameServer, params->unIPServer, params->usPortServer, params->bSecure ); + return 0; } -void cppISteamUser_SteamUser012_TerminateGameConnection( struct cppISteamUser_SteamUser012_TerminateGameConnection_params *params ) +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; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); + return 0; } -void cppISteamUser_SteamUser012_TrackAppUsageEvent( struct cppISteamUser_SteamUser012_TrackAppUsageEvent_params *params ) +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; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); + return 0; } -void cppISteamUser_SteamUser012_GetUserDataFolder( struct cppISteamUser_SteamUser012_GetUserDataFolder_params *params ) +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; params->_ret = iface->GetUserDataFolder( params->pchBuffer, params->cubBuffer ); + return 0; } -void cppISteamUser_SteamUser012_StartVoiceRecording( struct cppISteamUser_SteamUser012_StartVoiceRecording_params *params ) +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; iface->StartVoiceRecording( ); + return 0; } -void cppISteamUser_SteamUser012_StopVoiceRecording( struct cppISteamUser_SteamUser012_StopVoiceRecording_params *params ) +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; iface->StopVoiceRecording( ); + return 0; } -void cppISteamUser_SteamUser012_GetCompressedVoice( struct cppISteamUser_SteamUser012_GetCompressedVoice_params *params ) +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; params->_ret = iface->GetCompressedVoice( params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten ); + return 0; } -void cppISteamUser_SteamUser012_DecompressVoice( struct cppISteamUser_SteamUser012_DecompressVoice_params *params ) +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; params->_ret = iface->DecompressVoice( params->pCompressed, params->cbCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten ); + return 0; } -void cppISteamUser_SteamUser012_GetAuthSessionTicket( struct cppISteamUser_SteamUser012_GetAuthSessionTicket_params *params ) +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; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); + return 0; } -void cppISteamUser_SteamUser012_BeginAuthSession( struct cppISteamUser_SteamUser012_BeginAuthSession_params *params ) +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; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); + return 0; } -void cppISteamUser_SteamUser012_EndAuthSession( struct cppISteamUser_SteamUser012_EndAuthSession_params *params ) +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; iface->EndAuthSession( params->steamID ); + return 0; } -void cppISteamUser_SteamUser012_CancelAuthTicket( struct cppISteamUser_SteamUser012_CancelAuthTicket_params *params ) +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; iface->CancelAuthTicket( params->hAuthTicket ); + return 0; } -void cppISteamUser_SteamUser012_UserHasLicenseForApp( struct cppISteamUser_SteamUser012_UserHasLicenseForApp_params *params ) +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; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); + return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser012.h b/lsteamclient/cppISteamUser_SteamUser012.h deleted file mode 100644 index 0a54a1f9..00000000 --- a/lsteamclient/cppISteamUser_SteamUser012.h +++ /dev/null @@ -1,149 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUser_SteamUser012_GetHSteamUser_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamUser_SteamUser012_GetHSteamUser( struct cppISteamUser_SteamUser012_GetHSteamUser_params *params ); - -struct cppISteamUser_SteamUser012_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser012_BLoggedOn( struct cppISteamUser_SteamUser012_BLoggedOn_params *params ); - -struct cppISteamUser_SteamUser012_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamUser_SteamUser012_GetSteamID( struct cppISteamUser_SteamUser012_GetSteamID_params *params ); - -struct cppISteamUser_SteamUser012_InitiateGameConnection_params -{ - void *linux_side; - int32_t _ret; - void *pAuthBlob; - int32_t cbMaxAuthBlob; - CSteamID steamIDGameServer; - uint32_t unIPServer; - uint16_t usPortServer; - bool bSecure; -}; -extern void cppISteamUser_SteamUser012_InitiateGameConnection( struct cppISteamUser_SteamUser012_InitiateGameConnection_params *params ); - -struct cppISteamUser_SteamUser012_TerminateGameConnection_params -{ - void *linux_side; - uint32_t unIPServer; - uint16_t usPortServer; -}; -extern void cppISteamUser_SteamUser012_TerminateGameConnection( struct cppISteamUser_SteamUser012_TerminateGameConnection_params *params ); - -struct cppISteamUser_SteamUser012_TrackAppUsageEvent_params -{ - void *linux_side; - CGameID gameID; - int32_t eAppUsageEvent; - const char *pchExtraInfo; -}; -extern void cppISteamUser_SteamUser012_TrackAppUsageEvent( struct cppISteamUser_SteamUser012_TrackAppUsageEvent_params *params ); - -struct cppISteamUser_SteamUser012_GetUserDataFolder_params -{ - void *linux_side; - bool _ret; - char *pchBuffer; - int32_t cubBuffer; -}; -extern void cppISteamUser_SteamUser012_GetUserDataFolder( struct cppISteamUser_SteamUser012_GetUserDataFolder_params *params ); - -struct cppISteamUser_SteamUser012_StartVoiceRecording_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser012_StartVoiceRecording( struct cppISteamUser_SteamUser012_StartVoiceRecording_params *params ); - -struct cppISteamUser_SteamUser012_StopVoiceRecording_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser012_StopVoiceRecording( struct cppISteamUser_SteamUser012_StopVoiceRecording_params *params ); - -struct cppISteamUser_SteamUser012_GetCompressedVoice_params -{ - void *linux_side; - uint32_t _ret; - void *pDestBuffer; - uint32_t cbDestBufferSize; - uint32_t *nBytesWritten; -}; -extern void cppISteamUser_SteamUser012_GetCompressedVoice( struct cppISteamUser_SteamUser012_GetCompressedVoice_params *params ); - -struct cppISteamUser_SteamUser012_DecompressVoice_params -{ - void *linux_side; - uint32_t _ret; - void *pCompressed; - uint32_t cbCompressed; - void *pDestBuffer; - uint32_t cbDestBufferSize; - uint32_t *nBytesWritten; -}; -extern void cppISteamUser_SteamUser012_DecompressVoice( struct cppISteamUser_SteamUser012_DecompressVoice_params *params ); - -struct cppISteamUser_SteamUser012_GetAuthSessionTicket_params -{ - void *linux_side; - uint32_t _ret; - void *pTicket; - int32_t cbMaxTicket; - uint32_t *pcbTicket; -}; -extern void cppISteamUser_SteamUser012_GetAuthSessionTicket( struct cppISteamUser_SteamUser012_GetAuthSessionTicket_params *params ); - -struct cppISteamUser_SteamUser012_BeginAuthSession_params -{ - void *linux_side; - uint32_t _ret; - const void *pAuthTicket; - int32_t cbAuthTicket; - CSteamID steamID; -}; -extern void cppISteamUser_SteamUser012_BeginAuthSession( struct cppISteamUser_SteamUser012_BeginAuthSession_params *params ); - -struct cppISteamUser_SteamUser012_EndAuthSession_params -{ - void *linux_side; - CSteamID steamID; -}; -extern void cppISteamUser_SteamUser012_EndAuthSession( struct cppISteamUser_SteamUser012_EndAuthSession_params *params ); - -struct cppISteamUser_SteamUser012_CancelAuthTicket_params -{ - void *linux_side; - uint32_t hAuthTicket; -}; -extern void cppISteamUser_SteamUser012_CancelAuthTicket( struct cppISteamUser_SteamUser012_CancelAuthTicket_params *params ); - -struct cppISteamUser_SteamUser012_UserHasLicenseForApp_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamID; - uint32_t appID; -}; -extern void cppISteamUser_SteamUser012_UserHasLicenseForApp( struct cppISteamUser_SteamUser012_UserHasLicenseForApp_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUser_SteamUser013.cpp b/lsteamclient/cppISteamUser_SteamUser013.cpp index 48a5612c..0c3b7f92 100644 --- a/lsteamclient/cppISteamUser_SteamUser013.cpp +++ b/lsteamclient/cppISteamUser_SteamUser013.cpp @@ -1,106 +1,139 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUser_SteamUser013.h" -void cppISteamUser_SteamUser013_GetHSteamUser( struct cppISteamUser_SteamUser013_GetHSteamUser_params *params ) +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; params->_ret = iface->GetHSteamUser( ); + return 0; } -void cppISteamUser_SteamUser013_BLoggedOn( struct cppISteamUser_SteamUser013_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamUser_SteamUser013_GetSteamID( struct cppISteamUser_SteamUser013_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamUser_SteamUser013_InitiateGameConnection( struct cppISteamUser_SteamUser013_InitiateGameConnection_params *params ) +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; params->_ret = iface->InitiateGameConnection( params->pAuthBlob, params->cbMaxAuthBlob, params->steamIDGameServer, params->unIPServer, params->usPortServer, params->bSecure ); + return 0; } -void cppISteamUser_SteamUser013_TerminateGameConnection( struct cppISteamUser_SteamUser013_TerminateGameConnection_params *params ) +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; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); + return 0; } -void cppISteamUser_SteamUser013_TrackAppUsageEvent( struct cppISteamUser_SteamUser013_TrackAppUsageEvent_params *params ) +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; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); + return 0; } -void cppISteamUser_SteamUser013_GetUserDataFolder( struct cppISteamUser_SteamUser013_GetUserDataFolder_params *params ) +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; params->_ret = iface->GetUserDataFolder( params->pchBuffer, params->cubBuffer ); + return 0; } -void cppISteamUser_SteamUser013_StartVoiceRecording( struct cppISteamUser_SteamUser013_StartVoiceRecording_params *params ) +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; iface->StartVoiceRecording( ); + return 0; } -void cppISteamUser_SteamUser013_StopVoiceRecording( struct cppISteamUser_SteamUser013_StopVoiceRecording_params *params ) +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; iface->StopVoiceRecording( ); + return 0; } -void cppISteamUser_SteamUser013_GetAvailableVoice( struct cppISteamUser_SteamUser013_GetAvailableVoice_params *params ) +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; params->_ret = iface->GetAvailableVoice( params->pcbCompressed, params->pcbUncompressed ); + return 0; } -void cppISteamUser_SteamUser013_GetVoice( struct cppISteamUser_SteamUser013_GetVoice_params *params ) +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; params->_ret = iface->GetVoice( params->bWantCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->bWantUncompressed, params->pUncompressedDestBuffer, params->cbUncompressedDestBufferSize, params->nUncompressBytesWritten ); + return 0; } -void cppISteamUser_SteamUser013_DecompressVoice( struct cppISteamUser_SteamUser013_DecompressVoice_params *params ) +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; params->_ret = iface->DecompressVoice( params->pCompressed, params->cbCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten ); + return 0; } -void cppISteamUser_SteamUser013_GetAuthSessionTicket( struct cppISteamUser_SteamUser013_GetAuthSessionTicket_params *params ) +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; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); + return 0; } -void cppISteamUser_SteamUser013_BeginAuthSession( struct cppISteamUser_SteamUser013_BeginAuthSession_params *params ) +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; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); + return 0; } -void cppISteamUser_SteamUser013_EndAuthSession( struct cppISteamUser_SteamUser013_EndAuthSession_params *params ) +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; iface->EndAuthSession( params->steamID ); + return 0; } -void cppISteamUser_SteamUser013_CancelAuthTicket( struct cppISteamUser_SteamUser013_CancelAuthTicket_params *params ) +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; iface->CancelAuthTicket( params->hAuthTicket ); + return 0; } -void cppISteamUser_SteamUser013_UserHasLicenseForApp( struct cppISteamUser_SteamUser013_UserHasLicenseForApp_params *params ) +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; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); + return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser013.h b/lsteamclient/cppISteamUser_SteamUser013.h deleted file mode 100644 index 28f8615a..00000000 --- a/lsteamclient/cppISteamUser_SteamUser013.h +++ /dev/null @@ -1,163 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUser_SteamUser013_GetHSteamUser_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamUser_SteamUser013_GetHSteamUser( struct cppISteamUser_SteamUser013_GetHSteamUser_params *params ); - -struct cppISteamUser_SteamUser013_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser013_BLoggedOn( struct cppISteamUser_SteamUser013_BLoggedOn_params *params ); - -struct cppISteamUser_SteamUser013_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamUser_SteamUser013_GetSteamID( struct cppISteamUser_SteamUser013_GetSteamID_params *params ); - -struct cppISteamUser_SteamUser013_InitiateGameConnection_params -{ - void *linux_side; - int32_t _ret; - void *pAuthBlob; - int32_t cbMaxAuthBlob; - CSteamID steamIDGameServer; - uint32_t unIPServer; - uint16_t usPortServer; - bool bSecure; -}; -extern void cppISteamUser_SteamUser013_InitiateGameConnection( struct cppISteamUser_SteamUser013_InitiateGameConnection_params *params ); - -struct cppISteamUser_SteamUser013_TerminateGameConnection_params -{ - void *linux_side; - uint32_t unIPServer; - uint16_t usPortServer; -}; -extern void cppISteamUser_SteamUser013_TerminateGameConnection( struct cppISteamUser_SteamUser013_TerminateGameConnection_params *params ); - -struct cppISteamUser_SteamUser013_TrackAppUsageEvent_params -{ - void *linux_side; - CGameID gameID; - int32_t eAppUsageEvent; - const char *pchExtraInfo; -}; -extern void cppISteamUser_SteamUser013_TrackAppUsageEvent( struct cppISteamUser_SteamUser013_TrackAppUsageEvent_params *params ); - -struct cppISteamUser_SteamUser013_GetUserDataFolder_params -{ - void *linux_side; - bool _ret; - char *pchBuffer; - int32_t cubBuffer; -}; -extern void cppISteamUser_SteamUser013_GetUserDataFolder( struct cppISteamUser_SteamUser013_GetUserDataFolder_params *params ); - -struct cppISteamUser_SteamUser013_StartVoiceRecording_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser013_StartVoiceRecording( struct cppISteamUser_SteamUser013_StartVoiceRecording_params *params ); - -struct cppISteamUser_SteamUser013_StopVoiceRecording_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser013_StopVoiceRecording( struct cppISteamUser_SteamUser013_StopVoiceRecording_params *params ); - -struct cppISteamUser_SteamUser013_GetAvailableVoice_params -{ - void *linux_side; - uint32_t _ret; - uint32_t *pcbCompressed; - uint32_t *pcbUncompressed; -}; -extern void cppISteamUser_SteamUser013_GetAvailableVoice( struct cppISteamUser_SteamUser013_GetAvailableVoice_params *params ); - -struct cppISteamUser_SteamUser013_GetVoice_params -{ - void *linux_side; - uint32_t _ret; - bool bWantCompressed; - void *pDestBuffer; - uint32_t cbDestBufferSize; - uint32_t *nBytesWritten; - bool bWantUncompressed; - void *pUncompressedDestBuffer; - uint32_t cbUncompressedDestBufferSize; - uint32_t *nUncompressBytesWritten; -}; -extern void cppISteamUser_SteamUser013_GetVoice( struct cppISteamUser_SteamUser013_GetVoice_params *params ); - -struct cppISteamUser_SteamUser013_DecompressVoice_params -{ - void *linux_side; - uint32_t _ret; - const void *pCompressed; - uint32_t cbCompressed; - void *pDestBuffer; - uint32_t cbDestBufferSize; - uint32_t *nBytesWritten; -}; -extern void cppISteamUser_SteamUser013_DecompressVoice( struct cppISteamUser_SteamUser013_DecompressVoice_params *params ); - -struct cppISteamUser_SteamUser013_GetAuthSessionTicket_params -{ - void *linux_side; - uint32_t _ret; - void *pTicket; - int32_t cbMaxTicket; - uint32_t *pcbTicket; -}; -extern void cppISteamUser_SteamUser013_GetAuthSessionTicket( struct cppISteamUser_SteamUser013_GetAuthSessionTicket_params *params ); - -struct cppISteamUser_SteamUser013_BeginAuthSession_params -{ - void *linux_side; - uint32_t _ret; - const void *pAuthTicket; - int32_t cbAuthTicket; - CSteamID steamID; -}; -extern void cppISteamUser_SteamUser013_BeginAuthSession( struct cppISteamUser_SteamUser013_BeginAuthSession_params *params ); - -struct cppISteamUser_SteamUser013_EndAuthSession_params -{ - void *linux_side; - CSteamID steamID; -}; -extern void cppISteamUser_SteamUser013_EndAuthSession( struct cppISteamUser_SteamUser013_EndAuthSession_params *params ); - -struct cppISteamUser_SteamUser013_CancelAuthTicket_params -{ - void *linux_side; - uint32_t hAuthTicket; -}; -extern void cppISteamUser_SteamUser013_CancelAuthTicket( struct cppISteamUser_SteamUser013_CancelAuthTicket_params *params ); - -struct cppISteamUser_SteamUser013_UserHasLicenseForApp_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamID; - uint32_t appID; -}; -extern void cppISteamUser_SteamUser013_UserHasLicenseForApp( struct cppISteamUser_SteamUser013_UserHasLicenseForApp_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUser_SteamUser014.cpp b/lsteamclient/cppISteamUser_SteamUser014.cpp index eb16ab8e..630262c2 100644 --- a/lsteamclient/cppISteamUser_SteamUser014.cpp +++ b/lsteamclient/cppISteamUser_SteamUser014.cpp @@ -1,130 +1,171 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUser_SteamUser014.h" -void cppISteamUser_SteamUser014_GetHSteamUser( struct cppISteamUser_SteamUser014_GetHSteamUser_params *params ) +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; params->_ret = iface->GetHSteamUser( ); + return 0; } -void cppISteamUser_SteamUser014_BLoggedOn( struct cppISteamUser_SteamUser014_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamUser_SteamUser014_GetSteamID( struct cppISteamUser_SteamUser014_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamUser_SteamUser014_InitiateGameConnection( struct cppISteamUser_SteamUser014_InitiateGameConnection_params *params ) +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; params->_ret = iface->InitiateGameConnection( params->pAuthBlob, params->cbMaxAuthBlob, params->steamIDGameServer, params->unIPServer, params->usPortServer, params->bSecure ); + return 0; } -void cppISteamUser_SteamUser014_TerminateGameConnection( struct cppISteamUser_SteamUser014_TerminateGameConnection_params *params ) +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; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); + return 0; } -void cppISteamUser_SteamUser014_TrackAppUsageEvent( struct cppISteamUser_SteamUser014_TrackAppUsageEvent_params *params ) +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; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); + return 0; } -void cppISteamUser_SteamUser014_GetUserDataFolder( struct cppISteamUser_SteamUser014_GetUserDataFolder_params *params ) +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; params->_ret = iface->GetUserDataFolder( params->pchBuffer, params->cubBuffer ); + return 0; } -void cppISteamUser_SteamUser014_StartVoiceRecording( struct cppISteamUser_SteamUser014_StartVoiceRecording_params *params ) +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; iface->StartVoiceRecording( ); + return 0; } -void cppISteamUser_SteamUser014_StopVoiceRecording( struct cppISteamUser_SteamUser014_StopVoiceRecording_params *params ) +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; iface->StopVoiceRecording( ); + return 0; } -void cppISteamUser_SteamUser014_GetAvailableVoice( struct cppISteamUser_SteamUser014_GetAvailableVoice_params *params ) +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; params->_ret = iface->GetAvailableVoice( params->pcbCompressed, params->pcbUncompressed ); + return 0; } -void cppISteamUser_SteamUser014_GetVoice( struct cppISteamUser_SteamUser014_GetVoice_params *params ) +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; params->_ret = iface->GetVoice( params->bWantCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->bWantUncompressed, params->pUncompressedDestBuffer, params->cbUncompressedDestBufferSize, params->nUncompressBytesWritten ); + return 0; } -void cppISteamUser_SteamUser014_DecompressVoice( struct cppISteamUser_SteamUser014_DecompressVoice_params *params ) +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; params->_ret = iface->DecompressVoice( params->pCompressed, params->cbCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten ); + return 0; } -void cppISteamUser_SteamUser014_GetAuthSessionTicket( struct cppISteamUser_SteamUser014_GetAuthSessionTicket_params *params ) +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; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); + return 0; } -void cppISteamUser_SteamUser014_BeginAuthSession( struct cppISteamUser_SteamUser014_BeginAuthSession_params *params ) +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; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); + return 0; } -void cppISteamUser_SteamUser014_EndAuthSession( struct cppISteamUser_SteamUser014_EndAuthSession_params *params ) +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; iface->EndAuthSession( params->steamID ); + return 0; } -void cppISteamUser_SteamUser014_CancelAuthTicket( struct cppISteamUser_SteamUser014_CancelAuthTicket_params *params ) +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; iface->CancelAuthTicket( params->hAuthTicket ); + return 0; } -void cppISteamUser_SteamUser014_UserHasLicenseForApp( struct cppISteamUser_SteamUser014_UserHasLicenseForApp_params *params ) +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; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); + return 0; } -void cppISteamUser_SteamUser014_BIsBehindNAT( struct cppISteamUser_SteamUser014_BIsBehindNAT_params *params ) +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; params->_ret = iface->BIsBehindNAT( ); + return 0; } -void cppISteamUser_SteamUser014_AdvertiseGame( struct cppISteamUser_SteamUser014_AdvertiseGame_params *params ) +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; iface->AdvertiseGame( params->steamIDGameServer, params->unIPServer, params->usPortServer ); + return 0; } -void cppISteamUser_SteamUser014_RequestEncryptedAppTicket( struct cppISteamUser_SteamUser014_RequestEncryptedAppTicket_params *params ) +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; params->_ret = iface->RequestEncryptedAppTicket( params->pDataToInclude, params->cbDataToInclude ); + return 0; } -void cppISteamUser_SteamUser014_GetEncryptedAppTicket( struct cppISteamUser_SteamUser014_GetEncryptedAppTicket_params *params ) +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; params->_ret = iface->GetEncryptedAppTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); + return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser014.h b/lsteamclient/cppISteamUser_SteamUser014.h deleted file mode 100644 index 53985513..00000000 --- a/lsteamclient/cppISteamUser_SteamUser014.h +++ /dev/null @@ -1,198 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUser_SteamUser014_GetHSteamUser_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamUser_SteamUser014_GetHSteamUser( struct cppISteamUser_SteamUser014_GetHSteamUser_params *params ); - -struct cppISteamUser_SteamUser014_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser014_BLoggedOn( struct cppISteamUser_SteamUser014_BLoggedOn_params *params ); - -struct cppISteamUser_SteamUser014_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamUser_SteamUser014_GetSteamID( struct cppISteamUser_SteamUser014_GetSteamID_params *params ); - -struct cppISteamUser_SteamUser014_InitiateGameConnection_params -{ - void *linux_side; - int32_t _ret; - void *pAuthBlob; - int32_t cbMaxAuthBlob; - CSteamID steamIDGameServer; - uint32_t unIPServer; - uint16_t usPortServer; - bool bSecure; -}; -extern void cppISteamUser_SteamUser014_InitiateGameConnection( struct cppISteamUser_SteamUser014_InitiateGameConnection_params *params ); - -struct cppISteamUser_SteamUser014_TerminateGameConnection_params -{ - void *linux_side; - uint32_t unIPServer; - uint16_t usPortServer; -}; -extern void cppISteamUser_SteamUser014_TerminateGameConnection( struct cppISteamUser_SteamUser014_TerminateGameConnection_params *params ); - -struct cppISteamUser_SteamUser014_TrackAppUsageEvent_params -{ - void *linux_side; - CGameID gameID; - int32_t eAppUsageEvent; - const char *pchExtraInfo; -}; -extern void cppISteamUser_SteamUser014_TrackAppUsageEvent( struct cppISteamUser_SteamUser014_TrackAppUsageEvent_params *params ); - -struct cppISteamUser_SteamUser014_GetUserDataFolder_params -{ - void *linux_side; - bool _ret; - char *pchBuffer; - int32_t cubBuffer; -}; -extern void cppISteamUser_SteamUser014_GetUserDataFolder( struct cppISteamUser_SteamUser014_GetUserDataFolder_params *params ); - -struct cppISteamUser_SteamUser014_StartVoiceRecording_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser014_StartVoiceRecording( struct cppISteamUser_SteamUser014_StartVoiceRecording_params *params ); - -struct cppISteamUser_SteamUser014_StopVoiceRecording_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser014_StopVoiceRecording( struct cppISteamUser_SteamUser014_StopVoiceRecording_params *params ); - -struct cppISteamUser_SteamUser014_GetAvailableVoice_params -{ - void *linux_side; - uint32_t _ret; - uint32_t *pcbCompressed; - uint32_t *pcbUncompressed; -}; -extern void cppISteamUser_SteamUser014_GetAvailableVoice( struct cppISteamUser_SteamUser014_GetAvailableVoice_params *params ); - -struct cppISteamUser_SteamUser014_GetVoice_params -{ - void *linux_side; - uint32_t _ret; - bool bWantCompressed; - void *pDestBuffer; - uint32_t cbDestBufferSize; - uint32_t *nBytesWritten; - bool bWantUncompressed; - void *pUncompressedDestBuffer; - uint32_t cbUncompressedDestBufferSize; - uint32_t *nUncompressBytesWritten; -}; -extern void cppISteamUser_SteamUser014_GetVoice( struct cppISteamUser_SteamUser014_GetVoice_params *params ); - -struct cppISteamUser_SteamUser014_DecompressVoice_params -{ - void *linux_side; - uint32_t _ret; - const void *pCompressed; - uint32_t cbCompressed; - void *pDestBuffer; - uint32_t cbDestBufferSize; - uint32_t *nBytesWritten; -}; -extern void cppISteamUser_SteamUser014_DecompressVoice( struct cppISteamUser_SteamUser014_DecompressVoice_params *params ); - -struct cppISteamUser_SteamUser014_GetAuthSessionTicket_params -{ - void *linux_side; - uint32_t _ret; - void *pTicket; - int32_t cbMaxTicket; - uint32_t *pcbTicket; -}; -extern void cppISteamUser_SteamUser014_GetAuthSessionTicket( struct cppISteamUser_SteamUser014_GetAuthSessionTicket_params *params ); - -struct cppISteamUser_SteamUser014_BeginAuthSession_params -{ - void *linux_side; - uint32_t _ret; - const void *pAuthTicket; - int32_t cbAuthTicket; - CSteamID steamID; -}; -extern void cppISteamUser_SteamUser014_BeginAuthSession( struct cppISteamUser_SteamUser014_BeginAuthSession_params *params ); - -struct cppISteamUser_SteamUser014_EndAuthSession_params -{ - void *linux_side; - CSteamID steamID; -}; -extern void cppISteamUser_SteamUser014_EndAuthSession( struct cppISteamUser_SteamUser014_EndAuthSession_params *params ); - -struct cppISteamUser_SteamUser014_CancelAuthTicket_params -{ - void *linux_side; - uint32_t hAuthTicket; -}; -extern void cppISteamUser_SteamUser014_CancelAuthTicket( struct cppISteamUser_SteamUser014_CancelAuthTicket_params *params ); - -struct cppISteamUser_SteamUser014_UserHasLicenseForApp_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamID; - uint32_t appID; -}; -extern void cppISteamUser_SteamUser014_UserHasLicenseForApp( struct cppISteamUser_SteamUser014_UserHasLicenseForApp_params *params ); - -struct cppISteamUser_SteamUser014_BIsBehindNAT_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser014_BIsBehindNAT( struct cppISteamUser_SteamUser014_BIsBehindNAT_params *params ); - -struct cppISteamUser_SteamUser014_AdvertiseGame_params -{ - void *linux_side; - CSteamID steamIDGameServer; - uint32_t unIPServer; - uint16_t usPortServer; -}; -extern void cppISteamUser_SteamUser014_AdvertiseGame( struct cppISteamUser_SteamUser014_AdvertiseGame_params *params ); - -struct cppISteamUser_SteamUser014_RequestEncryptedAppTicket_params -{ - void *linux_side; - uint64_t _ret; - void *pDataToInclude; - int32_t cbDataToInclude; -}; -extern void cppISteamUser_SteamUser014_RequestEncryptedAppTicket( struct cppISteamUser_SteamUser014_RequestEncryptedAppTicket_params *params ); - -struct cppISteamUser_SteamUser014_GetEncryptedAppTicket_params -{ - void *linux_side; - bool _ret; - void *pTicket; - int32_t cbMaxTicket; - uint32_t *pcbTicket; -}; -extern void cppISteamUser_SteamUser014_GetEncryptedAppTicket( struct cppISteamUser_SteamUser014_GetEncryptedAppTicket_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUser_SteamUser015.cpp b/lsteamclient/cppISteamUser_SteamUser015.cpp index adeda970..9b245180 100644 --- a/lsteamclient/cppISteamUser_SteamUser015.cpp +++ b/lsteamclient/cppISteamUser_SteamUser015.cpp @@ -1,136 +1,179 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUser_SteamUser015.h" -void cppISteamUser_SteamUser015_GetHSteamUser( struct cppISteamUser_SteamUser015_GetHSteamUser_params *params ) +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; params->_ret = iface->GetHSteamUser( ); + return 0; } -void cppISteamUser_SteamUser015_BLoggedOn( struct cppISteamUser_SteamUser015_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamUser_SteamUser015_GetSteamID( struct cppISteamUser_SteamUser015_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamUser_SteamUser015_InitiateGameConnection( struct cppISteamUser_SteamUser015_InitiateGameConnection_params *params ) +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; params->_ret = iface->InitiateGameConnection( params->pAuthBlob, params->cbMaxAuthBlob, params->steamIDGameServer, params->unIPServer, params->usPortServer, params->bSecure ); + return 0; } -void cppISteamUser_SteamUser015_TerminateGameConnection( struct cppISteamUser_SteamUser015_TerminateGameConnection_params *params ) +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; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); + return 0; } -void cppISteamUser_SteamUser015_TrackAppUsageEvent( struct cppISteamUser_SteamUser015_TrackAppUsageEvent_params *params ) +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; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); + return 0; } -void cppISteamUser_SteamUser015_GetUserDataFolder( struct cppISteamUser_SteamUser015_GetUserDataFolder_params *params ) +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; params->_ret = iface->GetUserDataFolder( params->pchBuffer, params->cubBuffer ); + return 0; } -void cppISteamUser_SteamUser015_StartVoiceRecording( struct cppISteamUser_SteamUser015_StartVoiceRecording_params *params ) +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; iface->StartVoiceRecording( ); + return 0; } -void cppISteamUser_SteamUser015_StopVoiceRecording( struct cppISteamUser_SteamUser015_StopVoiceRecording_params *params ) +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; iface->StopVoiceRecording( ); + return 0; } -void cppISteamUser_SteamUser015_GetAvailableVoice( struct cppISteamUser_SteamUser015_GetAvailableVoice_params *params ) +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; params->_ret = iface->GetAvailableVoice( params->pcbCompressed, params->pcbUncompressed ); + return 0; } -void cppISteamUser_SteamUser015_GetVoice( struct cppISteamUser_SteamUser015_GetVoice_params *params ) +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; params->_ret = iface->GetVoice( params->bWantCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->bWantUncompressed, params->pUncompressedDestBuffer, params->cbUncompressedDestBufferSize, params->nUncompressBytesWritten ); + return 0; } -void cppISteamUser_SteamUser015_DecompressVoice( struct cppISteamUser_SteamUser015_DecompressVoice_params *params ) +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; params->_ret = iface->DecompressVoice( params->pCompressed, params->cbCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->nDesiredSampleRate ); + return 0; } -void cppISteamUser_SteamUser015_GetVoiceOptimalSampleRate( struct cppISteamUser_SteamUser015_GetVoiceOptimalSampleRate_params *params ) +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; params->_ret = iface->GetVoiceOptimalSampleRate( ); + return 0; } -void cppISteamUser_SteamUser015_GetAuthSessionTicket( struct cppISteamUser_SteamUser015_GetAuthSessionTicket_params *params ) +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; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); + return 0; } -void cppISteamUser_SteamUser015_BeginAuthSession( struct cppISteamUser_SteamUser015_BeginAuthSession_params *params ) +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; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); + return 0; } -void cppISteamUser_SteamUser015_EndAuthSession( struct cppISteamUser_SteamUser015_EndAuthSession_params *params ) +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; iface->EndAuthSession( params->steamID ); + return 0; } -void cppISteamUser_SteamUser015_CancelAuthTicket( struct cppISteamUser_SteamUser015_CancelAuthTicket_params *params ) +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; iface->CancelAuthTicket( params->hAuthTicket ); + return 0; } -void cppISteamUser_SteamUser015_UserHasLicenseForApp( struct cppISteamUser_SteamUser015_UserHasLicenseForApp_params *params ) +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; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); + return 0; } -void cppISteamUser_SteamUser015_BIsBehindNAT( struct cppISteamUser_SteamUser015_BIsBehindNAT_params *params ) +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; params->_ret = iface->BIsBehindNAT( ); + return 0; } -void cppISteamUser_SteamUser015_AdvertiseGame( struct cppISteamUser_SteamUser015_AdvertiseGame_params *params ) +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; iface->AdvertiseGame( params->steamIDGameServer, params->unIPServer, params->usPortServer ); + return 0; } -void cppISteamUser_SteamUser015_RequestEncryptedAppTicket( struct cppISteamUser_SteamUser015_RequestEncryptedAppTicket_params *params ) +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; params->_ret = iface->RequestEncryptedAppTicket( params->pDataToInclude, params->cbDataToInclude ); + return 0; } -void cppISteamUser_SteamUser015_GetEncryptedAppTicket( struct cppISteamUser_SteamUser015_GetEncryptedAppTicket_params *params ) +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; params->_ret = iface->GetEncryptedAppTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); + return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser015.h b/lsteamclient/cppISteamUser_SteamUser015.h deleted file mode 100644 index 74da0584..00000000 --- a/lsteamclient/cppISteamUser_SteamUser015.h +++ /dev/null @@ -1,206 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUser_SteamUser015_GetHSteamUser_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamUser_SteamUser015_GetHSteamUser( struct cppISteamUser_SteamUser015_GetHSteamUser_params *params ); - -struct cppISteamUser_SteamUser015_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser015_BLoggedOn( struct cppISteamUser_SteamUser015_BLoggedOn_params *params ); - -struct cppISteamUser_SteamUser015_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamUser_SteamUser015_GetSteamID( struct cppISteamUser_SteamUser015_GetSteamID_params *params ); - -struct cppISteamUser_SteamUser015_InitiateGameConnection_params -{ - void *linux_side; - int32_t _ret; - void *pAuthBlob; - int32_t cbMaxAuthBlob; - CSteamID steamIDGameServer; - uint32_t unIPServer; - uint16_t usPortServer; - bool bSecure; -}; -extern void cppISteamUser_SteamUser015_InitiateGameConnection( struct cppISteamUser_SteamUser015_InitiateGameConnection_params *params ); - -struct cppISteamUser_SteamUser015_TerminateGameConnection_params -{ - void *linux_side; - uint32_t unIPServer; - uint16_t usPortServer; -}; -extern void cppISteamUser_SteamUser015_TerminateGameConnection( struct cppISteamUser_SteamUser015_TerminateGameConnection_params *params ); - -struct cppISteamUser_SteamUser015_TrackAppUsageEvent_params -{ - void *linux_side; - CGameID gameID; - int32_t eAppUsageEvent; - const char *pchExtraInfo; -}; -extern void cppISteamUser_SteamUser015_TrackAppUsageEvent( struct cppISteamUser_SteamUser015_TrackAppUsageEvent_params *params ); - -struct cppISteamUser_SteamUser015_GetUserDataFolder_params -{ - void *linux_side; - bool _ret; - char *pchBuffer; - int32_t cubBuffer; -}; -extern void cppISteamUser_SteamUser015_GetUserDataFolder( struct cppISteamUser_SteamUser015_GetUserDataFolder_params *params ); - -struct cppISteamUser_SteamUser015_StartVoiceRecording_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser015_StartVoiceRecording( struct cppISteamUser_SteamUser015_StartVoiceRecording_params *params ); - -struct cppISteamUser_SteamUser015_StopVoiceRecording_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser015_StopVoiceRecording( struct cppISteamUser_SteamUser015_StopVoiceRecording_params *params ); - -struct cppISteamUser_SteamUser015_GetAvailableVoice_params -{ - void *linux_side; - uint32_t _ret; - uint32_t *pcbCompressed; - uint32_t *pcbUncompressed; -}; -extern void cppISteamUser_SteamUser015_GetAvailableVoice( struct cppISteamUser_SteamUser015_GetAvailableVoice_params *params ); - -struct cppISteamUser_SteamUser015_GetVoice_params -{ - void *linux_side; - uint32_t _ret; - bool bWantCompressed; - void *pDestBuffer; - uint32_t cbDestBufferSize; - uint32_t *nBytesWritten; - bool bWantUncompressed; - void *pUncompressedDestBuffer; - uint32_t cbUncompressedDestBufferSize; - uint32_t *nUncompressBytesWritten; -}; -extern void cppISteamUser_SteamUser015_GetVoice( struct cppISteamUser_SteamUser015_GetVoice_params *params ); - -struct cppISteamUser_SteamUser015_DecompressVoice_params -{ - void *linux_side; - uint32_t _ret; - const void *pCompressed; - uint32_t cbCompressed; - void *pDestBuffer; - uint32_t cbDestBufferSize; - uint32_t *nBytesWritten; - uint32_t nDesiredSampleRate; -}; -extern void cppISteamUser_SteamUser015_DecompressVoice( struct cppISteamUser_SteamUser015_DecompressVoice_params *params ); - -struct cppISteamUser_SteamUser015_GetVoiceOptimalSampleRate_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUser_SteamUser015_GetVoiceOptimalSampleRate( struct cppISteamUser_SteamUser015_GetVoiceOptimalSampleRate_params *params ); - -struct cppISteamUser_SteamUser015_GetAuthSessionTicket_params -{ - void *linux_side; - uint32_t _ret; - void *pTicket; - int32_t cbMaxTicket; - uint32_t *pcbTicket; -}; -extern void cppISteamUser_SteamUser015_GetAuthSessionTicket( struct cppISteamUser_SteamUser015_GetAuthSessionTicket_params *params ); - -struct cppISteamUser_SteamUser015_BeginAuthSession_params -{ - void *linux_side; - uint32_t _ret; - const void *pAuthTicket; - int32_t cbAuthTicket; - CSteamID steamID; -}; -extern void cppISteamUser_SteamUser015_BeginAuthSession( struct cppISteamUser_SteamUser015_BeginAuthSession_params *params ); - -struct cppISteamUser_SteamUser015_EndAuthSession_params -{ - void *linux_side; - CSteamID steamID; -}; -extern void cppISteamUser_SteamUser015_EndAuthSession( struct cppISteamUser_SteamUser015_EndAuthSession_params *params ); - -struct cppISteamUser_SteamUser015_CancelAuthTicket_params -{ - void *linux_side; - uint32_t hAuthTicket; -}; -extern void cppISteamUser_SteamUser015_CancelAuthTicket( struct cppISteamUser_SteamUser015_CancelAuthTicket_params *params ); - -struct cppISteamUser_SteamUser015_UserHasLicenseForApp_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamID; - uint32_t appID; -}; -extern void cppISteamUser_SteamUser015_UserHasLicenseForApp( struct cppISteamUser_SteamUser015_UserHasLicenseForApp_params *params ); - -struct cppISteamUser_SteamUser015_BIsBehindNAT_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser015_BIsBehindNAT( struct cppISteamUser_SteamUser015_BIsBehindNAT_params *params ); - -struct cppISteamUser_SteamUser015_AdvertiseGame_params -{ - void *linux_side; - CSteamID steamIDGameServer; - uint32_t unIPServer; - uint16_t usPortServer; -}; -extern void cppISteamUser_SteamUser015_AdvertiseGame( struct cppISteamUser_SteamUser015_AdvertiseGame_params *params ); - -struct cppISteamUser_SteamUser015_RequestEncryptedAppTicket_params -{ - void *linux_side; - uint64_t _ret; - void *pDataToInclude; - int32_t cbDataToInclude; -}; -extern void cppISteamUser_SteamUser015_RequestEncryptedAppTicket( struct cppISteamUser_SteamUser015_RequestEncryptedAppTicket_params *params ); - -struct cppISteamUser_SteamUser015_GetEncryptedAppTicket_params -{ - void *linux_side; - bool _ret; - void *pTicket; - int32_t cbMaxTicket; - uint32_t *pcbTicket; -}; -extern void cppISteamUser_SteamUser015_GetEncryptedAppTicket( struct cppISteamUser_SteamUser015_GetEncryptedAppTicket_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUser_SteamUser016.cpp b/lsteamclient/cppISteamUser_SteamUser016.cpp index 65c0951a..b08bbb2f 100644 --- a/lsteamclient/cppISteamUser_SteamUser016.cpp +++ b/lsteamclient/cppISteamUser_SteamUser016.cpp @@ -1,136 +1,179 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUser_SteamUser016.h" -void cppISteamUser_SteamUser016_GetHSteamUser( struct cppISteamUser_SteamUser016_GetHSteamUser_params *params ) +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; params->_ret = iface->GetHSteamUser( ); + return 0; } -void cppISteamUser_SteamUser016_BLoggedOn( struct cppISteamUser_SteamUser016_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamUser_SteamUser016_GetSteamID( struct cppISteamUser_SteamUser016_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamUser_SteamUser016_InitiateGameConnection( struct cppISteamUser_SteamUser016_InitiateGameConnection_params *params ) +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; params->_ret = iface->InitiateGameConnection( params->pAuthBlob, params->cbMaxAuthBlob, params->steamIDGameServer, params->unIPServer, params->usPortServer, params->bSecure ); + return 0; } -void cppISteamUser_SteamUser016_TerminateGameConnection( struct cppISteamUser_SteamUser016_TerminateGameConnection_params *params ) +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; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); + return 0; } -void cppISteamUser_SteamUser016_TrackAppUsageEvent( struct cppISteamUser_SteamUser016_TrackAppUsageEvent_params *params ) +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; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); + return 0; } -void cppISteamUser_SteamUser016_GetUserDataFolder( struct cppISteamUser_SteamUser016_GetUserDataFolder_params *params ) +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; params->_ret = iface->GetUserDataFolder( params->pchBuffer, params->cubBuffer ); + return 0; } -void cppISteamUser_SteamUser016_StartVoiceRecording( struct cppISteamUser_SteamUser016_StartVoiceRecording_params *params ) +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; iface->StartVoiceRecording( ); + return 0; } -void cppISteamUser_SteamUser016_StopVoiceRecording( struct cppISteamUser_SteamUser016_StopVoiceRecording_params *params ) +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; iface->StopVoiceRecording( ); + return 0; } -void cppISteamUser_SteamUser016_GetAvailableVoice( struct cppISteamUser_SteamUser016_GetAvailableVoice_params *params ) +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; params->_ret = iface->GetAvailableVoice( params->pcbCompressed, params->pcbUncompressed, params->nUncompressedVoiceDesiredSampleRate ); + return 0; } -void cppISteamUser_SteamUser016_GetVoice( struct cppISteamUser_SteamUser016_GetVoice_params *params ) +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; params->_ret = iface->GetVoice( params->bWantCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->bWantUncompressed, params->pUncompressedDestBuffer, params->cbUncompressedDestBufferSize, params->nUncompressBytesWritten, params->nUncompressedVoiceDesiredSampleRate ); + return 0; } -void cppISteamUser_SteamUser016_DecompressVoice( struct cppISteamUser_SteamUser016_DecompressVoice_params *params ) +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; params->_ret = iface->DecompressVoice( params->pCompressed, params->cbCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->nDesiredSampleRate ); + return 0; } -void cppISteamUser_SteamUser016_GetVoiceOptimalSampleRate( struct cppISteamUser_SteamUser016_GetVoiceOptimalSampleRate_params *params ) +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; params->_ret = iface->GetVoiceOptimalSampleRate( ); + return 0; } -void cppISteamUser_SteamUser016_GetAuthSessionTicket( struct cppISteamUser_SteamUser016_GetAuthSessionTicket_params *params ) +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; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); + return 0; } -void cppISteamUser_SteamUser016_BeginAuthSession( struct cppISteamUser_SteamUser016_BeginAuthSession_params *params ) +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; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); + return 0; } -void cppISteamUser_SteamUser016_EndAuthSession( struct cppISteamUser_SteamUser016_EndAuthSession_params *params ) +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; iface->EndAuthSession( params->steamID ); + return 0; } -void cppISteamUser_SteamUser016_CancelAuthTicket( struct cppISteamUser_SteamUser016_CancelAuthTicket_params *params ) +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; iface->CancelAuthTicket( params->hAuthTicket ); + return 0; } -void cppISteamUser_SteamUser016_UserHasLicenseForApp( struct cppISteamUser_SteamUser016_UserHasLicenseForApp_params *params ) +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; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); + return 0; } -void cppISteamUser_SteamUser016_BIsBehindNAT( struct cppISteamUser_SteamUser016_BIsBehindNAT_params *params ) +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; params->_ret = iface->BIsBehindNAT( ); + return 0; } -void cppISteamUser_SteamUser016_AdvertiseGame( struct cppISteamUser_SteamUser016_AdvertiseGame_params *params ) +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; iface->AdvertiseGame( params->steamIDGameServer, params->unIPServer, params->usPortServer ); + return 0; } -void cppISteamUser_SteamUser016_RequestEncryptedAppTicket( struct cppISteamUser_SteamUser016_RequestEncryptedAppTicket_params *params ) +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; params->_ret = iface->RequestEncryptedAppTicket( params->pDataToInclude, params->cbDataToInclude ); + return 0; } -void cppISteamUser_SteamUser016_GetEncryptedAppTicket( struct cppISteamUser_SteamUser016_GetEncryptedAppTicket_params *params ) +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; params->_ret = iface->GetEncryptedAppTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); + return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser016.h b/lsteamclient/cppISteamUser_SteamUser016.h deleted file mode 100644 index 4882d1b7..00000000 --- a/lsteamclient/cppISteamUser_SteamUser016.h +++ /dev/null @@ -1,208 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUser_SteamUser016_GetHSteamUser_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamUser_SteamUser016_GetHSteamUser( struct cppISteamUser_SteamUser016_GetHSteamUser_params *params ); - -struct cppISteamUser_SteamUser016_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser016_BLoggedOn( struct cppISteamUser_SteamUser016_BLoggedOn_params *params ); - -struct cppISteamUser_SteamUser016_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamUser_SteamUser016_GetSteamID( struct cppISteamUser_SteamUser016_GetSteamID_params *params ); - -struct cppISteamUser_SteamUser016_InitiateGameConnection_params -{ - void *linux_side; - int32_t _ret; - void *pAuthBlob; - int32_t cbMaxAuthBlob; - CSteamID steamIDGameServer; - uint32_t unIPServer; - uint16_t usPortServer; - bool bSecure; -}; -extern void cppISteamUser_SteamUser016_InitiateGameConnection( struct cppISteamUser_SteamUser016_InitiateGameConnection_params *params ); - -struct cppISteamUser_SteamUser016_TerminateGameConnection_params -{ - void *linux_side; - uint32_t unIPServer; - uint16_t usPortServer; -}; -extern void cppISteamUser_SteamUser016_TerminateGameConnection( struct cppISteamUser_SteamUser016_TerminateGameConnection_params *params ); - -struct cppISteamUser_SteamUser016_TrackAppUsageEvent_params -{ - void *linux_side; - CGameID gameID; - int32_t eAppUsageEvent; - const char *pchExtraInfo; -}; -extern void cppISteamUser_SteamUser016_TrackAppUsageEvent( struct cppISteamUser_SteamUser016_TrackAppUsageEvent_params *params ); - -struct cppISteamUser_SteamUser016_GetUserDataFolder_params -{ - void *linux_side; - bool _ret; - char *pchBuffer; - int32_t cubBuffer; -}; -extern void cppISteamUser_SteamUser016_GetUserDataFolder( struct cppISteamUser_SteamUser016_GetUserDataFolder_params *params ); - -struct cppISteamUser_SteamUser016_StartVoiceRecording_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser016_StartVoiceRecording( struct cppISteamUser_SteamUser016_StartVoiceRecording_params *params ); - -struct cppISteamUser_SteamUser016_StopVoiceRecording_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser016_StopVoiceRecording( struct cppISteamUser_SteamUser016_StopVoiceRecording_params *params ); - -struct cppISteamUser_SteamUser016_GetAvailableVoice_params -{ - void *linux_side; - uint32_t _ret; - uint32_t *pcbCompressed; - uint32_t *pcbUncompressed; - uint32_t nUncompressedVoiceDesiredSampleRate; -}; -extern void cppISteamUser_SteamUser016_GetAvailableVoice( struct cppISteamUser_SteamUser016_GetAvailableVoice_params *params ); - -struct cppISteamUser_SteamUser016_GetVoice_params -{ - void *linux_side; - uint32_t _ret; - bool bWantCompressed; - void *pDestBuffer; - uint32_t cbDestBufferSize; - uint32_t *nBytesWritten; - bool bWantUncompressed; - void *pUncompressedDestBuffer; - uint32_t cbUncompressedDestBufferSize; - uint32_t *nUncompressBytesWritten; - uint32_t nUncompressedVoiceDesiredSampleRate; -}; -extern void cppISteamUser_SteamUser016_GetVoice( struct cppISteamUser_SteamUser016_GetVoice_params *params ); - -struct cppISteamUser_SteamUser016_DecompressVoice_params -{ - void *linux_side; - uint32_t _ret; - const void *pCompressed; - uint32_t cbCompressed; - void *pDestBuffer; - uint32_t cbDestBufferSize; - uint32_t *nBytesWritten; - uint32_t nDesiredSampleRate; -}; -extern void cppISteamUser_SteamUser016_DecompressVoice( struct cppISteamUser_SteamUser016_DecompressVoice_params *params ); - -struct cppISteamUser_SteamUser016_GetVoiceOptimalSampleRate_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUser_SteamUser016_GetVoiceOptimalSampleRate( struct cppISteamUser_SteamUser016_GetVoiceOptimalSampleRate_params *params ); - -struct cppISteamUser_SteamUser016_GetAuthSessionTicket_params -{ - void *linux_side; - uint32_t _ret; - void *pTicket; - int32_t cbMaxTicket; - uint32_t *pcbTicket; -}; -extern void cppISteamUser_SteamUser016_GetAuthSessionTicket( struct cppISteamUser_SteamUser016_GetAuthSessionTicket_params *params ); - -struct cppISteamUser_SteamUser016_BeginAuthSession_params -{ - void *linux_side; - uint32_t _ret; - const void *pAuthTicket; - int32_t cbAuthTicket; - CSteamID steamID; -}; -extern void cppISteamUser_SteamUser016_BeginAuthSession( struct cppISteamUser_SteamUser016_BeginAuthSession_params *params ); - -struct cppISteamUser_SteamUser016_EndAuthSession_params -{ - void *linux_side; - CSteamID steamID; -}; -extern void cppISteamUser_SteamUser016_EndAuthSession( struct cppISteamUser_SteamUser016_EndAuthSession_params *params ); - -struct cppISteamUser_SteamUser016_CancelAuthTicket_params -{ - void *linux_side; - uint32_t hAuthTicket; -}; -extern void cppISteamUser_SteamUser016_CancelAuthTicket( struct cppISteamUser_SteamUser016_CancelAuthTicket_params *params ); - -struct cppISteamUser_SteamUser016_UserHasLicenseForApp_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamID; - uint32_t appID; -}; -extern void cppISteamUser_SteamUser016_UserHasLicenseForApp( struct cppISteamUser_SteamUser016_UserHasLicenseForApp_params *params ); - -struct cppISteamUser_SteamUser016_BIsBehindNAT_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser016_BIsBehindNAT( struct cppISteamUser_SteamUser016_BIsBehindNAT_params *params ); - -struct cppISteamUser_SteamUser016_AdvertiseGame_params -{ - void *linux_side; - CSteamID steamIDGameServer; - uint32_t unIPServer; - uint16_t usPortServer; -}; -extern void cppISteamUser_SteamUser016_AdvertiseGame( struct cppISteamUser_SteamUser016_AdvertiseGame_params *params ); - -struct cppISteamUser_SteamUser016_RequestEncryptedAppTicket_params -{ - void *linux_side; - uint64_t _ret; - void *pDataToInclude; - int32_t cbDataToInclude; -}; -extern void cppISteamUser_SteamUser016_RequestEncryptedAppTicket( struct cppISteamUser_SteamUser016_RequestEncryptedAppTicket_params *params ); - -struct cppISteamUser_SteamUser016_GetEncryptedAppTicket_params -{ - void *linux_side; - bool _ret; - void *pTicket; - int32_t cbMaxTicket; - uint32_t *pcbTicket; -}; -extern void cppISteamUser_SteamUser016_GetEncryptedAppTicket( struct cppISteamUser_SteamUser016_GetEncryptedAppTicket_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUser_SteamUser017.cpp b/lsteamclient/cppISteamUser_SteamUser017.cpp index 831f5366..0d3d4021 100644 --- a/lsteamclient/cppISteamUser_SteamUser017.cpp +++ b/lsteamclient/cppISteamUser_SteamUser017.cpp @@ -1,148 +1,195 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUser_SteamUser017.h" -void cppISteamUser_SteamUser017_GetHSteamUser( struct cppISteamUser_SteamUser017_GetHSteamUser_params *params ) +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; params->_ret = iface->GetHSteamUser( ); + return 0; } -void cppISteamUser_SteamUser017_BLoggedOn( struct cppISteamUser_SteamUser017_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamUser_SteamUser017_GetSteamID( struct cppISteamUser_SteamUser017_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamUser_SteamUser017_InitiateGameConnection( struct cppISteamUser_SteamUser017_InitiateGameConnection_params *params ) +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; params->_ret = iface->InitiateGameConnection( params->pAuthBlob, params->cbMaxAuthBlob, params->steamIDGameServer, params->unIPServer, params->usPortServer, params->bSecure ); + return 0; } -void cppISteamUser_SteamUser017_TerminateGameConnection( struct cppISteamUser_SteamUser017_TerminateGameConnection_params *params ) +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; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); + return 0; } -void cppISteamUser_SteamUser017_TrackAppUsageEvent( struct cppISteamUser_SteamUser017_TrackAppUsageEvent_params *params ) +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; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); + return 0; } -void cppISteamUser_SteamUser017_GetUserDataFolder( struct cppISteamUser_SteamUser017_GetUserDataFolder_params *params ) +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; params->_ret = iface->GetUserDataFolder( params->pchBuffer, params->cubBuffer ); + return 0; } -void cppISteamUser_SteamUser017_StartVoiceRecording( struct cppISteamUser_SteamUser017_StartVoiceRecording_params *params ) +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; iface->StartVoiceRecording( ); + return 0; } -void cppISteamUser_SteamUser017_StopVoiceRecording( struct cppISteamUser_SteamUser017_StopVoiceRecording_params *params ) +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; iface->StopVoiceRecording( ); + return 0; } -void cppISteamUser_SteamUser017_GetAvailableVoice( struct cppISteamUser_SteamUser017_GetAvailableVoice_params *params ) +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; params->_ret = iface->GetAvailableVoice( params->pcbCompressed, params->pcbUncompressed, params->nUncompressedVoiceDesiredSampleRate ); + return 0; } -void cppISteamUser_SteamUser017_GetVoice( struct cppISteamUser_SteamUser017_GetVoice_params *params ) +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; params->_ret = iface->GetVoice( params->bWantCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->bWantUncompressed, params->pUncompressedDestBuffer, params->cbUncompressedDestBufferSize, params->nUncompressBytesWritten, params->nUncompressedVoiceDesiredSampleRate ); + return 0; } -void cppISteamUser_SteamUser017_DecompressVoice( struct cppISteamUser_SteamUser017_DecompressVoice_params *params ) +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; params->_ret = iface->DecompressVoice( params->pCompressed, params->cbCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->nDesiredSampleRate ); + return 0; } -void cppISteamUser_SteamUser017_GetVoiceOptimalSampleRate( struct cppISteamUser_SteamUser017_GetVoiceOptimalSampleRate_params *params ) +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; params->_ret = iface->GetVoiceOptimalSampleRate( ); + return 0; } -void cppISteamUser_SteamUser017_GetAuthSessionTicket( struct cppISteamUser_SteamUser017_GetAuthSessionTicket_params *params ) +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; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); + return 0; } -void cppISteamUser_SteamUser017_BeginAuthSession( struct cppISteamUser_SteamUser017_BeginAuthSession_params *params ) +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; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); + return 0; } -void cppISteamUser_SteamUser017_EndAuthSession( struct cppISteamUser_SteamUser017_EndAuthSession_params *params ) +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; iface->EndAuthSession( params->steamID ); + return 0; } -void cppISteamUser_SteamUser017_CancelAuthTicket( struct cppISteamUser_SteamUser017_CancelAuthTicket_params *params ) +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; iface->CancelAuthTicket( params->hAuthTicket ); + return 0; } -void cppISteamUser_SteamUser017_UserHasLicenseForApp( struct cppISteamUser_SteamUser017_UserHasLicenseForApp_params *params ) +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; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); + return 0; } -void cppISteamUser_SteamUser017_BIsBehindNAT( struct cppISteamUser_SteamUser017_BIsBehindNAT_params *params ) +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; params->_ret = iface->BIsBehindNAT( ); + return 0; } -void cppISteamUser_SteamUser017_AdvertiseGame( struct cppISteamUser_SteamUser017_AdvertiseGame_params *params ) +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; iface->AdvertiseGame( params->steamIDGameServer, params->unIPServer, params->usPortServer ); + return 0; } -void cppISteamUser_SteamUser017_RequestEncryptedAppTicket( struct cppISteamUser_SteamUser017_RequestEncryptedAppTicket_params *params ) +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; params->_ret = iface->RequestEncryptedAppTicket( params->pDataToInclude, params->cbDataToInclude ); + return 0; } -void cppISteamUser_SteamUser017_GetEncryptedAppTicket( struct cppISteamUser_SteamUser017_GetEncryptedAppTicket_params *params ) +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; params->_ret = iface->GetEncryptedAppTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); + return 0; } -void cppISteamUser_SteamUser017_GetGameBadgeLevel( struct cppISteamUser_SteamUser017_GetGameBadgeLevel_params *params ) +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; params->_ret = iface->GetGameBadgeLevel( params->nSeries, params->bFoil ); + return 0; } -void cppISteamUser_SteamUser017_GetPlayerSteamLevel( struct cppISteamUser_SteamUser017_GetPlayerSteamLevel_params *params ) +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; params->_ret = iface->GetPlayerSteamLevel( ); + return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser017.h b/lsteamclient/cppISteamUser_SteamUser017.h deleted file mode 100644 index 88b76ae1..00000000 --- a/lsteamclient/cppISteamUser_SteamUser017.h +++ /dev/null @@ -1,224 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUser_SteamUser017_GetHSteamUser_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamUser_SteamUser017_GetHSteamUser( struct cppISteamUser_SteamUser017_GetHSteamUser_params *params ); - -struct cppISteamUser_SteamUser017_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser017_BLoggedOn( struct cppISteamUser_SteamUser017_BLoggedOn_params *params ); - -struct cppISteamUser_SteamUser017_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamUser_SteamUser017_GetSteamID( struct cppISteamUser_SteamUser017_GetSteamID_params *params ); - -struct cppISteamUser_SteamUser017_InitiateGameConnection_params -{ - void *linux_side; - int32_t _ret; - void *pAuthBlob; - int32_t cbMaxAuthBlob; - CSteamID steamIDGameServer; - uint32_t unIPServer; - uint16_t usPortServer; - bool bSecure; -}; -extern void cppISteamUser_SteamUser017_InitiateGameConnection( struct cppISteamUser_SteamUser017_InitiateGameConnection_params *params ); - -struct cppISteamUser_SteamUser017_TerminateGameConnection_params -{ - void *linux_side; - uint32_t unIPServer; - uint16_t usPortServer; -}; -extern void cppISteamUser_SteamUser017_TerminateGameConnection( struct cppISteamUser_SteamUser017_TerminateGameConnection_params *params ); - -struct cppISteamUser_SteamUser017_TrackAppUsageEvent_params -{ - void *linux_side; - CGameID gameID; - int32_t eAppUsageEvent; - const char *pchExtraInfo; -}; -extern void cppISteamUser_SteamUser017_TrackAppUsageEvent( struct cppISteamUser_SteamUser017_TrackAppUsageEvent_params *params ); - -struct cppISteamUser_SteamUser017_GetUserDataFolder_params -{ - void *linux_side; - bool _ret; - char *pchBuffer; - int32_t cubBuffer; -}; -extern void cppISteamUser_SteamUser017_GetUserDataFolder( struct cppISteamUser_SteamUser017_GetUserDataFolder_params *params ); - -struct cppISteamUser_SteamUser017_StartVoiceRecording_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser017_StartVoiceRecording( struct cppISteamUser_SteamUser017_StartVoiceRecording_params *params ); - -struct cppISteamUser_SteamUser017_StopVoiceRecording_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser017_StopVoiceRecording( struct cppISteamUser_SteamUser017_StopVoiceRecording_params *params ); - -struct cppISteamUser_SteamUser017_GetAvailableVoice_params -{ - void *linux_side; - uint32_t _ret; - uint32_t *pcbCompressed; - uint32_t *pcbUncompressed; - uint32_t nUncompressedVoiceDesiredSampleRate; -}; -extern void cppISteamUser_SteamUser017_GetAvailableVoice( struct cppISteamUser_SteamUser017_GetAvailableVoice_params *params ); - -struct cppISteamUser_SteamUser017_GetVoice_params -{ - void *linux_side; - uint32_t _ret; - bool bWantCompressed; - void *pDestBuffer; - uint32_t cbDestBufferSize; - uint32_t *nBytesWritten; - bool bWantUncompressed; - void *pUncompressedDestBuffer; - uint32_t cbUncompressedDestBufferSize; - uint32_t *nUncompressBytesWritten; - uint32_t nUncompressedVoiceDesiredSampleRate; -}; -extern void cppISteamUser_SteamUser017_GetVoice( struct cppISteamUser_SteamUser017_GetVoice_params *params ); - -struct cppISteamUser_SteamUser017_DecompressVoice_params -{ - void *linux_side; - uint32_t _ret; - const void *pCompressed; - uint32_t cbCompressed; - void *pDestBuffer; - uint32_t cbDestBufferSize; - uint32_t *nBytesWritten; - uint32_t nDesiredSampleRate; -}; -extern void cppISteamUser_SteamUser017_DecompressVoice( struct cppISteamUser_SteamUser017_DecompressVoice_params *params ); - -struct cppISteamUser_SteamUser017_GetVoiceOptimalSampleRate_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUser_SteamUser017_GetVoiceOptimalSampleRate( struct cppISteamUser_SteamUser017_GetVoiceOptimalSampleRate_params *params ); - -struct cppISteamUser_SteamUser017_GetAuthSessionTicket_params -{ - void *linux_side; - uint32_t _ret; - void *pTicket; - int32_t cbMaxTicket; - uint32_t *pcbTicket; -}; -extern void cppISteamUser_SteamUser017_GetAuthSessionTicket( struct cppISteamUser_SteamUser017_GetAuthSessionTicket_params *params ); - -struct cppISteamUser_SteamUser017_BeginAuthSession_params -{ - void *linux_side; - uint32_t _ret; - const void *pAuthTicket; - int32_t cbAuthTicket; - CSteamID steamID; -}; -extern void cppISteamUser_SteamUser017_BeginAuthSession( struct cppISteamUser_SteamUser017_BeginAuthSession_params *params ); - -struct cppISteamUser_SteamUser017_EndAuthSession_params -{ - void *linux_side; - CSteamID steamID; -}; -extern void cppISteamUser_SteamUser017_EndAuthSession( struct cppISteamUser_SteamUser017_EndAuthSession_params *params ); - -struct cppISteamUser_SteamUser017_CancelAuthTicket_params -{ - void *linux_side; - uint32_t hAuthTicket; -}; -extern void cppISteamUser_SteamUser017_CancelAuthTicket( struct cppISteamUser_SteamUser017_CancelAuthTicket_params *params ); - -struct cppISteamUser_SteamUser017_UserHasLicenseForApp_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamID; - uint32_t appID; -}; -extern void cppISteamUser_SteamUser017_UserHasLicenseForApp( struct cppISteamUser_SteamUser017_UserHasLicenseForApp_params *params ); - -struct cppISteamUser_SteamUser017_BIsBehindNAT_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser017_BIsBehindNAT( struct cppISteamUser_SteamUser017_BIsBehindNAT_params *params ); - -struct cppISteamUser_SteamUser017_AdvertiseGame_params -{ - void *linux_side; - CSteamID steamIDGameServer; - uint32_t unIPServer; - uint16_t usPortServer; -}; -extern void cppISteamUser_SteamUser017_AdvertiseGame( struct cppISteamUser_SteamUser017_AdvertiseGame_params *params ); - -struct cppISteamUser_SteamUser017_RequestEncryptedAppTicket_params -{ - void *linux_side; - uint64_t _ret; - void *pDataToInclude; - int32_t cbDataToInclude; -}; -extern void cppISteamUser_SteamUser017_RequestEncryptedAppTicket( struct cppISteamUser_SteamUser017_RequestEncryptedAppTicket_params *params ); - -struct cppISteamUser_SteamUser017_GetEncryptedAppTicket_params -{ - void *linux_side; - bool _ret; - void *pTicket; - int32_t cbMaxTicket; - uint32_t *pcbTicket; -}; -extern void cppISteamUser_SteamUser017_GetEncryptedAppTicket( struct cppISteamUser_SteamUser017_GetEncryptedAppTicket_params *params ); - -struct cppISteamUser_SteamUser017_GetGameBadgeLevel_params -{ - void *linux_side; - int32_t _ret; - int32_t nSeries; - bool bFoil; -}; -extern void cppISteamUser_SteamUser017_GetGameBadgeLevel( struct cppISteamUser_SteamUser017_GetGameBadgeLevel_params *params ); - -struct cppISteamUser_SteamUser017_GetPlayerSteamLevel_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamUser_SteamUser017_GetPlayerSteamLevel( struct cppISteamUser_SteamUser017_GetPlayerSteamLevel_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUser_SteamUser018.cpp b/lsteamclient/cppISteamUser_SteamUser018.cpp index 30c1aaeb..2ef5e243 100644 --- a/lsteamclient/cppISteamUser_SteamUser018.cpp +++ b/lsteamclient/cppISteamUser_SteamUser018.cpp @@ -1,154 +1,203 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUser_SteamUser018.h" -void cppISteamUser_SteamUser018_GetHSteamUser( struct cppISteamUser_SteamUser018_GetHSteamUser_params *params ) +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; params->_ret = iface->GetHSteamUser( ); + return 0; } -void cppISteamUser_SteamUser018_BLoggedOn( struct cppISteamUser_SteamUser018_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamUser_SteamUser018_GetSteamID( struct cppISteamUser_SteamUser018_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamUser_SteamUser018_InitiateGameConnection( struct cppISteamUser_SteamUser018_InitiateGameConnection_params *params ) +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; params->_ret = iface->InitiateGameConnection( params->pAuthBlob, params->cbMaxAuthBlob, params->steamIDGameServer, params->unIPServer, params->usPortServer, params->bSecure ); + return 0; } -void cppISteamUser_SteamUser018_TerminateGameConnection( struct cppISteamUser_SteamUser018_TerminateGameConnection_params *params ) +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; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); + return 0; } -void cppISteamUser_SteamUser018_TrackAppUsageEvent( struct cppISteamUser_SteamUser018_TrackAppUsageEvent_params *params ) +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; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); + return 0; } -void cppISteamUser_SteamUser018_GetUserDataFolder( struct cppISteamUser_SteamUser018_GetUserDataFolder_params *params ) +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; params->_ret = iface->GetUserDataFolder( params->pchBuffer, params->cubBuffer ); + return 0; } -void cppISteamUser_SteamUser018_StartVoiceRecording( struct cppISteamUser_SteamUser018_StartVoiceRecording_params *params ) +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; iface->StartVoiceRecording( ); + return 0; } -void cppISteamUser_SteamUser018_StopVoiceRecording( struct cppISteamUser_SteamUser018_StopVoiceRecording_params *params ) +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; iface->StopVoiceRecording( ); + return 0; } -void cppISteamUser_SteamUser018_GetAvailableVoice( struct cppISteamUser_SteamUser018_GetAvailableVoice_params *params ) +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; params->_ret = iface->GetAvailableVoice( params->pcbCompressed, params->pcbUncompressed, params->nUncompressedVoiceDesiredSampleRate ); + return 0; } -void cppISteamUser_SteamUser018_GetVoice( struct cppISteamUser_SteamUser018_GetVoice_params *params ) +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; params->_ret = iface->GetVoice( params->bWantCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->bWantUncompressed, params->pUncompressedDestBuffer, params->cbUncompressedDestBufferSize, params->nUncompressBytesWritten, params->nUncompressedVoiceDesiredSampleRate ); + return 0; } -void cppISteamUser_SteamUser018_DecompressVoice( struct cppISteamUser_SteamUser018_DecompressVoice_params *params ) +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; params->_ret = iface->DecompressVoice( params->pCompressed, params->cbCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->nDesiredSampleRate ); + return 0; } -void cppISteamUser_SteamUser018_GetVoiceOptimalSampleRate( struct cppISteamUser_SteamUser018_GetVoiceOptimalSampleRate_params *params ) +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; params->_ret = iface->GetVoiceOptimalSampleRate( ); + return 0; } -void cppISteamUser_SteamUser018_GetAuthSessionTicket( struct cppISteamUser_SteamUser018_GetAuthSessionTicket_params *params ) +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; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); + return 0; } -void cppISteamUser_SteamUser018_BeginAuthSession( struct cppISteamUser_SteamUser018_BeginAuthSession_params *params ) +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; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); + return 0; } -void cppISteamUser_SteamUser018_EndAuthSession( struct cppISteamUser_SteamUser018_EndAuthSession_params *params ) +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; iface->EndAuthSession( params->steamID ); + return 0; } -void cppISteamUser_SteamUser018_CancelAuthTicket( struct cppISteamUser_SteamUser018_CancelAuthTicket_params *params ) +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; iface->CancelAuthTicket( params->hAuthTicket ); + return 0; } -void cppISteamUser_SteamUser018_UserHasLicenseForApp( struct cppISteamUser_SteamUser018_UserHasLicenseForApp_params *params ) +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; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); + return 0; } -void cppISteamUser_SteamUser018_BIsBehindNAT( struct cppISteamUser_SteamUser018_BIsBehindNAT_params *params ) +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; params->_ret = iface->BIsBehindNAT( ); + return 0; } -void cppISteamUser_SteamUser018_AdvertiseGame( struct cppISteamUser_SteamUser018_AdvertiseGame_params *params ) +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; iface->AdvertiseGame( params->steamIDGameServer, params->unIPServer, params->usPortServer ); + return 0; } -void cppISteamUser_SteamUser018_RequestEncryptedAppTicket( struct cppISteamUser_SteamUser018_RequestEncryptedAppTicket_params *params ) +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; params->_ret = iface->RequestEncryptedAppTicket( params->pDataToInclude, params->cbDataToInclude ); + return 0; } -void cppISteamUser_SteamUser018_GetEncryptedAppTicket( struct cppISteamUser_SteamUser018_GetEncryptedAppTicket_params *params ) +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; params->_ret = iface->GetEncryptedAppTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); + return 0; } -void cppISteamUser_SteamUser018_GetGameBadgeLevel( struct cppISteamUser_SteamUser018_GetGameBadgeLevel_params *params ) +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; params->_ret = iface->GetGameBadgeLevel( params->nSeries, params->bFoil ); + return 0; } -void cppISteamUser_SteamUser018_GetPlayerSteamLevel( struct cppISteamUser_SteamUser018_GetPlayerSteamLevel_params *params ) +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; params->_ret = iface->GetPlayerSteamLevel( ); + return 0; } -void cppISteamUser_SteamUser018_RequestStoreAuthURL( struct cppISteamUser_SteamUser018_RequestStoreAuthURL_params *params ) +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; params->_ret = iface->RequestStoreAuthURL( params->pchRedirectURL ); + return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser018.h b/lsteamclient/cppISteamUser_SteamUser018.h deleted file mode 100644 index 3fbfaed0..00000000 --- a/lsteamclient/cppISteamUser_SteamUser018.h +++ /dev/null @@ -1,232 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUser_SteamUser018_GetHSteamUser_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamUser_SteamUser018_GetHSteamUser( struct cppISteamUser_SteamUser018_GetHSteamUser_params *params ); - -struct cppISteamUser_SteamUser018_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser018_BLoggedOn( struct cppISteamUser_SteamUser018_BLoggedOn_params *params ); - -struct cppISteamUser_SteamUser018_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamUser_SteamUser018_GetSteamID( struct cppISteamUser_SteamUser018_GetSteamID_params *params ); - -struct cppISteamUser_SteamUser018_InitiateGameConnection_params -{ - void *linux_side; - int32_t _ret; - void *pAuthBlob; - int32_t cbMaxAuthBlob; - CSteamID steamIDGameServer; - uint32_t unIPServer; - uint16_t usPortServer; - bool bSecure; -}; -extern void cppISteamUser_SteamUser018_InitiateGameConnection( struct cppISteamUser_SteamUser018_InitiateGameConnection_params *params ); - -struct cppISteamUser_SteamUser018_TerminateGameConnection_params -{ - void *linux_side; - uint32_t unIPServer; - uint16_t usPortServer; -}; -extern void cppISteamUser_SteamUser018_TerminateGameConnection( struct cppISteamUser_SteamUser018_TerminateGameConnection_params *params ); - -struct cppISteamUser_SteamUser018_TrackAppUsageEvent_params -{ - void *linux_side; - CGameID gameID; - int32_t eAppUsageEvent; - const char *pchExtraInfo; -}; -extern void cppISteamUser_SteamUser018_TrackAppUsageEvent( struct cppISteamUser_SteamUser018_TrackAppUsageEvent_params *params ); - -struct cppISteamUser_SteamUser018_GetUserDataFolder_params -{ - void *linux_side; - bool _ret; - char *pchBuffer; - int32_t cubBuffer; -}; -extern void cppISteamUser_SteamUser018_GetUserDataFolder( struct cppISteamUser_SteamUser018_GetUserDataFolder_params *params ); - -struct cppISteamUser_SteamUser018_StartVoiceRecording_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser018_StartVoiceRecording( struct cppISteamUser_SteamUser018_StartVoiceRecording_params *params ); - -struct cppISteamUser_SteamUser018_StopVoiceRecording_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser018_StopVoiceRecording( struct cppISteamUser_SteamUser018_StopVoiceRecording_params *params ); - -struct cppISteamUser_SteamUser018_GetAvailableVoice_params -{ - void *linux_side; - uint32_t _ret; - uint32_t *pcbCompressed; - uint32_t *pcbUncompressed; - uint32_t nUncompressedVoiceDesiredSampleRate; -}; -extern void cppISteamUser_SteamUser018_GetAvailableVoice( struct cppISteamUser_SteamUser018_GetAvailableVoice_params *params ); - -struct cppISteamUser_SteamUser018_GetVoice_params -{ - void *linux_side; - uint32_t _ret; - bool bWantCompressed; - void *pDestBuffer; - uint32_t cbDestBufferSize; - uint32_t *nBytesWritten; - bool bWantUncompressed; - void *pUncompressedDestBuffer; - uint32_t cbUncompressedDestBufferSize; - uint32_t *nUncompressBytesWritten; - uint32_t nUncompressedVoiceDesiredSampleRate; -}; -extern void cppISteamUser_SteamUser018_GetVoice( struct cppISteamUser_SteamUser018_GetVoice_params *params ); - -struct cppISteamUser_SteamUser018_DecompressVoice_params -{ - void *linux_side; - uint32_t _ret; - const void *pCompressed; - uint32_t cbCompressed; - void *pDestBuffer; - uint32_t cbDestBufferSize; - uint32_t *nBytesWritten; - uint32_t nDesiredSampleRate; -}; -extern void cppISteamUser_SteamUser018_DecompressVoice( struct cppISteamUser_SteamUser018_DecompressVoice_params *params ); - -struct cppISteamUser_SteamUser018_GetVoiceOptimalSampleRate_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUser_SteamUser018_GetVoiceOptimalSampleRate( struct cppISteamUser_SteamUser018_GetVoiceOptimalSampleRate_params *params ); - -struct cppISteamUser_SteamUser018_GetAuthSessionTicket_params -{ - void *linux_side; - uint32_t _ret; - void *pTicket; - int32_t cbMaxTicket; - uint32_t *pcbTicket; -}; -extern void cppISteamUser_SteamUser018_GetAuthSessionTicket( struct cppISteamUser_SteamUser018_GetAuthSessionTicket_params *params ); - -struct cppISteamUser_SteamUser018_BeginAuthSession_params -{ - void *linux_side; - uint32_t _ret; - const void *pAuthTicket; - int32_t cbAuthTicket; - CSteamID steamID; -}; -extern void cppISteamUser_SteamUser018_BeginAuthSession( struct cppISteamUser_SteamUser018_BeginAuthSession_params *params ); - -struct cppISteamUser_SteamUser018_EndAuthSession_params -{ - void *linux_side; - CSteamID steamID; -}; -extern void cppISteamUser_SteamUser018_EndAuthSession( struct cppISteamUser_SteamUser018_EndAuthSession_params *params ); - -struct cppISteamUser_SteamUser018_CancelAuthTicket_params -{ - void *linux_side; - uint32_t hAuthTicket; -}; -extern void cppISteamUser_SteamUser018_CancelAuthTicket( struct cppISteamUser_SteamUser018_CancelAuthTicket_params *params ); - -struct cppISteamUser_SteamUser018_UserHasLicenseForApp_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamID; - uint32_t appID; -}; -extern void cppISteamUser_SteamUser018_UserHasLicenseForApp( struct cppISteamUser_SteamUser018_UserHasLicenseForApp_params *params ); - -struct cppISteamUser_SteamUser018_BIsBehindNAT_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser018_BIsBehindNAT( struct cppISteamUser_SteamUser018_BIsBehindNAT_params *params ); - -struct cppISteamUser_SteamUser018_AdvertiseGame_params -{ - void *linux_side; - CSteamID steamIDGameServer; - uint32_t unIPServer; - uint16_t usPortServer; -}; -extern void cppISteamUser_SteamUser018_AdvertiseGame( struct cppISteamUser_SteamUser018_AdvertiseGame_params *params ); - -struct cppISteamUser_SteamUser018_RequestEncryptedAppTicket_params -{ - void *linux_side; - uint64_t _ret; - void *pDataToInclude; - int32_t cbDataToInclude; -}; -extern void cppISteamUser_SteamUser018_RequestEncryptedAppTicket( struct cppISteamUser_SteamUser018_RequestEncryptedAppTicket_params *params ); - -struct cppISteamUser_SteamUser018_GetEncryptedAppTicket_params -{ - void *linux_side; - bool _ret; - void *pTicket; - int32_t cbMaxTicket; - uint32_t *pcbTicket; -}; -extern void cppISteamUser_SteamUser018_GetEncryptedAppTicket( struct cppISteamUser_SteamUser018_GetEncryptedAppTicket_params *params ); - -struct cppISteamUser_SteamUser018_GetGameBadgeLevel_params -{ - void *linux_side; - int32_t _ret; - int32_t nSeries; - bool bFoil; -}; -extern void cppISteamUser_SteamUser018_GetGameBadgeLevel( struct cppISteamUser_SteamUser018_GetGameBadgeLevel_params *params ); - -struct cppISteamUser_SteamUser018_GetPlayerSteamLevel_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamUser_SteamUser018_GetPlayerSteamLevel( struct cppISteamUser_SteamUser018_GetPlayerSteamLevel_params *params ); - -struct cppISteamUser_SteamUser018_RequestStoreAuthURL_params -{ - void *linux_side; - uint64_t _ret; - const char *pchRedirectURL; -}; -extern void cppISteamUser_SteamUser018_RequestStoreAuthURL( struct cppISteamUser_SteamUser018_RequestStoreAuthURL_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUser_SteamUser019.cpp b/lsteamclient/cppISteamUser_SteamUser019.cpp index 468155a3..58e11c68 100644 --- a/lsteamclient/cppISteamUser_SteamUser019.cpp +++ b/lsteamclient/cppISteamUser_SteamUser019.cpp @@ -1,178 +1,235 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUser_SteamUser019.h" -void cppISteamUser_SteamUser019_GetHSteamUser( struct cppISteamUser_SteamUser019_GetHSteamUser_params *params ) +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; params->_ret = iface->GetHSteamUser( ); + return 0; } -void cppISteamUser_SteamUser019_BLoggedOn( struct cppISteamUser_SteamUser019_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamUser_SteamUser019_GetSteamID( struct cppISteamUser_SteamUser019_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamUser_SteamUser019_InitiateGameConnection( struct cppISteamUser_SteamUser019_InitiateGameConnection_params *params ) +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; params->_ret = iface->InitiateGameConnection( params->pAuthBlob, params->cbMaxAuthBlob, params->steamIDGameServer, params->unIPServer, params->usPortServer, params->bSecure ); + return 0; } -void cppISteamUser_SteamUser019_TerminateGameConnection( struct cppISteamUser_SteamUser019_TerminateGameConnection_params *params ) +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; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); + return 0; } -void cppISteamUser_SteamUser019_TrackAppUsageEvent( struct cppISteamUser_SteamUser019_TrackAppUsageEvent_params *params ) +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; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); + return 0; } -void cppISteamUser_SteamUser019_GetUserDataFolder( struct cppISteamUser_SteamUser019_GetUserDataFolder_params *params ) +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; params->_ret = iface->GetUserDataFolder( params->pchBuffer, params->cubBuffer ); + return 0; } -void cppISteamUser_SteamUser019_StartVoiceRecording( struct cppISteamUser_SteamUser019_StartVoiceRecording_params *params ) +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; iface->StartVoiceRecording( ); + return 0; } -void cppISteamUser_SteamUser019_StopVoiceRecording( struct cppISteamUser_SteamUser019_StopVoiceRecording_params *params ) +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; iface->StopVoiceRecording( ); + return 0; } -void cppISteamUser_SteamUser019_GetAvailableVoice( struct cppISteamUser_SteamUser019_GetAvailableVoice_params *params ) +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; params->_ret = iface->GetAvailableVoice( params->pcbCompressed, params->pcbUncompressed_Deprecated, params->nUncompressedVoiceDesiredSampleRate_Deprecated ); + return 0; } -void cppISteamUser_SteamUser019_GetVoice( struct cppISteamUser_SteamUser019_GetVoice_params *params ) +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; 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; } -void cppISteamUser_SteamUser019_DecompressVoice( struct cppISteamUser_SteamUser019_DecompressVoice_params *params ) +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; params->_ret = iface->DecompressVoice( params->pCompressed, params->cbCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->nDesiredSampleRate ); + return 0; } -void cppISteamUser_SteamUser019_GetVoiceOptimalSampleRate( struct cppISteamUser_SteamUser019_GetVoiceOptimalSampleRate_params *params ) +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; params->_ret = iface->GetVoiceOptimalSampleRate( ); + return 0; } -void cppISteamUser_SteamUser019_GetAuthSessionTicket( struct cppISteamUser_SteamUser019_GetAuthSessionTicket_params *params ) +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; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); + return 0; } -void cppISteamUser_SteamUser019_BeginAuthSession( struct cppISteamUser_SteamUser019_BeginAuthSession_params *params ) +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; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); + return 0; } -void cppISteamUser_SteamUser019_EndAuthSession( struct cppISteamUser_SteamUser019_EndAuthSession_params *params ) +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; iface->EndAuthSession( params->steamID ); + return 0; } -void cppISteamUser_SteamUser019_CancelAuthTicket( struct cppISteamUser_SteamUser019_CancelAuthTicket_params *params ) +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; iface->CancelAuthTicket( params->hAuthTicket ); + return 0; } -void cppISteamUser_SteamUser019_UserHasLicenseForApp( struct cppISteamUser_SteamUser019_UserHasLicenseForApp_params *params ) +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; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); + return 0; } -void cppISteamUser_SteamUser019_BIsBehindNAT( struct cppISteamUser_SteamUser019_BIsBehindNAT_params *params ) +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; params->_ret = iface->BIsBehindNAT( ); + return 0; } -void cppISteamUser_SteamUser019_AdvertiseGame( struct cppISteamUser_SteamUser019_AdvertiseGame_params *params ) +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; iface->AdvertiseGame( params->steamIDGameServer, params->unIPServer, params->usPortServer ); + return 0; } -void cppISteamUser_SteamUser019_RequestEncryptedAppTicket( struct cppISteamUser_SteamUser019_RequestEncryptedAppTicket_params *params ) +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; params->_ret = iface->RequestEncryptedAppTicket( params->pDataToInclude, params->cbDataToInclude ); + return 0; } -void cppISteamUser_SteamUser019_GetEncryptedAppTicket( struct cppISteamUser_SteamUser019_GetEncryptedAppTicket_params *params ) +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; params->_ret = iface->GetEncryptedAppTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); + return 0; } -void cppISteamUser_SteamUser019_GetGameBadgeLevel( struct cppISteamUser_SteamUser019_GetGameBadgeLevel_params *params ) +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; params->_ret = iface->GetGameBadgeLevel( params->nSeries, params->bFoil ); + return 0; } -void cppISteamUser_SteamUser019_GetPlayerSteamLevel( struct cppISteamUser_SteamUser019_GetPlayerSteamLevel_params *params ) +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; params->_ret = iface->GetPlayerSteamLevel( ); + return 0; } -void cppISteamUser_SteamUser019_RequestStoreAuthURL( struct cppISteamUser_SteamUser019_RequestStoreAuthURL_params *params ) +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; params->_ret = iface->RequestStoreAuthURL( params->pchRedirectURL ); + return 0; } -void cppISteamUser_SteamUser019_BIsPhoneVerified( struct cppISteamUser_SteamUser019_BIsPhoneVerified_params *params ) +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; params->_ret = iface->BIsPhoneVerified( ); + return 0; } -void cppISteamUser_SteamUser019_BIsTwoFactorEnabled( struct cppISteamUser_SteamUser019_BIsTwoFactorEnabled_params *params ) +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; params->_ret = iface->BIsTwoFactorEnabled( ); + return 0; } -void cppISteamUser_SteamUser019_BIsPhoneIdentifying( struct cppISteamUser_SteamUser019_BIsPhoneIdentifying_params *params ) +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; params->_ret = iface->BIsPhoneIdentifying( ); + return 0; } -void cppISteamUser_SteamUser019_BIsPhoneRequiringVerification( struct cppISteamUser_SteamUser019_BIsPhoneRequiringVerification_params *params ) +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; params->_ret = iface->BIsPhoneRequiringVerification( ); + return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser019.h b/lsteamclient/cppISteamUser_SteamUser019.h deleted file mode 100644 index 7659c8be..00000000 --- a/lsteamclient/cppISteamUser_SteamUser019.h +++ /dev/null @@ -1,260 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUser_SteamUser019_GetHSteamUser_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamUser_SteamUser019_GetHSteamUser( struct cppISteamUser_SteamUser019_GetHSteamUser_params *params ); - -struct cppISteamUser_SteamUser019_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser019_BLoggedOn( struct cppISteamUser_SteamUser019_BLoggedOn_params *params ); - -struct cppISteamUser_SteamUser019_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamUser_SteamUser019_GetSteamID( struct cppISteamUser_SteamUser019_GetSteamID_params *params ); - -struct cppISteamUser_SteamUser019_InitiateGameConnection_params -{ - void *linux_side; - int32_t _ret; - void *pAuthBlob; - int32_t cbMaxAuthBlob; - CSteamID steamIDGameServer; - uint32_t unIPServer; - uint16_t usPortServer; - bool bSecure; -}; -extern void cppISteamUser_SteamUser019_InitiateGameConnection( struct cppISteamUser_SteamUser019_InitiateGameConnection_params *params ); - -struct cppISteamUser_SteamUser019_TerminateGameConnection_params -{ - void *linux_side; - uint32_t unIPServer; - uint16_t usPortServer; -}; -extern void cppISteamUser_SteamUser019_TerminateGameConnection( struct cppISteamUser_SteamUser019_TerminateGameConnection_params *params ); - -struct cppISteamUser_SteamUser019_TrackAppUsageEvent_params -{ - void *linux_side; - CGameID gameID; - int32_t eAppUsageEvent; - const char *pchExtraInfo; -}; -extern void cppISteamUser_SteamUser019_TrackAppUsageEvent( struct cppISteamUser_SteamUser019_TrackAppUsageEvent_params *params ); - -struct cppISteamUser_SteamUser019_GetUserDataFolder_params -{ - void *linux_side; - bool _ret; - char *pchBuffer; - int32_t cubBuffer; -}; -extern void cppISteamUser_SteamUser019_GetUserDataFolder( struct cppISteamUser_SteamUser019_GetUserDataFolder_params *params ); - -struct cppISteamUser_SteamUser019_StartVoiceRecording_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser019_StartVoiceRecording( struct cppISteamUser_SteamUser019_StartVoiceRecording_params *params ); - -struct cppISteamUser_SteamUser019_StopVoiceRecording_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser019_StopVoiceRecording( struct cppISteamUser_SteamUser019_StopVoiceRecording_params *params ); - -struct cppISteamUser_SteamUser019_GetAvailableVoice_params -{ - void *linux_side; - uint32_t _ret; - uint32_t *pcbCompressed; - uint32_t *pcbUncompressed_Deprecated; - uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated; -}; -extern void cppISteamUser_SteamUser019_GetAvailableVoice( struct cppISteamUser_SteamUser019_GetAvailableVoice_params *params ); - -struct cppISteamUser_SteamUser019_GetVoice_params -{ - void *linux_side; - uint32_t _ret; - bool bWantCompressed; - void *pDestBuffer; - uint32_t cbDestBufferSize; - uint32_t *nBytesWritten; - bool bWantUncompressed_Deprecated; - void *pUncompressedDestBuffer_Deprecated; - uint32_t cbUncompressedDestBufferSize_Deprecated; - uint32_t *nUncompressBytesWritten_Deprecated; - uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated; -}; -extern void cppISteamUser_SteamUser019_GetVoice( struct cppISteamUser_SteamUser019_GetVoice_params *params ); - -struct cppISteamUser_SteamUser019_DecompressVoice_params -{ - void *linux_side; - uint32_t _ret; - const void *pCompressed; - uint32_t cbCompressed; - void *pDestBuffer; - uint32_t cbDestBufferSize; - uint32_t *nBytesWritten; - uint32_t nDesiredSampleRate; -}; -extern void cppISteamUser_SteamUser019_DecompressVoice( struct cppISteamUser_SteamUser019_DecompressVoice_params *params ); - -struct cppISteamUser_SteamUser019_GetVoiceOptimalSampleRate_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUser_SteamUser019_GetVoiceOptimalSampleRate( struct cppISteamUser_SteamUser019_GetVoiceOptimalSampleRate_params *params ); - -struct cppISteamUser_SteamUser019_GetAuthSessionTicket_params -{ - void *linux_side; - uint32_t _ret; - void *pTicket; - int32_t cbMaxTicket; - uint32_t *pcbTicket; -}; -extern void cppISteamUser_SteamUser019_GetAuthSessionTicket( struct cppISteamUser_SteamUser019_GetAuthSessionTicket_params *params ); - -struct cppISteamUser_SteamUser019_BeginAuthSession_params -{ - void *linux_side; - uint32_t _ret; - const void *pAuthTicket; - int32_t cbAuthTicket; - CSteamID steamID; -}; -extern void cppISteamUser_SteamUser019_BeginAuthSession( struct cppISteamUser_SteamUser019_BeginAuthSession_params *params ); - -struct cppISteamUser_SteamUser019_EndAuthSession_params -{ - void *linux_side; - CSteamID steamID; -}; -extern void cppISteamUser_SteamUser019_EndAuthSession( struct cppISteamUser_SteamUser019_EndAuthSession_params *params ); - -struct cppISteamUser_SteamUser019_CancelAuthTicket_params -{ - void *linux_side; - uint32_t hAuthTicket; -}; -extern void cppISteamUser_SteamUser019_CancelAuthTicket( struct cppISteamUser_SteamUser019_CancelAuthTicket_params *params ); - -struct cppISteamUser_SteamUser019_UserHasLicenseForApp_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamID; - uint32_t appID; -}; -extern void cppISteamUser_SteamUser019_UserHasLicenseForApp( struct cppISteamUser_SteamUser019_UserHasLicenseForApp_params *params ); - -struct cppISteamUser_SteamUser019_BIsBehindNAT_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser019_BIsBehindNAT( struct cppISteamUser_SteamUser019_BIsBehindNAT_params *params ); - -struct cppISteamUser_SteamUser019_AdvertiseGame_params -{ - void *linux_side; - CSteamID steamIDGameServer; - uint32_t unIPServer; - uint16_t usPortServer; -}; -extern void cppISteamUser_SteamUser019_AdvertiseGame( struct cppISteamUser_SteamUser019_AdvertiseGame_params *params ); - -struct cppISteamUser_SteamUser019_RequestEncryptedAppTicket_params -{ - void *linux_side; - uint64_t _ret; - void *pDataToInclude; - int32_t cbDataToInclude; -}; -extern void cppISteamUser_SteamUser019_RequestEncryptedAppTicket( struct cppISteamUser_SteamUser019_RequestEncryptedAppTicket_params *params ); - -struct cppISteamUser_SteamUser019_GetEncryptedAppTicket_params -{ - void *linux_side; - bool _ret; - void *pTicket; - int32_t cbMaxTicket; - uint32_t *pcbTicket; -}; -extern void cppISteamUser_SteamUser019_GetEncryptedAppTicket( struct cppISteamUser_SteamUser019_GetEncryptedAppTicket_params *params ); - -struct cppISteamUser_SteamUser019_GetGameBadgeLevel_params -{ - void *linux_side; - int32_t _ret; - int32_t nSeries; - bool bFoil; -}; -extern void cppISteamUser_SteamUser019_GetGameBadgeLevel( struct cppISteamUser_SteamUser019_GetGameBadgeLevel_params *params ); - -struct cppISteamUser_SteamUser019_GetPlayerSteamLevel_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamUser_SteamUser019_GetPlayerSteamLevel( struct cppISteamUser_SteamUser019_GetPlayerSteamLevel_params *params ); - -struct cppISteamUser_SteamUser019_RequestStoreAuthURL_params -{ - void *linux_side; - uint64_t _ret; - const char *pchRedirectURL; -}; -extern void cppISteamUser_SteamUser019_RequestStoreAuthURL( struct cppISteamUser_SteamUser019_RequestStoreAuthURL_params *params ); - -struct cppISteamUser_SteamUser019_BIsPhoneVerified_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser019_BIsPhoneVerified( struct cppISteamUser_SteamUser019_BIsPhoneVerified_params *params ); - -struct cppISteamUser_SteamUser019_BIsTwoFactorEnabled_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser019_BIsTwoFactorEnabled( struct cppISteamUser_SteamUser019_BIsTwoFactorEnabled_params *params ); - -struct cppISteamUser_SteamUser019_BIsPhoneIdentifying_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser019_BIsPhoneIdentifying( struct cppISteamUser_SteamUser019_BIsPhoneIdentifying_params *params ); - -struct cppISteamUser_SteamUser019_BIsPhoneRequiringVerification_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser019_BIsPhoneRequiringVerification( struct cppISteamUser_SteamUser019_BIsPhoneRequiringVerification_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUser_SteamUser020.cpp b/lsteamclient/cppISteamUser_SteamUser020.cpp index 9a99f37c..54646ae0 100644 --- a/lsteamclient/cppISteamUser_SteamUser020.cpp +++ b/lsteamclient/cppISteamUser_SteamUser020.cpp @@ -1,190 +1,251 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUser_SteamUser020.h" -void cppISteamUser_SteamUser020_GetHSteamUser( struct cppISteamUser_SteamUser020_GetHSteamUser_params *params ) +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; params->_ret = iface->GetHSteamUser( ); + return 0; } -void cppISteamUser_SteamUser020_BLoggedOn( struct cppISteamUser_SteamUser020_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamUser_SteamUser020_GetSteamID( struct cppISteamUser_SteamUser020_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamUser_SteamUser020_InitiateGameConnection( struct cppISteamUser_SteamUser020_InitiateGameConnection_params *params ) +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; params->_ret = iface->InitiateGameConnection( params->pAuthBlob, params->cbMaxAuthBlob, params->steamIDGameServer, params->unIPServer, params->usPortServer, params->bSecure ); + return 0; } -void cppISteamUser_SteamUser020_TerminateGameConnection( struct cppISteamUser_SteamUser020_TerminateGameConnection_params *params ) +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; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); + return 0; } -void cppISteamUser_SteamUser020_TrackAppUsageEvent( struct cppISteamUser_SteamUser020_TrackAppUsageEvent_params *params ) +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; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); + return 0; } -void cppISteamUser_SteamUser020_GetUserDataFolder( struct cppISteamUser_SteamUser020_GetUserDataFolder_params *params ) +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; params->_ret = iface->GetUserDataFolder( params->pchBuffer, params->cubBuffer ); + return 0; } -void cppISteamUser_SteamUser020_StartVoiceRecording( struct cppISteamUser_SteamUser020_StartVoiceRecording_params *params ) +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; iface->StartVoiceRecording( ); + return 0; } -void cppISteamUser_SteamUser020_StopVoiceRecording( struct cppISteamUser_SteamUser020_StopVoiceRecording_params *params ) +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; iface->StopVoiceRecording( ); + return 0; } -void cppISteamUser_SteamUser020_GetAvailableVoice( struct cppISteamUser_SteamUser020_GetAvailableVoice_params *params ) +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; params->_ret = iface->GetAvailableVoice( params->pcbCompressed, params->pcbUncompressed_Deprecated, params->nUncompressedVoiceDesiredSampleRate_Deprecated ); + return 0; } -void cppISteamUser_SteamUser020_GetVoice( struct cppISteamUser_SteamUser020_GetVoice_params *params ) +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; 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; } -void cppISteamUser_SteamUser020_DecompressVoice( struct cppISteamUser_SteamUser020_DecompressVoice_params *params ) +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; params->_ret = iface->DecompressVoice( params->pCompressed, params->cbCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->nDesiredSampleRate ); + return 0; } -void cppISteamUser_SteamUser020_GetVoiceOptimalSampleRate( struct cppISteamUser_SteamUser020_GetVoiceOptimalSampleRate_params *params ) +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; params->_ret = iface->GetVoiceOptimalSampleRate( ); + return 0; } -void cppISteamUser_SteamUser020_GetAuthSessionTicket( struct cppISteamUser_SteamUser020_GetAuthSessionTicket_params *params ) +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; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); + return 0; } -void cppISteamUser_SteamUser020_BeginAuthSession( struct cppISteamUser_SteamUser020_BeginAuthSession_params *params ) +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; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); + return 0; } -void cppISteamUser_SteamUser020_EndAuthSession( struct cppISteamUser_SteamUser020_EndAuthSession_params *params ) +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; iface->EndAuthSession( params->steamID ); + return 0; } -void cppISteamUser_SteamUser020_CancelAuthTicket( struct cppISteamUser_SteamUser020_CancelAuthTicket_params *params ) +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; iface->CancelAuthTicket( params->hAuthTicket ); + return 0; } -void cppISteamUser_SteamUser020_UserHasLicenseForApp( struct cppISteamUser_SteamUser020_UserHasLicenseForApp_params *params ) +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; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); + return 0; } -void cppISteamUser_SteamUser020_BIsBehindNAT( struct cppISteamUser_SteamUser020_BIsBehindNAT_params *params ) +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; params->_ret = iface->BIsBehindNAT( ); + return 0; } -void cppISteamUser_SteamUser020_AdvertiseGame( struct cppISteamUser_SteamUser020_AdvertiseGame_params *params ) +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; iface->AdvertiseGame( params->steamIDGameServer, params->unIPServer, params->usPortServer ); + return 0; } -void cppISteamUser_SteamUser020_RequestEncryptedAppTicket( struct cppISteamUser_SteamUser020_RequestEncryptedAppTicket_params *params ) +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; params->_ret = iface->RequestEncryptedAppTicket( params->pDataToInclude, params->cbDataToInclude ); + return 0; } -void cppISteamUser_SteamUser020_GetEncryptedAppTicket( struct cppISteamUser_SteamUser020_GetEncryptedAppTicket_params *params ) +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; params->_ret = iface->GetEncryptedAppTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); + return 0; } -void cppISteamUser_SteamUser020_GetGameBadgeLevel( struct cppISteamUser_SteamUser020_GetGameBadgeLevel_params *params ) +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; params->_ret = iface->GetGameBadgeLevel( params->nSeries, params->bFoil ); + return 0; } -void cppISteamUser_SteamUser020_GetPlayerSteamLevel( struct cppISteamUser_SteamUser020_GetPlayerSteamLevel_params *params ) +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; params->_ret = iface->GetPlayerSteamLevel( ); + return 0; } -void cppISteamUser_SteamUser020_RequestStoreAuthURL( struct cppISteamUser_SteamUser020_RequestStoreAuthURL_params *params ) +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; params->_ret = iface->RequestStoreAuthURL( params->pchRedirectURL ); + return 0; } -void cppISteamUser_SteamUser020_BIsPhoneVerified( struct cppISteamUser_SteamUser020_BIsPhoneVerified_params *params ) +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; params->_ret = iface->BIsPhoneVerified( ); + return 0; } -void cppISteamUser_SteamUser020_BIsTwoFactorEnabled( struct cppISteamUser_SteamUser020_BIsTwoFactorEnabled_params *params ) +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; params->_ret = iface->BIsTwoFactorEnabled( ); + return 0; } -void cppISteamUser_SteamUser020_BIsPhoneIdentifying( struct cppISteamUser_SteamUser020_BIsPhoneIdentifying_params *params ) +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; params->_ret = iface->BIsPhoneIdentifying( ); + return 0; } -void cppISteamUser_SteamUser020_BIsPhoneRequiringVerification( struct cppISteamUser_SteamUser020_BIsPhoneRequiringVerification_params *params ) +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; params->_ret = iface->BIsPhoneRequiringVerification( ); + return 0; } -void cppISteamUser_SteamUser020_GetMarketEligibility( struct cppISteamUser_SteamUser020_GetMarketEligibility_params *params ) +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; params->_ret = iface->GetMarketEligibility( ); + return 0; } -void cppISteamUser_SteamUser020_GetDurationControl( struct cppISteamUser_SteamUser020_GetDurationControl_params *params ) +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; params->_ret = iface->GetDurationControl( ); + return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser020.h b/lsteamclient/cppISteamUser_SteamUser020.h deleted file mode 100644 index 1c52d594..00000000 --- a/lsteamclient/cppISteamUser_SteamUser020.h +++ /dev/null @@ -1,274 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUser_SteamUser020_GetHSteamUser_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamUser_SteamUser020_GetHSteamUser( struct cppISteamUser_SteamUser020_GetHSteamUser_params *params ); - -struct cppISteamUser_SteamUser020_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser020_BLoggedOn( struct cppISteamUser_SteamUser020_BLoggedOn_params *params ); - -struct cppISteamUser_SteamUser020_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamUser_SteamUser020_GetSteamID( struct cppISteamUser_SteamUser020_GetSteamID_params *params ); - -struct cppISteamUser_SteamUser020_InitiateGameConnection_params -{ - void *linux_side; - int32_t _ret; - void *pAuthBlob; - int32_t cbMaxAuthBlob; - CSteamID steamIDGameServer; - uint32_t unIPServer; - uint16_t usPortServer; - bool bSecure; -}; -extern void cppISteamUser_SteamUser020_InitiateGameConnection( struct cppISteamUser_SteamUser020_InitiateGameConnection_params *params ); - -struct cppISteamUser_SteamUser020_TerminateGameConnection_params -{ - void *linux_side; - uint32_t unIPServer; - uint16_t usPortServer; -}; -extern void cppISteamUser_SteamUser020_TerminateGameConnection( struct cppISteamUser_SteamUser020_TerminateGameConnection_params *params ); - -struct cppISteamUser_SteamUser020_TrackAppUsageEvent_params -{ - void *linux_side; - CGameID gameID; - int32_t eAppUsageEvent; - const char *pchExtraInfo; -}; -extern void cppISteamUser_SteamUser020_TrackAppUsageEvent( struct cppISteamUser_SteamUser020_TrackAppUsageEvent_params *params ); - -struct cppISteamUser_SteamUser020_GetUserDataFolder_params -{ - void *linux_side; - bool _ret; - char *pchBuffer; - int32_t cubBuffer; -}; -extern void cppISteamUser_SteamUser020_GetUserDataFolder( struct cppISteamUser_SteamUser020_GetUserDataFolder_params *params ); - -struct cppISteamUser_SteamUser020_StartVoiceRecording_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser020_StartVoiceRecording( struct cppISteamUser_SteamUser020_StartVoiceRecording_params *params ); - -struct cppISteamUser_SteamUser020_StopVoiceRecording_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser020_StopVoiceRecording( struct cppISteamUser_SteamUser020_StopVoiceRecording_params *params ); - -struct cppISteamUser_SteamUser020_GetAvailableVoice_params -{ - void *linux_side; - uint32_t _ret; - uint32_t *pcbCompressed; - uint32_t *pcbUncompressed_Deprecated; - uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated; -}; -extern void cppISteamUser_SteamUser020_GetAvailableVoice( struct cppISteamUser_SteamUser020_GetAvailableVoice_params *params ); - -struct cppISteamUser_SteamUser020_GetVoice_params -{ - void *linux_side; - uint32_t _ret; - bool bWantCompressed; - void *pDestBuffer; - uint32_t cbDestBufferSize; - uint32_t *nBytesWritten; - bool bWantUncompressed_Deprecated; - void *pUncompressedDestBuffer_Deprecated; - uint32_t cbUncompressedDestBufferSize_Deprecated; - uint32_t *nUncompressBytesWritten_Deprecated; - uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated; -}; -extern void cppISteamUser_SteamUser020_GetVoice( struct cppISteamUser_SteamUser020_GetVoice_params *params ); - -struct cppISteamUser_SteamUser020_DecompressVoice_params -{ - void *linux_side; - uint32_t _ret; - const void *pCompressed; - uint32_t cbCompressed; - void *pDestBuffer; - uint32_t cbDestBufferSize; - uint32_t *nBytesWritten; - uint32_t nDesiredSampleRate; -}; -extern void cppISteamUser_SteamUser020_DecompressVoice( struct cppISteamUser_SteamUser020_DecompressVoice_params *params ); - -struct cppISteamUser_SteamUser020_GetVoiceOptimalSampleRate_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUser_SteamUser020_GetVoiceOptimalSampleRate( struct cppISteamUser_SteamUser020_GetVoiceOptimalSampleRate_params *params ); - -struct cppISteamUser_SteamUser020_GetAuthSessionTicket_params -{ - void *linux_side; - uint32_t _ret; - void *pTicket; - int32_t cbMaxTicket; - uint32_t *pcbTicket; -}; -extern void cppISteamUser_SteamUser020_GetAuthSessionTicket( struct cppISteamUser_SteamUser020_GetAuthSessionTicket_params *params ); - -struct cppISteamUser_SteamUser020_BeginAuthSession_params -{ - void *linux_side; - uint32_t _ret; - const void *pAuthTicket; - int32_t cbAuthTicket; - CSteamID steamID; -}; -extern void cppISteamUser_SteamUser020_BeginAuthSession( struct cppISteamUser_SteamUser020_BeginAuthSession_params *params ); - -struct cppISteamUser_SteamUser020_EndAuthSession_params -{ - void *linux_side; - CSteamID steamID; -}; -extern void cppISteamUser_SteamUser020_EndAuthSession( struct cppISteamUser_SteamUser020_EndAuthSession_params *params ); - -struct cppISteamUser_SteamUser020_CancelAuthTicket_params -{ - void *linux_side; - uint32_t hAuthTicket; -}; -extern void cppISteamUser_SteamUser020_CancelAuthTicket( struct cppISteamUser_SteamUser020_CancelAuthTicket_params *params ); - -struct cppISteamUser_SteamUser020_UserHasLicenseForApp_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamID; - uint32_t appID; -}; -extern void cppISteamUser_SteamUser020_UserHasLicenseForApp( struct cppISteamUser_SteamUser020_UserHasLicenseForApp_params *params ); - -struct cppISteamUser_SteamUser020_BIsBehindNAT_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser020_BIsBehindNAT( struct cppISteamUser_SteamUser020_BIsBehindNAT_params *params ); - -struct cppISteamUser_SteamUser020_AdvertiseGame_params -{ - void *linux_side; - CSteamID steamIDGameServer; - uint32_t unIPServer; - uint16_t usPortServer; -}; -extern void cppISteamUser_SteamUser020_AdvertiseGame( struct cppISteamUser_SteamUser020_AdvertiseGame_params *params ); - -struct cppISteamUser_SteamUser020_RequestEncryptedAppTicket_params -{ - void *linux_side; - uint64_t _ret; - void *pDataToInclude; - int32_t cbDataToInclude; -}; -extern void cppISteamUser_SteamUser020_RequestEncryptedAppTicket( struct cppISteamUser_SteamUser020_RequestEncryptedAppTicket_params *params ); - -struct cppISteamUser_SteamUser020_GetEncryptedAppTicket_params -{ - void *linux_side; - bool _ret; - void *pTicket; - int32_t cbMaxTicket; - uint32_t *pcbTicket; -}; -extern void cppISteamUser_SteamUser020_GetEncryptedAppTicket( struct cppISteamUser_SteamUser020_GetEncryptedAppTicket_params *params ); - -struct cppISteamUser_SteamUser020_GetGameBadgeLevel_params -{ - void *linux_side; - int32_t _ret; - int32_t nSeries; - bool bFoil; -}; -extern void cppISteamUser_SteamUser020_GetGameBadgeLevel( struct cppISteamUser_SteamUser020_GetGameBadgeLevel_params *params ); - -struct cppISteamUser_SteamUser020_GetPlayerSteamLevel_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamUser_SteamUser020_GetPlayerSteamLevel( struct cppISteamUser_SteamUser020_GetPlayerSteamLevel_params *params ); - -struct cppISteamUser_SteamUser020_RequestStoreAuthURL_params -{ - void *linux_side; - uint64_t _ret; - const char *pchRedirectURL; -}; -extern void cppISteamUser_SteamUser020_RequestStoreAuthURL( struct cppISteamUser_SteamUser020_RequestStoreAuthURL_params *params ); - -struct cppISteamUser_SteamUser020_BIsPhoneVerified_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser020_BIsPhoneVerified( struct cppISteamUser_SteamUser020_BIsPhoneVerified_params *params ); - -struct cppISteamUser_SteamUser020_BIsTwoFactorEnabled_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser020_BIsTwoFactorEnabled( struct cppISteamUser_SteamUser020_BIsTwoFactorEnabled_params *params ); - -struct cppISteamUser_SteamUser020_BIsPhoneIdentifying_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser020_BIsPhoneIdentifying( struct cppISteamUser_SteamUser020_BIsPhoneIdentifying_params *params ); - -struct cppISteamUser_SteamUser020_BIsPhoneRequiringVerification_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser020_BIsPhoneRequiringVerification( struct cppISteamUser_SteamUser020_BIsPhoneRequiringVerification_params *params ); - -struct cppISteamUser_SteamUser020_GetMarketEligibility_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamUser_SteamUser020_GetMarketEligibility( struct cppISteamUser_SteamUser020_GetMarketEligibility_params *params ); - -struct cppISteamUser_SteamUser020_GetDurationControl_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamUser_SteamUser020_GetDurationControl( struct cppISteamUser_SteamUser020_GetDurationControl_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUser_SteamUser021.cpp b/lsteamclient/cppISteamUser_SteamUser021.cpp index dda382d8..6a557c81 100644 --- a/lsteamclient/cppISteamUser_SteamUser021.cpp +++ b/lsteamclient/cppISteamUser_SteamUser021.cpp @@ -1,196 +1,259 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUser_SteamUser021.h" -void cppISteamUser_SteamUser021_GetHSteamUser( struct cppISteamUser_SteamUser021_GetHSteamUser_params *params ) +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; params->_ret = iface->GetHSteamUser( ); + return 0; } -void cppISteamUser_SteamUser021_BLoggedOn( struct cppISteamUser_SteamUser021_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamUser_SteamUser021_GetSteamID( struct cppISteamUser_SteamUser021_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamUser_SteamUser021_InitiateGameConnection_DEPRECATED( struct cppISteamUser_SteamUser021_InitiateGameConnection_DEPRECATED_params *params ) +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; params->_ret = iface->InitiateGameConnection_DEPRECATED( params->pAuthBlob, params->cbMaxAuthBlob, params->steamIDGameServer, params->unIPServer, params->usPortServer, params->bSecure ); + return 0; } -void cppISteamUser_SteamUser021_TerminateGameConnection_DEPRECATED( struct cppISteamUser_SteamUser021_TerminateGameConnection_DEPRECATED_params *params ) +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; iface->TerminateGameConnection_DEPRECATED( params->unIPServer, params->usPortServer ); + return 0; } -void cppISteamUser_SteamUser021_TrackAppUsageEvent( struct cppISteamUser_SteamUser021_TrackAppUsageEvent_params *params ) +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; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); + return 0; } -void cppISteamUser_SteamUser021_GetUserDataFolder( struct cppISteamUser_SteamUser021_GetUserDataFolder_params *params ) +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; params->_ret = iface->GetUserDataFolder( params->pchBuffer, params->cubBuffer ); + return 0; } -void cppISteamUser_SteamUser021_StartVoiceRecording( struct cppISteamUser_SteamUser021_StartVoiceRecording_params *params ) +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; iface->StartVoiceRecording( ); + return 0; } -void cppISteamUser_SteamUser021_StopVoiceRecording( struct cppISteamUser_SteamUser021_StopVoiceRecording_params *params ) +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; iface->StopVoiceRecording( ); + return 0; } -void cppISteamUser_SteamUser021_GetAvailableVoice( struct cppISteamUser_SteamUser021_GetAvailableVoice_params *params ) +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; params->_ret = iface->GetAvailableVoice( params->pcbCompressed, params->pcbUncompressed_Deprecated, params->nUncompressedVoiceDesiredSampleRate_Deprecated ); + return 0; } -void cppISteamUser_SteamUser021_GetVoice( struct cppISteamUser_SteamUser021_GetVoice_params *params ) +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; 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; } -void cppISteamUser_SteamUser021_DecompressVoice( struct cppISteamUser_SteamUser021_DecompressVoice_params *params ) +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; params->_ret = iface->DecompressVoice( params->pCompressed, params->cbCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->nDesiredSampleRate ); + return 0; } -void cppISteamUser_SteamUser021_GetVoiceOptimalSampleRate( struct cppISteamUser_SteamUser021_GetVoiceOptimalSampleRate_params *params ) +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; params->_ret = iface->GetVoiceOptimalSampleRate( ); + return 0; } -void cppISteamUser_SteamUser021_GetAuthSessionTicket( struct cppISteamUser_SteamUser021_GetAuthSessionTicket_params *params ) +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; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); + return 0; } -void cppISteamUser_SteamUser021_BeginAuthSession( struct cppISteamUser_SteamUser021_BeginAuthSession_params *params ) +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; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); + return 0; } -void cppISteamUser_SteamUser021_EndAuthSession( struct cppISteamUser_SteamUser021_EndAuthSession_params *params ) +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; iface->EndAuthSession( params->steamID ); + return 0; } -void cppISteamUser_SteamUser021_CancelAuthTicket( struct cppISteamUser_SteamUser021_CancelAuthTicket_params *params ) +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; iface->CancelAuthTicket( params->hAuthTicket ); + return 0; } -void cppISteamUser_SteamUser021_UserHasLicenseForApp( struct cppISteamUser_SteamUser021_UserHasLicenseForApp_params *params ) +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; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); + return 0; } -void cppISteamUser_SteamUser021_BIsBehindNAT( struct cppISteamUser_SteamUser021_BIsBehindNAT_params *params ) +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; params->_ret = iface->BIsBehindNAT( ); + return 0; } -void cppISteamUser_SteamUser021_AdvertiseGame( struct cppISteamUser_SteamUser021_AdvertiseGame_params *params ) +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; iface->AdvertiseGame( params->steamIDGameServer, params->unIPServer, params->usPortServer ); + return 0; } -void cppISteamUser_SteamUser021_RequestEncryptedAppTicket( struct cppISteamUser_SteamUser021_RequestEncryptedAppTicket_params *params ) +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; params->_ret = iface->RequestEncryptedAppTicket( params->pDataToInclude, params->cbDataToInclude ); + return 0; } -void cppISteamUser_SteamUser021_GetEncryptedAppTicket( struct cppISteamUser_SteamUser021_GetEncryptedAppTicket_params *params ) +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; params->_ret = iface->GetEncryptedAppTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); + return 0; } -void cppISteamUser_SteamUser021_GetGameBadgeLevel( struct cppISteamUser_SteamUser021_GetGameBadgeLevel_params *params ) +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; params->_ret = iface->GetGameBadgeLevel( params->nSeries, params->bFoil ); + return 0; } -void cppISteamUser_SteamUser021_GetPlayerSteamLevel( struct cppISteamUser_SteamUser021_GetPlayerSteamLevel_params *params ) +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; params->_ret = iface->GetPlayerSteamLevel( ); + return 0; } -void cppISteamUser_SteamUser021_RequestStoreAuthURL( struct cppISteamUser_SteamUser021_RequestStoreAuthURL_params *params ) +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; params->_ret = iface->RequestStoreAuthURL( params->pchRedirectURL ); + return 0; } -void cppISteamUser_SteamUser021_BIsPhoneVerified( struct cppISteamUser_SteamUser021_BIsPhoneVerified_params *params ) +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; params->_ret = iface->BIsPhoneVerified( ); + return 0; } -void cppISteamUser_SteamUser021_BIsTwoFactorEnabled( struct cppISteamUser_SteamUser021_BIsTwoFactorEnabled_params *params ) +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; params->_ret = iface->BIsTwoFactorEnabled( ); + return 0; } -void cppISteamUser_SteamUser021_BIsPhoneIdentifying( struct cppISteamUser_SteamUser021_BIsPhoneIdentifying_params *params ) +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; params->_ret = iface->BIsPhoneIdentifying( ); + return 0; } -void cppISteamUser_SteamUser021_BIsPhoneRequiringVerification( struct cppISteamUser_SteamUser021_BIsPhoneRequiringVerification_params *params ) +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; params->_ret = iface->BIsPhoneRequiringVerification( ); + return 0; } -void cppISteamUser_SteamUser021_GetMarketEligibility( struct cppISteamUser_SteamUser021_GetMarketEligibility_params *params ) +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; params->_ret = iface->GetMarketEligibility( ); + return 0; } -void cppISteamUser_SteamUser021_GetDurationControl( struct cppISteamUser_SteamUser021_GetDurationControl_params *params ) +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; params->_ret = iface->GetDurationControl( ); + return 0; } -void cppISteamUser_SteamUser021_BSetDurationControlOnlineState( struct cppISteamUser_SteamUser021_BSetDurationControlOnlineState_params *params ) +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; params->_ret = iface->BSetDurationControlOnlineState( params->eNewState ); + return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser021.h b/lsteamclient/cppISteamUser_SteamUser021.h deleted file mode 100644 index b84166f6..00000000 --- a/lsteamclient/cppISteamUser_SteamUser021.h +++ /dev/null @@ -1,282 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUser_SteamUser021_GetHSteamUser_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamUser_SteamUser021_GetHSteamUser( struct cppISteamUser_SteamUser021_GetHSteamUser_params *params ); - -struct cppISteamUser_SteamUser021_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser021_BLoggedOn( struct cppISteamUser_SteamUser021_BLoggedOn_params *params ); - -struct cppISteamUser_SteamUser021_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamUser_SteamUser021_GetSteamID( struct cppISteamUser_SteamUser021_GetSteamID_params *params ); - -struct cppISteamUser_SteamUser021_InitiateGameConnection_DEPRECATED_params -{ - void *linux_side; - int32_t _ret; - void *pAuthBlob; - int32_t cbMaxAuthBlob; - CSteamID steamIDGameServer; - uint32_t unIPServer; - uint16_t usPortServer; - bool bSecure; -}; -extern void cppISteamUser_SteamUser021_InitiateGameConnection_DEPRECATED( struct cppISteamUser_SteamUser021_InitiateGameConnection_DEPRECATED_params *params ); - -struct cppISteamUser_SteamUser021_TerminateGameConnection_DEPRECATED_params -{ - void *linux_side; - uint32_t unIPServer; - uint16_t usPortServer; -}; -extern void cppISteamUser_SteamUser021_TerminateGameConnection_DEPRECATED( struct cppISteamUser_SteamUser021_TerminateGameConnection_DEPRECATED_params *params ); - -struct cppISteamUser_SteamUser021_TrackAppUsageEvent_params -{ - void *linux_side; - CGameID gameID; - int32_t eAppUsageEvent; - const char *pchExtraInfo; -}; -extern void cppISteamUser_SteamUser021_TrackAppUsageEvent( struct cppISteamUser_SteamUser021_TrackAppUsageEvent_params *params ); - -struct cppISteamUser_SteamUser021_GetUserDataFolder_params -{ - void *linux_side; - bool _ret; - char *pchBuffer; - int32_t cubBuffer; -}; -extern void cppISteamUser_SteamUser021_GetUserDataFolder( struct cppISteamUser_SteamUser021_GetUserDataFolder_params *params ); - -struct cppISteamUser_SteamUser021_StartVoiceRecording_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser021_StartVoiceRecording( struct cppISteamUser_SteamUser021_StartVoiceRecording_params *params ); - -struct cppISteamUser_SteamUser021_StopVoiceRecording_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser021_StopVoiceRecording( struct cppISteamUser_SteamUser021_StopVoiceRecording_params *params ); - -struct cppISteamUser_SteamUser021_GetAvailableVoice_params -{ - void *linux_side; - uint32_t _ret; - uint32_t *pcbCompressed; - uint32_t *pcbUncompressed_Deprecated; - uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated; -}; -extern void cppISteamUser_SteamUser021_GetAvailableVoice( struct cppISteamUser_SteamUser021_GetAvailableVoice_params *params ); - -struct cppISteamUser_SteamUser021_GetVoice_params -{ - void *linux_side; - uint32_t _ret; - bool bWantCompressed; - void *pDestBuffer; - uint32_t cbDestBufferSize; - uint32_t *nBytesWritten; - bool bWantUncompressed_Deprecated; - void *pUncompressedDestBuffer_Deprecated; - uint32_t cbUncompressedDestBufferSize_Deprecated; - uint32_t *nUncompressBytesWritten_Deprecated; - uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated; -}; -extern void cppISteamUser_SteamUser021_GetVoice( struct cppISteamUser_SteamUser021_GetVoice_params *params ); - -struct cppISteamUser_SteamUser021_DecompressVoice_params -{ - void *linux_side; - uint32_t _ret; - const void *pCompressed; - uint32_t cbCompressed; - void *pDestBuffer; - uint32_t cbDestBufferSize; - uint32_t *nBytesWritten; - uint32_t nDesiredSampleRate; -}; -extern void cppISteamUser_SteamUser021_DecompressVoice( struct cppISteamUser_SteamUser021_DecompressVoice_params *params ); - -struct cppISteamUser_SteamUser021_GetVoiceOptimalSampleRate_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUser_SteamUser021_GetVoiceOptimalSampleRate( struct cppISteamUser_SteamUser021_GetVoiceOptimalSampleRate_params *params ); - -struct cppISteamUser_SteamUser021_GetAuthSessionTicket_params -{ - void *linux_side; - uint32_t _ret; - void *pTicket; - int32_t cbMaxTicket; - uint32_t *pcbTicket; -}; -extern void cppISteamUser_SteamUser021_GetAuthSessionTicket( struct cppISteamUser_SteamUser021_GetAuthSessionTicket_params *params ); - -struct cppISteamUser_SteamUser021_BeginAuthSession_params -{ - void *linux_side; - uint32_t _ret; - const void *pAuthTicket; - int32_t cbAuthTicket; - CSteamID steamID; -}; -extern void cppISteamUser_SteamUser021_BeginAuthSession( struct cppISteamUser_SteamUser021_BeginAuthSession_params *params ); - -struct cppISteamUser_SteamUser021_EndAuthSession_params -{ - void *linux_side; - CSteamID steamID; -}; -extern void cppISteamUser_SteamUser021_EndAuthSession( struct cppISteamUser_SteamUser021_EndAuthSession_params *params ); - -struct cppISteamUser_SteamUser021_CancelAuthTicket_params -{ - void *linux_side; - uint32_t hAuthTicket; -}; -extern void cppISteamUser_SteamUser021_CancelAuthTicket( struct cppISteamUser_SteamUser021_CancelAuthTicket_params *params ); - -struct cppISteamUser_SteamUser021_UserHasLicenseForApp_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamID; - uint32_t appID; -}; -extern void cppISteamUser_SteamUser021_UserHasLicenseForApp( struct cppISteamUser_SteamUser021_UserHasLicenseForApp_params *params ); - -struct cppISteamUser_SteamUser021_BIsBehindNAT_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser021_BIsBehindNAT( struct cppISteamUser_SteamUser021_BIsBehindNAT_params *params ); - -struct cppISteamUser_SteamUser021_AdvertiseGame_params -{ - void *linux_side; - CSteamID steamIDGameServer; - uint32_t unIPServer; - uint16_t usPortServer; -}; -extern void cppISteamUser_SteamUser021_AdvertiseGame( struct cppISteamUser_SteamUser021_AdvertiseGame_params *params ); - -struct cppISteamUser_SteamUser021_RequestEncryptedAppTicket_params -{ - void *linux_side; - uint64_t _ret; - void *pDataToInclude; - int32_t cbDataToInclude; -}; -extern void cppISteamUser_SteamUser021_RequestEncryptedAppTicket( struct cppISteamUser_SteamUser021_RequestEncryptedAppTicket_params *params ); - -struct cppISteamUser_SteamUser021_GetEncryptedAppTicket_params -{ - void *linux_side; - bool _ret; - void *pTicket; - int32_t cbMaxTicket; - uint32_t *pcbTicket; -}; -extern void cppISteamUser_SteamUser021_GetEncryptedAppTicket( struct cppISteamUser_SteamUser021_GetEncryptedAppTicket_params *params ); - -struct cppISteamUser_SteamUser021_GetGameBadgeLevel_params -{ - void *linux_side; - int32_t _ret; - int32_t nSeries; - bool bFoil; -}; -extern void cppISteamUser_SteamUser021_GetGameBadgeLevel( struct cppISteamUser_SteamUser021_GetGameBadgeLevel_params *params ); - -struct cppISteamUser_SteamUser021_GetPlayerSteamLevel_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamUser_SteamUser021_GetPlayerSteamLevel( struct cppISteamUser_SteamUser021_GetPlayerSteamLevel_params *params ); - -struct cppISteamUser_SteamUser021_RequestStoreAuthURL_params -{ - void *linux_side; - uint64_t _ret; - const char *pchRedirectURL; -}; -extern void cppISteamUser_SteamUser021_RequestStoreAuthURL( struct cppISteamUser_SteamUser021_RequestStoreAuthURL_params *params ); - -struct cppISteamUser_SteamUser021_BIsPhoneVerified_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser021_BIsPhoneVerified( struct cppISteamUser_SteamUser021_BIsPhoneVerified_params *params ); - -struct cppISteamUser_SteamUser021_BIsTwoFactorEnabled_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser021_BIsTwoFactorEnabled( struct cppISteamUser_SteamUser021_BIsTwoFactorEnabled_params *params ); - -struct cppISteamUser_SteamUser021_BIsPhoneIdentifying_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser021_BIsPhoneIdentifying( struct cppISteamUser_SteamUser021_BIsPhoneIdentifying_params *params ); - -struct cppISteamUser_SteamUser021_BIsPhoneRequiringVerification_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser021_BIsPhoneRequiringVerification( struct cppISteamUser_SteamUser021_BIsPhoneRequiringVerification_params *params ); - -struct cppISteamUser_SteamUser021_GetMarketEligibility_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamUser_SteamUser021_GetMarketEligibility( struct cppISteamUser_SteamUser021_GetMarketEligibility_params *params ); - -struct cppISteamUser_SteamUser021_GetDurationControl_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamUser_SteamUser021_GetDurationControl( struct cppISteamUser_SteamUser021_GetDurationControl_params *params ); - -struct cppISteamUser_SteamUser021_BSetDurationControlOnlineState_params -{ - void *linux_side; - bool _ret; - uint32_t eNewState; -}; -extern void cppISteamUser_SteamUser021_BSetDurationControlOnlineState( struct cppISteamUser_SteamUser021_BSetDurationControlOnlineState_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUser_SteamUser022.cpp b/lsteamclient/cppISteamUser_SteamUser022.cpp index 9bee25ef..262cc01c 100644 --- a/lsteamclient/cppISteamUser_SteamUser022.cpp +++ b/lsteamclient/cppISteamUser_SteamUser022.cpp @@ -1,196 +1,259 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUser_SteamUser022.h" -void cppISteamUser_SteamUser022_GetHSteamUser( struct cppISteamUser_SteamUser022_GetHSteamUser_params *params ) +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; params->_ret = iface->GetHSteamUser( ); + return 0; } -void cppISteamUser_SteamUser022_BLoggedOn( struct cppISteamUser_SteamUser022_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamUser_SteamUser022_GetSteamID( struct cppISteamUser_SteamUser022_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamUser_SteamUser022_InitiateGameConnection_DEPRECATED( struct cppISteamUser_SteamUser022_InitiateGameConnection_DEPRECATED_params *params ) +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; params->_ret = iface->InitiateGameConnection_DEPRECATED( params->pAuthBlob, params->cbMaxAuthBlob, params->steamIDGameServer, params->unIPServer, params->usPortServer, params->bSecure ); + return 0; } -void cppISteamUser_SteamUser022_TerminateGameConnection_DEPRECATED( struct cppISteamUser_SteamUser022_TerminateGameConnection_DEPRECATED_params *params ) +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; iface->TerminateGameConnection_DEPRECATED( params->unIPServer, params->usPortServer ); + return 0; } -void cppISteamUser_SteamUser022_TrackAppUsageEvent( struct cppISteamUser_SteamUser022_TrackAppUsageEvent_params *params ) +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; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); + return 0; } -void cppISteamUser_SteamUser022_GetUserDataFolder( struct cppISteamUser_SteamUser022_GetUserDataFolder_params *params ) +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; params->_ret = iface->GetUserDataFolder( params->pchBuffer, params->cubBuffer ); + return 0; } -void cppISteamUser_SteamUser022_StartVoiceRecording( struct cppISteamUser_SteamUser022_StartVoiceRecording_params *params ) +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; iface->StartVoiceRecording( ); + return 0; } -void cppISteamUser_SteamUser022_StopVoiceRecording( struct cppISteamUser_SteamUser022_StopVoiceRecording_params *params ) +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; iface->StopVoiceRecording( ); + return 0; } -void cppISteamUser_SteamUser022_GetAvailableVoice( struct cppISteamUser_SteamUser022_GetAvailableVoice_params *params ) +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; params->_ret = iface->GetAvailableVoice( params->pcbCompressed, params->pcbUncompressed_Deprecated, params->nUncompressedVoiceDesiredSampleRate_Deprecated ); + return 0; } -void cppISteamUser_SteamUser022_GetVoice( struct cppISteamUser_SteamUser022_GetVoice_params *params ) +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; 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; } -void cppISteamUser_SteamUser022_DecompressVoice( struct cppISteamUser_SteamUser022_DecompressVoice_params *params ) +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; params->_ret = iface->DecompressVoice( params->pCompressed, params->cbCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->nDesiredSampleRate ); + return 0; } -void cppISteamUser_SteamUser022_GetVoiceOptimalSampleRate( struct cppISteamUser_SteamUser022_GetVoiceOptimalSampleRate_params *params ) +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; params->_ret = iface->GetVoiceOptimalSampleRate( ); + return 0; } -void cppISteamUser_SteamUser022_GetAuthSessionTicket( struct cppISteamUser_SteamUser022_GetAuthSessionTicket_params *params ) +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; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket, params->pSteamNetworkingIdentity ); + return 0; } -void cppISteamUser_SteamUser022_BeginAuthSession( struct cppISteamUser_SteamUser022_BeginAuthSession_params *params ) +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; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); + return 0; } -void cppISteamUser_SteamUser022_EndAuthSession( struct cppISteamUser_SteamUser022_EndAuthSession_params *params ) +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; iface->EndAuthSession( params->steamID ); + return 0; } -void cppISteamUser_SteamUser022_CancelAuthTicket( struct cppISteamUser_SteamUser022_CancelAuthTicket_params *params ) +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; iface->CancelAuthTicket( params->hAuthTicket ); + return 0; } -void cppISteamUser_SteamUser022_UserHasLicenseForApp( struct cppISteamUser_SteamUser022_UserHasLicenseForApp_params *params ) +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; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); + return 0; } -void cppISteamUser_SteamUser022_BIsBehindNAT( struct cppISteamUser_SteamUser022_BIsBehindNAT_params *params ) +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; params->_ret = iface->BIsBehindNAT( ); + return 0; } -void cppISteamUser_SteamUser022_AdvertiseGame( struct cppISteamUser_SteamUser022_AdvertiseGame_params *params ) +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; iface->AdvertiseGame( params->steamIDGameServer, params->unIPServer, params->usPortServer ); + return 0; } -void cppISteamUser_SteamUser022_RequestEncryptedAppTicket( struct cppISteamUser_SteamUser022_RequestEncryptedAppTicket_params *params ) +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; params->_ret = iface->RequestEncryptedAppTicket( params->pDataToInclude, params->cbDataToInclude ); + return 0; } -void cppISteamUser_SteamUser022_GetEncryptedAppTicket( struct cppISteamUser_SteamUser022_GetEncryptedAppTicket_params *params ) +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; params->_ret = iface->GetEncryptedAppTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); + return 0; } -void cppISteamUser_SteamUser022_GetGameBadgeLevel( struct cppISteamUser_SteamUser022_GetGameBadgeLevel_params *params ) +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; params->_ret = iface->GetGameBadgeLevel( params->nSeries, params->bFoil ); + return 0; } -void cppISteamUser_SteamUser022_GetPlayerSteamLevel( struct cppISteamUser_SteamUser022_GetPlayerSteamLevel_params *params ) +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; params->_ret = iface->GetPlayerSteamLevel( ); + return 0; } -void cppISteamUser_SteamUser022_RequestStoreAuthURL( struct cppISteamUser_SteamUser022_RequestStoreAuthURL_params *params ) +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; params->_ret = iface->RequestStoreAuthURL( params->pchRedirectURL ); + return 0; } -void cppISteamUser_SteamUser022_BIsPhoneVerified( struct cppISteamUser_SteamUser022_BIsPhoneVerified_params *params ) +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; params->_ret = iface->BIsPhoneVerified( ); + return 0; } -void cppISteamUser_SteamUser022_BIsTwoFactorEnabled( struct cppISteamUser_SteamUser022_BIsTwoFactorEnabled_params *params ) +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; params->_ret = iface->BIsTwoFactorEnabled( ); + return 0; } -void cppISteamUser_SteamUser022_BIsPhoneIdentifying( struct cppISteamUser_SteamUser022_BIsPhoneIdentifying_params *params ) +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; params->_ret = iface->BIsPhoneIdentifying( ); + return 0; } -void cppISteamUser_SteamUser022_BIsPhoneRequiringVerification( struct cppISteamUser_SteamUser022_BIsPhoneRequiringVerification_params *params ) +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; params->_ret = iface->BIsPhoneRequiringVerification( ); + return 0; } -void cppISteamUser_SteamUser022_GetMarketEligibility( struct cppISteamUser_SteamUser022_GetMarketEligibility_params *params ) +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; params->_ret = iface->GetMarketEligibility( ); + return 0; } -void cppISteamUser_SteamUser022_GetDurationControl( struct cppISteamUser_SteamUser022_GetDurationControl_params *params ) +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; params->_ret = iface->GetDurationControl( ); + return 0; } -void cppISteamUser_SteamUser022_BSetDurationControlOnlineState( struct cppISteamUser_SteamUser022_BSetDurationControlOnlineState_params *params ) +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; params->_ret = iface->BSetDurationControlOnlineState( params->eNewState ); + return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser022.h b/lsteamclient/cppISteamUser_SteamUser022.h deleted file mode 100644 index 990e7469..00000000 --- a/lsteamclient/cppISteamUser_SteamUser022.h +++ /dev/null @@ -1,283 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUser_SteamUser022_GetHSteamUser_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamUser_SteamUser022_GetHSteamUser( struct cppISteamUser_SteamUser022_GetHSteamUser_params *params ); - -struct cppISteamUser_SteamUser022_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser022_BLoggedOn( struct cppISteamUser_SteamUser022_BLoggedOn_params *params ); - -struct cppISteamUser_SteamUser022_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamUser_SteamUser022_GetSteamID( struct cppISteamUser_SteamUser022_GetSteamID_params *params ); - -struct cppISteamUser_SteamUser022_InitiateGameConnection_DEPRECATED_params -{ - void *linux_side; - int32_t _ret; - void *pAuthBlob; - int32_t cbMaxAuthBlob; - CSteamID steamIDGameServer; - uint32_t unIPServer; - uint16_t usPortServer; - bool bSecure; -}; -extern void cppISteamUser_SteamUser022_InitiateGameConnection_DEPRECATED( struct cppISteamUser_SteamUser022_InitiateGameConnection_DEPRECATED_params *params ); - -struct cppISteamUser_SteamUser022_TerminateGameConnection_DEPRECATED_params -{ - void *linux_side; - uint32_t unIPServer; - uint16_t usPortServer; -}; -extern void cppISteamUser_SteamUser022_TerminateGameConnection_DEPRECATED( struct cppISteamUser_SteamUser022_TerminateGameConnection_DEPRECATED_params *params ); - -struct cppISteamUser_SteamUser022_TrackAppUsageEvent_params -{ - void *linux_side; - CGameID gameID; - int32_t eAppUsageEvent; - const char *pchExtraInfo; -}; -extern void cppISteamUser_SteamUser022_TrackAppUsageEvent( struct cppISteamUser_SteamUser022_TrackAppUsageEvent_params *params ); - -struct cppISteamUser_SteamUser022_GetUserDataFolder_params -{ - void *linux_side; - bool _ret; - char *pchBuffer; - int32_t cubBuffer; -}; -extern void cppISteamUser_SteamUser022_GetUserDataFolder( struct cppISteamUser_SteamUser022_GetUserDataFolder_params *params ); - -struct cppISteamUser_SteamUser022_StartVoiceRecording_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser022_StartVoiceRecording( struct cppISteamUser_SteamUser022_StartVoiceRecording_params *params ); - -struct cppISteamUser_SteamUser022_StopVoiceRecording_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser022_StopVoiceRecording( struct cppISteamUser_SteamUser022_StopVoiceRecording_params *params ); - -struct cppISteamUser_SteamUser022_GetAvailableVoice_params -{ - void *linux_side; - uint32_t _ret; - uint32_t *pcbCompressed; - uint32_t *pcbUncompressed_Deprecated; - uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated; -}; -extern void cppISteamUser_SteamUser022_GetAvailableVoice( struct cppISteamUser_SteamUser022_GetAvailableVoice_params *params ); - -struct cppISteamUser_SteamUser022_GetVoice_params -{ - void *linux_side; - uint32_t _ret; - bool bWantCompressed; - void *pDestBuffer; - uint32_t cbDestBufferSize; - uint32_t *nBytesWritten; - bool bWantUncompressed_Deprecated; - void *pUncompressedDestBuffer_Deprecated; - uint32_t cbUncompressedDestBufferSize_Deprecated; - uint32_t *nUncompressBytesWritten_Deprecated; - uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated; -}; -extern void cppISteamUser_SteamUser022_GetVoice( struct cppISteamUser_SteamUser022_GetVoice_params *params ); - -struct cppISteamUser_SteamUser022_DecompressVoice_params -{ - void *linux_side; - uint32_t _ret; - const void *pCompressed; - uint32_t cbCompressed; - void *pDestBuffer; - uint32_t cbDestBufferSize; - uint32_t *nBytesWritten; - uint32_t nDesiredSampleRate; -}; -extern void cppISteamUser_SteamUser022_DecompressVoice( struct cppISteamUser_SteamUser022_DecompressVoice_params *params ); - -struct cppISteamUser_SteamUser022_GetVoiceOptimalSampleRate_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUser_SteamUser022_GetVoiceOptimalSampleRate( struct cppISteamUser_SteamUser022_GetVoiceOptimalSampleRate_params *params ); - -struct cppISteamUser_SteamUser022_GetAuthSessionTicket_params -{ - void *linux_side; - uint32_t _ret; - void *pTicket; - int32_t cbMaxTicket; - uint32_t *pcbTicket; - const SteamNetworkingIdentity_144 *pSteamNetworkingIdentity; -}; -extern void cppISteamUser_SteamUser022_GetAuthSessionTicket( struct cppISteamUser_SteamUser022_GetAuthSessionTicket_params *params ); - -struct cppISteamUser_SteamUser022_BeginAuthSession_params -{ - void *linux_side; - uint32_t _ret; - const void *pAuthTicket; - int32_t cbAuthTicket; - CSteamID steamID; -}; -extern void cppISteamUser_SteamUser022_BeginAuthSession( struct cppISteamUser_SteamUser022_BeginAuthSession_params *params ); - -struct cppISteamUser_SteamUser022_EndAuthSession_params -{ - void *linux_side; - CSteamID steamID; -}; -extern void cppISteamUser_SteamUser022_EndAuthSession( struct cppISteamUser_SteamUser022_EndAuthSession_params *params ); - -struct cppISteamUser_SteamUser022_CancelAuthTicket_params -{ - void *linux_side; - uint32_t hAuthTicket; -}; -extern void cppISteamUser_SteamUser022_CancelAuthTicket( struct cppISteamUser_SteamUser022_CancelAuthTicket_params *params ); - -struct cppISteamUser_SteamUser022_UserHasLicenseForApp_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamID; - uint32_t appID; -}; -extern void cppISteamUser_SteamUser022_UserHasLicenseForApp( struct cppISteamUser_SteamUser022_UserHasLicenseForApp_params *params ); - -struct cppISteamUser_SteamUser022_BIsBehindNAT_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser022_BIsBehindNAT( struct cppISteamUser_SteamUser022_BIsBehindNAT_params *params ); - -struct cppISteamUser_SteamUser022_AdvertiseGame_params -{ - void *linux_side; - CSteamID steamIDGameServer; - uint32_t unIPServer; - uint16_t usPortServer; -}; -extern void cppISteamUser_SteamUser022_AdvertiseGame( struct cppISteamUser_SteamUser022_AdvertiseGame_params *params ); - -struct cppISteamUser_SteamUser022_RequestEncryptedAppTicket_params -{ - void *linux_side; - uint64_t _ret; - void *pDataToInclude; - int32_t cbDataToInclude; -}; -extern void cppISteamUser_SteamUser022_RequestEncryptedAppTicket( struct cppISteamUser_SteamUser022_RequestEncryptedAppTicket_params *params ); - -struct cppISteamUser_SteamUser022_GetEncryptedAppTicket_params -{ - void *linux_side; - bool _ret; - void *pTicket; - int32_t cbMaxTicket; - uint32_t *pcbTicket; -}; -extern void cppISteamUser_SteamUser022_GetEncryptedAppTicket( struct cppISteamUser_SteamUser022_GetEncryptedAppTicket_params *params ); - -struct cppISteamUser_SteamUser022_GetGameBadgeLevel_params -{ - void *linux_side; - int32_t _ret; - int32_t nSeries; - bool bFoil; -}; -extern void cppISteamUser_SteamUser022_GetGameBadgeLevel( struct cppISteamUser_SteamUser022_GetGameBadgeLevel_params *params ); - -struct cppISteamUser_SteamUser022_GetPlayerSteamLevel_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamUser_SteamUser022_GetPlayerSteamLevel( struct cppISteamUser_SteamUser022_GetPlayerSteamLevel_params *params ); - -struct cppISteamUser_SteamUser022_RequestStoreAuthURL_params -{ - void *linux_side; - uint64_t _ret; - const char *pchRedirectURL; -}; -extern void cppISteamUser_SteamUser022_RequestStoreAuthURL( struct cppISteamUser_SteamUser022_RequestStoreAuthURL_params *params ); - -struct cppISteamUser_SteamUser022_BIsPhoneVerified_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser022_BIsPhoneVerified( struct cppISteamUser_SteamUser022_BIsPhoneVerified_params *params ); - -struct cppISteamUser_SteamUser022_BIsTwoFactorEnabled_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser022_BIsTwoFactorEnabled( struct cppISteamUser_SteamUser022_BIsTwoFactorEnabled_params *params ); - -struct cppISteamUser_SteamUser022_BIsPhoneIdentifying_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser022_BIsPhoneIdentifying( struct cppISteamUser_SteamUser022_BIsPhoneIdentifying_params *params ); - -struct cppISteamUser_SteamUser022_BIsPhoneRequiringVerification_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser022_BIsPhoneRequiringVerification( struct cppISteamUser_SteamUser022_BIsPhoneRequiringVerification_params *params ); - -struct cppISteamUser_SteamUser022_GetMarketEligibility_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamUser_SteamUser022_GetMarketEligibility( struct cppISteamUser_SteamUser022_GetMarketEligibility_params *params ); - -struct cppISteamUser_SteamUser022_GetDurationControl_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamUser_SteamUser022_GetDurationControl( struct cppISteamUser_SteamUser022_GetDurationControl_params *params ); - -struct cppISteamUser_SteamUser022_BSetDurationControlOnlineState_params -{ - void *linux_side; - bool _ret; - uint32_t eNewState; -}; -extern void cppISteamUser_SteamUser022_BSetDurationControlOnlineState( struct cppISteamUser_SteamUser022_BSetDurationControlOnlineState_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUser_SteamUser023.cpp b/lsteamclient/cppISteamUser_SteamUser023.cpp index 7431db23..f95b999a 100644 --- a/lsteamclient/cppISteamUser_SteamUser023.cpp +++ b/lsteamclient/cppISteamUser_SteamUser023.cpp @@ -1,202 +1,267 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUser_SteamUser023.h" -void cppISteamUser_SteamUser023_GetHSteamUser( struct cppISteamUser_SteamUser023_GetHSteamUser_params *params ) +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; params->_ret = iface->GetHSteamUser( ); + return 0; } -void cppISteamUser_SteamUser023_BLoggedOn( struct cppISteamUser_SteamUser023_BLoggedOn_params *params ) +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; params->_ret = iface->BLoggedOn( ); + return 0; } -void cppISteamUser_SteamUser023_GetSteamID( struct cppISteamUser_SteamUser023_GetSteamID_params *params ) +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; *params->_ret = iface->GetSteamID( ); + return 0; } -void cppISteamUser_SteamUser023_InitiateGameConnection_DEPRECATED( struct cppISteamUser_SteamUser023_InitiateGameConnection_DEPRECATED_params *params ) +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; params->_ret = iface->InitiateGameConnection_DEPRECATED( params->pAuthBlob, params->cbMaxAuthBlob, params->steamIDGameServer, params->unIPServer, params->usPortServer, params->bSecure ); + return 0; } -void cppISteamUser_SteamUser023_TerminateGameConnection_DEPRECATED( struct cppISteamUser_SteamUser023_TerminateGameConnection_DEPRECATED_params *params ) +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; iface->TerminateGameConnection_DEPRECATED( params->unIPServer, params->usPortServer ); + return 0; } -void cppISteamUser_SteamUser023_TrackAppUsageEvent( struct cppISteamUser_SteamUser023_TrackAppUsageEvent_params *params ) +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; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); + return 0; } -void cppISteamUser_SteamUser023_GetUserDataFolder( struct cppISteamUser_SteamUser023_GetUserDataFolder_params *params ) +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; params->_ret = iface->GetUserDataFolder( params->pchBuffer, params->cubBuffer ); + return 0; } -void cppISteamUser_SteamUser023_StartVoiceRecording( struct cppISteamUser_SteamUser023_StartVoiceRecording_params *params ) +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; iface->StartVoiceRecording( ); + return 0; } -void cppISteamUser_SteamUser023_StopVoiceRecording( struct cppISteamUser_SteamUser023_StopVoiceRecording_params *params ) +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; iface->StopVoiceRecording( ); + return 0; } -void cppISteamUser_SteamUser023_GetAvailableVoice( struct cppISteamUser_SteamUser023_GetAvailableVoice_params *params ) +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; params->_ret = iface->GetAvailableVoice( params->pcbCompressed, params->pcbUncompressed_Deprecated, params->nUncompressedVoiceDesiredSampleRate_Deprecated ); + return 0; } -void cppISteamUser_SteamUser023_GetVoice( struct cppISteamUser_SteamUser023_GetVoice_params *params ) +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; 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; } -void cppISteamUser_SteamUser023_DecompressVoice( struct cppISteamUser_SteamUser023_DecompressVoice_params *params ) +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; params->_ret = iface->DecompressVoice( params->pCompressed, params->cbCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->nDesiredSampleRate ); + return 0; } -void cppISteamUser_SteamUser023_GetVoiceOptimalSampleRate( struct cppISteamUser_SteamUser023_GetVoiceOptimalSampleRate_params *params ) +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; params->_ret = iface->GetVoiceOptimalSampleRate( ); + return 0; } -void cppISteamUser_SteamUser023_GetAuthSessionTicket( struct cppISteamUser_SteamUser023_GetAuthSessionTicket_params *params ) +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; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket, params->pSteamNetworkingIdentity ); + return 0; } -void cppISteamUser_SteamUser023_GetAuthTicketForWebApi( struct cppISteamUser_SteamUser023_GetAuthTicketForWebApi_params *params ) +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; params->_ret = iface->GetAuthTicketForWebApi( params->pchIdentity ); + return 0; } -void cppISteamUser_SteamUser023_BeginAuthSession( struct cppISteamUser_SteamUser023_BeginAuthSession_params *params ) +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; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); + return 0; } -void cppISteamUser_SteamUser023_EndAuthSession( struct cppISteamUser_SteamUser023_EndAuthSession_params *params ) +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; iface->EndAuthSession( params->steamID ); + return 0; } -void cppISteamUser_SteamUser023_CancelAuthTicket( struct cppISteamUser_SteamUser023_CancelAuthTicket_params *params ) +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; iface->CancelAuthTicket( params->hAuthTicket ); + return 0; } -void cppISteamUser_SteamUser023_UserHasLicenseForApp( struct cppISteamUser_SteamUser023_UserHasLicenseForApp_params *params ) +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; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); + return 0; } -void cppISteamUser_SteamUser023_BIsBehindNAT( struct cppISteamUser_SteamUser023_BIsBehindNAT_params *params ) +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; params->_ret = iface->BIsBehindNAT( ); + return 0; } -void cppISteamUser_SteamUser023_AdvertiseGame( struct cppISteamUser_SteamUser023_AdvertiseGame_params *params ) +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; iface->AdvertiseGame( params->steamIDGameServer, params->unIPServer, params->usPortServer ); + return 0; } -void cppISteamUser_SteamUser023_RequestEncryptedAppTicket( struct cppISteamUser_SteamUser023_RequestEncryptedAppTicket_params *params ) +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; params->_ret = iface->RequestEncryptedAppTicket( params->pDataToInclude, params->cbDataToInclude ); + return 0; } -void cppISteamUser_SteamUser023_GetEncryptedAppTicket( struct cppISteamUser_SteamUser023_GetEncryptedAppTicket_params *params ) +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; params->_ret = iface->GetEncryptedAppTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); + return 0; } -void cppISteamUser_SteamUser023_GetGameBadgeLevel( struct cppISteamUser_SteamUser023_GetGameBadgeLevel_params *params ) +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; params->_ret = iface->GetGameBadgeLevel( params->nSeries, params->bFoil ); + return 0; } -void cppISteamUser_SteamUser023_GetPlayerSteamLevel( struct cppISteamUser_SteamUser023_GetPlayerSteamLevel_params *params ) +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; params->_ret = iface->GetPlayerSteamLevel( ); + return 0; } -void cppISteamUser_SteamUser023_RequestStoreAuthURL( struct cppISteamUser_SteamUser023_RequestStoreAuthURL_params *params ) +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; params->_ret = iface->RequestStoreAuthURL( params->pchRedirectURL ); + return 0; } -void cppISteamUser_SteamUser023_BIsPhoneVerified( struct cppISteamUser_SteamUser023_BIsPhoneVerified_params *params ) +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; params->_ret = iface->BIsPhoneVerified( ); + return 0; } -void cppISteamUser_SteamUser023_BIsTwoFactorEnabled( struct cppISteamUser_SteamUser023_BIsTwoFactorEnabled_params *params ) +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; params->_ret = iface->BIsTwoFactorEnabled( ); + return 0; } -void cppISteamUser_SteamUser023_BIsPhoneIdentifying( struct cppISteamUser_SteamUser023_BIsPhoneIdentifying_params *params ) +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; params->_ret = iface->BIsPhoneIdentifying( ); + return 0; } -void cppISteamUser_SteamUser023_BIsPhoneRequiringVerification( struct cppISteamUser_SteamUser023_BIsPhoneRequiringVerification_params *params ) +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; params->_ret = iface->BIsPhoneRequiringVerification( ); + return 0; } -void cppISteamUser_SteamUser023_GetMarketEligibility( struct cppISteamUser_SteamUser023_GetMarketEligibility_params *params ) +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; params->_ret = iface->GetMarketEligibility( ); + return 0; } -void cppISteamUser_SteamUser023_GetDurationControl( struct cppISteamUser_SteamUser023_GetDurationControl_params *params ) +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; params->_ret = iface->GetDurationControl( ); + return 0; } -void cppISteamUser_SteamUser023_BSetDurationControlOnlineState( struct cppISteamUser_SteamUser023_BSetDurationControlOnlineState_params *params ) +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; params->_ret = iface->BSetDurationControlOnlineState( params->eNewState ); + return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser023.h b/lsteamclient/cppISteamUser_SteamUser023.h deleted file mode 100644 index a2b2cf07..00000000 --- a/lsteamclient/cppISteamUser_SteamUser023.h +++ /dev/null @@ -1,291 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUser_SteamUser023_GetHSteamUser_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamUser_SteamUser023_GetHSteamUser( struct cppISteamUser_SteamUser023_GetHSteamUser_params *params ); - -struct cppISteamUser_SteamUser023_BLoggedOn_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser023_BLoggedOn( struct cppISteamUser_SteamUser023_BLoggedOn_params *params ); - -struct cppISteamUser_SteamUser023_GetSteamID_params -{ - void *linux_side; - CSteamID *_ret; -}; -extern void cppISteamUser_SteamUser023_GetSteamID( struct cppISteamUser_SteamUser023_GetSteamID_params *params ); - -struct cppISteamUser_SteamUser023_InitiateGameConnection_DEPRECATED_params -{ - void *linux_side; - int32_t _ret; - void *pAuthBlob; - int32_t cbMaxAuthBlob; - CSteamID steamIDGameServer; - uint32_t unIPServer; - uint16_t usPortServer; - bool bSecure; -}; -extern void cppISteamUser_SteamUser023_InitiateGameConnection_DEPRECATED( struct cppISteamUser_SteamUser023_InitiateGameConnection_DEPRECATED_params *params ); - -struct cppISteamUser_SteamUser023_TerminateGameConnection_DEPRECATED_params -{ - void *linux_side; - uint32_t unIPServer; - uint16_t usPortServer; -}; -extern void cppISteamUser_SteamUser023_TerminateGameConnection_DEPRECATED( struct cppISteamUser_SteamUser023_TerminateGameConnection_DEPRECATED_params *params ); - -struct cppISteamUser_SteamUser023_TrackAppUsageEvent_params -{ - void *linux_side; - CGameID gameID; - int32_t eAppUsageEvent; - const char *pchExtraInfo; -}; -extern void cppISteamUser_SteamUser023_TrackAppUsageEvent( struct cppISteamUser_SteamUser023_TrackAppUsageEvent_params *params ); - -struct cppISteamUser_SteamUser023_GetUserDataFolder_params -{ - void *linux_side; - bool _ret; - char *pchBuffer; - int32_t cubBuffer; -}; -extern void cppISteamUser_SteamUser023_GetUserDataFolder( struct cppISteamUser_SteamUser023_GetUserDataFolder_params *params ); - -struct cppISteamUser_SteamUser023_StartVoiceRecording_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser023_StartVoiceRecording( struct cppISteamUser_SteamUser023_StartVoiceRecording_params *params ); - -struct cppISteamUser_SteamUser023_StopVoiceRecording_params -{ - void *linux_side; -}; -extern void cppISteamUser_SteamUser023_StopVoiceRecording( struct cppISteamUser_SteamUser023_StopVoiceRecording_params *params ); - -struct cppISteamUser_SteamUser023_GetAvailableVoice_params -{ - void *linux_side; - uint32_t _ret; - uint32_t *pcbCompressed; - uint32_t *pcbUncompressed_Deprecated; - uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated; -}; -extern void cppISteamUser_SteamUser023_GetAvailableVoice( struct cppISteamUser_SteamUser023_GetAvailableVoice_params *params ); - -struct cppISteamUser_SteamUser023_GetVoice_params -{ - void *linux_side; - uint32_t _ret; - bool bWantCompressed; - void *pDestBuffer; - uint32_t cbDestBufferSize; - uint32_t *nBytesWritten; - bool bWantUncompressed_Deprecated; - void *pUncompressedDestBuffer_Deprecated; - uint32_t cbUncompressedDestBufferSize_Deprecated; - uint32_t *nUncompressBytesWritten_Deprecated; - uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated; -}; -extern void cppISteamUser_SteamUser023_GetVoice( struct cppISteamUser_SteamUser023_GetVoice_params *params ); - -struct cppISteamUser_SteamUser023_DecompressVoice_params -{ - void *linux_side; - uint32_t _ret; - const void *pCompressed; - uint32_t cbCompressed; - void *pDestBuffer; - uint32_t cbDestBufferSize; - uint32_t *nBytesWritten; - uint32_t nDesiredSampleRate; -}; -extern void cppISteamUser_SteamUser023_DecompressVoice( struct cppISteamUser_SteamUser023_DecompressVoice_params *params ); - -struct cppISteamUser_SteamUser023_GetVoiceOptimalSampleRate_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUser_SteamUser023_GetVoiceOptimalSampleRate( struct cppISteamUser_SteamUser023_GetVoiceOptimalSampleRate_params *params ); - -struct cppISteamUser_SteamUser023_GetAuthSessionTicket_params -{ - void *linux_side; - uint32_t _ret; - void *pTicket; - int32_t cbMaxTicket; - uint32_t *pcbTicket; - const SteamNetworkingIdentity_144 *pSteamNetworkingIdentity; -}; -extern void cppISteamUser_SteamUser023_GetAuthSessionTicket( struct cppISteamUser_SteamUser023_GetAuthSessionTicket_params *params ); - -struct cppISteamUser_SteamUser023_GetAuthTicketForWebApi_params -{ - void *linux_side; - uint32_t _ret; - const char *pchIdentity; -}; -extern void cppISteamUser_SteamUser023_GetAuthTicketForWebApi( struct cppISteamUser_SteamUser023_GetAuthTicketForWebApi_params *params ); - -struct cppISteamUser_SteamUser023_BeginAuthSession_params -{ - void *linux_side; - uint32_t _ret; - const void *pAuthTicket; - int32_t cbAuthTicket; - CSteamID steamID; -}; -extern void cppISteamUser_SteamUser023_BeginAuthSession( struct cppISteamUser_SteamUser023_BeginAuthSession_params *params ); - -struct cppISteamUser_SteamUser023_EndAuthSession_params -{ - void *linux_side; - CSteamID steamID; -}; -extern void cppISteamUser_SteamUser023_EndAuthSession( struct cppISteamUser_SteamUser023_EndAuthSession_params *params ); - -struct cppISteamUser_SteamUser023_CancelAuthTicket_params -{ - void *linux_side; - uint32_t hAuthTicket; -}; -extern void cppISteamUser_SteamUser023_CancelAuthTicket( struct cppISteamUser_SteamUser023_CancelAuthTicket_params *params ); - -struct cppISteamUser_SteamUser023_UserHasLicenseForApp_params -{ - void *linux_side; - uint32_t _ret; - CSteamID steamID; - uint32_t appID; -}; -extern void cppISteamUser_SteamUser023_UserHasLicenseForApp( struct cppISteamUser_SteamUser023_UserHasLicenseForApp_params *params ); - -struct cppISteamUser_SteamUser023_BIsBehindNAT_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser023_BIsBehindNAT( struct cppISteamUser_SteamUser023_BIsBehindNAT_params *params ); - -struct cppISteamUser_SteamUser023_AdvertiseGame_params -{ - void *linux_side; - CSteamID steamIDGameServer; - uint32_t unIPServer; - uint16_t usPortServer; -}; -extern void cppISteamUser_SteamUser023_AdvertiseGame( struct cppISteamUser_SteamUser023_AdvertiseGame_params *params ); - -struct cppISteamUser_SteamUser023_RequestEncryptedAppTicket_params -{ - void *linux_side; - uint64_t _ret; - void *pDataToInclude; - int32_t cbDataToInclude; -}; -extern void cppISteamUser_SteamUser023_RequestEncryptedAppTicket( struct cppISteamUser_SteamUser023_RequestEncryptedAppTicket_params *params ); - -struct cppISteamUser_SteamUser023_GetEncryptedAppTicket_params -{ - void *linux_side; - bool _ret; - void *pTicket; - int32_t cbMaxTicket; - uint32_t *pcbTicket; -}; -extern void cppISteamUser_SteamUser023_GetEncryptedAppTicket( struct cppISteamUser_SteamUser023_GetEncryptedAppTicket_params *params ); - -struct cppISteamUser_SteamUser023_GetGameBadgeLevel_params -{ - void *linux_side; - int32_t _ret; - int32_t nSeries; - bool bFoil; -}; -extern void cppISteamUser_SteamUser023_GetGameBadgeLevel( struct cppISteamUser_SteamUser023_GetGameBadgeLevel_params *params ); - -struct cppISteamUser_SteamUser023_GetPlayerSteamLevel_params -{ - void *linux_side; - int32_t _ret; -}; -extern void cppISteamUser_SteamUser023_GetPlayerSteamLevel( struct cppISteamUser_SteamUser023_GetPlayerSteamLevel_params *params ); - -struct cppISteamUser_SteamUser023_RequestStoreAuthURL_params -{ - void *linux_side; - uint64_t _ret; - const char *pchRedirectURL; -}; -extern void cppISteamUser_SteamUser023_RequestStoreAuthURL( struct cppISteamUser_SteamUser023_RequestStoreAuthURL_params *params ); - -struct cppISteamUser_SteamUser023_BIsPhoneVerified_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser023_BIsPhoneVerified( struct cppISteamUser_SteamUser023_BIsPhoneVerified_params *params ); - -struct cppISteamUser_SteamUser023_BIsTwoFactorEnabled_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser023_BIsTwoFactorEnabled( struct cppISteamUser_SteamUser023_BIsTwoFactorEnabled_params *params ); - -struct cppISteamUser_SteamUser023_BIsPhoneIdentifying_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser023_BIsPhoneIdentifying( struct cppISteamUser_SteamUser023_BIsPhoneIdentifying_params *params ); - -struct cppISteamUser_SteamUser023_BIsPhoneRequiringVerification_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUser_SteamUser023_BIsPhoneRequiringVerification( struct cppISteamUser_SteamUser023_BIsPhoneRequiringVerification_params *params ); - -struct cppISteamUser_SteamUser023_GetMarketEligibility_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamUser_SteamUser023_GetMarketEligibility( struct cppISteamUser_SteamUser023_GetMarketEligibility_params *params ); - -struct cppISteamUser_SteamUser023_GetDurationControl_params -{ - void *linux_side; - uint64_t _ret; -}; -extern void cppISteamUser_SteamUser023_GetDurationControl( struct cppISteamUser_SteamUser023_GetDurationControl_params *params ); - -struct cppISteamUser_SteamUser023_BSetDurationControlOnlineState_params -{ - void *linux_side; - bool _ret; - uint32_t eNewState; -}; -extern void cppISteamUser_SteamUser023_BSetDurationControlOnlineState( struct cppISteamUser_SteamUser023_BSetDurationControlOnlineState_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUtils_SteamUtils002.cpp b/lsteamclient/cppISteamUtils_SteamUtils002.cpp index e66a180e..32c232e9 100644 --- a/lsteamclient/cppISteamUtils_SteamUtils002.cpp +++ b/lsteamclient/cppISteamUtils_SteamUtils002.cpp @@ -1,82 +1,107 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUtils_SteamUtils002.h" -void cppISteamUtils_SteamUtils002_GetSecondsSinceAppActive( struct cppISteamUtils_SteamUtils002_GetSecondsSinceAppActive_params *params ) +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; params->_ret = iface->GetSecondsSinceAppActive( ); + return 0; } -void cppISteamUtils_SteamUtils002_GetSecondsSinceComputerActive( struct cppISteamUtils_SteamUtils002_GetSecondsSinceComputerActive_params *params ) +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; params->_ret = iface->GetSecondsSinceComputerActive( ); + return 0; } -void cppISteamUtils_SteamUtils002_GetConnectedUniverse( struct cppISteamUtils_SteamUtils002_GetConnectedUniverse_params *params ) +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; params->_ret = iface->GetConnectedUniverse( ); + return 0; } -void cppISteamUtils_SteamUtils002_GetServerRealTime( struct cppISteamUtils_SteamUtils002_GetServerRealTime_params *params ) +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; params->_ret = iface->GetServerRealTime( ); + return 0; } -void cppISteamUtils_SteamUtils002_GetIPCountry( struct cppISteamUtils_SteamUtils002_GetIPCountry_params *params ) +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; params->_ret = iface->GetIPCountry( ); + return 0; } -void cppISteamUtils_SteamUtils002_GetImageSize( struct cppISteamUtils_SteamUtils002_GetImageSize_params *params ) +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; params->_ret = iface->GetImageSize( params->iImage, params->pnWidth, params->pnHeight ); + return 0; } -void cppISteamUtils_SteamUtils002_GetImageRGBA( struct cppISteamUtils_SteamUtils002_GetImageRGBA_params *params ) +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; params->_ret = iface->GetImageRGBA( params->iImage, params->pubDest, params->nDestBufferSize ); + return 0; } -void cppISteamUtils_SteamUtils002_GetCSERIPPort( struct cppISteamUtils_SteamUtils002_GetCSERIPPort_params *params ) +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; params->_ret = iface->GetCSERIPPort( params->unIP, params->usPort ); + return 0; } -void cppISteamUtils_SteamUtils002_GetCurrentBatteryPower( struct cppISteamUtils_SteamUtils002_GetCurrentBatteryPower_params *params ) +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; params->_ret = iface->GetCurrentBatteryPower( ); + return 0; } -void cppISteamUtils_SteamUtils002_GetAppID( struct cppISteamUtils_SteamUtils002_GetAppID_params *params ) +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; params->_ret = iface->GetAppID( ); + return 0; } -void cppISteamUtils_SteamUtils002_SetOverlayNotificationPosition( struct cppISteamUtils_SteamUtils002_SetOverlayNotificationPosition_params *params ) +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; iface->SetOverlayNotificationPosition( params->eNotificationPosition ); + return 0; } -void cppISteamUtils_SteamUtils002_IsAPICallCompleted( struct cppISteamUtils_SteamUtils002_IsAPICallCompleted_params *params ) +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; params->_ret = iface->IsAPICallCompleted( params->hSteamAPICall, params->pbFailed ); + return 0; } -void cppISteamUtils_SteamUtils002_GetAPICallFailureReason( struct cppISteamUtils_SteamUtils002_GetAPICallFailureReason_params *params ) +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; params->_ret = iface->GetAPICallFailureReason( params->hSteamAPICall ); + return 0; } diff --git a/lsteamclient/cppISteamUtils_SteamUtils002.h b/lsteamclient/cppISteamUtils_SteamUtils002.h deleted file mode 100644 index b3a38e32..00000000 --- a/lsteamclient/cppISteamUtils_SteamUtils002.h +++ /dev/null @@ -1,126 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUtils_SteamUtils002_GetSecondsSinceAppActive_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils002_GetSecondsSinceAppActive( struct cppISteamUtils_SteamUtils002_GetSecondsSinceAppActive_params *params ); - -struct cppISteamUtils_SteamUtils002_GetSecondsSinceComputerActive_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils002_GetSecondsSinceComputerActive( struct cppISteamUtils_SteamUtils002_GetSecondsSinceComputerActive_params *params ); - -struct cppISteamUtils_SteamUtils002_GetConnectedUniverse_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils002_GetConnectedUniverse( struct cppISteamUtils_SteamUtils002_GetConnectedUniverse_params *params ); - -struct cppISteamUtils_SteamUtils002_GetServerRealTime_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils002_GetServerRealTime( struct cppISteamUtils_SteamUtils002_GetServerRealTime_params *params ); - -struct cppISteamUtils_SteamUtils002_GetIPCountry_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamUtils_SteamUtils002_GetIPCountry( struct cppISteamUtils_SteamUtils002_GetIPCountry_params *params ); - -struct cppISteamUtils_SteamUtils002_GetImageSize_params -{ - void *linux_side; - bool _ret; - int32_t iImage; - uint32_t *pnWidth; - uint32_t *pnHeight; -}; -extern void cppISteamUtils_SteamUtils002_GetImageSize( struct cppISteamUtils_SteamUtils002_GetImageSize_params *params ); - -struct cppISteamUtils_SteamUtils002_GetImageRGBA_params -{ - void *linux_side; - bool _ret; - int32_t iImage; - uint8_t *pubDest; - int32_t nDestBufferSize; -}; -extern void cppISteamUtils_SteamUtils002_GetImageRGBA( struct cppISteamUtils_SteamUtils002_GetImageRGBA_params *params ); - -struct cppISteamUtils_SteamUtils002_GetCSERIPPort_params -{ - void *linux_side; - bool _ret; - uint32_t *unIP; - uint16_t *usPort; -}; -extern void cppISteamUtils_SteamUtils002_GetCSERIPPort( struct cppISteamUtils_SteamUtils002_GetCSERIPPort_params *params ); - -struct cppISteamUtils_SteamUtils002_GetCurrentBatteryPower_params -{ - void *linux_side; - uint8_t _ret; -}; -extern void cppISteamUtils_SteamUtils002_GetCurrentBatteryPower( struct cppISteamUtils_SteamUtils002_GetCurrentBatteryPower_params *params ); - -struct cppISteamUtils_SteamUtils002_GetAppID_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils002_GetAppID( struct cppISteamUtils_SteamUtils002_GetAppID_params *params ); - -struct cppISteamUtils_SteamUtils002_SetOverlayNotificationPosition_params -{ - void *linux_side; - uint32_t eNotificationPosition; -}; -extern void cppISteamUtils_SteamUtils002_SetOverlayNotificationPosition( struct cppISteamUtils_SteamUtils002_SetOverlayNotificationPosition_params *params ); - -struct cppISteamUtils_SteamUtils002_IsAPICallCompleted_params -{ - void *linux_side; - bool _ret; - uint64_t hSteamAPICall; - bool *pbFailed; -}; -extern void cppISteamUtils_SteamUtils002_IsAPICallCompleted( struct cppISteamUtils_SteamUtils002_IsAPICallCompleted_params *params ); - -struct cppISteamUtils_SteamUtils002_GetAPICallFailureReason_params -{ - void *linux_side; - uint32_t _ret; - uint64_t hSteamAPICall; -}; -extern void cppISteamUtils_SteamUtils002_GetAPICallFailureReason( struct cppISteamUtils_SteamUtils002_GetAPICallFailureReason_params *params ); - -struct cppISteamUtils_SteamUtils002_GetAPICallResult_params -{ - void *linux_side; - bool _ret; - uint64_t hSteamAPICall; - void *pCallback; - int32_t cubCallback; - int32_t iCallbackExpected; - bool *pbFailed; -}; -extern void cppISteamUtils_SteamUtils002_GetAPICallResult( struct cppISteamUtils_SteamUtils002_GetAPICallResult_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUtils_SteamUtils004.cpp b/lsteamclient/cppISteamUtils_SteamUtils004.cpp index 239a7c80..43b8efcf 100644 --- a/lsteamclient/cppISteamUtils_SteamUtils004.cpp +++ b/lsteamclient/cppISteamUtils_SteamUtils004.cpp @@ -1,107 +1,140 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUtils_SteamUtils004.h" -void cppISteamUtils_SteamUtils004_GetSecondsSinceAppActive( struct cppISteamUtils_SteamUtils004_GetSecondsSinceAppActive_params *params ) +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; params->_ret = iface->GetSecondsSinceAppActive( ); + return 0; } -void cppISteamUtils_SteamUtils004_GetSecondsSinceComputerActive( struct cppISteamUtils_SteamUtils004_GetSecondsSinceComputerActive_params *params ) +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; params->_ret = iface->GetSecondsSinceComputerActive( ); + return 0; } -void cppISteamUtils_SteamUtils004_GetConnectedUniverse( struct cppISteamUtils_SteamUtils004_GetConnectedUniverse_params *params ) +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; params->_ret = iface->GetConnectedUniverse( ); + return 0; } -void cppISteamUtils_SteamUtils004_GetServerRealTime( struct cppISteamUtils_SteamUtils004_GetServerRealTime_params *params ) +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; params->_ret = iface->GetServerRealTime( ); + return 0; } -void cppISteamUtils_SteamUtils004_GetIPCountry( struct cppISteamUtils_SteamUtils004_GetIPCountry_params *params ) +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; params->_ret = iface->GetIPCountry( ); + return 0; } -void cppISteamUtils_SteamUtils004_GetImageSize( struct cppISteamUtils_SteamUtils004_GetImageSize_params *params ) +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; params->_ret = iface->GetImageSize( params->iImage, params->pnWidth, params->pnHeight ); + return 0; } -void cppISteamUtils_SteamUtils004_GetImageRGBA( struct cppISteamUtils_SteamUtils004_GetImageRGBA_params *params ) +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; params->_ret = iface->GetImageRGBA( params->iImage, params->pubDest, params->nDestBufferSize ); + return 0; } -void cppISteamUtils_SteamUtils004_GetCSERIPPort( struct cppISteamUtils_SteamUtils004_GetCSERIPPort_params *params ) +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; params->_ret = iface->GetCSERIPPort( params->unIP, params->usPort ); + return 0; } -void cppISteamUtils_SteamUtils004_GetCurrentBatteryPower( struct cppISteamUtils_SteamUtils004_GetCurrentBatteryPower_params *params ) +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; params->_ret = iface->GetCurrentBatteryPower( ); + return 0; } -void cppISteamUtils_SteamUtils004_GetAppID( struct cppISteamUtils_SteamUtils004_GetAppID_params *params ) +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; params->_ret = iface->GetAppID( ); + return 0; } -void cppISteamUtils_SteamUtils004_SetOverlayNotificationPosition( struct cppISteamUtils_SteamUtils004_SetOverlayNotificationPosition_params *params ) +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; iface->SetOverlayNotificationPosition( params->eNotificationPosition ); + return 0; } -void cppISteamUtils_SteamUtils004_IsAPICallCompleted( struct cppISteamUtils_SteamUtils004_IsAPICallCompleted_params *params ) +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; params->_ret = iface->IsAPICallCompleted( params->hSteamAPICall, params->pbFailed ); + return 0; } -void cppISteamUtils_SteamUtils004_GetAPICallFailureReason( struct cppISteamUtils_SteamUtils004_GetAPICallFailureReason_params *params ) +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; params->_ret = iface->GetAPICallFailureReason( params->hSteamAPICall ); + return 0; } -void cppISteamUtils_SteamUtils004_RunFrame( struct cppISteamUtils_SteamUtils004_RunFrame_params *params ) +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; iface->RunFrame( ); + return 0; } -void cppISteamUtils_SteamUtils004_GetIPCCallCount( struct cppISteamUtils_SteamUtils004_GetIPCCallCount_params *params ) +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; params->_ret = iface->GetIPCCallCount( ); + return 0; } -void cppISteamUtils_SteamUtils004_SetWarningMessageHook( struct cppISteamUtils_SteamUtils004_SetWarningMessageHook_params *params ) +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; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); + return 0; } -void cppISteamUtils_SteamUtils004_IsOverlayEnabled( struct cppISteamUtils_SteamUtils004_IsOverlayEnabled_params *params ) +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; params->_ret = iface->IsOverlayEnabled( ); + return 0; } diff --git a/lsteamclient/cppISteamUtils_SteamUtils004.h b/lsteamclient/cppISteamUtils_SteamUtils004.h deleted file mode 100644 index 0cdadf82..00000000 --- a/lsteamclient/cppISteamUtils_SteamUtils004.h +++ /dev/null @@ -1,153 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUtils_SteamUtils004_GetSecondsSinceAppActive_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils004_GetSecondsSinceAppActive( struct cppISteamUtils_SteamUtils004_GetSecondsSinceAppActive_params *params ); - -struct cppISteamUtils_SteamUtils004_GetSecondsSinceComputerActive_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils004_GetSecondsSinceComputerActive( struct cppISteamUtils_SteamUtils004_GetSecondsSinceComputerActive_params *params ); - -struct cppISteamUtils_SteamUtils004_GetConnectedUniverse_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils004_GetConnectedUniverse( struct cppISteamUtils_SteamUtils004_GetConnectedUniverse_params *params ); - -struct cppISteamUtils_SteamUtils004_GetServerRealTime_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils004_GetServerRealTime( struct cppISteamUtils_SteamUtils004_GetServerRealTime_params *params ); - -struct cppISteamUtils_SteamUtils004_GetIPCountry_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamUtils_SteamUtils004_GetIPCountry( struct cppISteamUtils_SteamUtils004_GetIPCountry_params *params ); - -struct cppISteamUtils_SteamUtils004_GetImageSize_params -{ - void *linux_side; - bool _ret; - int32_t iImage; - uint32_t *pnWidth; - uint32_t *pnHeight; -}; -extern void cppISteamUtils_SteamUtils004_GetImageSize( struct cppISteamUtils_SteamUtils004_GetImageSize_params *params ); - -struct cppISteamUtils_SteamUtils004_GetImageRGBA_params -{ - void *linux_side; - bool _ret; - int32_t iImage; - uint8_t *pubDest; - int32_t nDestBufferSize; -}; -extern void cppISteamUtils_SteamUtils004_GetImageRGBA( struct cppISteamUtils_SteamUtils004_GetImageRGBA_params *params ); - -struct cppISteamUtils_SteamUtils004_GetCSERIPPort_params -{ - void *linux_side; - bool _ret; - uint32_t *unIP; - uint16_t *usPort; -}; -extern void cppISteamUtils_SteamUtils004_GetCSERIPPort( struct cppISteamUtils_SteamUtils004_GetCSERIPPort_params *params ); - -struct cppISteamUtils_SteamUtils004_GetCurrentBatteryPower_params -{ - void *linux_side; - uint8_t _ret; -}; -extern void cppISteamUtils_SteamUtils004_GetCurrentBatteryPower( struct cppISteamUtils_SteamUtils004_GetCurrentBatteryPower_params *params ); - -struct cppISteamUtils_SteamUtils004_GetAppID_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils004_GetAppID( struct cppISteamUtils_SteamUtils004_GetAppID_params *params ); - -struct cppISteamUtils_SteamUtils004_SetOverlayNotificationPosition_params -{ - void *linux_side; - uint32_t eNotificationPosition; -}; -extern void cppISteamUtils_SteamUtils004_SetOverlayNotificationPosition( struct cppISteamUtils_SteamUtils004_SetOverlayNotificationPosition_params *params ); - -struct cppISteamUtils_SteamUtils004_IsAPICallCompleted_params -{ - void *linux_side; - bool _ret; - uint64_t hSteamAPICall; - bool *pbFailed; -}; -extern void cppISteamUtils_SteamUtils004_IsAPICallCompleted( struct cppISteamUtils_SteamUtils004_IsAPICallCompleted_params *params ); - -struct cppISteamUtils_SteamUtils004_GetAPICallFailureReason_params -{ - void *linux_side; - uint32_t _ret; - uint64_t hSteamAPICall; -}; -extern void cppISteamUtils_SteamUtils004_GetAPICallFailureReason( struct cppISteamUtils_SteamUtils004_GetAPICallFailureReason_params *params ); - -struct cppISteamUtils_SteamUtils004_GetAPICallResult_params -{ - void *linux_side; - bool _ret; - uint64_t hSteamAPICall; - void *pCallback; - int32_t cubCallback; - int32_t iCallbackExpected; - bool *pbFailed; -}; -extern void cppISteamUtils_SteamUtils004_GetAPICallResult( struct cppISteamUtils_SteamUtils004_GetAPICallResult_params *params ); - -struct cppISteamUtils_SteamUtils004_RunFrame_params -{ - void *linux_side; -}; -extern void cppISteamUtils_SteamUtils004_RunFrame( struct cppISteamUtils_SteamUtils004_RunFrame_params *params ); - -struct cppISteamUtils_SteamUtils004_GetIPCCallCount_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils004_GetIPCCallCount( struct cppISteamUtils_SteamUtils004_GetIPCCallCount_params *params ); - -struct cppISteamUtils_SteamUtils004_SetWarningMessageHook_params -{ - void *linux_side; - void (*W_CDECL pFunction)(int32_t, const char *); -}; -extern void cppISteamUtils_SteamUtils004_SetWarningMessageHook( struct cppISteamUtils_SteamUtils004_SetWarningMessageHook_params *params ); - -struct cppISteamUtils_SteamUtils004_IsOverlayEnabled_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUtils_SteamUtils004_IsOverlayEnabled( struct cppISteamUtils_SteamUtils004_IsOverlayEnabled_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUtils_SteamUtils005.cpp b/lsteamclient/cppISteamUtils_SteamUtils005.cpp index 8311ca5e..7daf03a5 100644 --- a/lsteamclient/cppISteamUtils_SteamUtils005.cpp +++ b/lsteamclient/cppISteamUtils_SteamUtils005.cpp @@ -1,137 +1,180 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUtils_SteamUtils005.h" -void cppISteamUtils_SteamUtils005_GetSecondsSinceAppActive( struct cppISteamUtils_SteamUtils005_GetSecondsSinceAppActive_params *params ) +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; params->_ret = iface->GetSecondsSinceAppActive( ); + return 0; } -void cppISteamUtils_SteamUtils005_GetSecondsSinceComputerActive( struct cppISteamUtils_SteamUtils005_GetSecondsSinceComputerActive_params *params ) +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; params->_ret = iface->GetSecondsSinceComputerActive( ); + return 0; } -void cppISteamUtils_SteamUtils005_GetConnectedUniverse( struct cppISteamUtils_SteamUtils005_GetConnectedUniverse_params *params ) +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; params->_ret = iface->GetConnectedUniverse( ); + return 0; } -void cppISteamUtils_SteamUtils005_GetServerRealTime( struct cppISteamUtils_SteamUtils005_GetServerRealTime_params *params ) +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; params->_ret = iface->GetServerRealTime( ); + return 0; } -void cppISteamUtils_SteamUtils005_GetIPCountry( struct cppISteamUtils_SteamUtils005_GetIPCountry_params *params ) +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; params->_ret = iface->GetIPCountry( ); + return 0; } -void cppISteamUtils_SteamUtils005_GetImageSize( struct cppISteamUtils_SteamUtils005_GetImageSize_params *params ) +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; params->_ret = iface->GetImageSize( params->iImage, params->pnWidth, params->pnHeight ); + return 0; } -void cppISteamUtils_SteamUtils005_GetImageRGBA( struct cppISteamUtils_SteamUtils005_GetImageRGBA_params *params ) +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; params->_ret = iface->GetImageRGBA( params->iImage, params->pubDest, params->nDestBufferSize ); + return 0; } -void cppISteamUtils_SteamUtils005_GetCSERIPPort( struct cppISteamUtils_SteamUtils005_GetCSERIPPort_params *params ) +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; params->_ret = iface->GetCSERIPPort( params->unIP, params->usPort ); + return 0; } -void cppISteamUtils_SteamUtils005_GetCurrentBatteryPower( struct cppISteamUtils_SteamUtils005_GetCurrentBatteryPower_params *params ) +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; params->_ret = iface->GetCurrentBatteryPower( ); + return 0; } -void cppISteamUtils_SteamUtils005_GetAppID( struct cppISteamUtils_SteamUtils005_GetAppID_params *params ) +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; params->_ret = iface->GetAppID( ); + return 0; } -void cppISteamUtils_SteamUtils005_SetOverlayNotificationPosition( struct cppISteamUtils_SteamUtils005_SetOverlayNotificationPosition_params *params ) +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; iface->SetOverlayNotificationPosition( params->eNotificationPosition ); + return 0; } -void cppISteamUtils_SteamUtils005_IsAPICallCompleted( struct cppISteamUtils_SteamUtils005_IsAPICallCompleted_params *params ) +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; params->_ret = iface->IsAPICallCompleted( params->hSteamAPICall, params->pbFailed ); + return 0; } -void cppISteamUtils_SteamUtils005_GetAPICallFailureReason( struct cppISteamUtils_SteamUtils005_GetAPICallFailureReason_params *params ) +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; params->_ret = iface->GetAPICallFailureReason( params->hSteamAPICall ); + return 0; } -void cppISteamUtils_SteamUtils005_RunFrame( struct cppISteamUtils_SteamUtils005_RunFrame_params *params ) +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; iface->RunFrame( ); + return 0; } -void cppISteamUtils_SteamUtils005_GetIPCCallCount( struct cppISteamUtils_SteamUtils005_GetIPCCallCount_params *params ) +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; params->_ret = iface->GetIPCCallCount( ); + return 0; } -void cppISteamUtils_SteamUtils005_SetWarningMessageHook( struct cppISteamUtils_SteamUtils005_SetWarningMessageHook_params *params ) +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; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); + return 0; } -void cppISteamUtils_SteamUtils005_IsOverlayEnabled( struct cppISteamUtils_SteamUtils005_IsOverlayEnabled_params *params ) +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; params->_ret = iface->IsOverlayEnabled( ); + return 0; } -void cppISteamUtils_SteamUtils005_BOverlayNeedsPresent( struct cppISteamUtils_SteamUtils005_BOverlayNeedsPresent_params *params ) +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; params->_ret = iface->BOverlayNeedsPresent( ); + return 0; } -void cppISteamUtils_SteamUtils005_CheckFileSignature( struct cppISteamUtils_SteamUtils005_CheckFileSignature_params *params ) +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; params->_ret = iface->CheckFileSignature( params->szFileName ); + return 0; } -void cppISteamUtils_SteamUtils005_ShowGamepadTextInput( struct cppISteamUtils_SteamUtils005_ShowGamepadTextInput_params *params ) +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; params->_ret = iface->ShowGamepadTextInput( params->eInputMode, params->eLineInputMode, params->pchDescription, params->unCharMax ); + return 0; } -void cppISteamUtils_SteamUtils005_GetEnteredGamepadTextLength( struct cppISteamUtils_SteamUtils005_GetEnteredGamepadTextLength_params *params ) +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; params->_ret = iface->GetEnteredGamepadTextLength( ); + return 0; } -void cppISteamUtils_SteamUtils005_GetEnteredGamepadTextInput( struct cppISteamUtils_SteamUtils005_GetEnteredGamepadTextInput_params *params ) +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; params->_ret = iface->GetEnteredGamepadTextInput( params->pchText, params->cchText ); + return 0; } diff --git a/lsteamclient/cppISteamUtils_SteamUtils005.h b/lsteamclient/cppISteamUtils_SteamUtils005.h deleted file mode 100644 index 84a9607d..00000000 --- a/lsteamclient/cppISteamUtils_SteamUtils005.h +++ /dev/null @@ -1,195 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUtils_SteamUtils005_GetSecondsSinceAppActive_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils005_GetSecondsSinceAppActive( struct cppISteamUtils_SteamUtils005_GetSecondsSinceAppActive_params *params ); - -struct cppISteamUtils_SteamUtils005_GetSecondsSinceComputerActive_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils005_GetSecondsSinceComputerActive( struct cppISteamUtils_SteamUtils005_GetSecondsSinceComputerActive_params *params ); - -struct cppISteamUtils_SteamUtils005_GetConnectedUniverse_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils005_GetConnectedUniverse( struct cppISteamUtils_SteamUtils005_GetConnectedUniverse_params *params ); - -struct cppISteamUtils_SteamUtils005_GetServerRealTime_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils005_GetServerRealTime( struct cppISteamUtils_SteamUtils005_GetServerRealTime_params *params ); - -struct cppISteamUtils_SteamUtils005_GetIPCountry_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamUtils_SteamUtils005_GetIPCountry( struct cppISteamUtils_SteamUtils005_GetIPCountry_params *params ); - -struct cppISteamUtils_SteamUtils005_GetImageSize_params -{ - void *linux_side; - bool _ret; - int32_t iImage; - uint32_t *pnWidth; - uint32_t *pnHeight; -}; -extern void cppISteamUtils_SteamUtils005_GetImageSize( struct cppISteamUtils_SteamUtils005_GetImageSize_params *params ); - -struct cppISteamUtils_SteamUtils005_GetImageRGBA_params -{ - void *linux_side; - bool _ret; - int32_t iImage; - uint8_t *pubDest; - int32_t nDestBufferSize; -}; -extern void cppISteamUtils_SteamUtils005_GetImageRGBA( struct cppISteamUtils_SteamUtils005_GetImageRGBA_params *params ); - -struct cppISteamUtils_SteamUtils005_GetCSERIPPort_params -{ - void *linux_side; - bool _ret; - uint32_t *unIP; - uint16_t *usPort; -}; -extern void cppISteamUtils_SteamUtils005_GetCSERIPPort( struct cppISteamUtils_SteamUtils005_GetCSERIPPort_params *params ); - -struct cppISteamUtils_SteamUtils005_GetCurrentBatteryPower_params -{ - void *linux_side; - uint8_t _ret; -}; -extern void cppISteamUtils_SteamUtils005_GetCurrentBatteryPower( struct cppISteamUtils_SteamUtils005_GetCurrentBatteryPower_params *params ); - -struct cppISteamUtils_SteamUtils005_GetAppID_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils005_GetAppID( struct cppISteamUtils_SteamUtils005_GetAppID_params *params ); - -struct cppISteamUtils_SteamUtils005_SetOverlayNotificationPosition_params -{ - void *linux_side; - uint32_t eNotificationPosition; -}; -extern void cppISteamUtils_SteamUtils005_SetOverlayNotificationPosition( struct cppISteamUtils_SteamUtils005_SetOverlayNotificationPosition_params *params ); - -struct cppISteamUtils_SteamUtils005_IsAPICallCompleted_params -{ - void *linux_side; - bool _ret; - uint64_t hSteamAPICall; - bool *pbFailed; -}; -extern void cppISteamUtils_SteamUtils005_IsAPICallCompleted( struct cppISteamUtils_SteamUtils005_IsAPICallCompleted_params *params ); - -struct cppISteamUtils_SteamUtils005_GetAPICallFailureReason_params -{ - void *linux_side; - uint32_t _ret; - uint64_t hSteamAPICall; -}; -extern void cppISteamUtils_SteamUtils005_GetAPICallFailureReason( struct cppISteamUtils_SteamUtils005_GetAPICallFailureReason_params *params ); - -struct cppISteamUtils_SteamUtils005_GetAPICallResult_params -{ - void *linux_side; - bool _ret; - uint64_t hSteamAPICall; - void *pCallback; - int32_t cubCallback; - int32_t iCallbackExpected; - bool *pbFailed; -}; -extern void cppISteamUtils_SteamUtils005_GetAPICallResult( struct cppISteamUtils_SteamUtils005_GetAPICallResult_params *params ); - -struct cppISteamUtils_SteamUtils005_RunFrame_params -{ - void *linux_side; -}; -extern void cppISteamUtils_SteamUtils005_RunFrame( struct cppISteamUtils_SteamUtils005_RunFrame_params *params ); - -struct cppISteamUtils_SteamUtils005_GetIPCCallCount_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils005_GetIPCCallCount( struct cppISteamUtils_SteamUtils005_GetIPCCallCount_params *params ); - -struct cppISteamUtils_SteamUtils005_SetWarningMessageHook_params -{ - void *linux_side; - void (*W_CDECL pFunction)(int32_t, const char *); -}; -extern void cppISteamUtils_SteamUtils005_SetWarningMessageHook( struct cppISteamUtils_SteamUtils005_SetWarningMessageHook_params *params ); - -struct cppISteamUtils_SteamUtils005_IsOverlayEnabled_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUtils_SteamUtils005_IsOverlayEnabled( struct cppISteamUtils_SteamUtils005_IsOverlayEnabled_params *params ); - -struct cppISteamUtils_SteamUtils005_BOverlayNeedsPresent_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUtils_SteamUtils005_BOverlayNeedsPresent( struct cppISteamUtils_SteamUtils005_BOverlayNeedsPresent_params *params ); - -struct cppISteamUtils_SteamUtils005_CheckFileSignature_params -{ - void *linux_side; - uint64_t _ret; - const char *szFileName; -}; -extern void cppISteamUtils_SteamUtils005_CheckFileSignature( struct cppISteamUtils_SteamUtils005_CheckFileSignature_params *params ); - -struct cppISteamUtils_SteamUtils005_ShowGamepadTextInput_params -{ - void *linux_side; - bool _ret; - uint32_t eInputMode; - uint32_t eLineInputMode; - const char *pchDescription; - uint32_t unCharMax; -}; -extern void cppISteamUtils_SteamUtils005_ShowGamepadTextInput( struct cppISteamUtils_SteamUtils005_ShowGamepadTextInput_params *params ); - -struct cppISteamUtils_SteamUtils005_GetEnteredGamepadTextLength_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils005_GetEnteredGamepadTextLength( struct cppISteamUtils_SteamUtils005_GetEnteredGamepadTextLength_params *params ); - -struct cppISteamUtils_SteamUtils005_GetEnteredGamepadTextInput_params -{ - void *linux_side; - bool _ret; - char *pchText; - uint32_t cchText; -}; -extern void cppISteamUtils_SteamUtils005_GetEnteredGamepadTextInput( struct cppISteamUtils_SteamUtils005_GetEnteredGamepadTextInput_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUtils_SteamUtils006.cpp b/lsteamclient/cppISteamUtils_SteamUtils006.cpp index c0ba78f1..af8d4799 100644 --- a/lsteamclient/cppISteamUtils_SteamUtils006.cpp +++ b/lsteamclient/cppISteamUtils_SteamUtils006.cpp @@ -1,149 +1,196 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUtils_SteamUtils006.h" -void cppISteamUtils_SteamUtils006_GetSecondsSinceAppActive( struct cppISteamUtils_SteamUtils006_GetSecondsSinceAppActive_params *params ) +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; params->_ret = iface->GetSecondsSinceAppActive( ); + return 0; } -void cppISteamUtils_SteamUtils006_GetSecondsSinceComputerActive( struct cppISteamUtils_SteamUtils006_GetSecondsSinceComputerActive_params *params ) +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; params->_ret = iface->GetSecondsSinceComputerActive( ); + return 0; } -void cppISteamUtils_SteamUtils006_GetConnectedUniverse( struct cppISteamUtils_SteamUtils006_GetConnectedUniverse_params *params ) +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; params->_ret = iface->GetConnectedUniverse( ); + return 0; } -void cppISteamUtils_SteamUtils006_GetServerRealTime( struct cppISteamUtils_SteamUtils006_GetServerRealTime_params *params ) +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; params->_ret = iface->GetServerRealTime( ); + return 0; } -void cppISteamUtils_SteamUtils006_GetIPCountry( struct cppISteamUtils_SteamUtils006_GetIPCountry_params *params ) +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; params->_ret = iface->GetIPCountry( ); + return 0; } -void cppISteamUtils_SteamUtils006_GetImageSize( struct cppISteamUtils_SteamUtils006_GetImageSize_params *params ) +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; params->_ret = iface->GetImageSize( params->iImage, params->pnWidth, params->pnHeight ); + return 0; } -void cppISteamUtils_SteamUtils006_GetImageRGBA( struct cppISteamUtils_SteamUtils006_GetImageRGBA_params *params ) +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; params->_ret = iface->GetImageRGBA( params->iImage, params->pubDest, params->nDestBufferSize ); + return 0; } -void cppISteamUtils_SteamUtils006_GetCSERIPPort( struct cppISteamUtils_SteamUtils006_GetCSERIPPort_params *params ) +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; params->_ret = iface->GetCSERIPPort( params->unIP, params->usPort ); + return 0; } -void cppISteamUtils_SteamUtils006_GetCurrentBatteryPower( struct cppISteamUtils_SteamUtils006_GetCurrentBatteryPower_params *params ) +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; params->_ret = iface->GetCurrentBatteryPower( ); + return 0; } -void cppISteamUtils_SteamUtils006_GetAppID( struct cppISteamUtils_SteamUtils006_GetAppID_params *params ) +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; params->_ret = iface->GetAppID( ); + return 0; } -void cppISteamUtils_SteamUtils006_SetOverlayNotificationPosition( struct cppISteamUtils_SteamUtils006_SetOverlayNotificationPosition_params *params ) +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; iface->SetOverlayNotificationPosition( params->eNotificationPosition ); + return 0; } -void cppISteamUtils_SteamUtils006_IsAPICallCompleted( struct cppISteamUtils_SteamUtils006_IsAPICallCompleted_params *params ) +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; params->_ret = iface->IsAPICallCompleted( params->hSteamAPICall, params->pbFailed ); + return 0; } -void cppISteamUtils_SteamUtils006_GetAPICallFailureReason( struct cppISteamUtils_SteamUtils006_GetAPICallFailureReason_params *params ) +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; params->_ret = iface->GetAPICallFailureReason( params->hSteamAPICall ); + return 0; } -void cppISteamUtils_SteamUtils006_RunFrame( struct cppISteamUtils_SteamUtils006_RunFrame_params *params ) +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; iface->RunFrame( ); + return 0; } -void cppISteamUtils_SteamUtils006_GetIPCCallCount( struct cppISteamUtils_SteamUtils006_GetIPCCallCount_params *params ) +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; params->_ret = iface->GetIPCCallCount( ); + return 0; } -void cppISteamUtils_SteamUtils006_SetWarningMessageHook( struct cppISteamUtils_SteamUtils006_SetWarningMessageHook_params *params ) +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; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); + return 0; } -void cppISteamUtils_SteamUtils006_IsOverlayEnabled( struct cppISteamUtils_SteamUtils006_IsOverlayEnabled_params *params ) +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; params->_ret = iface->IsOverlayEnabled( ); + return 0; } -void cppISteamUtils_SteamUtils006_BOverlayNeedsPresent( struct cppISteamUtils_SteamUtils006_BOverlayNeedsPresent_params *params ) +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; params->_ret = iface->BOverlayNeedsPresent( ); + return 0; } -void cppISteamUtils_SteamUtils006_CheckFileSignature( struct cppISteamUtils_SteamUtils006_CheckFileSignature_params *params ) +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; params->_ret = iface->CheckFileSignature( params->szFileName ); + return 0; } -void cppISteamUtils_SteamUtils006_ShowGamepadTextInput( struct cppISteamUtils_SteamUtils006_ShowGamepadTextInput_params *params ) +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; params->_ret = iface->ShowGamepadTextInput( params->eInputMode, params->eLineInputMode, params->pchDescription, params->unCharMax ); + return 0; } -void cppISteamUtils_SteamUtils006_GetEnteredGamepadTextLength( struct cppISteamUtils_SteamUtils006_GetEnteredGamepadTextLength_params *params ) +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; params->_ret = iface->GetEnteredGamepadTextLength( ); + return 0; } -void cppISteamUtils_SteamUtils006_GetEnteredGamepadTextInput( struct cppISteamUtils_SteamUtils006_GetEnteredGamepadTextInput_params *params ) +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; params->_ret = iface->GetEnteredGamepadTextInput( params->pchText, params->cchText ); + return 0; } -void cppISteamUtils_SteamUtils006_GetSteamUILanguage( struct cppISteamUtils_SteamUtils006_GetSteamUILanguage_params *params ) +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; params->_ret = iface->GetSteamUILanguage( ); + return 0; } -void cppISteamUtils_SteamUtils006_IsSteamRunningInVR( struct cppISteamUtils_SteamUtils006_IsSteamRunningInVR_params *params ) +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; params->_ret = iface->IsSteamRunningInVR( ); + return 0; } diff --git a/lsteamclient/cppISteamUtils_SteamUtils006.h b/lsteamclient/cppISteamUtils_SteamUtils006.h deleted file mode 100644 index bde0105e..00000000 --- a/lsteamclient/cppISteamUtils_SteamUtils006.h +++ /dev/null @@ -1,209 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUtils_SteamUtils006_GetSecondsSinceAppActive_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils006_GetSecondsSinceAppActive( struct cppISteamUtils_SteamUtils006_GetSecondsSinceAppActive_params *params ); - -struct cppISteamUtils_SteamUtils006_GetSecondsSinceComputerActive_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils006_GetSecondsSinceComputerActive( struct cppISteamUtils_SteamUtils006_GetSecondsSinceComputerActive_params *params ); - -struct cppISteamUtils_SteamUtils006_GetConnectedUniverse_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils006_GetConnectedUniverse( struct cppISteamUtils_SteamUtils006_GetConnectedUniverse_params *params ); - -struct cppISteamUtils_SteamUtils006_GetServerRealTime_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils006_GetServerRealTime( struct cppISteamUtils_SteamUtils006_GetServerRealTime_params *params ); - -struct cppISteamUtils_SteamUtils006_GetIPCountry_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamUtils_SteamUtils006_GetIPCountry( struct cppISteamUtils_SteamUtils006_GetIPCountry_params *params ); - -struct cppISteamUtils_SteamUtils006_GetImageSize_params -{ - void *linux_side; - bool _ret; - int32_t iImage; - uint32_t *pnWidth; - uint32_t *pnHeight; -}; -extern void cppISteamUtils_SteamUtils006_GetImageSize( struct cppISteamUtils_SteamUtils006_GetImageSize_params *params ); - -struct cppISteamUtils_SteamUtils006_GetImageRGBA_params -{ - void *linux_side; - bool _ret; - int32_t iImage; - uint8_t *pubDest; - int32_t nDestBufferSize; -}; -extern void cppISteamUtils_SteamUtils006_GetImageRGBA( struct cppISteamUtils_SteamUtils006_GetImageRGBA_params *params ); - -struct cppISteamUtils_SteamUtils006_GetCSERIPPort_params -{ - void *linux_side; - bool _ret; - uint32_t *unIP; - uint16_t *usPort; -}; -extern void cppISteamUtils_SteamUtils006_GetCSERIPPort( struct cppISteamUtils_SteamUtils006_GetCSERIPPort_params *params ); - -struct cppISteamUtils_SteamUtils006_GetCurrentBatteryPower_params -{ - void *linux_side; - uint8_t _ret; -}; -extern void cppISteamUtils_SteamUtils006_GetCurrentBatteryPower( struct cppISteamUtils_SteamUtils006_GetCurrentBatteryPower_params *params ); - -struct cppISteamUtils_SteamUtils006_GetAppID_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils006_GetAppID( struct cppISteamUtils_SteamUtils006_GetAppID_params *params ); - -struct cppISteamUtils_SteamUtils006_SetOverlayNotificationPosition_params -{ - void *linux_side; - uint32_t eNotificationPosition; -}; -extern void cppISteamUtils_SteamUtils006_SetOverlayNotificationPosition( struct cppISteamUtils_SteamUtils006_SetOverlayNotificationPosition_params *params ); - -struct cppISteamUtils_SteamUtils006_IsAPICallCompleted_params -{ - void *linux_side; - bool _ret; - uint64_t hSteamAPICall; - bool *pbFailed; -}; -extern void cppISteamUtils_SteamUtils006_IsAPICallCompleted( struct cppISteamUtils_SteamUtils006_IsAPICallCompleted_params *params ); - -struct cppISteamUtils_SteamUtils006_GetAPICallFailureReason_params -{ - void *linux_side; - uint32_t _ret; - uint64_t hSteamAPICall; -}; -extern void cppISteamUtils_SteamUtils006_GetAPICallFailureReason( struct cppISteamUtils_SteamUtils006_GetAPICallFailureReason_params *params ); - -struct cppISteamUtils_SteamUtils006_GetAPICallResult_params -{ - void *linux_side; - bool _ret; - uint64_t hSteamAPICall; - void *pCallback; - int32_t cubCallback; - int32_t iCallbackExpected; - bool *pbFailed; -}; -extern void cppISteamUtils_SteamUtils006_GetAPICallResult( struct cppISteamUtils_SteamUtils006_GetAPICallResult_params *params ); - -struct cppISteamUtils_SteamUtils006_RunFrame_params -{ - void *linux_side; -}; -extern void cppISteamUtils_SteamUtils006_RunFrame( struct cppISteamUtils_SteamUtils006_RunFrame_params *params ); - -struct cppISteamUtils_SteamUtils006_GetIPCCallCount_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils006_GetIPCCallCount( struct cppISteamUtils_SteamUtils006_GetIPCCallCount_params *params ); - -struct cppISteamUtils_SteamUtils006_SetWarningMessageHook_params -{ - void *linux_side; - void (*W_CDECL pFunction)(int32_t, const char *); -}; -extern void cppISteamUtils_SteamUtils006_SetWarningMessageHook( struct cppISteamUtils_SteamUtils006_SetWarningMessageHook_params *params ); - -struct cppISteamUtils_SteamUtils006_IsOverlayEnabled_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUtils_SteamUtils006_IsOverlayEnabled( struct cppISteamUtils_SteamUtils006_IsOverlayEnabled_params *params ); - -struct cppISteamUtils_SteamUtils006_BOverlayNeedsPresent_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUtils_SteamUtils006_BOverlayNeedsPresent( struct cppISteamUtils_SteamUtils006_BOverlayNeedsPresent_params *params ); - -struct cppISteamUtils_SteamUtils006_CheckFileSignature_params -{ - void *linux_side; - uint64_t _ret; - const char *szFileName; -}; -extern void cppISteamUtils_SteamUtils006_CheckFileSignature( struct cppISteamUtils_SteamUtils006_CheckFileSignature_params *params ); - -struct cppISteamUtils_SteamUtils006_ShowGamepadTextInput_params -{ - void *linux_side; - bool _ret; - uint32_t eInputMode; - uint32_t eLineInputMode; - const char *pchDescription; - uint32_t unCharMax; -}; -extern void cppISteamUtils_SteamUtils006_ShowGamepadTextInput( struct cppISteamUtils_SteamUtils006_ShowGamepadTextInput_params *params ); - -struct cppISteamUtils_SteamUtils006_GetEnteredGamepadTextLength_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils006_GetEnteredGamepadTextLength( struct cppISteamUtils_SteamUtils006_GetEnteredGamepadTextLength_params *params ); - -struct cppISteamUtils_SteamUtils006_GetEnteredGamepadTextInput_params -{ - void *linux_side; - bool _ret; - char *pchText; - uint32_t cchText; -}; -extern void cppISteamUtils_SteamUtils006_GetEnteredGamepadTextInput( struct cppISteamUtils_SteamUtils006_GetEnteredGamepadTextInput_params *params ); - -struct cppISteamUtils_SteamUtils006_GetSteamUILanguage_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamUtils_SteamUtils006_GetSteamUILanguage( struct cppISteamUtils_SteamUtils006_GetSteamUILanguage_params *params ); - -struct cppISteamUtils_SteamUtils006_IsSteamRunningInVR_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUtils_SteamUtils006_IsSteamRunningInVR( struct cppISteamUtils_SteamUtils006_IsSteamRunningInVR_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUtils_SteamUtils007.cpp b/lsteamclient/cppISteamUtils_SteamUtils007.cpp index 4cb3a8fb..cbab5a1b 100644 --- a/lsteamclient/cppISteamUtils_SteamUtils007.cpp +++ b/lsteamclient/cppISteamUtils_SteamUtils007.cpp @@ -1,155 +1,204 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUtils_SteamUtils007.h" -void cppISteamUtils_SteamUtils007_GetSecondsSinceAppActive( struct cppISteamUtils_SteamUtils007_GetSecondsSinceAppActive_params *params ) +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; params->_ret = iface->GetSecondsSinceAppActive( ); + return 0; } -void cppISteamUtils_SteamUtils007_GetSecondsSinceComputerActive( struct cppISteamUtils_SteamUtils007_GetSecondsSinceComputerActive_params *params ) +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; params->_ret = iface->GetSecondsSinceComputerActive( ); + return 0; } -void cppISteamUtils_SteamUtils007_GetConnectedUniverse( struct cppISteamUtils_SteamUtils007_GetConnectedUniverse_params *params ) +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; params->_ret = iface->GetConnectedUniverse( ); + return 0; } -void cppISteamUtils_SteamUtils007_GetServerRealTime( struct cppISteamUtils_SteamUtils007_GetServerRealTime_params *params ) +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; params->_ret = iface->GetServerRealTime( ); + return 0; } -void cppISteamUtils_SteamUtils007_GetIPCountry( struct cppISteamUtils_SteamUtils007_GetIPCountry_params *params ) +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; params->_ret = iface->GetIPCountry( ); + return 0; } -void cppISteamUtils_SteamUtils007_GetImageSize( struct cppISteamUtils_SteamUtils007_GetImageSize_params *params ) +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; params->_ret = iface->GetImageSize( params->iImage, params->pnWidth, params->pnHeight ); + return 0; } -void cppISteamUtils_SteamUtils007_GetImageRGBA( struct cppISteamUtils_SteamUtils007_GetImageRGBA_params *params ) +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; params->_ret = iface->GetImageRGBA( params->iImage, params->pubDest, params->nDestBufferSize ); + return 0; } -void cppISteamUtils_SteamUtils007_GetCSERIPPort( struct cppISteamUtils_SteamUtils007_GetCSERIPPort_params *params ) +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; params->_ret = iface->GetCSERIPPort( params->unIP, params->usPort ); + return 0; } -void cppISteamUtils_SteamUtils007_GetCurrentBatteryPower( struct cppISteamUtils_SteamUtils007_GetCurrentBatteryPower_params *params ) +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; params->_ret = iface->GetCurrentBatteryPower( ); + return 0; } -void cppISteamUtils_SteamUtils007_GetAppID( struct cppISteamUtils_SteamUtils007_GetAppID_params *params ) +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; params->_ret = iface->GetAppID( ); + return 0; } -void cppISteamUtils_SteamUtils007_SetOverlayNotificationPosition( struct cppISteamUtils_SteamUtils007_SetOverlayNotificationPosition_params *params ) +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; iface->SetOverlayNotificationPosition( params->eNotificationPosition ); + return 0; } -void cppISteamUtils_SteamUtils007_IsAPICallCompleted( struct cppISteamUtils_SteamUtils007_IsAPICallCompleted_params *params ) +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; params->_ret = iface->IsAPICallCompleted( params->hSteamAPICall, params->pbFailed ); + return 0; } -void cppISteamUtils_SteamUtils007_GetAPICallFailureReason( struct cppISteamUtils_SteamUtils007_GetAPICallFailureReason_params *params ) +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; params->_ret = iface->GetAPICallFailureReason( params->hSteamAPICall ); + return 0; } -void cppISteamUtils_SteamUtils007_RunFrame( struct cppISteamUtils_SteamUtils007_RunFrame_params *params ) +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; iface->RunFrame( ); + return 0; } -void cppISteamUtils_SteamUtils007_GetIPCCallCount( struct cppISteamUtils_SteamUtils007_GetIPCCallCount_params *params ) +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; params->_ret = iface->GetIPCCallCount( ); + return 0; } -void cppISteamUtils_SteamUtils007_SetWarningMessageHook( struct cppISteamUtils_SteamUtils007_SetWarningMessageHook_params *params ) +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; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); + return 0; } -void cppISteamUtils_SteamUtils007_IsOverlayEnabled( struct cppISteamUtils_SteamUtils007_IsOverlayEnabled_params *params ) +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; params->_ret = iface->IsOverlayEnabled( ); + return 0; } -void cppISteamUtils_SteamUtils007_BOverlayNeedsPresent( struct cppISteamUtils_SteamUtils007_BOverlayNeedsPresent_params *params ) +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; params->_ret = iface->BOverlayNeedsPresent( ); + return 0; } -void cppISteamUtils_SteamUtils007_CheckFileSignature( struct cppISteamUtils_SteamUtils007_CheckFileSignature_params *params ) +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; params->_ret = iface->CheckFileSignature( params->szFileName ); + return 0; } -void cppISteamUtils_SteamUtils007_ShowGamepadTextInput( struct cppISteamUtils_SteamUtils007_ShowGamepadTextInput_params *params ) +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; params->_ret = iface->ShowGamepadTextInput( params->eInputMode, params->eLineInputMode, params->pchDescription, params->unCharMax, params->pchExistingText ); + return 0; } -void cppISteamUtils_SteamUtils007_GetEnteredGamepadTextLength( struct cppISteamUtils_SteamUtils007_GetEnteredGamepadTextLength_params *params ) +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; params->_ret = iface->GetEnteredGamepadTextLength( ); + return 0; } -void cppISteamUtils_SteamUtils007_GetEnteredGamepadTextInput( struct cppISteamUtils_SteamUtils007_GetEnteredGamepadTextInput_params *params ) +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; params->_ret = iface->GetEnteredGamepadTextInput( params->pchText, params->cchText ); + return 0; } -void cppISteamUtils_SteamUtils007_GetSteamUILanguage( struct cppISteamUtils_SteamUtils007_GetSteamUILanguage_params *params ) +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; params->_ret = iface->GetSteamUILanguage( ); + return 0; } -void cppISteamUtils_SteamUtils007_IsSteamRunningInVR( struct cppISteamUtils_SteamUtils007_IsSteamRunningInVR_params *params ) +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; params->_ret = iface->IsSteamRunningInVR( ); + return 0; } -void cppISteamUtils_SteamUtils007_SetOverlayNotificationInset( struct cppISteamUtils_SteamUtils007_SetOverlayNotificationInset_params *params ) +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; iface->SetOverlayNotificationInset( params->nHorizontalInset, params->nVerticalInset ); + return 0; } diff --git a/lsteamclient/cppISteamUtils_SteamUtils007.h b/lsteamclient/cppISteamUtils_SteamUtils007.h deleted file mode 100644 index 911c3edf..00000000 --- a/lsteamclient/cppISteamUtils_SteamUtils007.h +++ /dev/null @@ -1,218 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUtils_SteamUtils007_GetSecondsSinceAppActive_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils007_GetSecondsSinceAppActive( struct cppISteamUtils_SteamUtils007_GetSecondsSinceAppActive_params *params ); - -struct cppISteamUtils_SteamUtils007_GetSecondsSinceComputerActive_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils007_GetSecondsSinceComputerActive( struct cppISteamUtils_SteamUtils007_GetSecondsSinceComputerActive_params *params ); - -struct cppISteamUtils_SteamUtils007_GetConnectedUniverse_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils007_GetConnectedUniverse( struct cppISteamUtils_SteamUtils007_GetConnectedUniverse_params *params ); - -struct cppISteamUtils_SteamUtils007_GetServerRealTime_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils007_GetServerRealTime( struct cppISteamUtils_SteamUtils007_GetServerRealTime_params *params ); - -struct cppISteamUtils_SteamUtils007_GetIPCountry_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamUtils_SteamUtils007_GetIPCountry( struct cppISteamUtils_SteamUtils007_GetIPCountry_params *params ); - -struct cppISteamUtils_SteamUtils007_GetImageSize_params -{ - void *linux_side; - bool _ret; - int32_t iImage; - uint32_t *pnWidth; - uint32_t *pnHeight; -}; -extern void cppISteamUtils_SteamUtils007_GetImageSize( struct cppISteamUtils_SteamUtils007_GetImageSize_params *params ); - -struct cppISteamUtils_SteamUtils007_GetImageRGBA_params -{ - void *linux_side; - bool _ret; - int32_t iImage; - uint8_t *pubDest; - int32_t nDestBufferSize; -}; -extern void cppISteamUtils_SteamUtils007_GetImageRGBA( struct cppISteamUtils_SteamUtils007_GetImageRGBA_params *params ); - -struct cppISteamUtils_SteamUtils007_GetCSERIPPort_params -{ - void *linux_side; - bool _ret; - uint32_t *unIP; - uint16_t *usPort; -}; -extern void cppISteamUtils_SteamUtils007_GetCSERIPPort( struct cppISteamUtils_SteamUtils007_GetCSERIPPort_params *params ); - -struct cppISteamUtils_SteamUtils007_GetCurrentBatteryPower_params -{ - void *linux_side; - uint8_t _ret; -}; -extern void cppISteamUtils_SteamUtils007_GetCurrentBatteryPower( struct cppISteamUtils_SteamUtils007_GetCurrentBatteryPower_params *params ); - -struct cppISteamUtils_SteamUtils007_GetAppID_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils007_GetAppID( struct cppISteamUtils_SteamUtils007_GetAppID_params *params ); - -struct cppISteamUtils_SteamUtils007_SetOverlayNotificationPosition_params -{ - void *linux_side; - uint32_t eNotificationPosition; -}; -extern void cppISteamUtils_SteamUtils007_SetOverlayNotificationPosition( struct cppISteamUtils_SteamUtils007_SetOverlayNotificationPosition_params *params ); - -struct cppISteamUtils_SteamUtils007_IsAPICallCompleted_params -{ - void *linux_side; - bool _ret; - uint64_t hSteamAPICall; - bool *pbFailed; -}; -extern void cppISteamUtils_SteamUtils007_IsAPICallCompleted( struct cppISteamUtils_SteamUtils007_IsAPICallCompleted_params *params ); - -struct cppISteamUtils_SteamUtils007_GetAPICallFailureReason_params -{ - void *linux_side; - uint32_t _ret; - uint64_t hSteamAPICall; -}; -extern void cppISteamUtils_SteamUtils007_GetAPICallFailureReason( struct cppISteamUtils_SteamUtils007_GetAPICallFailureReason_params *params ); - -struct cppISteamUtils_SteamUtils007_GetAPICallResult_params -{ - void *linux_side; - bool _ret; - uint64_t hSteamAPICall; - void *pCallback; - int32_t cubCallback; - int32_t iCallbackExpected; - bool *pbFailed; -}; -extern void cppISteamUtils_SteamUtils007_GetAPICallResult( struct cppISteamUtils_SteamUtils007_GetAPICallResult_params *params ); - -struct cppISteamUtils_SteamUtils007_RunFrame_params -{ - void *linux_side; -}; -extern void cppISteamUtils_SteamUtils007_RunFrame( struct cppISteamUtils_SteamUtils007_RunFrame_params *params ); - -struct cppISteamUtils_SteamUtils007_GetIPCCallCount_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils007_GetIPCCallCount( struct cppISteamUtils_SteamUtils007_GetIPCCallCount_params *params ); - -struct cppISteamUtils_SteamUtils007_SetWarningMessageHook_params -{ - void *linux_side; - void (*W_CDECL pFunction)(int32_t, const char *); -}; -extern void cppISteamUtils_SteamUtils007_SetWarningMessageHook( struct cppISteamUtils_SteamUtils007_SetWarningMessageHook_params *params ); - -struct cppISteamUtils_SteamUtils007_IsOverlayEnabled_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUtils_SteamUtils007_IsOverlayEnabled( struct cppISteamUtils_SteamUtils007_IsOverlayEnabled_params *params ); - -struct cppISteamUtils_SteamUtils007_BOverlayNeedsPresent_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUtils_SteamUtils007_BOverlayNeedsPresent( struct cppISteamUtils_SteamUtils007_BOverlayNeedsPresent_params *params ); - -struct cppISteamUtils_SteamUtils007_CheckFileSignature_params -{ - void *linux_side; - uint64_t _ret; - const char *szFileName; -}; -extern void cppISteamUtils_SteamUtils007_CheckFileSignature( struct cppISteamUtils_SteamUtils007_CheckFileSignature_params *params ); - -struct cppISteamUtils_SteamUtils007_ShowGamepadTextInput_params -{ - void *linux_side; - bool _ret; - uint32_t eInputMode; - uint32_t eLineInputMode; - const char *pchDescription; - uint32_t unCharMax; - const char *pchExistingText; -}; -extern void cppISteamUtils_SteamUtils007_ShowGamepadTextInput( struct cppISteamUtils_SteamUtils007_ShowGamepadTextInput_params *params ); - -struct cppISteamUtils_SteamUtils007_GetEnteredGamepadTextLength_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils007_GetEnteredGamepadTextLength( struct cppISteamUtils_SteamUtils007_GetEnteredGamepadTextLength_params *params ); - -struct cppISteamUtils_SteamUtils007_GetEnteredGamepadTextInput_params -{ - void *linux_side; - bool _ret; - char *pchText; - uint32_t cchText; -}; -extern void cppISteamUtils_SteamUtils007_GetEnteredGamepadTextInput( struct cppISteamUtils_SteamUtils007_GetEnteredGamepadTextInput_params *params ); - -struct cppISteamUtils_SteamUtils007_GetSteamUILanguage_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamUtils_SteamUtils007_GetSteamUILanguage( struct cppISteamUtils_SteamUtils007_GetSteamUILanguage_params *params ); - -struct cppISteamUtils_SteamUtils007_IsSteamRunningInVR_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUtils_SteamUtils007_IsSteamRunningInVR( struct cppISteamUtils_SteamUtils007_IsSteamRunningInVR_params *params ); - -struct cppISteamUtils_SteamUtils007_SetOverlayNotificationInset_params -{ - void *linux_side; - int32_t nHorizontalInset; - int32_t nVerticalInset; -}; -extern void cppISteamUtils_SteamUtils007_SetOverlayNotificationInset( struct cppISteamUtils_SteamUtils007_SetOverlayNotificationInset_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUtils_SteamUtils008.cpp b/lsteamclient/cppISteamUtils_SteamUtils008.cpp index 922c3a12..44bca465 100644 --- a/lsteamclient/cppISteamUtils_SteamUtils008.cpp +++ b/lsteamclient/cppISteamUtils_SteamUtils008.cpp @@ -1,167 +1,220 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUtils_SteamUtils008.h" -void cppISteamUtils_SteamUtils008_GetSecondsSinceAppActive( struct cppISteamUtils_SteamUtils008_GetSecondsSinceAppActive_params *params ) +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; params->_ret = iface->GetSecondsSinceAppActive( ); + return 0; } -void cppISteamUtils_SteamUtils008_GetSecondsSinceComputerActive( struct cppISteamUtils_SteamUtils008_GetSecondsSinceComputerActive_params *params ) +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; params->_ret = iface->GetSecondsSinceComputerActive( ); + return 0; } -void cppISteamUtils_SteamUtils008_GetConnectedUniverse( struct cppISteamUtils_SteamUtils008_GetConnectedUniverse_params *params ) +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; params->_ret = iface->GetConnectedUniverse( ); + return 0; } -void cppISteamUtils_SteamUtils008_GetServerRealTime( struct cppISteamUtils_SteamUtils008_GetServerRealTime_params *params ) +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; params->_ret = iface->GetServerRealTime( ); + return 0; } -void cppISteamUtils_SteamUtils008_GetIPCountry( struct cppISteamUtils_SteamUtils008_GetIPCountry_params *params ) +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; params->_ret = iface->GetIPCountry( ); + return 0; } -void cppISteamUtils_SteamUtils008_GetImageSize( struct cppISteamUtils_SteamUtils008_GetImageSize_params *params ) +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; params->_ret = iface->GetImageSize( params->iImage, params->pnWidth, params->pnHeight ); + return 0; } -void cppISteamUtils_SteamUtils008_GetImageRGBA( struct cppISteamUtils_SteamUtils008_GetImageRGBA_params *params ) +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; params->_ret = iface->GetImageRGBA( params->iImage, params->pubDest, params->nDestBufferSize ); + return 0; } -void cppISteamUtils_SteamUtils008_GetCSERIPPort( struct cppISteamUtils_SteamUtils008_GetCSERIPPort_params *params ) +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; params->_ret = iface->GetCSERIPPort( params->unIP, params->usPort ); + return 0; } -void cppISteamUtils_SteamUtils008_GetCurrentBatteryPower( struct cppISteamUtils_SteamUtils008_GetCurrentBatteryPower_params *params ) +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; params->_ret = iface->GetCurrentBatteryPower( ); + return 0; } -void cppISteamUtils_SteamUtils008_GetAppID( struct cppISteamUtils_SteamUtils008_GetAppID_params *params ) +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; params->_ret = iface->GetAppID( ); + return 0; } -void cppISteamUtils_SteamUtils008_SetOverlayNotificationPosition( struct cppISteamUtils_SteamUtils008_SetOverlayNotificationPosition_params *params ) +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; iface->SetOverlayNotificationPosition( params->eNotificationPosition ); + return 0; } -void cppISteamUtils_SteamUtils008_IsAPICallCompleted( struct cppISteamUtils_SteamUtils008_IsAPICallCompleted_params *params ) +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; params->_ret = iface->IsAPICallCompleted( params->hSteamAPICall, params->pbFailed ); + return 0; } -void cppISteamUtils_SteamUtils008_GetAPICallFailureReason( struct cppISteamUtils_SteamUtils008_GetAPICallFailureReason_params *params ) +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; params->_ret = iface->GetAPICallFailureReason( params->hSteamAPICall ); + return 0; } -void cppISteamUtils_SteamUtils008_RunFrame( struct cppISteamUtils_SteamUtils008_RunFrame_params *params ) +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; iface->RunFrame( ); + return 0; } -void cppISteamUtils_SteamUtils008_GetIPCCallCount( struct cppISteamUtils_SteamUtils008_GetIPCCallCount_params *params ) +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; params->_ret = iface->GetIPCCallCount( ); + return 0; } -void cppISteamUtils_SteamUtils008_SetWarningMessageHook( struct cppISteamUtils_SteamUtils008_SetWarningMessageHook_params *params ) +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; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); + return 0; } -void cppISteamUtils_SteamUtils008_IsOverlayEnabled( struct cppISteamUtils_SteamUtils008_IsOverlayEnabled_params *params ) +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; params->_ret = iface->IsOverlayEnabled( ); + return 0; } -void cppISteamUtils_SteamUtils008_BOverlayNeedsPresent( struct cppISteamUtils_SteamUtils008_BOverlayNeedsPresent_params *params ) +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; params->_ret = iface->BOverlayNeedsPresent( ); + return 0; } -void cppISteamUtils_SteamUtils008_CheckFileSignature( struct cppISteamUtils_SteamUtils008_CheckFileSignature_params *params ) +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; params->_ret = iface->CheckFileSignature( params->szFileName ); + return 0; } -void cppISteamUtils_SteamUtils008_ShowGamepadTextInput( struct cppISteamUtils_SteamUtils008_ShowGamepadTextInput_params *params ) +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; params->_ret = iface->ShowGamepadTextInput( params->eInputMode, params->eLineInputMode, params->pchDescription, params->unCharMax, params->pchExistingText ); + return 0; } -void cppISteamUtils_SteamUtils008_GetEnteredGamepadTextLength( struct cppISteamUtils_SteamUtils008_GetEnteredGamepadTextLength_params *params ) +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; params->_ret = iface->GetEnteredGamepadTextLength( ); + return 0; } -void cppISteamUtils_SteamUtils008_GetEnteredGamepadTextInput( struct cppISteamUtils_SteamUtils008_GetEnteredGamepadTextInput_params *params ) +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; params->_ret = iface->GetEnteredGamepadTextInput( params->pchText, params->cchText ); + return 0; } -void cppISteamUtils_SteamUtils008_GetSteamUILanguage( struct cppISteamUtils_SteamUtils008_GetSteamUILanguage_params *params ) +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; params->_ret = iface->GetSteamUILanguage( ); + return 0; } -void cppISteamUtils_SteamUtils008_IsSteamRunningInVR( struct cppISteamUtils_SteamUtils008_IsSteamRunningInVR_params *params ) +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; params->_ret = iface->IsSteamRunningInVR( ); + return 0; } -void cppISteamUtils_SteamUtils008_SetOverlayNotificationInset( struct cppISteamUtils_SteamUtils008_SetOverlayNotificationInset_params *params ) +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; iface->SetOverlayNotificationInset( params->nHorizontalInset, params->nVerticalInset ); + return 0; } -void cppISteamUtils_SteamUtils008_IsSteamInBigPictureMode( struct cppISteamUtils_SteamUtils008_IsSteamInBigPictureMode_params *params ) +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; params->_ret = iface->IsSteamInBigPictureMode( ); + return 0; } -void cppISteamUtils_SteamUtils008_StartVRDashboard( struct cppISteamUtils_SteamUtils008_StartVRDashboard_params *params ) +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; iface->StartVRDashboard( ); + return 0; } diff --git a/lsteamclient/cppISteamUtils_SteamUtils008.h b/lsteamclient/cppISteamUtils_SteamUtils008.h deleted file mode 100644 index 4a54f9ee..00000000 --- a/lsteamclient/cppISteamUtils_SteamUtils008.h +++ /dev/null @@ -1,231 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUtils_SteamUtils008_GetSecondsSinceAppActive_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils008_GetSecondsSinceAppActive( struct cppISteamUtils_SteamUtils008_GetSecondsSinceAppActive_params *params ); - -struct cppISteamUtils_SteamUtils008_GetSecondsSinceComputerActive_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils008_GetSecondsSinceComputerActive( struct cppISteamUtils_SteamUtils008_GetSecondsSinceComputerActive_params *params ); - -struct cppISteamUtils_SteamUtils008_GetConnectedUniverse_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils008_GetConnectedUniverse( struct cppISteamUtils_SteamUtils008_GetConnectedUniverse_params *params ); - -struct cppISteamUtils_SteamUtils008_GetServerRealTime_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils008_GetServerRealTime( struct cppISteamUtils_SteamUtils008_GetServerRealTime_params *params ); - -struct cppISteamUtils_SteamUtils008_GetIPCountry_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamUtils_SteamUtils008_GetIPCountry( struct cppISteamUtils_SteamUtils008_GetIPCountry_params *params ); - -struct cppISteamUtils_SteamUtils008_GetImageSize_params -{ - void *linux_side; - bool _ret; - int32_t iImage; - uint32_t *pnWidth; - uint32_t *pnHeight; -}; -extern void cppISteamUtils_SteamUtils008_GetImageSize( struct cppISteamUtils_SteamUtils008_GetImageSize_params *params ); - -struct cppISteamUtils_SteamUtils008_GetImageRGBA_params -{ - void *linux_side; - bool _ret; - int32_t iImage; - uint8_t *pubDest; - int32_t nDestBufferSize; -}; -extern void cppISteamUtils_SteamUtils008_GetImageRGBA( struct cppISteamUtils_SteamUtils008_GetImageRGBA_params *params ); - -struct cppISteamUtils_SteamUtils008_GetCSERIPPort_params -{ - void *linux_side; - bool _ret; - uint32_t *unIP; - uint16_t *usPort; -}; -extern void cppISteamUtils_SteamUtils008_GetCSERIPPort( struct cppISteamUtils_SteamUtils008_GetCSERIPPort_params *params ); - -struct cppISteamUtils_SteamUtils008_GetCurrentBatteryPower_params -{ - void *linux_side; - uint8_t _ret; -}; -extern void cppISteamUtils_SteamUtils008_GetCurrentBatteryPower( struct cppISteamUtils_SteamUtils008_GetCurrentBatteryPower_params *params ); - -struct cppISteamUtils_SteamUtils008_GetAppID_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils008_GetAppID( struct cppISteamUtils_SteamUtils008_GetAppID_params *params ); - -struct cppISteamUtils_SteamUtils008_SetOverlayNotificationPosition_params -{ - void *linux_side; - uint32_t eNotificationPosition; -}; -extern void cppISteamUtils_SteamUtils008_SetOverlayNotificationPosition( struct cppISteamUtils_SteamUtils008_SetOverlayNotificationPosition_params *params ); - -struct cppISteamUtils_SteamUtils008_IsAPICallCompleted_params -{ - void *linux_side; - bool _ret; - uint64_t hSteamAPICall; - bool *pbFailed; -}; -extern void cppISteamUtils_SteamUtils008_IsAPICallCompleted( struct cppISteamUtils_SteamUtils008_IsAPICallCompleted_params *params ); - -struct cppISteamUtils_SteamUtils008_GetAPICallFailureReason_params -{ - void *linux_side; - uint32_t _ret; - uint64_t hSteamAPICall; -}; -extern void cppISteamUtils_SteamUtils008_GetAPICallFailureReason( struct cppISteamUtils_SteamUtils008_GetAPICallFailureReason_params *params ); - -struct cppISteamUtils_SteamUtils008_GetAPICallResult_params -{ - void *linux_side; - bool _ret; - uint64_t hSteamAPICall; - void *pCallback; - int32_t cubCallback; - int32_t iCallbackExpected; - bool *pbFailed; -}; -extern void cppISteamUtils_SteamUtils008_GetAPICallResult( struct cppISteamUtils_SteamUtils008_GetAPICallResult_params *params ); - -struct cppISteamUtils_SteamUtils008_RunFrame_params -{ - void *linux_side; -}; -extern void cppISteamUtils_SteamUtils008_RunFrame( struct cppISteamUtils_SteamUtils008_RunFrame_params *params ); - -struct cppISteamUtils_SteamUtils008_GetIPCCallCount_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils008_GetIPCCallCount( struct cppISteamUtils_SteamUtils008_GetIPCCallCount_params *params ); - -struct cppISteamUtils_SteamUtils008_SetWarningMessageHook_params -{ - void *linux_side; - void (*W_CDECL pFunction)(int32_t, const char *); -}; -extern void cppISteamUtils_SteamUtils008_SetWarningMessageHook( struct cppISteamUtils_SteamUtils008_SetWarningMessageHook_params *params ); - -struct cppISteamUtils_SteamUtils008_IsOverlayEnabled_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUtils_SteamUtils008_IsOverlayEnabled( struct cppISteamUtils_SteamUtils008_IsOverlayEnabled_params *params ); - -struct cppISteamUtils_SteamUtils008_BOverlayNeedsPresent_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUtils_SteamUtils008_BOverlayNeedsPresent( struct cppISteamUtils_SteamUtils008_BOverlayNeedsPresent_params *params ); - -struct cppISteamUtils_SteamUtils008_CheckFileSignature_params -{ - void *linux_side; - uint64_t _ret; - const char *szFileName; -}; -extern void cppISteamUtils_SteamUtils008_CheckFileSignature( struct cppISteamUtils_SteamUtils008_CheckFileSignature_params *params ); - -struct cppISteamUtils_SteamUtils008_ShowGamepadTextInput_params -{ - void *linux_side; - bool _ret; - uint32_t eInputMode; - uint32_t eLineInputMode; - const char *pchDescription; - uint32_t unCharMax; - const char *pchExistingText; -}; -extern void cppISteamUtils_SteamUtils008_ShowGamepadTextInput( struct cppISteamUtils_SteamUtils008_ShowGamepadTextInput_params *params ); - -struct cppISteamUtils_SteamUtils008_GetEnteredGamepadTextLength_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils008_GetEnteredGamepadTextLength( struct cppISteamUtils_SteamUtils008_GetEnteredGamepadTextLength_params *params ); - -struct cppISteamUtils_SteamUtils008_GetEnteredGamepadTextInput_params -{ - void *linux_side; - bool _ret; - char *pchText; - uint32_t cchText; -}; -extern void cppISteamUtils_SteamUtils008_GetEnteredGamepadTextInput( struct cppISteamUtils_SteamUtils008_GetEnteredGamepadTextInput_params *params ); - -struct cppISteamUtils_SteamUtils008_GetSteamUILanguage_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamUtils_SteamUtils008_GetSteamUILanguage( struct cppISteamUtils_SteamUtils008_GetSteamUILanguage_params *params ); - -struct cppISteamUtils_SteamUtils008_IsSteamRunningInVR_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUtils_SteamUtils008_IsSteamRunningInVR( struct cppISteamUtils_SteamUtils008_IsSteamRunningInVR_params *params ); - -struct cppISteamUtils_SteamUtils008_SetOverlayNotificationInset_params -{ - void *linux_side; - int32_t nHorizontalInset; - int32_t nVerticalInset; -}; -extern void cppISteamUtils_SteamUtils008_SetOverlayNotificationInset( struct cppISteamUtils_SteamUtils008_SetOverlayNotificationInset_params *params ); - -struct cppISteamUtils_SteamUtils008_IsSteamInBigPictureMode_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUtils_SteamUtils008_IsSteamInBigPictureMode( struct cppISteamUtils_SteamUtils008_IsSteamInBigPictureMode_params *params ); - -struct cppISteamUtils_SteamUtils008_StartVRDashboard_params -{ - void *linux_side; -}; -extern void cppISteamUtils_SteamUtils008_StartVRDashboard( struct cppISteamUtils_SteamUtils008_StartVRDashboard_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUtils_SteamUtils009.cpp b/lsteamclient/cppISteamUtils_SteamUtils009.cpp index 780d1cca..81add918 100644 --- a/lsteamclient/cppISteamUtils_SteamUtils009.cpp +++ b/lsteamclient/cppISteamUtils_SteamUtils009.cpp @@ -1,203 +1,268 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUtils_SteamUtils009.h" -void cppISteamUtils_SteamUtils009_GetSecondsSinceAppActive( struct cppISteamUtils_SteamUtils009_GetSecondsSinceAppActive_params *params ) +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; params->_ret = iface->GetSecondsSinceAppActive( ); + return 0; } -void cppISteamUtils_SteamUtils009_GetSecondsSinceComputerActive( struct cppISteamUtils_SteamUtils009_GetSecondsSinceComputerActive_params *params ) +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; params->_ret = iface->GetSecondsSinceComputerActive( ); + return 0; } -void cppISteamUtils_SteamUtils009_GetConnectedUniverse( struct cppISteamUtils_SteamUtils009_GetConnectedUniverse_params *params ) +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; params->_ret = iface->GetConnectedUniverse( ); + return 0; } -void cppISteamUtils_SteamUtils009_GetServerRealTime( struct cppISteamUtils_SteamUtils009_GetServerRealTime_params *params ) +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; params->_ret = iface->GetServerRealTime( ); + return 0; } -void cppISteamUtils_SteamUtils009_GetIPCountry( struct cppISteamUtils_SteamUtils009_GetIPCountry_params *params ) +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; params->_ret = iface->GetIPCountry( ); + return 0; } -void cppISteamUtils_SteamUtils009_GetImageSize( struct cppISteamUtils_SteamUtils009_GetImageSize_params *params ) +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; params->_ret = iface->GetImageSize( params->iImage, params->pnWidth, params->pnHeight ); + return 0; } -void cppISteamUtils_SteamUtils009_GetImageRGBA( struct cppISteamUtils_SteamUtils009_GetImageRGBA_params *params ) +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; params->_ret = iface->GetImageRGBA( params->iImage, params->pubDest, params->nDestBufferSize ); + return 0; } -void cppISteamUtils_SteamUtils009_GetCSERIPPort( struct cppISteamUtils_SteamUtils009_GetCSERIPPort_params *params ) +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; params->_ret = iface->GetCSERIPPort( params->unIP, params->usPort ); + return 0; } -void cppISteamUtils_SteamUtils009_GetCurrentBatteryPower( struct cppISteamUtils_SteamUtils009_GetCurrentBatteryPower_params *params ) +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; params->_ret = iface->GetCurrentBatteryPower( ); + return 0; } -void cppISteamUtils_SteamUtils009_GetAppID( struct cppISteamUtils_SteamUtils009_GetAppID_params *params ) +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; params->_ret = iface->GetAppID( ); + return 0; } -void cppISteamUtils_SteamUtils009_SetOverlayNotificationPosition( struct cppISteamUtils_SteamUtils009_SetOverlayNotificationPosition_params *params ) +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; iface->SetOverlayNotificationPosition( params->eNotificationPosition ); + return 0; } -void cppISteamUtils_SteamUtils009_IsAPICallCompleted( struct cppISteamUtils_SteamUtils009_IsAPICallCompleted_params *params ) +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; params->_ret = iface->IsAPICallCompleted( params->hSteamAPICall, params->pbFailed ); + return 0; } -void cppISteamUtils_SteamUtils009_GetAPICallFailureReason( struct cppISteamUtils_SteamUtils009_GetAPICallFailureReason_params *params ) +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; params->_ret = iface->GetAPICallFailureReason( params->hSteamAPICall ); + return 0; } -void cppISteamUtils_SteamUtils009_RunFrame( struct cppISteamUtils_SteamUtils009_RunFrame_params *params ) +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; iface->RunFrame( ); + return 0; } -void cppISteamUtils_SteamUtils009_GetIPCCallCount( struct cppISteamUtils_SteamUtils009_GetIPCCallCount_params *params ) +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; params->_ret = iface->GetIPCCallCount( ); + return 0; } -void cppISteamUtils_SteamUtils009_SetWarningMessageHook( struct cppISteamUtils_SteamUtils009_SetWarningMessageHook_params *params ) +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; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); + return 0; } -void cppISteamUtils_SteamUtils009_IsOverlayEnabled( struct cppISteamUtils_SteamUtils009_IsOverlayEnabled_params *params ) +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; params->_ret = iface->IsOverlayEnabled( ); + return 0; } -void cppISteamUtils_SteamUtils009_BOverlayNeedsPresent( struct cppISteamUtils_SteamUtils009_BOverlayNeedsPresent_params *params ) +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; params->_ret = iface->BOverlayNeedsPresent( ); + return 0; } -void cppISteamUtils_SteamUtils009_CheckFileSignature( struct cppISteamUtils_SteamUtils009_CheckFileSignature_params *params ) +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; params->_ret = iface->CheckFileSignature( params->szFileName ); + return 0; } -void cppISteamUtils_SteamUtils009_ShowGamepadTextInput( struct cppISteamUtils_SteamUtils009_ShowGamepadTextInput_params *params ) +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; params->_ret = iface->ShowGamepadTextInput( params->eInputMode, params->eLineInputMode, params->pchDescription, params->unCharMax, params->pchExistingText ); + return 0; } -void cppISteamUtils_SteamUtils009_GetEnteredGamepadTextLength( struct cppISteamUtils_SteamUtils009_GetEnteredGamepadTextLength_params *params ) +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; params->_ret = iface->GetEnteredGamepadTextLength( ); + return 0; } -void cppISteamUtils_SteamUtils009_GetEnteredGamepadTextInput( struct cppISteamUtils_SteamUtils009_GetEnteredGamepadTextInput_params *params ) +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; params->_ret = iface->GetEnteredGamepadTextInput( params->pchText, params->cchText ); + return 0; } -void cppISteamUtils_SteamUtils009_GetSteamUILanguage( struct cppISteamUtils_SteamUtils009_GetSteamUILanguage_params *params ) +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; params->_ret = iface->GetSteamUILanguage( ); + return 0; } -void cppISteamUtils_SteamUtils009_IsSteamRunningInVR( struct cppISteamUtils_SteamUtils009_IsSteamRunningInVR_params *params ) +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; params->_ret = iface->IsSteamRunningInVR( ); + return 0; } -void cppISteamUtils_SteamUtils009_SetOverlayNotificationInset( struct cppISteamUtils_SteamUtils009_SetOverlayNotificationInset_params *params ) +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; iface->SetOverlayNotificationInset( params->nHorizontalInset, params->nVerticalInset ); + return 0; } -void cppISteamUtils_SteamUtils009_IsSteamInBigPictureMode( struct cppISteamUtils_SteamUtils009_IsSteamInBigPictureMode_params *params ) +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; params->_ret = iface->IsSteamInBigPictureMode( ); + return 0; } -void cppISteamUtils_SteamUtils009_StartVRDashboard( struct cppISteamUtils_SteamUtils009_StartVRDashboard_params *params ) +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; iface->StartVRDashboard( ); + return 0; } -void cppISteamUtils_SteamUtils009_IsVRHeadsetStreamingEnabled( struct cppISteamUtils_SteamUtils009_IsVRHeadsetStreamingEnabled_params *params ) +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; params->_ret = iface->IsVRHeadsetStreamingEnabled( ); + return 0; } -void cppISteamUtils_SteamUtils009_SetVRHeadsetStreamingEnabled( struct cppISteamUtils_SteamUtils009_SetVRHeadsetStreamingEnabled_params *params ) +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; iface->SetVRHeadsetStreamingEnabled( params->bEnabled ); + return 0; } -void cppISteamUtils_SteamUtils009_IsSteamChinaLauncher( struct cppISteamUtils_SteamUtils009_IsSteamChinaLauncher_params *params ) +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; params->_ret = iface->IsSteamChinaLauncher( ); + return 0; } -void cppISteamUtils_SteamUtils009_InitFilterText( struct cppISteamUtils_SteamUtils009_InitFilterText_params *params ) +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; params->_ret = iface->InitFilterText( ); + return 0; } -void cppISteamUtils_SteamUtils009_FilterText( struct cppISteamUtils_SteamUtils009_FilterText_params *params ) +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; params->_ret = iface->FilterText( params->pchOutFilteredText, params->nByteSizeOutFilteredText, params->pchInputMessage, params->bLegalOnly ); + return 0; } -void cppISteamUtils_SteamUtils009_GetIPv6ConnectivityState( struct cppISteamUtils_SteamUtils009_GetIPv6ConnectivityState_params *params ) +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; params->_ret = iface->GetIPv6ConnectivityState( params->eProtocol ); + return 0; } diff --git a/lsteamclient/cppISteamUtils_SteamUtils009.h b/lsteamclient/cppISteamUtils_SteamUtils009.h deleted file mode 100644 index cc0d653b..00000000 --- a/lsteamclient/cppISteamUtils_SteamUtils009.h +++ /dev/null @@ -1,278 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUtils_SteamUtils009_GetSecondsSinceAppActive_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils009_GetSecondsSinceAppActive( struct cppISteamUtils_SteamUtils009_GetSecondsSinceAppActive_params *params ); - -struct cppISteamUtils_SteamUtils009_GetSecondsSinceComputerActive_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils009_GetSecondsSinceComputerActive( struct cppISteamUtils_SteamUtils009_GetSecondsSinceComputerActive_params *params ); - -struct cppISteamUtils_SteamUtils009_GetConnectedUniverse_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils009_GetConnectedUniverse( struct cppISteamUtils_SteamUtils009_GetConnectedUniverse_params *params ); - -struct cppISteamUtils_SteamUtils009_GetServerRealTime_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils009_GetServerRealTime( struct cppISteamUtils_SteamUtils009_GetServerRealTime_params *params ); - -struct cppISteamUtils_SteamUtils009_GetIPCountry_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamUtils_SteamUtils009_GetIPCountry( struct cppISteamUtils_SteamUtils009_GetIPCountry_params *params ); - -struct cppISteamUtils_SteamUtils009_GetImageSize_params -{ - void *linux_side; - bool _ret; - int32_t iImage; - uint32_t *pnWidth; - uint32_t *pnHeight; -}; -extern void cppISteamUtils_SteamUtils009_GetImageSize( struct cppISteamUtils_SteamUtils009_GetImageSize_params *params ); - -struct cppISteamUtils_SteamUtils009_GetImageRGBA_params -{ - void *linux_side; - bool _ret; - int32_t iImage; - uint8_t *pubDest; - int32_t nDestBufferSize; -}; -extern void cppISteamUtils_SteamUtils009_GetImageRGBA( struct cppISteamUtils_SteamUtils009_GetImageRGBA_params *params ); - -struct cppISteamUtils_SteamUtils009_GetCSERIPPort_params -{ - void *linux_side; - bool _ret; - uint32_t *unIP; - uint16_t *usPort; -}; -extern void cppISteamUtils_SteamUtils009_GetCSERIPPort( struct cppISteamUtils_SteamUtils009_GetCSERIPPort_params *params ); - -struct cppISteamUtils_SteamUtils009_GetCurrentBatteryPower_params -{ - void *linux_side; - uint8_t _ret; -}; -extern void cppISteamUtils_SteamUtils009_GetCurrentBatteryPower( struct cppISteamUtils_SteamUtils009_GetCurrentBatteryPower_params *params ); - -struct cppISteamUtils_SteamUtils009_GetAppID_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils009_GetAppID( struct cppISteamUtils_SteamUtils009_GetAppID_params *params ); - -struct cppISteamUtils_SteamUtils009_SetOverlayNotificationPosition_params -{ - void *linux_side; - uint32_t eNotificationPosition; -}; -extern void cppISteamUtils_SteamUtils009_SetOverlayNotificationPosition( struct cppISteamUtils_SteamUtils009_SetOverlayNotificationPosition_params *params ); - -struct cppISteamUtils_SteamUtils009_IsAPICallCompleted_params -{ - void *linux_side; - bool _ret; - uint64_t hSteamAPICall; - bool *pbFailed; -}; -extern void cppISteamUtils_SteamUtils009_IsAPICallCompleted( struct cppISteamUtils_SteamUtils009_IsAPICallCompleted_params *params ); - -struct cppISteamUtils_SteamUtils009_GetAPICallFailureReason_params -{ - void *linux_side; - uint32_t _ret; - uint64_t hSteamAPICall; -}; -extern void cppISteamUtils_SteamUtils009_GetAPICallFailureReason( struct cppISteamUtils_SteamUtils009_GetAPICallFailureReason_params *params ); - -struct cppISteamUtils_SteamUtils009_GetAPICallResult_params -{ - void *linux_side; - bool _ret; - uint64_t hSteamAPICall; - void *pCallback; - int32_t cubCallback; - int32_t iCallbackExpected; - bool *pbFailed; -}; -extern void cppISteamUtils_SteamUtils009_GetAPICallResult( struct cppISteamUtils_SteamUtils009_GetAPICallResult_params *params ); - -struct cppISteamUtils_SteamUtils009_RunFrame_params -{ - void *linux_side; -}; -extern void cppISteamUtils_SteamUtils009_RunFrame( struct cppISteamUtils_SteamUtils009_RunFrame_params *params ); - -struct cppISteamUtils_SteamUtils009_GetIPCCallCount_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils009_GetIPCCallCount( struct cppISteamUtils_SteamUtils009_GetIPCCallCount_params *params ); - -struct cppISteamUtils_SteamUtils009_SetWarningMessageHook_params -{ - void *linux_side; - void (*W_CDECL pFunction)(int32_t, const char *); -}; -extern void cppISteamUtils_SteamUtils009_SetWarningMessageHook( struct cppISteamUtils_SteamUtils009_SetWarningMessageHook_params *params ); - -struct cppISteamUtils_SteamUtils009_IsOverlayEnabled_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUtils_SteamUtils009_IsOverlayEnabled( struct cppISteamUtils_SteamUtils009_IsOverlayEnabled_params *params ); - -struct cppISteamUtils_SteamUtils009_BOverlayNeedsPresent_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUtils_SteamUtils009_BOverlayNeedsPresent( struct cppISteamUtils_SteamUtils009_BOverlayNeedsPresent_params *params ); - -struct cppISteamUtils_SteamUtils009_CheckFileSignature_params -{ - void *linux_side; - uint64_t _ret; - const char *szFileName; -}; -extern void cppISteamUtils_SteamUtils009_CheckFileSignature( struct cppISteamUtils_SteamUtils009_CheckFileSignature_params *params ); - -struct cppISteamUtils_SteamUtils009_ShowGamepadTextInput_params -{ - void *linux_side; - bool _ret; - uint32_t eInputMode; - uint32_t eLineInputMode; - const char *pchDescription; - uint32_t unCharMax; - const char *pchExistingText; -}; -extern void cppISteamUtils_SteamUtils009_ShowGamepadTextInput( struct cppISteamUtils_SteamUtils009_ShowGamepadTextInput_params *params ); - -struct cppISteamUtils_SteamUtils009_GetEnteredGamepadTextLength_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils009_GetEnteredGamepadTextLength( struct cppISteamUtils_SteamUtils009_GetEnteredGamepadTextLength_params *params ); - -struct cppISteamUtils_SteamUtils009_GetEnteredGamepadTextInput_params -{ - void *linux_side; - bool _ret; - char *pchText; - uint32_t cchText; -}; -extern void cppISteamUtils_SteamUtils009_GetEnteredGamepadTextInput( struct cppISteamUtils_SteamUtils009_GetEnteredGamepadTextInput_params *params ); - -struct cppISteamUtils_SteamUtils009_GetSteamUILanguage_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamUtils_SteamUtils009_GetSteamUILanguage( struct cppISteamUtils_SteamUtils009_GetSteamUILanguage_params *params ); - -struct cppISteamUtils_SteamUtils009_IsSteamRunningInVR_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUtils_SteamUtils009_IsSteamRunningInVR( struct cppISteamUtils_SteamUtils009_IsSteamRunningInVR_params *params ); - -struct cppISteamUtils_SteamUtils009_SetOverlayNotificationInset_params -{ - void *linux_side; - int32_t nHorizontalInset; - int32_t nVerticalInset; -}; -extern void cppISteamUtils_SteamUtils009_SetOverlayNotificationInset( struct cppISteamUtils_SteamUtils009_SetOverlayNotificationInset_params *params ); - -struct cppISteamUtils_SteamUtils009_IsSteamInBigPictureMode_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUtils_SteamUtils009_IsSteamInBigPictureMode( struct cppISteamUtils_SteamUtils009_IsSteamInBigPictureMode_params *params ); - -struct cppISteamUtils_SteamUtils009_StartVRDashboard_params -{ - void *linux_side; -}; -extern void cppISteamUtils_SteamUtils009_StartVRDashboard( struct cppISteamUtils_SteamUtils009_StartVRDashboard_params *params ); - -struct cppISteamUtils_SteamUtils009_IsVRHeadsetStreamingEnabled_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUtils_SteamUtils009_IsVRHeadsetStreamingEnabled( struct cppISteamUtils_SteamUtils009_IsVRHeadsetStreamingEnabled_params *params ); - -struct cppISteamUtils_SteamUtils009_SetVRHeadsetStreamingEnabled_params -{ - void *linux_side; - bool bEnabled; -}; -extern void cppISteamUtils_SteamUtils009_SetVRHeadsetStreamingEnabled( struct cppISteamUtils_SteamUtils009_SetVRHeadsetStreamingEnabled_params *params ); - -struct cppISteamUtils_SteamUtils009_IsSteamChinaLauncher_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUtils_SteamUtils009_IsSteamChinaLauncher( struct cppISteamUtils_SteamUtils009_IsSteamChinaLauncher_params *params ); - -struct cppISteamUtils_SteamUtils009_InitFilterText_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUtils_SteamUtils009_InitFilterText( struct cppISteamUtils_SteamUtils009_InitFilterText_params *params ); - -struct cppISteamUtils_SteamUtils009_FilterText_params -{ - void *linux_side; - int32_t _ret; - char *pchOutFilteredText; - uint32_t nByteSizeOutFilteredText; - const char *pchInputMessage; - bool bLegalOnly; -}; -extern void cppISteamUtils_SteamUtils009_FilterText( struct cppISteamUtils_SteamUtils009_FilterText_params *params ); - -struct cppISteamUtils_SteamUtils009_GetIPv6ConnectivityState_params -{ - void *linux_side; - uint32_t _ret; - uint32_t eProtocol; -}; -extern void cppISteamUtils_SteamUtils009_GetIPv6ConnectivityState( struct cppISteamUtils_SteamUtils009_GetIPv6ConnectivityState_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamUtils_SteamUtils010.cpp b/lsteamclient/cppISteamUtils_SteamUtils010.cpp index 5db622e8..1708f9de 100644 --- a/lsteamclient/cppISteamUtils_SteamUtils010.cpp +++ b/lsteamclient/cppISteamUtils_SteamUtils010.cpp @@ -1,227 +1,300 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamUtils_SteamUtils010.h" -void cppISteamUtils_SteamUtils010_GetSecondsSinceAppActive( struct cppISteamUtils_SteamUtils010_GetSecondsSinceAppActive_params *params ) +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; params->_ret = iface->GetSecondsSinceAppActive( ); + return 0; } -void cppISteamUtils_SteamUtils010_GetSecondsSinceComputerActive( struct cppISteamUtils_SteamUtils010_GetSecondsSinceComputerActive_params *params ) +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; params->_ret = iface->GetSecondsSinceComputerActive( ); + return 0; } -void cppISteamUtils_SteamUtils010_GetConnectedUniverse( struct cppISteamUtils_SteamUtils010_GetConnectedUniverse_params *params ) +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; params->_ret = iface->GetConnectedUniverse( ); + return 0; } -void cppISteamUtils_SteamUtils010_GetServerRealTime( struct cppISteamUtils_SteamUtils010_GetServerRealTime_params *params ) +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; params->_ret = iface->GetServerRealTime( ); + return 0; } -void cppISteamUtils_SteamUtils010_GetIPCountry( struct cppISteamUtils_SteamUtils010_GetIPCountry_params *params ) +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; params->_ret = iface->GetIPCountry( ); + return 0; } -void cppISteamUtils_SteamUtils010_GetImageSize( struct cppISteamUtils_SteamUtils010_GetImageSize_params *params ) +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; params->_ret = iface->GetImageSize( params->iImage, params->pnWidth, params->pnHeight ); + return 0; } -void cppISteamUtils_SteamUtils010_GetImageRGBA( struct cppISteamUtils_SteamUtils010_GetImageRGBA_params *params ) +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; params->_ret = iface->GetImageRGBA( params->iImage, params->pubDest, params->nDestBufferSize ); + return 0; } -void cppISteamUtils_SteamUtils010_GetCSERIPPort( struct cppISteamUtils_SteamUtils010_GetCSERIPPort_params *params ) +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; params->_ret = iface->GetCSERIPPort( params->unIP, params->usPort ); + return 0; } -void cppISteamUtils_SteamUtils010_GetCurrentBatteryPower( struct cppISteamUtils_SteamUtils010_GetCurrentBatteryPower_params *params ) +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; params->_ret = iface->GetCurrentBatteryPower( ); + return 0; } -void cppISteamUtils_SteamUtils010_GetAppID( struct cppISteamUtils_SteamUtils010_GetAppID_params *params ) +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; params->_ret = iface->GetAppID( ); + return 0; } -void cppISteamUtils_SteamUtils010_SetOverlayNotificationPosition( struct cppISteamUtils_SteamUtils010_SetOverlayNotificationPosition_params *params ) +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; iface->SetOverlayNotificationPosition( params->eNotificationPosition ); + return 0; } -void cppISteamUtils_SteamUtils010_IsAPICallCompleted( struct cppISteamUtils_SteamUtils010_IsAPICallCompleted_params *params ) +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; params->_ret = iface->IsAPICallCompleted( params->hSteamAPICall, params->pbFailed ); + return 0; } -void cppISteamUtils_SteamUtils010_GetAPICallFailureReason( struct cppISteamUtils_SteamUtils010_GetAPICallFailureReason_params *params ) +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; params->_ret = iface->GetAPICallFailureReason( params->hSteamAPICall ); + return 0; } -void cppISteamUtils_SteamUtils010_RunFrame( struct cppISteamUtils_SteamUtils010_RunFrame_params *params ) +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; iface->RunFrame( ); + return 0; } -void cppISteamUtils_SteamUtils010_GetIPCCallCount( struct cppISteamUtils_SteamUtils010_GetIPCCallCount_params *params ) +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; params->_ret = iface->GetIPCCallCount( ); + return 0; } -void cppISteamUtils_SteamUtils010_SetWarningMessageHook( struct cppISteamUtils_SteamUtils010_SetWarningMessageHook_params *params ) +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; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); + return 0; } -void cppISteamUtils_SteamUtils010_IsOverlayEnabled( struct cppISteamUtils_SteamUtils010_IsOverlayEnabled_params *params ) +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; params->_ret = iface->IsOverlayEnabled( ); + return 0; } -void cppISteamUtils_SteamUtils010_BOverlayNeedsPresent( struct cppISteamUtils_SteamUtils010_BOverlayNeedsPresent_params *params ) +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; params->_ret = iface->BOverlayNeedsPresent( ); + return 0; } -void cppISteamUtils_SteamUtils010_CheckFileSignature( struct cppISteamUtils_SteamUtils010_CheckFileSignature_params *params ) +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; params->_ret = iface->CheckFileSignature( params->szFileName ); + return 0; } -void cppISteamUtils_SteamUtils010_ShowGamepadTextInput( struct cppISteamUtils_SteamUtils010_ShowGamepadTextInput_params *params ) +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; params->_ret = iface->ShowGamepadTextInput( params->eInputMode, params->eLineInputMode, params->pchDescription, params->unCharMax, params->pchExistingText ); + return 0; } -void cppISteamUtils_SteamUtils010_GetEnteredGamepadTextLength( struct cppISteamUtils_SteamUtils010_GetEnteredGamepadTextLength_params *params ) +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; params->_ret = iface->GetEnteredGamepadTextLength( ); + return 0; } -void cppISteamUtils_SteamUtils010_GetEnteredGamepadTextInput( struct cppISteamUtils_SteamUtils010_GetEnteredGamepadTextInput_params *params ) +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; params->_ret = iface->GetEnteredGamepadTextInput( params->pchText, params->cchText ); + return 0; } -void cppISteamUtils_SteamUtils010_GetSteamUILanguage( struct cppISteamUtils_SteamUtils010_GetSteamUILanguage_params *params ) +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; params->_ret = iface->GetSteamUILanguage( ); + return 0; } -void cppISteamUtils_SteamUtils010_IsSteamRunningInVR( struct cppISteamUtils_SteamUtils010_IsSteamRunningInVR_params *params ) +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; params->_ret = iface->IsSteamRunningInVR( ); + return 0; } -void cppISteamUtils_SteamUtils010_SetOverlayNotificationInset( struct cppISteamUtils_SteamUtils010_SetOverlayNotificationInset_params *params ) +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; iface->SetOverlayNotificationInset( params->nHorizontalInset, params->nVerticalInset ); + return 0; } -void cppISteamUtils_SteamUtils010_IsSteamInBigPictureMode( struct cppISteamUtils_SteamUtils010_IsSteamInBigPictureMode_params *params ) +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; params->_ret = iface->IsSteamInBigPictureMode( ); + return 0; } -void cppISteamUtils_SteamUtils010_StartVRDashboard( struct cppISteamUtils_SteamUtils010_StartVRDashboard_params *params ) +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; iface->StartVRDashboard( ); + return 0; } -void cppISteamUtils_SteamUtils010_IsVRHeadsetStreamingEnabled( struct cppISteamUtils_SteamUtils010_IsVRHeadsetStreamingEnabled_params *params ) +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; params->_ret = iface->IsVRHeadsetStreamingEnabled( ); + return 0; } -void cppISteamUtils_SteamUtils010_SetVRHeadsetStreamingEnabled( struct cppISteamUtils_SteamUtils010_SetVRHeadsetStreamingEnabled_params *params ) +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; iface->SetVRHeadsetStreamingEnabled( params->bEnabled ); + return 0; } -void cppISteamUtils_SteamUtils010_IsSteamChinaLauncher( struct cppISteamUtils_SteamUtils010_IsSteamChinaLauncher_params *params ) +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; params->_ret = iface->IsSteamChinaLauncher( ); + return 0; } -void cppISteamUtils_SteamUtils010_InitFilterText( struct cppISteamUtils_SteamUtils010_InitFilterText_params *params ) +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; params->_ret = iface->InitFilterText( params->unFilterOptions ); + return 0; } -void cppISteamUtils_SteamUtils010_FilterText( struct cppISteamUtils_SteamUtils010_FilterText_params *params ) +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; params->_ret = iface->FilterText( params->eContext, params->sourceSteamID, params->pchInputMessage, params->pchOutFilteredText, params->nByteSizeOutFilteredText ); + return 0; } -void cppISteamUtils_SteamUtils010_GetIPv6ConnectivityState( struct cppISteamUtils_SteamUtils010_GetIPv6ConnectivityState_params *params ) +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; params->_ret = iface->GetIPv6ConnectivityState( params->eProtocol ); + return 0; } -void cppISteamUtils_SteamUtils010_IsSteamRunningOnSteamDeck( struct cppISteamUtils_SteamUtils010_IsSteamRunningOnSteamDeck_params *params ) +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; params->_ret = iface->IsSteamRunningOnSteamDeck( ); + return 0; } -void cppISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput( struct cppISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput_params *params ) +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; params->_ret = iface->ShowFloatingGamepadTextInput( params->eKeyboardMode, params->nTextFieldXPosition, params->nTextFieldYPosition, params->nTextFieldWidth, params->nTextFieldHeight ); + return 0; } -void cppISteamUtils_SteamUtils010_SetGameLauncherMode( struct cppISteamUtils_SteamUtils010_SetGameLauncherMode_params *params ) +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; iface->SetGameLauncherMode( params->bLauncherMode ); + return 0; } -void cppISteamUtils_SteamUtils010_DismissFloatingGamepadTextInput( struct cppISteamUtils_SteamUtils010_DismissFloatingGamepadTextInput_params *params ) +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; params->_ret = iface->DismissFloatingGamepadTextInput( ); + return 0; } diff --git a/lsteamclient/cppISteamUtils_SteamUtils010.h b/lsteamclient/cppISteamUtils_SteamUtils010.h deleted file mode 100644 index fa904ff8..00000000 --- a/lsteamclient/cppISteamUtils_SteamUtils010.h +++ /dev/null @@ -1,313 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamUtils_SteamUtils010_GetSecondsSinceAppActive_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils010_GetSecondsSinceAppActive( struct cppISteamUtils_SteamUtils010_GetSecondsSinceAppActive_params *params ); - -struct cppISteamUtils_SteamUtils010_GetSecondsSinceComputerActive_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils010_GetSecondsSinceComputerActive( struct cppISteamUtils_SteamUtils010_GetSecondsSinceComputerActive_params *params ); - -struct cppISteamUtils_SteamUtils010_GetConnectedUniverse_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils010_GetConnectedUniverse( struct cppISteamUtils_SteamUtils010_GetConnectedUniverse_params *params ); - -struct cppISteamUtils_SteamUtils010_GetServerRealTime_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils010_GetServerRealTime( struct cppISteamUtils_SteamUtils010_GetServerRealTime_params *params ); - -struct cppISteamUtils_SteamUtils010_GetIPCountry_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamUtils_SteamUtils010_GetIPCountry( struct cppISteamUtils_SteamUtils010_GetIPCountry_params *params ); - -struct cppISteamUtils_SteamUtils010_GetImageSize_params -{ - void *linux_side; - bool _ret; - int32_t iImage; - uint32_t *pnWidth; - uint32_t *pnHeight; -}; -extern void cppISteamUtils_SteamUtils010_GetImageSize( struct cppISteamUtils_SteamUtils010_GetImageSize_params *params ); - -struct cppISteamUtils_SteamUtils010_GetImageRGBA_params -{ - void *linux_side; - bool _ret; - int32_t iImage; - uint8_t *pubDest; - int32_t nDestBufferSize; -}; -extern void cppISteamUtils_SteamUtils010_GetImageRGBA( struct cppISteamUtils_SteamUtils010_GetImageRGBA_params *params ); - -struct cppISteamUtils_SteamUtils010_GetCSERIPPort_params -{ - void *linux_side; - bool _ret; - uint32_t *unIP; - uint16_t *usPort; -}; -extern void cppISteamUtils_SteamUtils010_GetCSERIPPort( struct cppISteamUtils_SteamUtils010_GetCSERIPPort_params *params ); - -struct cppISteamUtils_SteamUtils010_GetCurrentBatteryPower_params -{ - void *linux_side; - uint8_t _ret; -}; -extern void cppISteamUtils_SteamUtils010_GetCurrentBatteryPower( struct cppISteamUtils_SteamUtils010_GetCurrentBatteryPower_params *params ); - -struct cppISteamUtils_SteamUtils010_GetAppID_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils010_GetAppID( struct cppISteamUtils_SteamUtils010_GetAppID_params *params ); - -struct cppISteamUtils_SteamUtils010_SetOverlayNotificationPosition_params -{ - void *linux_side; - uint32_t eNotificationPosition; -}; -extern void cppISteamUtils_SteamUtils010_SetOverlayNotificationPosition( struct cppISteamUtils_SteamUtils010_SetOverlayNotificationPosition_params *params ); - -struct cppISteamUtils_SteamUtils010_IsAPICallCompleted_params -{ - void *linux_side; - bool _ret; - uint64_t hSteamAPICall; - bool *pbFailed; -}; -extern void cppISteamUtils_SteamUtils010_IsAPICallCompleted( struct cppISteamUtils_SteamUtils010_IsAPICallCompleted_params *params ); - -struct cppISteamUtils_SteamUtils010_GetAPICallFailureReason_params -{ - void *linux_side; - uint32_t _ret; - uint64_t hSteamAPICall; -}; -extern void cppISteamUtils_SteamUtils010_GetAPICallFailureReason( struct cppISteamUtils_SteamUtils010_GetAPICallFailureReason_params *params ); - -struct cppISteamUtils_SteamUtils010_GetAPICallResult_params -{ - void *linux_side; - bool _ret; - uint64_t hSteamAPICall; - void *pCallback; - int32_t cubCallback; - int32_t iCallbackExpected; - bool *pbFailed; -}; -extern void cppISteamUtils_SteamUtils010_GetAPICallResult( struct cppISteamUtils_SteamUtils010_GetAPICallResult_params *params ); - -struct cppISteamUtils_SteamUtils010_RunFrame_params -{ - void *linux_side; -}; -extern void cppISteamUtils_SteamUtils010_RunFrame( struct cppISteamUtils_SteamUtils010_RunFrame_params *params ); - -struct cppISteamUtils_SteamUtils010_GetIPCCallCount_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils010_GetIPCCallCount( struct cppISteamUtils_SteamUtils010_GetIPCCallCount_params *params ); - -struct cppISteamUtils_SteamUtils010_SetWarningMessageHook_params -{ - void *linux_side; - void (*W_CDECL pFunction)(int32_t, const char *); -}; -extern void cppISteamUtils_SteamUtils010_SetWarningMessageHook( struct cppISteamUtils_SteamUtils010_SetWarningMessageHook_params *params ); - -struct cppISteamUtils_SteamUtils010_IsOverlayEnabled_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUtils_SteamUtils010_IsOverlayEnabled( struct cppISteamUtils_SteamUtils010_IsOverlayEnabled_params *params ); - -struct cppISteamUtils_SteamUtils010_BOverlayNeedsPresent_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUtils_SteamUtils010_BOverlayNeedsPresent( struct cppISteamUtils_SteamUtils010_BOverlayNeedsPresent_params *params ); - -struct cppISteamUtils_SteamUtils010_CheckFileSignature_params -{ - void *linux_side; - uint64_t _ret; - const char *szFileName; -}; -extern void cppISteamUtils_SteamUtils010_CheckFileSignature( struct cppISteamUtils_SteamUtils010_CheckFileSignature_params *params ); - -struct cppISteamUtils_SteamUtils010_ShowGamepadTextInput_params -{ - void *linux_side; - bool _ret; - uint32_t eInputMode; - uint32_t eLineInputMode; - const char *pchDescription; - uint32_t unCharMax; - const char *pchExistingText; -}; -extern void cppISteamUtils_SteamUtils010_ShowGamepadTextInput( struct cppISteamUtils_SteamUtils010_ShowGamepadTextInput_params *params ); - -struct cppISteamUtils_SteamUtils010_GetEnteredGamepadTextLength_params -{ - void *linux_side; - uint32_t _ret; -}; -extern void cppISteamUtils_SteamUtils010_GetEnteredGamepadTextLength( struct cppISteamUtils_SteamUtils010_GetEnteredGamepadTextLength_params *params ); - -struct cppISteamUtils_SteamUtils010_GetEnteredGamepadTextInput_params -{ - void *linux_side; - bool _ret; - char *pchText; - uint32_t cchText; -}; -extern void cppISteamUtils_SteamUtils010_GetEnteredGamepadTextInput( struct cppISteamUtils_SteamUtils010_GetEnteredGamepadTextInput_params *params ); - -struct cppISteamUtils_SteamUtils010_GetSteamUILanguage_params -{ - void *linux_side; - const char *_ret; -}; -extern void cppISteamUtils_SteamUtils010_GetSteamUILanguage( struct cppISteamUtils_SteamUtils010_GetSteamUILanguage_params *params ); - -struct cppISteamUtils_SteamUtils010_IsSteamRunningInVR_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUtils_SteamUtils010_IsSteamRunningInVR( struct cppISteamUtils_SteamUtils010_IsSteamRunningInVR_params *params ); - -struct cppISteamUtils_SteamUtils010_SetOverlayNotificationInset_params -{ - void *linux_side; - int32_t nHorizontalInset; - int32_t nVerticalInset; -}; -extern void cppISteamUtils_SteamUtils010_SetOverlayNotificationInset( struct cppISteamUtils_SteamUtils010_SetOverlayNotificationInset_params *params ); - -struct cppISteamUtils_SteamUtils010_IsSteamInBigPictureMode_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUtils_SteamUtils010_IsSteamInBigPictureMode( struct cppISteamUtils_SteamUtils010_IsSteamInBigPictureMode_params *params ); - -struct cppISteamUtils_SteamUtils010_StartVRDashboard_params -{ - void *linux_side; -}; -extern void cppISteamUtils_SteamUtils010_StartVRDashboard( struct cppISteamUtils_SteamUtils010_StartVRDashboard_params *params ); - -struct cppISteamUtils_SteamUtils010_IsVRHeadsetStreamingEnabled_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUtils_SteamUtils010_IsVRHeadsetStreamingEnabled( struct cppISteamUtils_SteamUtils010_IsVRHeadsetStreamingEnabled_params *params ); - -struct cppISteamUtils_SteamUtils010_SetVRHeadsetStreamingEnabled_params -{ - void *linux_side; - bool bEnabled; -}; -extern void cppISteamUtils_SteamUtils010_SetVRHeadsetStreamingEnabled( struct cppISteamUtils_SteamUtils010_SetVRHeadsetStreamingEnabled_params *params ); - -struct cppISteamUtils_SteamUtils010_IsSteamChinaLauncher_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUtils_SteamUtils010_IsSteamChinaLauncher( struct cppISteamUtils_SteamUtils010_IsSteamChinaLauncher_params *params ); - -struct cppISteamUtils_SteamUtils010_InitFilterText_params -{ - void *linux_side; - bool _ret; - uint32_t unFilterOptions; -}; -extern void cppISteamUtils_SteamUtils010_InitFilterText( struct cppISteamUtils_SteamUtils010_InitFilterText_params *params ); - -struct cppISteamUtils_SteamUtils010_FilterText_params -{ - void *linux_side; - int32_t _ret; - uint32_t eContext; - CSteamID sourceSteamID; - const char *pchInputMessage; - char *pchOutFilteredText; - uint32_t nByteSizeOutFilteredText; -}; -extern void cppISteamUtils_SteamUtils010_FilterText( struct cppISteamUtils_SteamUtils010_FilterText_params *params ); - -struct cppISteamUtils_SteamUtils010_GetIPv6ConnectivityState_params -{ - void *linux_side; - uint32_t _ret; - uint32_t eProtocol; -}; -extern void cppISteamUtils_SteamUtils010_GetIPv6ConnectivityState( struct cppISteamUtils_SteamUtils010_GetIPv6ConnectivityState_params *params ); - -struct cppISteamUtils_SteamUtils010_IsSteamRunningOnSteamDeck_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUtils_SteamUtils010_IsSteamRunningOnSteamDeck( struct cppISteamUtils_SteamUtils010_IsSteamRunningOnSteamDeck_params *params ); - -struct cppISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput_params -{ - void *linux_side; - bool _ret; - uint32_t eKeyboardMode; - int32_t nTextFieldXPosition; - int32_t nTextFieldYPosition; - int32_t nTextFieldWidth; - int32_t nTextFieldHeight; -}; -extern void cppISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput( struct cppISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput_params *params ); - -struct cppISteamUtils_SteamUtils010_SetGameLauncherMode_params -{ - void *linux_side; - bool bLauncherMode; -}; -extern void cppISteamUtils_SteamUtils010_SetGameLauncherMode( struct cppISteamUtils_SteamUtils010_SetGameLauncherMode_params *params ); - -struct cppISteamUtils_SteamUtils010_DismissFloatingGamepadTextInput_params -{ - void *linux_side; - bool _ret; -}; -extern void cppISteamUtils_SteamUtils010_DismissFloatingGamepadTextInput( struct cppISteamUtils_SteamUtils010_DismissFloatingGamepadTextInput_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamVideo_STEAMVIDEO_INTERFACE_V001.cpp b/lsteamclient/cppISteamVideo_STEAMVIDEO_INTERFACE_V001.cpp index 44db995d..43a36080 100644 --- a/lsteamclient/cppISteamVideo_STEAMVIDEO_INTERFACE_V001.cpp +++ b/lsteamclient/cppISteamVideo_STEAMVIDEO_INTERFACE_V001.cpp @@ -1,16 +1,19 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamVideo_STEAMVIDEO_INTERFACE_V001.h" -void cppISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL( struct cppISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL_params *params ) +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; iface->GetVideoURL( params->unVideoAppID ); + return 0; } -void cppISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting( struct cppISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting_params *params ) +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; params->_ret = iface->IsBroadcasting( params->pnNumViewers ); + return 0; } diff --git a/lsteamclient/cppISteamVideo_STEAMVIDEO_INTERFACE_V001.h b/lsteamclient/cppISteamVideo_STEAMVIDEO_INTERFACE_V001.h deleted file mode 100644 index 964b76fd..00000000 --- a/lsteamclient/cppISteamVideo_STEAMVIDEO_INTERFACE_V001.h +++ /dev/null @@ -1,27 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL_params -{ - void *linux_side; - uint32_t unVideoAppID; -}; -extern void cppISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL( struct cppISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL_params *params ); - -struct cppISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting_params -{ - void *linux_side; - bool _ret; - int32_t *pnNumViewers; -}; -extern void cppISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting( struct cppISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/cppISteamVideo_STEAMVIDEO_INTERFACE_V002.cpp b/lsteamclient/cppISteamVideo_STEAMVIDEO_INTERFACE_V002.cpp index d86a9a34..218ca20b 100644 --- a/lsteamclient/cppISteamVideo_STEAMVIDEO_INTERFACE_V002.cpp +++ b/lsteamclient/cppISteamVideo_STEAMVIDEO_INTERFACE_V002.cpp @@ -1,28 +1,35 @@ /* This file is auto-generated, do not edit. */ #include "unix_private.h" -#include "cppISteamVideo_STEAMVIDEO_INTERFACE_V002.h" -void cppISteamVideo_STEAMVIDEO_INTERFACE_V002_GetVideoURL( struct cppISteamVideo_STEAMVIDEO_INTERFACE_V002_GetVideoURL_params *params ) +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; iface->GetVideoURL( params->unVideoAppID ); + return 0; } -void cppISteamVideo_STEAMVIDEO_INTERFACE_V002_IsBroadcasting( struct cppISteamVideo_STEAMVIDEO_INTERFACE_V002_IsBroadcasting_params *params ) +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; params->_ret = iface->IsBroadcasting( params->pnNumViewers ); + return 0; } -void cppISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFSettings( struct cppISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFSettings_params *params ) +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; iface->GetOPFSettings( params->unVideoAppID ); + return 0; } -void cppISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringForApp( struct cppISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringForApp_params *params ) +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; params->_ret = iface->GetOPFStringForApp( params->unVideoAppID, params->pchBuffer, params->pnBufferSize ); + return 0; } diff --git a/lsteamclient/cppISteamVideo_STEAMVIDEO_INTERFACE_V002.h b/lsteamclient/cppISteamVideo_STEAMVIDEO_INTERFACE_V002.h deleted file mode 100644 index 376da1fb..00000000 --- a/lsteamclient/cppISteamVideo_STEAMVIDEO_INTERFACE_V002.h +++ /dev/null @@ -1,44 +0,0 @@ -/* This file is auto-generated, do not edit. */ -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -struct cppISteamVideo_STEAMVIDEO_INTERFACE_V002_GetVideoURL_params -{ - void *linux_side; - uint32_t unVideoAppID; -}; -extern void cppISteamVideo_STEAMVIDEO_INTERFACE_V002_GetVideoURL( struct cppISteamVideo_STEAMVIDEO_INTERFACE_V002_GetVideoURL_params *params ); - -struct cppISteamVideo_STEAMVIDEO_INTERFACE_V002_IsBroadcasting_params -{ - void *linux_side; - bool _ret; - int32_t *pnNumViewers; -}; -extern void cppISteamVideo_STEAMVIDEO_INTERFACE_V002_IsBroadcasting( struct cppISteamVideo_STEAMVIDEO_INTERFACE_V002_IsBroadcasting_params *params ); - -struct cppISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFSettings_params -{ - void *linux_side; - uint32_t unVideoAppID; -}; -extern void cppISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFSettings( struct cppISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFSettings_params *params ); - -struct cppISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringForApp_params -{ - void *linux_side; - bool _ret; - uint32_t unVideoAppID; - char *pchBuffer; - int32_t *pnBufferSize; -}; -extern void cppISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringForApp( struct cppISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringForApp_params *params ); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ diff --git a/lsteamclient/gen_wrapper.py b/lsteamclient/gen_wrapper.py index e72d7035..6d63fd28 100755 --- a/lsteamclient/gen_wrapper.py +++ b/lsteamclient/gen_wrapper.py @@ -576,11 +576,12 @@ class Union(Struct): class Method: - def __init__(self, sdkver, abi, cursor, index, override): + def __init__(self, sdkver, abi, cursor, klass, index, override): self._sdkver = sdkver self._abi = abi self._cursor = cursor + self._klass = klass self._index = index self._override = override @@ -592,22 +593,52 @@ class Method: if self._override > 1: return f'{self.spelling}_{self._override}' return self.spelling + @property + def full_name(self): + return f'{self._klass.full_name}_{self.name}' + def get_arguments(self): return self._cursor.get_arguments() + def write_params(self, out): + returns_record = self.result_type.get_canonical().kind == TypeKind.RECORD + + ret = "*_ret" if returns_record else "_ret" + ret = f'{declspec(self.result_type, ret, "w_")}' + + names = [p.spelling if p.spelling != "" else f'_{chr(0x61 + i)}' + for i, p in enumerate(self.get_arguments())] + params = [declspec(p, names[i], "w_") for i, p in enumerate(self.get_arguments())] + + if self.result_type.kind != TypeKind.VOID: + params = [ret] + params + names = ['_ret'] + names + + params = ['struct u_steam_iface *linux_side'] + params + names = ['linux_side'] + names + + out(f'struct {self.full_name}_params\n') + out(u'{\n') + for param in params: + out(f' {param};\n') + out(u'};\n\n') + def get_children(self): return self._cursor.get_children() class Destructor(Method): - def __init__(self, sdkver, abi, cursor, index, override): - super().__init__(sdkver, abi, cursor, index, override) + def __init__(self, sdkver, abi, cursor, klass, index, override): + super().__init__(sdkver, abi, cursor, klass, index, override) @property def name(self): if self._override > 1: return f'destructor_{self._override}' return 'destructor' + def write_params(self, out): + pass + class Class: def __init__(self, sdkver, abi, cursor): @@ -640,9 +671,9 @@ class Class: index, override = overrides.get(method.spelling, (i, 1)) overrides[method.spelling] = (index, override + 1) if method.kind == CursorKind.DESTRUCTOR: - self._methods.append(Destructor(self._sdkver, self._abi, method, index, override)) + self._methods.append(Destructor(self._sdkver, self._abi, method, self, index, override)) else: - self._methods.append(Method(self._sdkver, self._abi, method, index, override)) + self._methods.append(Method(self._sdkver, self._abi, method, self, index, override)) return self._methods @@ -843,29 +874,7 @@ def declspec(decl, name, prefix, wrapped=False): return f'{decl.spelling}{name}' -def handle_method_hpp(method, cppname, out): - returns_record = method.result_type.get_canonical().kind == TypeKind.RECORD - - ret = "*_ret" if returns_record else "_ret" - ret = f'{declspec(method.result_type, ret, "w_")}' - - names = [p.spelling if p.spelling != "" else f'_{chr(0x61 + i)}' - for i, p in enumerate(method.get_arguments())] - params = [declspec(p, names[i], "w_") for i, p in enumerate(method.get_arguments())] - - if method.result_type.kind != TypeKind.VOID: - params = [ret] + params - params = ['void *linux_side'] + params - - out(f'struct {cppname}_{method.name}_params\n') - out(u'{\n') - for param in params: - out(f' {param};\n') - out(u'};\n') - out(f'extern void {cppname}_{method.name}( struct {cppname}_{method.name}_params *params );\n\n') - - -def handle_method_cpp(method, classname, cppname, out): +def handle_method_cpp(method, classname, out): returns_void = method.result_type.kind == TypeKind.VOID returns_record = method.result_type.get_canonical().kind == TypeKind.RECORD @@ -882,8 +891,9 @@ def handle_method_cpp(method, classname, cppname, out): names = ['linux_side'] + names - out(f'void {cppname}_{method.name}( struct {cppname}_{method.name}_params *params )\n') + 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') params = list(zip(names[1:], method.get_arguments())) @@ -959,6 +969,7 @@ def handle_method_cpp(method, classname, cppname, out): for name, param in sorted(need_output.items()): out(f' *params->{name} = u_{name};\n') + out(u' return 0;\n') out(u'}\n\n') @@ -976,7 +987,7 @@ def handle_thiscall_wrapper(klass, method, out): out(f'DEFINE_THISCALL_WRAPPER({name}, {size})\n') -def handle_method_c(klass, method, winclassname, cppname, out): +def handle_method_c(klass, method, winclassname, out): returns_void = method.result_type.kind == TypeKind.VOID returns_record = method.result_type.get_canonical().kind == TypeKind.RECORD @@ -997,7 +1008,7 @@ def handle_method_c(klass, method, winclassname, cppname, out): out(f'{ret}__thiscall {winclassname}_{method.name}({", ".join(params)})\n') out(u'{\n') - out(f' struct {cppname}_{method.name}_params params =\n') + out(f' struct {method.full_name}_params params =\n') out(u' {\n') out(u' .linux_side = _this->u_iface,\n') for name in names[1:]: out(f' .{name} = {name},\n') @@ -1014,7 +1025,7 @@ def handle_method_c(klass, method, winclassname, cppname, out): out(u' TRACE("%p\\n", _this);\n') - out(f' {cppname}_{method.name}( ¶ms );\n') + out(f' STEAMCLIENT_CALL( {method.full_name}, ¶ms );\n') if method.name.startswith('CreateFakeUDPPort'): out(u' params._ret = create_winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001( params._ret );\n') @@ -1043,50 +1054,24 @@ def handle_method_c(klass, method, winclassname, cppname, out): def handle_class(klass): cppname = f"cpp{klass.full_name}" - with open(f"{cppname}.h", "w") as file: - out = file.write - - out(u'/* This file is auto-generated, do not edit. */\n') - out(u'#include \n') - out(u'#include \n') - out(u'#include \n') - out(u'\n') - out(u'#ifdef __cplusplus\n') - out(u'extern "C" {\n') - out(u'#endif /* __cplusplus */\n') - out(u'\n') - - for method in klass.methods: - if type(method) is Destructor: - continue - handle_method_hpp(method, cppname, out) - - out(u'#ifdef __cplusplus\n') - out(u'} /* extern "C" */\n') - out(u'#endif /* __cplusplus */\n') - with open(f"{cppname}.cpp", "w") as file: out = file.write out(u'/* This file is auto-generated, do not edit. */\n') - out(u'#include "unix_private.h"\n') - out(f'#include "{cppname}.h"\n\n') + out(u'#include "unix_private.h"\n\n') for method in klass.methods: if type(method) is Destructor: continue if is_manual_method(klass, method, "u"): continue - handle_method_cpp(method, klass.name, cppname, out) + handle_method_cpp(method, klass.name, out) winclassname = f"win{klass.full_name}" with open(f"win{klass.name}.c", "a") as file: out = file.write - out(f'#include "{cppname}.h"\n') - out(u'\n') - for method in klass.methods: handle_thiscall_wrapper(klass, method, out) out('\n') @@ -1097,7 +1082,7 @@ def handle_class(klass): if type(method) is Destructor: out(f'void __thiscall {winclassname}_{method.name}(struct w_steam_iface *_this)\n{{/* never called */}}\n\n') else: - handle_method_c(klass, method, winclassname, cppname, out) + handle_method_c(klass, method, winclassname, out) out(f'extern vtable_ptr {winclassname}_vtable;\n') out(u'\n') @@ -1463,16 +1448,67 @@ with open('steamclient_structs_generated.h', 'w') as file: out(u'\n') +all_methods = [(k, m) for _, k in sorted(all_classes.items()) + for m in k.methods] + with open("unix_private_generated.h", "w") as file: out = file.write out(u'/* This file is auto-generated, do not edit. */\n\n') + out(u'#ifdef __cplusplus\n') + out(u'extern "C" {\n') + out(u'#endif /* __cplusplus */\n') + out(u'\n') for klass in all_classes.values(): sdkver = klass._sdkver klass.write_definition(out, "u_") out(u'\n') + for klass, method in all_methods: + sdkver = klass._sdkver + if type(method) is Destructor: + continue + out(f'NTSTATUS {method.full_name}( void * );\n') + out(u'\n') + + out(u'#ifdef __cplusplus\n') + out(u'} /* extern "C" */\n') + out(u'#endif /* __cplusplus */\n') + + +with open(u"unixlib_generated.h", "w") as file: + out = file.write + + out(u'/* This file is auto-generated, do not edit. */\n') + out(u'#include \n') + out(u'#include \n') + out(u'#include \n') + out(u'#include \n') + out(u'\n') + out(u'#ifdef __cplusplus\n') + out(u'extern "C" {\n') + out(u'#endif /* __cplusplus */\n') + out(u'\n') + + for klass, method in all_methods: + sdkver = klass._sdkver + method.write_params(out) + + out(u'enum unix_funcs\n') + out(u'{\n') + for klass, method in all_methods: + sdkver = klass._sdkver + if type(method) is Destructor: + continue + out(f' unix_{method.full_name},\n') + out(u'};\n') + out(u'\n') + + out(u'#ifdef __cplusplus\n') + out(u'} /* extern "C" */\n') + out(u'#endif /* __cplusplus */\n') + with open('unixlib_generated.cpp', 'w') as file: out = file.write @@ -1480,6 +1516,16 @@ with open('unixlib_generated.cpp', 'w') as file: out(u'/* This file is auto-generated, do not edit. */\n\n') out(u'#include "unix_private.h"\n\n') + out(u'extern "C" const unixlib_entry_t __wine_unix_call_funcs[] =\n') + out(u'{\n') + for klass, method in all_methods: + sdkver = klass._sdkver + if type(method) is Destructor: + continue + out(f' {method.full_name},\n') + out(u'};\n') + out(u'\n') + callbacks = [] for name in sorted(unique_structs, key=struct_order): diff --git a/lsteamclient/steam_input_manual.c b/lsteamclient/steam_input_manual.c index 8281c2c6..f27670b5 100644 --- a/lsteamclient/steam_input_manual.c +++ b/lsteamclient/steam_input_manual.c @@ -1,21 +1,12 @@ #include "steamclient_private.h" -#include "cppISteamController_SteamController005.h" -#include "cppISteamController_SteamController006.h" -#include "cppISteamController_SteamController007.h" -#include "cppISteamController_SteamController008.h" -#include "cppISteamInput_SteamInput001.h" -#include "cppISteamInput_SteamInput002.h" -#include "cppISteamInput_SteamInput005.h" -#include "cppISteamInput_SteamInput006.h" - WINE_DEFAULT_DEBUG_CHANNEL(steamclient); /* ISteamController_SteamController005 */ const char *__thiscall winISteamController_SteamController005_GetGlyphForActionOrigin( struct w_steam_iface *_this, uint32_t eOrigin ) { - struct cppISteamController_SteamController005_GetGlyphForActionOrigin_params params = + struct ISteamController_SteamController005_GetGlyphForActionOrigin_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, @@ -23,7 +14,7 @@ const char *__thiscall winISteamController_SteamController005_GetGlyphForActionO TRACE( "%p\n", _this ); - cppISteamController_SteamController005_GetGlyphForActionOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController005_GetGlyphForActionOrigin, ¶ms ); return params._ret; } @@ -31,7 +22,7 @@ const char *__thiscall winISteamController_SteamController005_GetGlyphForActionO const char *__thiscall winISteamController_SteamController006_GetGlyphForActionOrigin( struct w_steam_iface *_this, uint32_t eOrigin ) { - struct cppISteamController_SteamController006_GetGlyphForActionOrigin_params params = + struct ISteamController_SteamController006_GetGlyphForActionOrigin_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, @@ -39,7 +30,7 @@ const char *__thiscall winISteamController_SteamController006_GetGlyphForActionO TRACE( "%p\n", _this ); - cppISteamController_SteamController006_GetGlyphForActionOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController006_GetGlyphForActionOrigin, ¶ms ); return params._ret; } @@ -47,7 +38,7 @@ const char *__thiscall winISteamController_SteamController006_GetGlyphForActionO const char *__thiscall winISteamController_SteamController007_GetGlyphForActionOrigin( struct w_steam_iface *_this, uint32_t eOrigin ) { - struct cppISteamController_SteamController007_GetGlyphForActionOrigin_params params = + struct ISteamController_SteamController007_GetGlyphForActionOrigin_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, @@ -55,13 +46,13 @@ const char *__thiscall winISteamController_SteamController007_GetGlyphForActionO TRACE( "%p\n", _this ); - cppISteamController_SteamController007_GetGlyphForActionOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController007_GetGlyphForActionOrigin, ¶ms ); return params._ret; } const char *__thiscall winISteamController_SteamController007_GetGlyphForXboxOrigin( struct w_steam_iface *_this, uint32_t eOrigin ) { - struct cppISteamController_SteamController007_GetGlyphForXboxOrigin_params params = + struct ISteamController_SteamController007_GetGlyphForXboxOrigin_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, @@ -69,7 +60,7 @@ const char *__thiscall winISteamController_SteamController007_GetGlyphForXboxOri TRACE( "%p\n", _this ); - cppISteamController_SteamController007_GetGlyphForXboxOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController007_GetGlyphForXboxOrigin, ¶ms ); return params._ret; } @@ -77,7 +68,7 @@ const char *__thiscall winISteamController_SteamController007_GetGlyphForXboxOri const char *__thiscall winISteamController_SteamController008_GetGlyphForActionOrigin( struct w_steam_iface *_this, uint32_t eOrigin ) { - struct cppISteamController_SteamController008_GetGlyphForActionOrigin_params params = + struct ISteamController_SteamController008_GetGlyphForActionOrigin_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, @@ -85,13 +76,13 @@ const char *__thiscall winISteamController_SteamController008_GetGlyphForActionO TRACE( "%p\n", _this ); - cppISteamController_SteamController008_GetGlyphForActionOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController008_GetGlyphForActionOrigin, ¶ms ); return params._ret; } const char *__thiscall winISteamController_SteamController008_GetGlyphForXboxOrigin( struct w_steam_iface *_this, uint32_t eOrigin ) { - struct cppISteamController_SteamController008_GetGlyphForXboxOrigin_params params = + struct ISteamController_SteamController008_GetGlyphForXboxOrigin_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, @@ -99,7 +90,7 @@ const char *__thiscall winISteamController_SteamController008_GetGlyphForXboxOri TRACE( "%p\n", _this ); - cppISteamController_SteamController008_GetGlyphForXboxOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController008_GetGlyphForXboxOrigin, ¶ms ); return params._ret; } @@ -107,7 +98,7 @@ const char *__thiscall winISteamController_SteamController008_GetGlyphForXboxOri const char *__thiscall winISteamInput_SteamInput001_GetGlyphForActionOrigin( struct w_steam_iface *_this, uint32_t eOrigin ) { - struct cppISteamInput_SteamInput001_GetGlyphForActionOrigin_params params = + struct ISteamInput_SteamInput001_GetGlyphForActionOrigin_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, @@ -115,13 +106,13 @@ const char *__thiscall winISteamInput_SteamInput001_GetGlyphForActionOrigin( str TRACE( "%p\n", _this ); - cppISteamInput_SteamInput001_GetGlyphForActionOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_GetGlyphForActionOrigin, ¶ms ); return params._ret; } const char *__thiscall winISteamInput_SteamInput001_GetGlyphForXboxOrigin( struct w_steam_iface *_this, uint32_t eOrigin ) { - struct cppISteamInput_SteamInput001_GetGlyphForXboxOrigin_params params = + struct ISteamInput_SteamInput001_GetGlyphForXboxOrigin_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, @@ -129,7 +120,7 @@ const char *__thiscall winISteamInput_SteamInput001_GetGlyphForXboxOrigin( struc TRACE( "%p\n", _this ); - cppISteamInput_SteamInput001_GetGlyphForXboxOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_GetGlyphForXboxOrigin, ¶ms ); return params._ret; } @@ -137,7 +128,7 @@ const char *__thiscall winISteamInput_SteamInput001_GetGlyphForXboxOrigin( struc const char *__thiscall winISteamInput_SteamInput002_GetGlyphForActionOrigin( struct w_steam_iface *_this, uint32_t eOrigin ) { - struct cppISteamInput_SteamInput002_GetGlyphForActionOrigin_params params = + struct ISteamInput_SteamInput002_GetGlyphForActionOrigin_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, @@ -145,13 +136,13 @@ const char *__thiscall winISteamInput_SteamInput002_GetGlyphForActionOrigin( str TRACE( "%p\n", _this ); - cppISteamInput_SteamInput002_GetGlyphForActionOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_GetGlyphForActionOrigin, ¶ms ); return params._ret; } const char *__thiscall winISteamInput_SteamInput002_GetGlyphForXboxOrigin( struct w_steam_iface *_this, uint32_t eOrigin ) { - struct cppISteamInput_SteamInput002_GetGlyphForXboxOrigin_params params = + struct ISteamInput_SteamInput002_GetGlyphForXboxOrigin_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, @@ -159,7 +150,7 @@ const char *__thiscall winISteamInput_SteamInput002_GetGlyphForXboxOrigin( struc TRACE( "%p\n", _this ); - cppISteamInput_SteamInput002_GetGlyphForXboxOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_GetGlyphForXboxOrigin, ¶ms ); return params._ret; } @@ -168,7 +159,7 @@ const char *__thiscall winISteamInput_SteamInput002_GetGlyphForXboxOrigin( struc const char *__thiscall winISteamInput_SteamInput005_GetGlyphPNGForActionOrigin( struct w_steam_iface *_this, uint32_t eOrigin, uint32_t eSize, uint32_t unFlags ) { - struct cppISteamInput_SteamInput005_GetGlyphPNGForActionOrigin_params params = + struct ISteamInput_SteamInput005_GetGlyphPNGForActionOrigin_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, @@ -178,14 +169,14 @@ const char *__thiscall winISteamInput_SteamInput005_GetGlyphPNGForActionOrigin( TRACE( "%p\n", _this ); - cppISteamInput_SteamInput005_GetGlyphPNGForActionOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_GetGlyphPNGForActionOrigin, ¶ms ); return params._ret; } const char *__thiscall winISteamInput_SteamInput005_GetGlyphSVGForActionOrigin( struct w_steam_iface *_this, uint32_t eOrigin, uint32_t unFlags ) { - struct cppISteamInput_SteamInput005_GetGlyphSVGForActionOrigin_params params = + struct ISteamInput_SteamInput005_GetGlyphSVGForActionOrigin_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, @@ -194,13 +185,13 @@ const char *__thiscall winISteamInput_SteamInput005_GetGlyphSVGForActionOrigin( TRACE( "%p\n", _this ); - cppISteamInput_SteamInput005_GetGlyphSVGForActionOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_GetGlyphSVGForActionOrigin, ¶ms ); return params._ret; } const char *__thiscall winISteamInput_SteamInput005_GetGlyphForActionOrigin_Legacy( struct w_steam_iface *_this, uint32_t eOrigin ) { - struct cppISteamInput_SteamInput005_GetGlyphForActionOrigin_Legacy_params params = + struct ISteamInput_SteamInput005_GetGlyphForActionOrigin_Legacy_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, @@ -208,13 +199,13 @@ const char *__thiscall winISteamInput_SteamInput005_GetGlyphForActionOrigin_Lega TRACE( "%p\n", _this ); - cppISteamInput_SteamInput005_GetGlyphForActionOrigin_Legacy( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_GetGlyphForActionOrigin_Legacy, ¶ms ); return params._ret; } const char *__thiscall winISteamInput_SteamInput005_GetGlyphForXboxOrigin( struct w_steam_iface *_this, uint32_t eOrigin ) { - struct cppISteamInput_SteamInput005_GetGlyphForXboxOrigin_params params = + struct ISteamInput_SteamInput005_GetGlyphForXboxOrigin_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, @@ -222,7 +213,7 @@ const char *__thiscall winISteamInput_SteamInput005_GetGlyphForXboxOrigin( struc TRACE( "%p\n", _this ); - cppISteamInput_SteamInput005_GetGlyphForXboxOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_GetGlyphForXboxOrigin, ¶ms ); return params._ret; } @@ -231,7 +222,7 @@ const char *__thiscall winISteamInput_SteamInput005_GetGlyphForXboxOrigin( struc const char *__thiscall winISteamInput_SteamInput006_GetGlyphPNGForActionOrigin( struct w_steam_iface *_this, uint32_t eOrigin, uint32_t eSize, uint32_t unFlags ) { - struct cppISteamInput_SteamInput006_GetGlyphPNGForActionOrigin_params params = + struct ISteamInput_SteamInput006_GetGlyphPNGForActionOrigin_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, @@ -241,14 +232,14 @@ const char *__thiscall winISteamInput_SteamInput006_GetGlyphPNGForActionOrigin( TRACE( "%p\n", _this ); - cppISteamInput_SteamInput006_GetGlyphPNGForActionOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_GetGlyphPNGForActionOrigin, ¶ms ); return params._ret; } const char *__thiscall winISteamInput_SteamInput006_GetGlyphSVGForActionOrigin( struct w_steam_iface *_this, uint32_t eOrigin, uint32_t unFlags ) { - struct cppISteamInput_SteamInput006_GetGlyphSVGForActionOrigin_params params = + struct ISteamInput_SteamInput006_GetGlyphSVGForActionOrigin_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, @@ -257,13 +248,13 @@ const char *__thiscall winISteamInput_SteamInput006_GetGlyphSVGForActionOrigin( TRACE( "%p\n", _this ); - cppISteamInput_SteamInput006_GetGlyphSVGForActionOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_GetGlyphSVGForActionOrigin, ¶ms ); return params._ret; } const char *__thiscall winISteamInput_SteamInput006_GetGlyphForActionOrigin_Legacy( struct w_steam_iface *_this, uint32_t eOrigin ) { - struct cppISteamInput_SteamInput006_GetGlyphForActionOrigin_Legacy_params params = + struct ISteamInput_SteamInput006_GetGlyphForActionOrigin_Legacy_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, @@ -271,13 +262,13 @@ const char *__thiscall winISteamInput_SteamInput006_GetGlyphForActionOrigin_Lega TRACE( "%p\n", _this ); - cppISteamInput_SteamInput006_GetGlyphForActionOrigin_Legacy( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_GetGlyphForActionOrigin_Legacy, ¶ms ); return params._ret; } const char *__thiscall winISteamInput_SteamInput006_GetGlyphForXboxOrigin( struct w_steam_iface *_this, uint32_t eOrigin ) { - struct cppISteamInput_SteamInput006_GetGlyphForXboxOrigin_params params = + struct ISteamInput_SteamInput006_GetGlyphForXboxOrigin_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, @@ -285,6 +276,6 @@ const char *__thiscall winISteamInput_SteamInput006_GetGlyphForXboxOrigin( struc TRACE( "%p\n", _this ); - cppISteamInput_SteamInput006_GetGlyphForXboxOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_GetGlyphForXboxOrigin, ¶ms ); return params._ret; } diff --git a/lsteamclient/steam_networking_manual.c b/lsteamclient/steam_networking_manual.c index 46386298..7b401177 100644 --- a/lsteamclient/steam_networking_manual.c +++ b/lsteamclient/steam_networking_manual.c @@ -1,16 +1,5 @@ #include "steamclient_private.h" -#include "cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001.h" -#include "cppISteamNetworkingMessages_SteamNetworkingMessages002.h" -#include "cppISteamNetworkingSockets_SteamNetworkingSockets002.h" -#include "cppISteamNetworkingSockets_SteamNetworkingSockets004.h" -#include "cppISteamNetworkingSockets_SteamNetworkingSockets006.h" -#include "cppISteamNetworkingSockets_SteamNetworkingSockets008.h" -#include "cppISteamNetworkingSockets_SteamNetworkingSockets009.h" -#include "cppISteamNetworkingSockets_SteamNetworkingSockets012.h" -#include "cppISteamNetworkingUtils_SteamNetworkingUtils003.h" -#include "cppISteamNetworkingUtils_SteamNetworkingUtils004.h" - WINE_DEFAULT_DEBUG_CHANNEL(steamclient); struct networking_message_pool @@ -248,7 +237,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveM uint32_t hConn, w_SteamNetworkingMessage_t_144 **ppOutMessages, int32_t nMaxMessages ) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnConnection_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnConnection_params params = { .linux_side = _this->u_iface, .hConn = hConn, @@ -259,7 +248,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveM TRACE( "%p\n", _this ); if (!networking_message_pool_create_144( nMaxMessages, params.ppOutMessages )) return 0; - cppISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnConnection, ¶ms ); if (!networking_message_pool_receive_144( nMaxMessages, params._ret, params.ppOutMessages )) return 0; return params._ret; @@ -268,7 +257,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveM int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnListenSocket( struct w_steam_iface *_this, uint32_t hSocket, w_SteamNetworkingMessage_t_144 **ppOutMessages, int32_t nMaxMessages ) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnListenSocket_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnListenSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, @@ -279,7 +268,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveM TRACE( "%p\n", _this ); if (!networking_message_pool_create_144( nMaxMessages, params.ppOutMessages )) return 0; - cppISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnListenSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnListenSocket, ¶ms ); if (!networking_message_pool_receive_144( nMaxMessages, params._ret, params.ppOutMessages )) return 0; return params._ret; @@ -291,7 +280,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveM uint32_t hConn, w_SteamNetworkingMessage_t_144 **ppOutMessages, int32_t nMaxMessages ) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnConnection_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnConnection_params params = { .linux_side = _this->u_iface, .hConn = hConn, @@ -302,7 +291,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveM TRACE( "%p\n", _this ); if (!networking_message_pool_create_144( nMaxMessages, params.ppOutMessages )) return 0; - cppISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnConnection, ¶ms ); if (!networking_message_pool_receive_144( nMaxMessages, params._ret, params.ppOutMessages )) return 0; return params._ret; @@ -311,7 +300,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveM int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnListenSocket( struct w_steam_iface *_this, uint32_t hSocket, w_SteamNetworkingMessage_t_144 **ppOutMessages, int32_t nMaxMessages ) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnListenSocket_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnListenSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, @@ -322,7 +311,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveM TRACE( "%p\n", _this ); if (!networking_message_pool_create_144( nMaxMessages, params.ppOutMessages )) return 0; - cppISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnListenSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnListenSocket, ¶ms ); if (!networking_message_pool_receive_144( nMaxMessages, params._ret, params.ppOutMessages )) return 0; return params._ret; @@ -334,7 +323,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveM uint32_t hConn, w_SteamNetworkingMessage_t_147 **ppOutMessages, int32_t nMaxMessages ) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnConnection_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnConnection_params params = { .linux_side = _this->u_iface, .hConn = hConn, @@ -345,7 +334,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveM TRACE( "%p\n", _this ); if (!networking_message_pool_create_147( nMaxMessages, params.ppOutMessages )) return 0; - cppISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnConnection, ¶ms ); if (!networking_message_pool_receive_147( nMaxMessages, params._ret, params.ppOutMessages )) return 0; return params._ret; @@ -354,7 +343,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveM int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnListenSocket( struct w_steam_iface *_this, uint32_t hSocket, w_SteamNetworkingMessage_t_147 **ppOutMessages, int32_t nMaxMessages ) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnListenSocket_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnListenSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, @@ -365,7 +354,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveM TRACE( "%p\n", _this ); if (!networking_message_pool_create_147( nMaxMessages, params.ppOutMessages )) return 0; - cppISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnListenSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnListenSocket, ¶ms ); if (!networking_message_pool_receive_147( nMaxMessages, params._ret, params.ppOutMessages )) return 0; return params._ret; @@ -373,7 +362,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveM void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_SendMessages(struct w_steam_iface *_this, int32_t nMessages, w_SteamNetworkingMessage_t_147 **pMessages, int64_t *pOutMessageNumberOrResult) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_SendMessages_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_SendMessages_params params = { .linux_side = _this->u_iface, .nMessages = nMessages, @@ -384,7 +373,7 @@ void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_SendMessage TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_SendMessages( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_SendMessages, ¶ms ); for (i = 0; i < nMessages; i++) pMessages[i]->m_pfnRelease( pMessages[i] ); } @@ -394,7 +383,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveM uint32_t hConn, w_SteamNetworkingMessage_t_147 **ppOutMessages, int32_t nMaxMessages ) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnConnection_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnConnection_params params = { .linux_side = _this->u_iface, .hConn = hConn, @@ -405,7 +394,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveM TRACE( "%p\n", _this ); if (!networking_message_pool_create_147( nMaxMessages, params.ppOutMessages )) return 0; - cppISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnConnection, ¶ms ); if (!networking_message_pool_receive_147( nMaxMessages, params._ret, params.ppOutMessages )) return 0; return params._ret; @@ -415,7 +404,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveM w_SteamNetworkingMessage_t_147 **ppOutMessages, int32_t nMaxMessages ) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnPollGroup_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnPollGroup_params params = { .linux_side = _this->u_iface, .hPollGroup = hPollGroup, @@ -426,7 +415,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveM TRACE( "%p\n", _this ); if (!networking_message_pool_create_147( nMaxMessages, params.ppOutMessages )) return 0; - cppISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnPollGroup( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnPollGroup, ¶ms ); if (!networking_message_pool_receive_147( nMaxMessages, params._ret, params.ppOutMessages )) return 0; return params._ret; @@ -434,7 +423,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveM void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SendMessages(struct w_steam_iface *_this, int32_t nMessages, w_SteamNetworkingMessage_t_147 *const *pMessages, int64_t *pOutMessageNumberOrResult) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_SendMessages_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_SendMessages_params params = { .linux_side = _this->u_iface, .nMessages = nMessages, @@ -445,7 +434,7 @@ void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SendMessage TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_SendMessages( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_SendMessages, ¶ms ); for (i = 0; i < nMessages; i++) pMessages[i]->m_pfnRelease( pMessages[i] ); } @@ -455,7 +444,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveM uint32_t hConn, w_SteamNetworkingMessage_t_147 **ppOutMessages, int32_t nMaxMessages ) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnConnection_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnConnection_params params = { .linux_side = _this->u_iface, .hConn = hConn, @@ -466,7 +455,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveM TRACE( "%p\n", _this ); if (!networking_message_pool_create_147( nMaxMessages, params.ppOutMessages )) return 0; - cppISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnConnection, ¶ms ); if (!networking_message_pool_receive_147( nMaxMessages, params._ret, params.ppOutMessages )) return 0; return params._ret; @@ -476,7 +465,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveM w_SteamNetworkingMessage_t_147 **ppOutMessages, int32_t nMaxMessages ) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnPollGroup_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnPollGroup_params params = { .linux_side = _this->u_iface, .hPollGroup = hPollGroup, @@ -487,7 +476,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveM TRACE( "%p\n", _this ); if (!networking_message_pool_create_147( nMaxMessages, params.ppOutMessages )) return 0; - cppISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnPollGroup( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnPollGroup, ¶ms ); if (!networking_message_pool_receive_147( nMaxMessages, params._ret, params.ppOutMessages )) return 0; return params._ret; @@ -495,7 +484,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveM void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SendMessages(struct w_steam_iface *_this, int32_t nMessages, w_SteamNetworkingMessage_t_147 *const *pMessages, int64_t *pOutMessageNumberOrResult) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_SendMessages_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_SendMessages_params params = { .linux_side = _this->u_iface, .nMessages = nMessages, @@ -506,7 +495,7 @@ void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SendMessage TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_SendMessages( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_SendMessages, ¶ms ); for (i = 0; i < nMessages; i++) pMessages[i]->m_pfnRelease( pMessages[i] ); } @@ -514,7 +503,7 @@ void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SendMessage w_SteamNetworkingMessage_t_147 *__thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_AllocateMessage( struct w_steam_iface *_this, int32_t cbAllocateBuffer ) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils003_AllocateMessage_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils003_AllocateMessage_params params = { .linux_side = _this->u_iface, .cbAllocateBuffer = cbAllocateBuffer, @@ -534,7 +523,7 @@ w_SteamNetworkingMessage_t_147 *__thiscall winISteamNetworkingUtils_SteamNetwork message->w_msg_147.m_pfnRelease = w_SteamNetworkingMessage_t_147_Release; params._ret = &message->w_msg_147; - cppISteamNetworkingUtils_SteamNetworkingUtils003_AllocateMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils003_AllocateMessage, ¶ms ); return params._ret; } @@ -543,9 +532,9 @@ w_SteamNetworkingMessage_t_147 *__thiscall winISteamNetworkingUtils_SteamNetwork void __thiscall winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_DestroyFakeUDPPort( struct w_steam_iface *_this ) { - struct cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_DestroyFakeUDPPort_params params = {.linux_side = _this->u_iface}; + struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_DestroyFakeUDPPort_params params = {.linux_side = _this->u_iface}; TRACE( "%p\n", _this ); - cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_DestroyFakeUDPPort( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_DestroyFakeUDPPort, ¶ms ); HeapFree( GetProcessHeap(), 0, _this ); } @@ -553,7 +542,7 @@ int32_t __thiscall winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ w_SteamNetworkingMessage_t_153a **ppOutMessages, int32_t nMaxMessages ) { - struct cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ReceiveMessages_params params = + struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ReceiveMessages_params params = { .linux_side = _this->u_iface, .ppOutMessages = ppOutMessages, @@ -563,7 +552,7 @@ int32_t __thiscall winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ TRACE( "%p\n", _this ); if (!networking_message_pool_create_153a( nMaxMessages, params.ppOutMessages )) return 0; - cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ReceiveMessages( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ReceiveMessages, ¶ms ); if (!networking_message_pool_receive_153a( nMaxMessages, params._ret, params.ppOutMessages )) return 0; return params._ret; @@ -575,7 +564,7 @@ int32_t __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_Receiv w_SteamNetworkingMessage_t_153a **ppOutMessages, int32_t nMaxMessages ) { - struct cppISteamNetworkingMessages_SteamNetworkingMessages002_ReceiveMessagesOnChannel_params params = + struct ISteamNetworkingMessages_SteamNetworkingMessages002_ReceiveMessagesOnChannel_params params = { .linux_side = _this->u_iface, .nLocalChannel = nLocalChannel, @@ -586,7 +575,7 @@ int32_t __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_Receiv TRACE( "%p\n", _this ); if (!networking_message_pool_create_153a( nMaxMessages, params.ppOutMessages )) return 0; - cppISteamNetworkingMessages_SteamNetworkingMessages002_ReceiveMessagesOnChannel( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingMessages_SteamNetworkingMessages002_ReceiveMessagesOnChannel, ¶ms ); if (!networking_message_pool_receive_153a( nMaxMessages, params._ret, params.ppOutMessages )) return 0; return params._ret; @@ -598,7 +587,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveM uint32_t hConn, w_SteamNetworkingMessage_t_153a **ppOutMessages, int32_t nMaxMessages ) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnConnection_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnConnection_params params = { .linux_side = _this->u_iface, .hConn = hConn, @@ -609,7 +598,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveM TRACE( "%p\n", _this ); if (!networking_message_pool_create_153a( nMaxMessages, params.ppOutMessages )) return 0; - cppISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnConnection, ¶ms ); if (!networking_message_pool_receive_153a( nMaxMessages, params._ret, params.ppOutMessages )) return 0; return params._ret; @@ -619,7 +608,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveM w_SteamNetworkingMessage_t_153a **ppOutMessages, int32_t nMaxMessages ) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnPollGroup_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnPollGroup_params params = { .linux_side = _this->u_iface, .hPollGroup = hPollGroup, @@ -630,7 +619,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveM TRACE( "%p\n", _this ); if (!networking_message_pool_create_153a( nMaxMessages, params.ppOutMessages )) return 0; - cppISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnPollGroup( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnPollGroup, ¶ms ); if (!networking_message_pool_receive_153a( nMaxMessages, params._ret, params.ppOutMessages )) return 0; return params._ret; @@ -640,7 +629,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveM void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SendMessages(struct w_steam_iface *_this, int32_t nMessages, w_SteamNetworkingMessage_t_153a *const *pMessages, int64_t *pOutMessageNumberOrResult) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_SendMessages_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_SendMessages_params params = { .linux_side = _this->u_iface, .nMessages = nMessages, @@ -651,13 +640,13 @@ void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SendMessage TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_SendMessages( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_SendMessages, ¶ms ); 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 ) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils004_AllocateMessage_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils004_AllocateMessage_params params = { .linux_side = _this->u_iface, .cbAllocateBuffer = cbAllocateBuffer, @@ -677,6 +666,6 @@ w_SteamNetworkingMessage_t_153a *__thiscall winISteamNetworkingUtils_SteamNetwor message->w_msg_153a.m_pfnRelease = w_SteamNetworkingMessage_t_153a_Release; params._ret = &message->w_msg_153a; - cppISteamNetworkingUtils_SteamNetworkingUtils004_AllocateMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_AllocateMessage, ¶ms ); return params._ret; } diff --git a/lsteamclient/unix_private_generated.h b/lsteamclient/unix_private_generated.h index 879fdac7..b199c936 100644 --- a/lsteamclient/unix_private_generated.h +++ b/lsteamclient/unix_private_generated.h @@ -1,5 +1,9 @@ /* This file is auto-generated, do not edit. */ +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + struct u_ISteamClient_SteamClient006 { #ifdef __cplusplus @@ -7036,3 +7040,5857 @@ struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 }; +NTSTATUS ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetNumInstalledApps( void * ); +NTSTATUS ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetInstalledApps( void * ); +NTSTATUS ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName( void * ); +NTSTATUS ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInstallDir( void * ); +NTSTATUS ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppBuildId( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION001_GetAppData( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentGameLanguage( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribed( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsLowViolence( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsCybercafe( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsVACBanned( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetCurrentGameLanguage( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetAvailableGameLanguages( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsDlcInstalled( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribed( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsLowViolence( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsCybercafe( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsVACBanned( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetCurrentGameLanguage( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetAvailableGameLanguages( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedApp( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsDlcInstalled( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetEarliestPurchaseUnixTime( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedFromFreeWeekend( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetDLCCount( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByIndex( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_InstallDLC( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_UninstallDLC( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribed( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsLowViolence( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsCybercafe( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsVACBanned( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentGameLanguage( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAvailableGameLanguages( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedApp( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsDlcInstalled( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetEarliestPurchaseUnixTime( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedFromFreeWeekend( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetDLCCount( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BGetDLCDataByIndex( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_InstallDLC( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_UninstallDLC( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_RequestAppProofOfPurchaseKey( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaName( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_MarkContentCorrupt( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetInstalledDepots( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAppInstallDir( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsAppInstalled( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribed( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsLowViolence( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsCybercafe( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsVACBanned( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentGameLanguage( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAvailableGameLanguages( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedApp( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsDlcInstalled( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetEarliestPurchaseUnixTime( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedFromFreeWeekend( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetDLCCount( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BGetDLCDataByIndex( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_InstallDLC( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_UninstallDLC( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_RequestAppProofOfPurchaseKey( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaName( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_MarkContentCorrupt( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetInstalledDepots( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppInstallDir( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsAppInstalled( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppOwner( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetLaunchQueryParam( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribed( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsLowViolence( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsCybercafe( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsVACBanned( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentGameLanguage( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAvailableGameLanguages( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedApp( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsDlcInstalled( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetEarliestPurchaseUnixTime( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedFromFreeWeekend( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDLCCount( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BGetDLCDataByIndex( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_InstallDLC( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_UninstallDLC( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_RequestAppProofOfPurchaseKey( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_MarkContentCorrupt( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetInstalledDepots( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppInstallDir( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsAppInstalled( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppOwner( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetLaunchQueryParam( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppBuildId( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribed( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsLowViolence( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsCybercafe( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsVACBanned( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentGameLanguage( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAvailableGameLanguages( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedApp( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsDlcInstalled( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetEarliestPurchaseUnixTime( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFreeWeekend( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDLCCount( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BGetDLCDataByIndex( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_InstallDLC( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_UninstallDLC( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAppProofOfPurchaseKey( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaName( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_MarkContentCorrupt( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetInstalledDepots( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppInstallDir( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsAppInstalled( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppOwner( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchQueryParam( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDlcDownloadProgress( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppBuildId( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAllProofOfPurchaseKeys( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetFileDetails( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchCommandLine( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFamilySharing( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial( void * ); +NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetDlcContext( void * ); +NTSTATUS ISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001_GetAppOwnershipTicketData( void * ); +NTSTATUS ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Init( void * ); +NTSTATUS ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Shutdown( void * ); +NTSTATUS ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_RunFrame( void * ); +NTSTATUS ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_GetControllerState( void * ); +NTSTATUS ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_TriggerHapticPulse( void * ); +NTSTATUS ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_SetOverrideMode( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Init( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Shutdown( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CreateBrowser( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_RemoveBrowser( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_LoadURL( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetSize( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopLoad( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Reload( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoBack( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoForward( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AddHeader( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ExecuteJavascript( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseUp( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDown( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDoubleClick( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseMove( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseWheel( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyDown( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyUp( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyChar( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetHorizontalScroll( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetVerticalScroll( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetKeyFocus( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ViewSource( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CopyToClipboard( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_PasteFromClipboard( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Find( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopFind( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GetLinkAtPosition( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AllowStartRequest( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_JSDialogResponse( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_FileLoadDialogResponse( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Init( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Shutdown( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CreateBrowser( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_RemoveBrowser( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_LoadURL( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetSize( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopLoad( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Reload( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoBack( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoForward( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AddHeader( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ExecuteJavascript( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseUp( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDown( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDoubleClick( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseMove( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseWheel( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyDown( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyUp( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyChar( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetHorizontalScroll( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetVerticalScroll( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetKeyFocus( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ViewSource( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CopyToClipboard( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_PasteFromClipboard( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Find( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopFind( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GetLinkAtPosition( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetCookie( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetPageScaleFactor( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AllowStartRequest( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_JSDialogResponse( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_FileLoadDialogResponse( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Init( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Shutdown( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CreateBrowser( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_RemoveBrowser( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_LoadURL( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetSize( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopLoad( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Reload( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoBack( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoForward( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AddHeader( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ExecuteJavascript( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseUp( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDown( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDoubleClick( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseMove( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseWheel( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyDown( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyUp( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyChar( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetHorizontalScroll( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetVerticalScroll( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetKeyFocus( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ViewSource( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CopyToClipboard( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_PasteFromClipboard( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Find( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopFind( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GetLinkAtPosition( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetCookie( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetPageScaleFactor( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetBackgroundMode( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AllowStartRequest( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_JSDialogResponse( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_FileLoadDialogResponse( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Init( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Shutdown( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CreateBrowser( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_RemoveBrowser( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_LoadURL( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetSize( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopLoad( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Reload( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoBack( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoForward( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AddHeader( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ExecuteJavascript( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseUp( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDown( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDoubleClick( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseMove( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseWheel( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyDown( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyUp( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyChar( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetHorizontalScroll( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetVerticalScroll( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetKeyFocus( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ViewSource( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CopyToClipboard( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_PasteFromClipboard( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Find( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopFind( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GetLinkAtPosition( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetCookie( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetPageScaleFactor( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetBackgroundMode( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetDPIScalingFactor( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AllowStartRequest( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_JSDialogResponse( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_FileLoadDialogResponse( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Init( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Shutdown( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CreateBrowser( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_RemoveBrowser( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_LoadURL( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetSize( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopLoad( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Reload( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoBack( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoForward( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AddHeader( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ExecuteJavascript( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseUp( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDown( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDoubleClick( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseMove( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseWheel( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyDown( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyUp( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyChar( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetHorizontalScroll( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetVerticalScroll( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetKeyFocus( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ViewSource( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CopyToClipboard( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_PasteFromClipboard( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Find( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopFind( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GetLinkAtPosition( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetCookie( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetPageScaleFactor( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetBackgroundMode( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetDPIScalingFactor( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_OpenDeveloperTools( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AllowStartRequest( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_JSDialogResponse( void * ); +NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_FileLoadDialogResponse( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_CreateHTTPRequest( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestContextValue( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetworkActivityTimeout( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeaderValue( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOrPostParameter( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_DeferHTTPRequest( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_PrioritizeHTTPRequest( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderSize( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderValue( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodySize( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodyData( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_ReleaseHTTPRequest( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProgressPct( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestRawPostBody( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateHTTPRequest( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestContextValue( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetworkActivityTimeout( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeaderValue( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOrPostParameter( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAndStreamResponse( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_DeferHTTPRequest( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_PrioritizeHTTPRequest( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderSize( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderValue( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodySize( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodyData( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingResponseBodyData( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseHTTPRequest( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadProgressPct( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRawPostBody( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateCookieContainer( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseCookieContainer( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCookieContainer( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUserAgentInfo( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRequiresVerifiedCertificate( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsoluteTimeoutMS( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPRequestWasTimedOut( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateHTTPRequest( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestContextValue( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetworkActivityTimeout( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeaderValue( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOrPostParameter( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAndStreamResponse( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_DeferHTTPRequest( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_PrioritizeHTTPRequest( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderSize( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderValue( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodySize( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodyData( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingResponseBodyData( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseHTTPRequest( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadProgressPct( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRawPostBody( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateCookieContainer( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseCookieContainer( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCookieContainer( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUserAgentInfo( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRequiresVerifiedCertificate( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsoluteTimeoutMS( void * ); +NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPRequestWasTimedOut( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultStatus( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItems( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultTimestamp( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_CheckResultSteamID( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DestroyResult( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetAllItems( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeResult( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GrantPromoItems( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TransferItemQuantity( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SendItemDropHeartbeat( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDrop( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_LoadItemDefinitions( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionIDs( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionProperty( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_RequestEligiblePromoItemDefinitionsIDs( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetEligiblePromoItemDefinitionIDs( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultStatus( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItemProperty( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultTimestamp( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_CheckResultSteamID( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DestroyResult( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetAllItems( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeResult( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GrantPromoItems( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TransferItemQuantity( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SendItemDropHeartbeat( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDrop( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_LoadItemDefinitions( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionIDs( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionProperty( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestEligiblePromoItemDefinitionsIDs( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetEligiblePromoItemDefinitionIDs( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartPurchase( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestPrices( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetNumItemsWithPrices( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPrices( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemPrice( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartUpdateProperties( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SubmitUpdateProperties( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultStatus( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItemProperty( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultTimestamp( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_CheckResultSteamID( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DestroyResult( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetAllItems( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeResult( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GrantPromoItems( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TransferItemQuantity( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SendItemDropHeartbeat( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDrop( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_LoadItemDefinitions( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionIDs( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionProperty( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestEligiblePromoItemDefinitionsIDs( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetEligiblePromoItemDefinitionIDs( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartPurchase( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestPrices( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetNumItemsWithPrices( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPrices( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemPrice( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartUpdateProperties( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateProperties( void * ); +NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_InspectItem( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_RegisterSteamMusicRemote( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_DeregisterSteamMusicRemote( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BIsCurrentMusicRemote( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BActivationSuccess( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetDisplayName( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPNGIcon_64x64( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayPrevious( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayNext( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableShuffled( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableLooped( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableQueue( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlaylists( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdatePlaybackStatus( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateShuffled( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateLooped( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateVolume( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryWillChange( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryIsAvailable( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryText( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryElapsedSeconds( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryCoverArt( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryDidChange( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueWillChange( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetQueueEntries( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQueueEntry( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentQueueEntry( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueDidChange( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistWillChange( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetPlaylistEntries( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPlaylistEntry( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentPlaylistEntry( void * ); +NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistDidChange( void * ); +NTSTATUS ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsEnabled( void * ); +NTSTATUS ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsPlaying( void * ); +NTSTATUS ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetPlaybackStatus( void * ); +NTSTATUS ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Play( void * ); +NTSTATUS ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Pause( void * ); +NTSTATUS ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayPrevious( void * ); +NTSTATUS ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayNext( void * ); +NTSTATUS ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_SetVolume( void * ); +NTSTATUS ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetVolume( void * ); +NTSTATUS ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockEnabled( void * ); +NTSTATUS ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockLocked( void * ); +NTSTATUS ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppBlocked( void * ); +NTSTATUS ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppInBlockList( void * ); +NTSTATUS ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureBlocked( void * ); +NTSTATUS ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureInBlockList( void * ); +NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionCount( void * ); +NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionID( void * ); +NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionSteamID( void * ); +NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientName( void * ); +NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientFormFactor( void * ); +NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSessionClientResolution( void * ); +NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BSendRemotePlayTogetherInvite( void * ); +NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionCount( void * ); +NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionID( void * ); +NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionSteamID( void * ); +NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientName( void * ); +NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientFormFactor( void * ); +NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSessionClientResolution( void * ); +NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BStartRemotePlayTogether( void * ); +NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BSendRemotePlayTogetherInvite( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileWrite( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileSize( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileRead( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileExists( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileDelete( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileCount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileNameAndSize( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetQuota( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileWrite( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileSize( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileRead( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileExists( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileCount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileNameAndSize( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetQuota( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileWrite( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileRead( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileForget( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileDelete( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileShare( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileExists( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FilePersisted( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileSize( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileTimestamp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileCount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileNameAndSize( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetQuota( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForAccount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForApp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_SetCloudEnabledForApp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCDownload( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetUGCDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCRead( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCCount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCHandle( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileWrite( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileRead( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileForget( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileDelete( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileShare( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetSyncPlatforms( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileExists( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FilePersisted( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileSize( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileTimestamp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetSyncPlatforms( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileCount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileNameAndSize( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetQuota( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForAccount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForApp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetCloudEnabledForApp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCDownload( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetUGCDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCRead( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCCount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCHandle( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileWrite( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileRead( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileForget( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileDelete( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileShare( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetSyncPlatforms( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileExists( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FilePersisted( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileSize( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileTimestamp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetSyncPlatforms( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileCount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileNameAndSize( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetQuota( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForAccount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForApp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetCloudEnabledForApp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCDownload( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetUGCDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCRead( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCCount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCHandle( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishWorkshopFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UpdatePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetPublishedFileDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_DeletePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserPublishedFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SubscribePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserSubscribedFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UnsubscribePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileWrite( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileRead( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileForget( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileDelete( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileShare( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetSyncPlatforms( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileExists( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FilePersisted( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileSize( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileTimestamp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetSyncPlatforms( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileCount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileNameAndSize( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetQuota( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForAccount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForApp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetCloudEnabledForApp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCDownload( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDownloadProgress( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCRead( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCCount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCHandle( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishWorkshopFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CreatePublishedFileUpdateRequest( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFilePreviewFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTitle( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileDescription( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileVisibility( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTags( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CommitPublishedFileUpdate( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedFileDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_DeletePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserPublishedFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SubscribePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSubscribedFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UnsubscribePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileSetChangeDescription( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedItemVoteDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdateUserPublishedItemVote( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUserPublishedItemVoteDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSharedWorkshopFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishVideo( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetUserPublishedFileAction( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedFilesByUserAction( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedWorkshopFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileWrite( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileRead( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileForget( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileDelete( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileShare( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetSyncPlatforms( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileExists( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FilePersisted( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileSize( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileTimestamp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetSyncPlatforms( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileCount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileNameAndSize( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetQuota( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForAccount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForApp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetCloudEnabledForApp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCDownload( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDownloadProgress( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCRead( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCCount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCHandle( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishWorkshopFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CreatePublishedFileUpdateRequest( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFilePreviewFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTitle( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileDescription( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileVisibility( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTags( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CommitPublishedFileUpdate( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedFileDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_DeletePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserPublishedFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SubscribePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSubscribedFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UnsubscribePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileSetChangeDescription( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedItemVoteDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdateUserPublishedItemVote( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUserPublishedItemVoteDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSharedWorkshopFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishVideo( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetUserPublishedFileAction( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedFilesByUserAction( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedWorkshopFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWrite( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileRead( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileForget( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileDelete( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileShare( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetSyncPlatforms( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamOpen( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamWriteChunk( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamClose( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamCancel( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileExists( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FilePersisted( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileSize( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileTimestamp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetSyncPlatforms( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileCount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileNameAndSize( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetQuota( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForAccount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForApp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetCloudEnabledForApp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCDownload( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDownloadProgress( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCRead( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCCount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCHandle( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishWorkshopFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CreatePublishedFileUpdateRequest( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFilePreviewFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTitle( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileDescription( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileVisibility( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTags( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CommitPublishedFileUpdate( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedFileDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_DeletePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserPublishedFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SubscribePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSubscribedFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UnsubscribePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileSetChangeDescription( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedItemVoteDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdateUserPublishedItemVote( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUserPublishedItemVoteDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSharedWorkshopFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishVideo( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetUserPublishedFileAction( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedFilesByUserAction( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedWorkshopFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWrite( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileRead( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileForget( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileDelete( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileShare( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetSyncPlatforms( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamOpen( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamWriteChunk( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamClose( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamCancel( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileExists( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FilePersisted( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileSize( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileTimestamp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetSyncPlatforms( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileCount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileNameAndSize( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetQuota( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForAccount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForApp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetCloudEnabledForApp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCDownload( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDownloadProgress( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCRead( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCCount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCHandle( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishWorkshopFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CreatePublishedFileUpdateRequest( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFilePreviewFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTitle( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileDescription( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileVisibility( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTags( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CommitPublishedFileUpdate( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedFileDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_DeletePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserPublishedFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SubscribePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSubscribedFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UnsubscribePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileSetChangeDescription( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedItemVoteDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdateUserPublishedItemVote( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUserPublishedItemVoteDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSharedWorkshopFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishVideo( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetUserPublishedFileAction( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedFilesByUserAction( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedWorkshopFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWrite( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileRead( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileForget( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileDelete( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileShare( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetSyncPlatforms( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamOpen( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamWriteChunk( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamClose( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamCancel( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileExists( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FilePersisted( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileSize( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileTimestamp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetSyncPlatforms( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileCount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileNameAndSize( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetQuota( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForAccount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForApp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetCloudEnabledForApp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownload( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDownloadProgress( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCRead( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCCount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCHandle( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishWorkshopFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CreatePublishedFileUpdateRequest( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFilePreviewFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTitle( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileDescription( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileVisibility( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTags( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CommitPublishedFileUpdate( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedFileDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_DeletePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserPublishedFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SubscribePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSubscribedFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UnsubscribePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileSetChangeDescription( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedItemVoteDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdateUserPublishedItemVote( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUserPublishedItemVoteDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSharedWorkshopFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishVideo( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetUserPublishedFileAction( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedFilesByUserAction( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedWorkshopFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownloadToLocation( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWrite( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileRead( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileForget( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileDelete( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileShare( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetSyncPlatforms( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamOpen( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamWriteChunk( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamClose( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamCancel( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileExists( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FilePersisted( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileSize( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileTimestamp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetSyncPlatforms( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileCount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileNameAndSize( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetQuota( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForAccount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForApp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetCloudEnabledForApp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownload( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDownloadProgress( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCRead( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCCount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCHandle( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishWorkshopFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CreatePublishedFileUpdateRequest( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFilePreviewFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTitle( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileDescription( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileVisibility( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTags( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CommitPublishedFileUpdate( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedFileDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_DeletePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserPublishedFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SubscribePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSubscribedFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UnsubscribePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileSetChangeDescription( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedItemVoteDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdateUserPublishedItemVote( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUserPublishedItemVoteDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSharedWorkshopFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishVideo( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetUserPublishedFileAction( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedFilesByUserAction( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedWorkshopFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownloadToLocation( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWrite( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileRead( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileForget( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileDelete( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileShare( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetSyncPlatforms( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamOpen( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamWriteChunk( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamClose( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamCancel( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileExists( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FilePersisted( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileSize( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileTimestamp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetSyncPlatforms( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileCount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileNameAndSize( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetQuota( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForAccount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForApp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetCloudEnabledForApp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownload( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDownloadProgress( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCRead( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCCount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCHandle( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishWorkshopFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CreatePublishedFileUpdateRequest( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFilePreviewFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTitle( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileDescription( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileVisibility( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTags( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CommitPublishedFileUpdate( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedFileDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_DeletePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserPublishedFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SubscribePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSubscribedFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UnsubscribePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileSetChangeDescription( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedItemVoteDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdateUserPublishedItemVote( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUserPublishedItemVoteDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSharedWorkshopFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishVideo( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetUserPublishedFileAction( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedFilesByUserAction( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedWorkshopFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownloadToLocation( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWrite( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileRead( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteAsync( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsync( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsyncComplete( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileForget( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileDelete( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileShare( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetSyncPlatforms( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamOpen( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamWriteChunk( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamClose( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamCancel( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileExists( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FilePersisted( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileSize( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileTimestamp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetSyncPlatforms( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileCount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileNameAndSize( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetQuota( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForAccount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForApp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetCloudEnabledForApp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownload( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDownloadProgress( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCRead( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCCount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCHandle( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishWorkshopFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CreatePublishedFileUpdateRequest( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFilePreviewFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTitle( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileDescription( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileVisibility( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTags( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CommitPublishedFileUpdate( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedFileDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_DeletePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserPublishedFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SubscribePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSubscribedFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UnsubscribePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileSetChangeDescription( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedItemVoteDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdateUserPublishedItemVote( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUserPublishedItemVoteDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSharedWorkshopFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishVideo( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetUserPublishedFileAction( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedFilesByUserAction( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedWorkshopFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownloadToLocation( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWrite( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileRead( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteAsync( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsync( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsyncComplete( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileForget( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileDelete( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileShare( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetSyncPlatforms( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamOpen( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamWriteChunk( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamClose( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamCancel( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileExists( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FilePersisted( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileSize( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileTimestamp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetSyncPlatforms( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileCount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileNameAndSize( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetQuota( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForAccount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForApp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetCloudEnabledForApp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownload( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDownloadProgress( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCRead( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCCount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCHandle( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishWorkshopFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CreatePublishedFileUpdateRequest( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFilePreviewFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTitle( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileDescription( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileVisibility( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTags( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CommitPublishedFileUpdate( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedFileDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_DeletePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserPublishedFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SubscribePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSubscribedFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UnsubscribePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileSetChangeDescription( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedItemVoteDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdateUserPublishedItemVote( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUserPublishedItemVoteDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSharedWorkshopFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishVideo( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetUserPublishedFileAction( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedFilesByUserAction( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedWorkshopFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownloadToLocation( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWrite( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileRead( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteAsync( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsync( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsyncComplete( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileForget( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileDelete( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileShare( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetSyncPlatforms( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamOpen( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamWriteChunk( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamClose( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamCancel( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileExists( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FilePersisted( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileSize( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileTimestamp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetSyncPlatforms( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileCount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileNameAndSize( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetQuota( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForAccount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForApp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetCloudEnabledForApp( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownload( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDownloadProgress( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCRead( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCCount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCHandle( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishWorkshopFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CreatePublishedFileUpdateRequest( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFilePreviewFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTitle( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileDescription( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileVisibility( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTags( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CommitPublishedFileUpdate( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedFileDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_DeletePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserPublishedFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SubscribePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSubscribedFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UnsubscribePublishedFile( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileSetChangeDescription( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedItemVoteDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdateUserPublishedItemVote( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUserPublishedItemVoteDetails( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSharedWorkshopFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishVideo( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetUserPublishedFileAction( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedFilesByUserAction( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedWorkshopFiles( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownloadToLocation( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChangeCount( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChange( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_BeginFileWriteBatch( void * ); +NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EndFileWriteBatch( void * ); +NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_WriteScreenshot( void * ); +NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_AddScreenshotToLibrary( void * ); +NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TriggerScreenshot( void * ); +NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_HookScreenshots( void * ); +NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLocation( void * ); +NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TagUser( void * ); +NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_WriteScreenshot( void * ); +NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_AddScreenshotToLibrary( void * ); +NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TriggerScreenshot( void * ); +NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_HookScreenshots( void * ); +NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_SetLocation( void * ); +NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUser( void * ); +NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagPublishedFile( void * ); +NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_WriteScreenshot( void * ); +NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddScreenshotToLibrary( void * ); +NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TriggerScreenshot( void * ); +NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_HookScreenshots( void * ); +NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_SetLocation( void * ); +NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagUser( void * ); +NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagPublishedFile( void * ); +NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_IsScreenshotsHooked( void * ); +NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddVRScreenshotToLibrary( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryUserUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryAllUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SendQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_ReleaseQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnLongDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnTotalOnly( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFilter( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetMatchAnyTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetRankedByTrendDays( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_RequestUGCDetails( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryUserUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryAllUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SendQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_ReleaseQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnLongDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnTotalOnly( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedResponse( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFilter( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetMatchAnyTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetRankedByTrendDays( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_RequestUGCDetails( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_StartItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubmitItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateProgress( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_UnsubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetNumSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryUserUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryAllUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SendQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_ReleaseQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDays( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_RequestUGCDetails( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_StartItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubmitItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateProgress( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_UnsubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetNumSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryUserUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryAllUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SendQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_ReleaseQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnLongDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnTotalOnly( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedResponse( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFilter( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetMatchAnyTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetRankedByTrendDays( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_RequestUGCDetails( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_StartItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubmitItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemUpdateProgress( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_UnsubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetNumSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemState( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_DownloadItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUserUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryAllUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUGCDetailsRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SendQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCStatistic( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCNumAdditionalPreviews( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAdditionalPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_ReleaseQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnLongDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnChildren( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnAdditionalPreviews( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnTotalOnly( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedResponse( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFilter( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetMatchAnyTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetRankedByTrendDays( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_RequestUGCDetails( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_StartItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubmitItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemUpdateProgress( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddItemToFavorites( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_RemoveItemFromFavorites( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_UnsubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetNumSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemState( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_DownloadItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUserUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryAllUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUGCDetailsRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SendQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCStatistic( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCNumAdditionalPreviews( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAdditionalPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_ReleaseQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnLongDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnChildren( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnAdditionalPreviews( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnTotalOnly( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedResponse( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFilter( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetMatchAnyTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetRankedByTrendDays( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_RequestUGCDetails( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_StartItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLanguage( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubmitItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemUpdateProgress( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetUserItemVote( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetUserItemVote( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddItemToFavorites( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_RemoveItemFromFavorites( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_UnsubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetNumSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemState( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_DownloadItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUserUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryAllUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUGCDetailsRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SendQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCStatistic( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumAdditionalPreviews( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCAdditionalPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_ReleaseQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnLongDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnChildren( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnAdditionalPreviews( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnTotalOnly( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedResponse( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFilter( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetMatchAnyTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDays( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RequestUGCDetails( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_StartItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLanguage( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubmitItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemUpdateProgress( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetUserItemVote( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetUserItemVote( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemToFavorites( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemFromFavorites( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_UnsubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetNumSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemState( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameServer( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SuspendDownloads( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUserUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryAllUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUGCDetailsRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SendQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCStatistic( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumAdditionalPreviews( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCAdditionalPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_ReleaseQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnLongDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnChildren( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnAdditionalPreviews( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnTotalOnly( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedResponse( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFilter( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetMatchAnyTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDays( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RequestUGCDetails( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_StartItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLanguage( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVideo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubmitItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemUpdateProgress( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetUserItemVote( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetUserItemVote( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemToFavorites( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemFromFavorites( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UnsubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetNumSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemState( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameServer( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SuspendDownloads( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUserUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryAllUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUGCDetailsRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SendQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCStatistic( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumAdditionalPreviews( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCAdditionalPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_ReleaseQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnOnlyIDs( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnLongDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnChildren( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnAdditionalPreviews( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnTotalOnly( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedResponse( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFilter( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetMatchAnyTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDays( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RequestUGCDetails( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLanguage( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVideo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubmitItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemUpdateProgress( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetUserItemVote( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetUserItemVote( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemToFavorites( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemFromFavorites( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UnsubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetNumSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemState( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_DownloadItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameServer( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SuspendDownloads( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartPlaytimeTracking( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTracking( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTrackingForAllItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUserUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryAllUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUGCDetailsRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SendQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCStatistic( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumAdditionalPreviews( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCAdditionalPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_ReleaseQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnOnlyIDs( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnLongDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnChildren( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnAdditionalPreviews( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnTotalOnly( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeStats( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedResponse( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFilter( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetMatchAnyTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDays( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RequestUGCDetails( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLanguage( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVideo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubmitItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemUpdateProgress( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetUserItemVote( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetUserItemVote( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemToFavorites( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemFromFavorites( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UnsubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetNumSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemState( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_DownloadItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameServer( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SuspendDownloads( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartPlaytimeTracking( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTracking( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTrackingForAllItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddAppDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveAppDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetAppDependencies( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_DeleteItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUserUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_2( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUGCDetailsRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SendQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCStatistic( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumAdditionalPreviews( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCAdditionalPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_ReleaseQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnOnlyIDs( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnLongDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnChildren( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnAdditionalPreviews( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnTotalOnly( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeStats( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedResponse( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFilter( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetMatchAnyTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDays( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RequestUGCDetails( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLanguage( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowLegacyUpload( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVideo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubmitItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemUpdateProgress( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetUserItemVote( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetUserItemVote( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemToFavorites( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemFromFavorites( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UnsubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetNumSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemState( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_DownloadItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameServer( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SuspendDownloads( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartPlaytimeTracking( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTracking( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTrackingForAllItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddAppDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveAppDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetAppDependencies( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_DeleteItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUserUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_2( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUGCDetailsRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SendQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCStatistic( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumAdditionalPreviews( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCAdditionalPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_2( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_ReleaseQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnOnlyIDs( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnLongDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnChildren( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnAdditionalPreviews( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnTotalOnly( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeStats( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedResponse( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFilter( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetMatchAnyTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDays( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RequestUGCDetails( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLanguage( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowLegacyUpload( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAllItemKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVideo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubmitItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemUpdateProgress( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetUserItemVote( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetUserItemVote( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemToFavorites( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemFromFavorites( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UnsubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetNumSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemState( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_DownloadItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameServer( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SuspendDownloads( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartPlaytimeTracking( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTracking( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTrackingForAllItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddAppDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAppDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetAppDependencies( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_DeleteItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUserUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_2( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUGCDetailsRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SendQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCStatistic( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumAdditionalPreviews( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCAdditionalPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_2( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_ReleaseQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnOnlyIDs( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnLongDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnChildren( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnAdditionalPreviews( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnTotalOnly( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeStats( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedResponse( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFilter( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetMatchAnyTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDays( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RequestUGCDetails( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLanguage( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowLegacyUpload( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAllItemKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVideo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubmitItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemUpdateProgress( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetUserItemVote( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetUserItemVote( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemToFavorites( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemFromFavorites( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UnsubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetNumSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemState( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_DownloadItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameServer( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SuspendDownloads( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartPlaytimeTracking( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTracking( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTrackingForAllItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddAppDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAppDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetAppDependencies( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_DeleteItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUserUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_2( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUGCDetailsRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SendQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCResult( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplayName( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCStatistic( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumAdditionalPreviews( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCAdditionalPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_2( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_ReleaseQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnOnlyIDs( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnLongDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnChildren( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnAdditionalPreviews( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnTotalOnly( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeStats( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedResponse( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFilter( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetMatchAnyTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDays( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RequestUGCDetails( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLanguage( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowLegacyUpload( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAllItemKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVideo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubmitItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemUpdateProgress( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetUserItemVote( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetUserItemVote( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemToFavorites( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemFromFavorites( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UnsubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetNumSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemState( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_DownloadItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameServer( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SuspendDownloads( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartPlaytimeTracking( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTracking( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTrackingForAllItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddAppDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAppDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetAppDependencies( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_DeleteItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_ShowWorkshopEULA( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetWorkshopEULAStatus( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUserUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_2( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUGCDetailsRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SendQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCResult( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplayName( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumAdditionalPreviews( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_2( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_ReleaseQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnOnlyIDs( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnLongDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnChildren( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnAdditionalPreviews( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnTotalOnly( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeStats( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedResponse( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFilter( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetMatchAnyTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDays( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRange( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRange( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RequestUGCDetails( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLanguage( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowLegacyUpload( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAllItemKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVideo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubmitItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemUpdateProgress( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetUserItemVote( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetUserItemVote( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemToFavorites( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemFromFavorites( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UnsubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetNumSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemState( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_DownloadItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameServer( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SuspendDownloads( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartPlaytimeTracking( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTracking( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTrackingForAllItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddAppDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAppDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetAppDependencies( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_DeleteItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_ShowWorkshopEULA( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetWorkshopEULAStatus( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUserUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_2( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUGCDetailsRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SendQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCResult( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplayName( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCStatistic( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumAdditionalPreviews( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCAdditionalPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_2( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCContentDescriptors( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_ReleaseQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnOnlyIDs( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnLongDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnChildren( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnAdditionalPreviews( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnTotalOnly( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeStats( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedResponse( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFilter( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetMatchAnyTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDays( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRange( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRange( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RequestUGCDetails( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLanguage( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowLegacyUpload( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAllItemKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVideo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescriptor( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveContentDescriptor( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubmitItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemUpdateProgress( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetUserItemVote( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetUserItemVote( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemToFavorites( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemFromFavorites( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UnsubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetNumSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemState( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_DownloadItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameServer( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SuspendDownloads( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartPlaytimeTracking( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTracking( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTrackingForAllItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddAppDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAppDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetAppDependencies( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_DeleteItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_ShowWorkshopEULA( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetWorkshopEULAStatus( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUserUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_2( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUGCDetailsRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SendQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCResult( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplayName( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCStatistic( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumAdditionalPreviews( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCAdditionalPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_2( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCContentDescriptors( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_ReleaseQueryUGCRequest( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnOnlyIDs( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnLongDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnChildren( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnAdditionalPreviews( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnTotalOnly( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeStats( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedResponse( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFilter( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetMatchAnyTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDays( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRange( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRange( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RequestUGCDetails( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLanguage( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowLegacyUpload( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAllItemKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueTags( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVideo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescriptor( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveContentDescriptor( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubmitItemUpdate( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemUpdateProgress( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetUserItemVote( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserItemVote( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemToFavorites( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemFromFavorites( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UnsubscribeItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetNumSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetSubscribedItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemState( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_DownloadItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameServer( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SuspendDownloads( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartPlaytimeTracking( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTracking( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTrackingForAllItems( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddAppDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAppDependency( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetAppDependencies( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_DeleteItem( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_ShowWorkshopEULA( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetWorkshopEULAStatus( void * ); +NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserContentDescriptorPreferences( void * ); +NTSTATUS ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendMethod( void * ); +NTSTATUS ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseInfo( void * ); +NTSTATUS ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseData( void * ); +NTSTATUS ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_ReleaseMethod( void * ); +NTSTATUS ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNotification( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatName( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatType( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumAchievements( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementName( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumGroupAchievements( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievementName( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_RequestCurrentStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvgRateStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGroupAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_StoreStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearGroupAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementIcon( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementDisplayAttribute( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatName( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatType( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumAchievements( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementName( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_RequestCurrentStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvgRateStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_StoreStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementIcon( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementDisplayAttribute( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_IndicateAchievementProgress( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_RequestCurrentStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvgRateStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_ClearAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_StoreStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementIcon( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementDisplayAttribute( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementProgress( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestCurrentStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvgRateStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_ClearAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_StoreStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementIcon( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementDisplayAttribute( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_IndicateAchievementProgress( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestUserStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestCurrentStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvgRateStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ClearAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_StoreStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementIcon( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementDisplayAttribute( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_IndicateAchievementProgress( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestUserStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ResetAllStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindOrCreateLeaderboard( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindLeaderboard( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardName( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardEntryCount( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardSortMethod( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardDisplayType( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_DownloadLeaderboardEntries( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownloadedLeaderboardEntry( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UploadLeaderboardScore( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestCurrentStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvgRateStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ClearAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_StoreStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementIcon( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementDisplayAttribute( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_IndicateAchievementProgress( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestUserStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ResetAllStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindOrCreateLeaderboard( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindLeaderboard( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardName( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardEntryCount( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardSortMethod( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardDisplayType( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_DownloadLeaderboardEntries( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetDownloadedLeaderboardEntry( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UploadLeaderboardScore( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetNumberOfCurrentPlayers( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestCurrentStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvgRateStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ClearAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementAndUnlockTime( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_StoreStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementIcon( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementDisplayAttribute( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_IndicateAchievementProgress( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestUserStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievementAndUnlockTime( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ResetAllStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindOrCreateLeaderboard( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindLeaderboard( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardName( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardEntryCount( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardSortMethod( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardDisplayType( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_DownloadLeaderboardEntries( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetDownloadedLeaderboardEntry( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UploadLeaderboardScore( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetNumberOfCurrentPlayers( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestCurrentStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvgRateStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ClearAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementAndUnlockTime( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_StoreStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementIcon( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementDisplayAttribute( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_IndicateAchievementProgress( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestUserStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievementAndUnlockTime( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ResetAllStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindOrCreateLeaderboard( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindLeaderboard( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardName( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardEntryCount( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardSortMethod( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardDisplayType( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_DownloadLeaderboardEntries( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetDownloadedLeaderboardEntry( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UploadLeaderboardScore( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_AttachLeaderboardUGC( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetNumberOfCurrentPlayers( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestCurrentStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvgRateStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ClearAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementAndUnlockTime( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_StoreStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementIcon( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementDisplayAttribute( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_IndicateAchievementProgress( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestUserStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievementAndUnlockTime( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ResetAllStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindOrCreateLeaderboard( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindLeaderboard( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardName( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardEntryCount( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardSortMethod( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardDisplayType( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntries( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntriesForUsers( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetDownloadedLeaderboardEntry( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UploadLeaderboardScore( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_AttachLeaderboardUGC( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetNumberOfCurrentPlayers( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCurrentStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ClearAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAndUnlockTime( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_StoreStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementIcon( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementDisplayAttribute( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateAchievementProgress( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestUserStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievementAndUnlockTime( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ResetAllStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindOrCreateLeaderboard( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindLeaderboard( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardName( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardEntryCount( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardSortMethod( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardDisplayType( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntries( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntriesForUsers( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownloadedLeaderboardEntry( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UploadLeaderboardScore( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_AttachLeaderboardUGC( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNumberOfCurrentPlayers( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalAchievementPercentages( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMostAchievedAchievementInfo( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchievedAchievementInfo( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAchievedPercent( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestCurrentStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvgRateStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ClearAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAndUnlockTime( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_StoreStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementIcon( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementDisplayAttribute( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_IndicateAchievementProgress( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumAchievements( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementName( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestUserStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievementAndUnlockTime( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ResetAllStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindOrCreateLeaderboard( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindLeaderboard( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardName( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardEntryCount( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardSortMethod( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardDisplayType( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntries( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntriesForUsers( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetDownloadedLeaderboardEntry( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UploadLeaderboardScore( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_AttachLeaderboardUGC( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumberOfCurrentPlayers( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalAchievementPercentages( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetMostAchievedAchievementInfo( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNextMostAchievedAchievementInfo( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAchievedPercent( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestCurrentStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvgRateStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ClearAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAndUnlockTime( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_StoreStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementIcon( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementDisplayAttribute( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_IndicateAchievementProgress( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumAchievements( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementName( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestUserStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievement( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievementAndUnlockTime( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ResetAllStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindOrCreateLeaderboard( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindLeaderboard( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardName( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardEntryCount( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardSortMethod( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardDisplayType( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntries( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntriesForUsers( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetDownloadedLeaderboardEntry( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UploadLeaderboardScore( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_AttachLeaderboardUGC( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumberOfCurrentPlayers( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalAchievementPercentages( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetMostAchievedAchievementInfo( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNextMostAchievedAchievementInfo( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAchievedPercent( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalStats( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_2( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits( void * ); +NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_2( void * ); +NTSTATUS ISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL( void * ); +NTSTATUS ISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting( void * ); +NTSTATUS ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetVideoURL( void * ); +NTSTATUS ISteamVideo_STEAMVIDEO_INTERFACE_V002_IsBroadcasting( void * ); +NTSTATUS ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFSettings( void * ); +NTSTATUS ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringForApp( void * ); +NTSTATUS ISteamClient_SteamClient006_CreateSteamPipe( void * ); +NTSTATUS ISteamClient_SteamClient006_BReleaseSteamPipe( void * ); +NTSTATUS ISteamClient_SteamClient006_CreateGlobalUser( void * ); +NTSTATUS ISteamClient_SteamClient006_ConnectToGlobalUser( void * ); +NTSTATUS ISteamClient_SteamClient006_CreateLocalUser( void * ); +NTSTATUS ISteamClient_SteamClient006_ReleaseUser( void * ); +NTSTATUS ISteamClient_SteamClient006_GetISteamUser( void * ); +NTSTATUS ISteamClient_SteamClient006_GetIVAC( void * ); +NTSTATUS ISteamClient_SteamClient006_GetISteamGameServer( void * ); +NTSTATUS ISteamClient_SteamClient006_SetLocalIPBinding( void * ); +NTSTATUS ISteamClient_SteamClient006_GetUniverseName( void * ); +NTSTATUS ISteamClient_SteamClient006_GetISteamFriends( void * ); +NTSTATUS ISteamClient_SteamClient006_GetISteamUtils( void * ); +NTSTATUS ISteamClient_SteamClient006_GetISteamBilling( void * ); +NTSTATUS ISteamClient_SteamClient006_GetISteamMatchmaking( void * ); +NTSTATUS ISteamClient_SteamClient006_GetISteamApps( void * ); +NTSTATUS ISteamClient_SteamClient006_GetISteamContentServer( void * ); +NTSTATUS ISteamClient_SteamClient006_GetISteamMasterServerUpdater( void * ); +NTSTATUS ISteamClient_SteamClient006_GetISteamMatchmakingServers( void * ); +NTSTATUS ISteamClient_SteamClient006_RunFrame( void * ); +NTSTATUS ISteamClient_SteamClient006_GetIPCCallCount( void * ); +NTSTATUS ISteamClient_SteamClient007_CreateSteamPipe( void * ); +NTSTATUS ISteamClient_SteamClient007_BReleaseSteamPipe( void * ); +NTSTATUS ISteamClient_SteamClient007_ConnectToGlobalUser( void * ); +NTSTATUS ISteamClient_SteamClient007_CreateLocalUser( void * ); +NTSTATUS ISteamClient_SteamClient007_ReleaseUser( void * ); +NTSTATUS ISteamClient_SteamClient007_GetISteamUser( void * ); +NTSTATUS ISteamClient_SteamClient007_GetISteamGameServer( void * ); +NTSTATUS ISteamClient_SteamClient007_SetLocalIPBinding( void * ); +NTSTATUS ISteamClient_SteamClient007_GetISteamFriends( void * ); +NTSTATUS ISteamClient_SteamClient007_GetISteamUtils( void * ); +NTSTATUS ISteamClient_SteamClient007_GetISteamMatchmaking( void * ); +NTSTATUS ISteamClient_SteamClient007_GetISteamContentServer( void * ); +NTSTATUS ISteamClient_SteamClient007_GetISteamMasterServerUpdater( void * ); +NTSTATUS ISteamClient_SteamClient007_GetISteamMatchmakingServers( void * ); +NTSTATUS ISteamClient_SteamClient007_GetISteamGenericInterface( void * ); +NTSTATUS ISteamClient_SteamClient007_RunFrame( void * ); +NTSTATUS ISteamClient_SteamClient007_GetIPCCallCount( void * ); +NTSTATUS ISteamClient_SteamClient007_GetISteamUserStats( void * ); +NTSTATUS ISteamClient_SteamClient007_GetISteamApps( void * ); +NTSTATUS ISteamClient_SteamClient007_GetISteamNetworking( void * ); +NTSTATUS ISteamClient_SteamClient007_SetWarningMessageHook( void * ); +NTSTATUS ISteamClient_SteamClient007_GetISteamRemoteStorage( void * ); +NTSTATUS ISteamClient_SteamClient008_CreateSteamPipe( void * ); +NTSTATUS ISteamClient_SteamClient008_BReleaseSteamPipe( void * ); +NTSTATUS ISteamClient_SteamClient008_ConnectToGlobalUser( void * ); +NTSTATUS ISteamClient_SteamClient008_CreateLocalUser( void * ); +NTSTATUS ISteamClient_SteamClient008_ReleaseUser( void * ); +NTSTATUS ISteamClient_SteamClient008_GetISteamUser( void * ); +NTSTATUS ISteamClient_SteamClient008_GetISteamGameServer( void * ); +NTSTATUS ISteamClient_SteamClient008_SetLocalIPBinding( void * ); +NTSTATUS ISteamClient_SteamClient008_GetISteamFriends( void * ); +NTSTATUS ISteamClient_SteamClient008_GetISteamUtils( void * ); +NTSTATUS ISteamClient_SteamClient008_GetISteamMatchmaking( void * ); +NTSTATUS ISteamClient_SteamClient008_GetISteamMasterServerUpdater( void * ); +NTSTATUS ISteamClient_SteamClient008_GetISteamMatchmakingServers( void * ); +NTSTATUS ISteamClient_SteamClient008_GetISteamGenericInterface( void * ); +NTSTATUS ISteamClient_SteamClient008_GetISteamUserStats( void * ); +NTSTATUS ISteamClient_SteamClient008_GetISteamApps( void * ); +NTSTATUS ISteamClient_SteamClient008_GetISteamNetworking( void * ); +NTSTATUS ISteamClient_SteamClient008_GetISteamRemoteStorage( void * ); +NTSTATUS ISteamClient_SteamClient008_RunFrame( void * ); +NTSTATUS ISteamClient_SteamClient008_GetIPCCallCount( void * ); +NTSTATUS ISteamClient_SteamClient008_SetWarningMessageHook( void * ); +NTSTATUS ISteamClient_SteamClient009_CreateSteamPipe( void * ); +NTSTATUS ISteamClient_SteamClient009_BReleaseSteamPipe( void * ); +NTSTATUS ISteamClient_SteamClient009_ConnectToGlobalUser( void * ); +NTSTATUS ISteamClient_SteamClient009_CreateLocalUser( void * ); +NTSTATUS ISteamClient_SteamClient009_ReleaseUser( void * ); +NTSTATUS ISteamClient_SteamClient009_GetISteamUser( void * ); +NTSTATUS ISteamClient_SteamClient009_GetISteamGameServer( void * ); +NTSTATUS ISteamClient_SteamClient009_SetLocalIPBinding( void * ); +NTSTATUS ISteamClient_SteamClient009_GetISteamFriends( void * ); +NTSTATUS ISteamClient_SteamClient009_GetISteamUtils( void * ); +NTSTATUS ISteamClient_SteamClient009_GetISteamMatchmaking( void * ); +NTSTATUS ISteamClient_SteamClient009_GetISteamMasterServerUpdater( void * ); +NTSTATUS ISteamClient_SteamClient009_GetISteamMatchmakingServers( void * ); +NTSTATUS ISteamClient_SteamClient009_GetISteamGenericInterface( void * ); +NTSTATUS ISteamClient_SteamClient009_GetISteamUserStats( void * ); +NTSTATUS ISteamClient_SteamClient009_GetISteamGameServerStats( void * ); +NTSTATUS ISteamClient_SteamClient009_GetISteamApps( void * ); +NTSTATUS ISteamClient_SteamClient009_GetISteamNetworking( void * ); +NTSTATUS ISteamClient_SteamClient009_GetISteamRemoteStorage( void * ); +NTSTATUS ISteamClient_SteamClient009_RunFrame( void * ); +NTSTATUS ISteamClient_SteamClient009_GetIPCCallCount( void * ); +NTSTATUS ISteamClient_SteamClient009_SetWarningMessageHook( void * ); +NTSTATUS ISteamClient_SteamClient010_CreateSteamPipe( void * ); +NTSTATUS ISteamClient_SteamClient010_BReleaseSteamPipe( void * ); +NTSTATUS ISteamClient_SteamClient010_ConnectToGlobalUser( void * ); +NTSTATUS ISteamClient_SteamClient010_CreateLocalUser( void * ); +NTSTATUS ISteamClient_SteamClient010_ReleaseUser( void * ); +NTSTATUS ISteamClient_SteamClient010_GetISteamUser( void * ); +NTSTATUS ISteamClient_SteamClient010_GetISteamGameServer( void * ); +NTSTATUS ISteamClient_SteamClient010_SetLocalIPBinding( void * ); +NTSTATUS ISteamClient_SteamClient010_GetISteamFriends( void * ); +NTSTATUS ISteamClient_SteamClient010_GetISteamUtils( void * ); +NTSTATUS ISteamClient_SteamClient010_GetISteamMatchmaking( void * ); +NTSTATUS ISteamClient_SteamClient010_GetISteamMasterServerUpdater( void * ); +NTSTATUS ISteamClient_SteamClient010_GetISteamMatchmakingServers( void * ); +NTSTATUS ISteamClient_SteamClient010_GetISteamGenericInterface( void * ); +NTSTATUS ISteamClient_SteamClient010_GetISteamUserStats( void * ); +NTSTATUS ISteamClient_SteamClient010_GetISteamGameServerStats( void * ); +NTSTATUS ISteamClient_SteamClient010_GetISteamApps( void * ); +NTSTATUS ISteamClient_SteamClient010_GetISteamNetworking( void * ); +NTSTATUS ISteamClient_SteamClient010_GetISteamRemoteStorage( void * ); +NTSTATUS ISteamClient_SteamClient010_RunFrame( void * ); +NTSTATUS ISteamClient_SteamClient010_GetIPCCallCount( void * ); +NTSTATUS ISteamClient_SteamClient010_SetWarningMessageHook( void * ); +NTSTATUS ISteamClient_SteamClient010_BShutdownIfAllPipesClosed( void * ); +NTSTATUS ISteamClient_SteamClient010_GetISteamHTTP( void * ); +NTSTATUS ISteamClient_SteamClient011_CreateSteamPipe( void * ); +NTSTATUS ISteamClient_SteamClient011_BReleaseSteamPipe( void * ); +NTSTATUS ISteamClient_SteamClient011_ConnectToGlobalUser( void * ); +NTSTATUS ISteamClient_SteamClient011_CreateLocalUser( void * ); +NTSTATUS ISteamClient_SteamClient011_ReleaseUser( void * ); +NTSTATUS ISteamClient_SteamClient011_GetISteamUser( void * ); +NTSTATUS ISteamClient_SteamClient011_GetISteamGameServer( void * ); +NTSTATUS ISteamClient_SteamClient011_SetLocalIPBinding( void * ); +NTSTATUS ISteamClient_SteamClient011_GetISteamFriends( void * ); +NTSTATUS ISteamClient_SteamClient011_GetISteamUtils( void * ); +NTSTATUS ISteamClient_SteamClient011_GetISteamMatchmaking( void * ); +NTSTATUS ISteamClient_SteamClient011_GetISteamMasterServerUpdater( void * ); +NTSTATUS ISteamClient_SteamClient011_GetISteamMatchmakingServers( void * ); +NTSTATUS ISteamClient_SteamClient011_GetISteamGenericInterface( void * ); +NTSTATUS ISteamClient_SteamClient011_GetISteamUserStats( void * ); +NTSTATUS ISteamClient_SteamClient011_GetISteamGameServerStats( void * ); +NTSTATUS ISteamClient_SteamClient011_GetISteamApps( void * ); +NTSTATUS ISteamClient_SteamClient011_GetISteamNetworking( void * ); +NTSTATUS ISteamClient_SteamClient011_GetISteamRemoteStorage( void * ); +NTSTATUS ISteamClient_SteamClient011_GetISteamScreenshots( void * ); +NTSTATUS ISteamClient_SteamClient011_RunFrame( void * ); +NTSTATUS ISteamClient_SteamClient011_GetIPCCallCount( void * ); +NTSTATUS ISteamClient_SteamClient011_SetWarningMessageHook( void * ); +NTSTATUS ISteamClient_SteamClient011_BShutdownIfAllPipesClosed( void * ); +NTSTATUS ISteamClient_SteamClient011_GetISteamHTTP( void * ); +NTSTATUS ISteamClient_SteamClient012_CreateSteamPipe( void * ); +NTSTATUS ISteamClient_SteamClient012_BReleaseSteamPipe( void * ); +NTSTATUS ISteamClient_SteamClient012_ConnectToGlobalUser( void * ); +NTSTATUS ISteamClient_SteamClient012_CreateLocalUser( void * ); +NTSTATUS ISteamClient_SteamClient012_ReleaseUser( void * ); +NTSTATUS ISteamClient_SteamClient012_GetISteamUser( void * ); +NTSTATUS ISteamClient_SteamClient012_GetISteamGameServer( void * ); +NTSTATUS ISteamClient_SteamClient012_SetLocalIPBinding( void * ); +NTSTATUS ISteamClient_SteamClient012_GetISteamFriends( void * ); +NTSTATUS ISteamClient_SteamClient012_GetISteamUtils( void * ); +NTSTATUS ISteamClient_SteamClient012_GetISteamMatchmaking( void * ); +NTSTATUS ISteamClient_SteamClient012_GetISteamMatchmakingServers( void * ); +NTSTATUS ISteamClient_SteamClient012_GetISteamGenericInterface( void * ); +NTSTATUS ISteamClient_SteamClient012_GetISteamUserStats( void * ); +NTSTATUS ISteamClient_SteamClient012_GetISteamGameServerStats( void * ); +NTSTATUS ISteamClient_SteamClient012_GetISteamApps( void * ); +NTSTATUS ISteamClient_SteamClient012_GetISteamNetworking( void * ); +NTSTATUS ISteamClient_SteamClient012_GetISteamRemoteStorage( void * ); +NTSTATUS ISteamClient_SteamClient012_GetISteamScreenshots( void * ); +NTSTATUS ISteamClient_SteamClient012_RunFrame( void * ); +NTSTATUS ISteamClient_SteamClient012_GetIPCCallCount( void * ); +NTSTATUS ISteamClient_SteamClient012_SetWarningMessageHook( void * ); +NTSTATUS ISteamClient_SteamClient012_BShutdownIfAllPipesClosed( void * ); +NTSTATUS ISteamClient_SteamClient012_GetISteamHTTP( void * ); +NTSTATUS ISteamClient_SteamClient012_GetISteamUnifiedMessages( void * ); +NTSTATUS ISteamClient_SteamClient012_GetISteamController( void * ); +NTSTATUS ISteamClient_SteamClient012_GetISteamUGC( void * ); +NTSTATUS ISteamClient_SteamClient013_CreateSteamPipe( void * ); +NTSTATUS ISteamClient_SteamClient013_BReleaseSteamPipe( void * ); +NTSTATUS ISteamClient_SteamClient013_ConnectToGlobalUser( void * ); +NTSTATUS ISteamClient_SteamClient013_CreateLocalUser( void * ); +NTSTATUS ISteamClient_SteamClient013_ReleaseUser( void * ); +NTSTATUS ISteamClient_SteamClient013_GetISteamUser( void * ); +NTSTATUS ISteamClient_SteamClient013_GetISteamGameServer( void * ); +NTSTATUS ISteamClient_SteamClient013_SetLocalIPBinding( void * ); +NTSTATUS ISteamClient_SteamClient013_GetISteamFriends( void * ); +NTSTATUS ISteamClient_SteamClient013_GetISteamUtils( void * ); +NTSTATUS ISteamClient_SteamClient013_GetISteamMatchmaking( void * ); +NTSTATUS ISteamClient_SteamClient013_GetISteamMatchmakingServers( void * ); +NTSTATUS ISteamClient_SteamClient013_GetISteamGenericInterface( void * ); +NTSTATUS ISteamClient_SteamClient013_GetISteamUserStats( void * ); +NTSTATUS ISteamClient_SteamClient013_GetISteamGameServerStats( void * ); +NTSTATUS ISteamClient_SteamClient013_GetISteamApps( void * ); +NTSTATUS ISteamClient_SteamClient013_GetISteamNetworking( void * ); +NTSTATUS ISteamClient_SteamClient013_GetISteamRemoteStorage( void * ); +NTSTATUS ISteamClient_SteamClient013_GetISteamScreenshots( void * ); +NTSTATUS ISteamClient_SteamClient013_RunFrame( void * ); +NTSTATUS ISteamClient_SteamClient013_GetIPCCallCount( void * ); +NTSTATUS ISteamClient_SteamClient013_SetWarningMessageHook( void * ); +NTSTATUS ISteamClient_SteamClient013_BShutdownIfAllPipesClosed( void * ); +NTSTATUS ISteamClient_SteamClient013_GetISteamHTTP( void * ); +NTSTATUS ISteamClient_SteamClient013_GetISteamUnifiedMessages( void * ); +NTSTATUS ISteamClient_SteamClient013_GetISteamController( void * ); +NTSTATUS ISteamClient_SteamClient013_GetISteamUGC( void * ); +NTSTATUS ISteamClient_SteamClient013_GetISteamInventory( void * ); +NTSTATUS ISteamClient_SteamClient013_GetISteamVideo( void * ); +NTSTATUS ISteamClient_SteamClient013_GetISteamAppList( void * ); +NTSTATUS ISteamClient_SteamClient014_CreateSteamPipe( void * ); +NTSTATUS ISteamClient_SteamClient014_BReleaseSteamPipe( void * ); +NTSTATUS ISteamClient_SteamClient014_ConnectToGlobalUser( void * ); +NTSTATUS ISteamClient_SteamClient014_CreateLocalUser( void * ); +NTSTATUS ISteamClient_SteamClient014_ReleaseUser( void * ); +NTSTATUS ISteamClient_SteamClient014_GetISteamUser( void * ); +NTSTATUS ISteamClient_SteamClient014_GetISteamGameServer( void * ); +NTSTATUS ISteamClient_SteamClient014_SetLocalIPBinding( void * ); +NTSTATUS ISteamClient_SteamClient014_GetISteamFriends( void * ); +NTSTATUS ISteamClient_SteamClient014_GetISteamUtils( void * ); +NTSTATUS ISteamClient_SteamClient014_GetISteamMatchmaking( void * ); +NTSTATUS ISteamClient_SteamClient014_GetISteamMatchmakingServers( void * ); +NTSTATUS ISteamClient_SteamClient014_GetISteamGenericInterface( void * ); +NTSTATUS ISteamClient_SteamClient014_GetISteamUserStats( void * ); +NTSTATUS ISteamClient_SteamClient014_GetISteamGameServerStats( void * ); +NTSTATUS ISteamClient_SteamClient014_GetISteamApps( void * ); +NTSTATUS ISteamClient_SteamClient014_GetISteamNetworking( void * ); +NTSTATUS ISteamClient_SteamClient014_GetISteamRemoteStorage( void * ); +NTSTATUS ISteamClient_SteamClient014_GetISteamScreenshots( void * ); +NTSTATUS ISteamClient_SteamClient014_RunFrame( void * ); +NTSTATUS ISteamClient_SteamClient014_GetIPCCallCount( void * ); +NTSTATUS ISteamClient_SteamClient014_SetWarningMessageHook( void * ); +NTSTATUS ISteamClient_SteamClient014_BShutdownIfAllPipesClosed( void * ); +NTSTATUS ISteamClient_SteamClient014_GetISteamHTTP( void * ); +NTSTATUS ISteamClient_SteamClient014_GetISteamUnifiedMessages( void * ); +NTSTATUS ISteamClient_SteamClient014_GetISteamController( void * ); +NTSTATUS ISteamClient_SteamClient014_GetISteamUGC( void * ); +NTSTATUS ISteamClient_SteamClient014_GetISteamAppList( void * ); +NTSTATUS ISteamClient_SteamClient014_GetISteamMusic( void * ); +NTSTATUS ISteamClient_SteamClient015_CreateSteamPipe( void * ); +NTSTATUS ISteamClient_SteamClient015_BReleaseSteamPipe( void * ); +NTSTATUS ISteamClient_SteamClient015_ConnectToGlobalUser( void * ); +NTSTATUS ISteamClient_SteamClient015_CreateLocalUser( void * ); +NTSTATUS ISteamClient_SteamClient015_ReleaseUser( void * ); +NTSTATUS ISteamClient_SteamClient015_GetISteamUser( void * ); +NTSTATUS ISteamClient_SteamClient015_GetISteamGameServer( void * ); +NTSTATUS ISteamClient_SteamClient015_SetLocalIPBinding( void * ); +NTSTATUS ISteamClient_SteamClient015_GetISteamFriends( void * ); +NTSTATUS ISteamClient_SteamClient015_GetISteamUtils( void * ); +NTSTATUS ISteamClient_SteamClient015_GetISteamMatchmaking( void * ); +NTSTATUS ISteamClient_SteamClient015_GetISteamMatchmakingServers( void * ); +NTSTATUS ISteamClient_SteamClient015_GetISteamGenericInterface( void * ); +NTSTATUS ISteamClient_SteamClient015_GetISteamUserStats( void * ); +NTSTATUS ISteamClient_SteamClient015_GetISteamGameServerStats( void * ); +NTSTATUS ISteamClient_SteamClient015_GetISteamApps( void * ); +NTSTATUS ISteamClient_SteamClient015_GetISteamNetworking( void * ); +NTSTATUS ISteamClient_SteamClient015_GetISteamRemoteStorage( void * ); +NTSTATUS ISteamClient_SteamClient015_GetISteamScreenshots( void * ); +NTSTATUS ISteamClient_SteamClient015_RunFrame( void * ); +NTSTATUS ISteamClient_SteamClient015_GetIPCCallCount( void * ); +NTSTATUS ISteamClient_SteamClient015_SetWarningMessageHook( void * ); +NTSTATUS ISteamClient_SteamClient015_BShutdownIfAllPipesClosed( void * ); +NTSTATUS ISteamClient_SteamClient015_GetISteamHTTP( void * ); +NTSTATUS ISteamClient_SteamClient015_GetISteamUnifiedMessages( void * ); +NTSTATUS ISteamClient_SteamClient015_GetISteamController( void * ); +NTSTATUS ISteamClient_SteamClient015_GetISteamUGC( void * ); +NTSTATUS ISteamClient_SteamClient015_GetISteamAppList( void * ); +NTSTATUS ISteamClient_SteamClient015_GetISteamMusic( void * ); +NTSTATUS ISteamClient_SteamClient015_GetISteamMusicRemote( void * ); +NTSTATUS ISteamClient_SteamClient016_CreateSteamPipe( void * ); +NTSTATUS ISteamClient_SteamClient016_BReleaseSteamPipe( void * ); +NTSTATUS ISteamClient_SteamClient016_ConnectToGlobalUser( void * ); +NTSTATUS ISteamClient_SteamClient016_CreateLocalUser( void * ); +NTSTATUS ISteamClient_SteamClient016_ReleaseUser( void * ); +NTSTATUS ISteamClient_SteamClient016_GetISteamUser( void * ); +NTSTATUS ISteamClient_SteamClient016_GetISteamGameServer( void * ); +NTSTATUS ISteamClient_SteamClient016_SetLocalIPBinding( void * ); +NTSTATUS ISteamClient_SteamClient016_GetISteamFriends( void * ); +NTSTATUS ISteamClient_SteamClient016_GetISteamUtils( void * ); +NTSTATUS ISteamClient_SteamClient016_GetISteamMatchmaking( void * ); +NTSTATUS ISteamClient_SteamClient016_GetISteamMatchmakingServers( void * ); +NTSTATUS ISteamClient_SteamClient016_GetISteamGenericInterface( void * ); +NTSTATUS ISteamClient_SteamClient016_GetISteamUserStats( void * ); +NTSTATUS ISteamClient_SteamClient016_GetISteamGameServerStats( void * ); +NTSTATUS ISteamClient_SteamClient016_GetISteamApps( void * ); +NTSTATUS ISteamClient_SteamClient016_GetISteamNetworking( void * ); +NTSTATUS ISteamClient_SteamClient016_GetISteamRemoteStorage( void * ); +NTSTATUS ISteamClient_SteamClient016_GetISteamScreenshots( void * ); +NTSTATUS ISteamClient_SteamClient016_RunFrame( void * ); +NTSTATUS ISteamClient_SteamClient016_GetIPCCallCount( void * ); +NTSTATUS ISteamClient_SteamClient016_SetWarningMessageHook( void * ); +NTSTATUS ISteamClient_SteamClient016_BShutdownIfAllPipesClosed( void * ); +NTSTATUS ISteamClient_SteamClient016_GetISteamHTTP( void * ); +NTSTATUS ISteamClient_SteamClient016_GetISteamUnifiedMessages( void * ); +NTSTATUS ISteamClient_SteamClient016_GetISteamController( void * ); +NTSTATUS ISteamClient_SteamClient016_GetISteamUGC( void * ); +NTSTATUS ISteamClient_SteamClient016_GetISteamAppList( void * ); +NTSTATUS ISteamClient_SteamClient016_GetISteamMusic( void * ); +NTSTATUS ISteamClient_SteamClient016_GetISteamMusicRemote( void * ); +NTSTATUS ISteamClient_SteamClient016_GetISteamHTMLSurface( void * ); +NTSTATUS ISteamClient_SteamClient016_Set_SteamAPI_CPostAPIResultInProcess( void * ); +NTSTATUS ISteamClient_SteamClient016_Remove_SteamAPI_CPostAPIResultInProcess( void * ); +NTSTATUS ISteamClient_SteamClient016_Set_SteamAPI_CCheckCallbackRegisteredInProcess( void * ); +NTSTATUS ISteamClient_SteamClient017_CreateSteamPipe( void * ); +NTSTATUS ISteamClient_SteamClient017_BReleaseSteamPipe( void * ); +NTSTATUS ISteamClient_SteamClient017_ConnectToGlobalUser( void * ); +NTSTATUS ISteamClient_SteamClient017_CreateLocalUser( void * ); +NTSTATUS ISteamClient_SteamClient017_ReleaseUser( void * ); +NTSTATUS ISteamClient_SteamClient017_GetISteamUser( void * ); +NTSTATUS ISteamClient_SteamClient017_GetISteamGameServer( void * ); +NTSTATUS ISteamClient_SteamClient017_SetLocalIPBinding( void * ); +NTSTATUS ISteamClient_SteamClient017_GetISteamFriends( void * ); +NTSTATUS ISteamClient_SteamClient017_GetISteamUtils( void * ); +NTSTATUS ISteamClient_SteamClient017_GetISteamMatchmaking( void * ); +NTSTATUS ISteamClient_SteamClient017_GetISteamMatchmakingServers( void * ); +NTSTATUS ISteamClient_SteamClient017_GetISteamGenericInterface( void * ); +NTSTATUS ISteamClient_SteamClient017_GetISteamUserStats( void * ); +NTSTATUS ISteamClient_SteamClient017_GetISteamGameServerStats( void * ); +NTSTATUS ISteamClient_SteamClient017_GetISteamApps( void * ); +NTSTATUS ISteamClient_SteamClient017_GetISteamNetworking( void * ); +NTSTATUS ISteamClient_SteamClient017_GetISteamRemoteStorage( void * ); +NTSTATUS ISteamClient_SteamClient017_GetISteamScreenshots( void * ); +NTSTATUS ISteamClient_SteamClient017_RunFrame( void * ); +NTSTATUS ISteamClient_SteamClient017_GetIPCCallCount( void * ); +NTSTATUS ISteamClient_SteamClient017_SetWarningMessageHook( void * ); +NTSTATUS ISteamClient_SteamClient017_BShutdownIfAllPipesClosed( void * ); +NTSTATUS ISteamClient_SteamClient017_GetISteamHTTP( void * ); +NTSTATUS ISteamClient_SteamClient017_DEPRECATED_GetISteamUnifiedMessages( void * ); +NTSTATUS ISteamClient_SteamClient017_GetISteamController( void * ); +NTSTATUS ISteamClient_SteamClient017_GetISteamUGC( void * ); +NTSTATUS ISteamClient_SteamClient017_GetISteamAppList( void * ); +NTSTATUS ISteamClient_SteamClient017_GetISteamMusic( void * ); +NTSTATUS ISteamClient_SteamClient017_GetISteamMusicRemote( void * ); +NTSTATUS ISteamClient_SteamClient017_GetISteamHTMLSurface( void * ); +NTSTATUS ISteamClient_SteamClient017_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess( void * ); +NTSTATUS ISteamClient_SteamClient017_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess( void * ); +NTSTATUS ISteamClient_SteamClient017_Set_SteamAPI_CCheckCallbackRegisteredInProcess( void * ); +NTSTATUS ISteamClient_SteamClient017_GetISteamInventory( void * ); +NTSTATUS ISteamClient_SteamClient017_GetISteamVideo( void * ); +NTSTATUS ISteamClient_SteamClient017_GetISteamParentalSettings( void * ); +NTSTATUS ISteamClient_SteamClient018_CreateSteamPipe( void * ); +NTSTATUS ISteamClient_SteamClient018_BReleaseSteamPipe( void * ); +NTSTATUS ISteamClient_SteamClient018_ConnectToGlobalUser( void * ); +NTSTATUS ISteamClient_SteamClient018_CreateLocalUser( void * ); +NTSTATUS ISteamClient_SteamClient018_ReleaseUser( void * ); +NTSTATUS ISteamClient_SteamClient018_GetISteamUser( void * ); +NTSTATUS ISteamClient_SteamClient018_GetISteamGameServer( void * ); +NTSTATUS ISteamClient_SteamClient018_SetLocalIPBinding( void * ); +NTSTATUS ISteamClient_SteamClient018_GetISteamFriends( void * ); +NTSTATUS ISteamClient_SteamClient018_GetISteamUtils( void * ); +NTSTATUS ISteamClient_SteamClient018_GetISteamMatchmaking( void * ); +NTSTATUS ISteamClient_SteamClient018_GetISteamMatchmakingServers( void * ); +NTSTATUS ISteamClient_SteamClient018_GetISteamGenericInterface( void * ); +NTSTATUS ISteamClient_SteamClient018_GetISteamUserStats( void * ); +NTSTATUS ISteamClient_SteamClient018_GetISteamGameServerStats( void * ); +NTSTATUS ISteamClient_SteamClient018_GetISteamApps( void * ); +NTSTATUS ISteamClient_SteamClient018_GetISteamNetworking( void * ); +NTSTATUS ISteamClient_SteamClient018_GetISteamRemoteStorage( void * ); +NTSTATUS ISteamClient_SteamClient018_GetISteamScreenshots( void * ); +NTSTATUS ISteamClient_SteamClient018_GetISteamGameSearch( void * ); +NTSTATUS ISteamClient_SteamClient018_RunFrame( void * ); +NTSTATUS ISteamClient_SteamClient018_GetIPCCallCount( void * ); +NTSTATUS ISteamClient_SteamClient018_SetWarningMessageHook( void * ); +NTSTATUS ISteamClient_SteamClient018_BShutdownIfAllPipesClosed( void * ); +NTSTATUS ISteamClient_SteamClient018_GetISteamHTTP( void * ); +NTSTATUS ISteamClient_SteamClient018_DEPRECATED_GetISteamUnifiedMessages( void * ); +NTSTATUS ISteamClient_SteamClient018_GetISteamController( void * ); +NTSTATUS ISteamClient_SteamClient018_GetISteamUGC( void * ); +NTSTATUS ISteamClient_SteamClient018_GetISteamAppList( void * ); +NTSTATUS ISteamClient_SteamClient018_GetISteamMusic( void * ); +NTSTATUS ISteamClient_SteamClient018_GetISteamMusicRemote( void * ); +NTSTATUS ISteamClient_SteamClient018_GetISteamHTMLSurface( void * ); +NTSTATUS ISteamClient_SteamClient018_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess( void * ); +NTSTATUS ISteamClient_SteamClient018_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess( void * ); +NTSTATUS ISteamClient_SteamClient018_Set_SteamAPI_CCheckCallbackRegisteredInProcess( void * ); +NTSTATUS ISteamClient_SteamClient018_GetISteamInventory( void * ); +NTSTATUS ISteamClient_SteamClient018_GetISteamVideo( void * ); +NTSTATUS ISteamClient_SteamClient018_GetISteamParentalSettings( void * ); +NTSTATUS ISteamClient_SteamClient018_GetISteamInput( void * ); +NTSTATUS ISteamClient_SteamClient018_GetISteamParties( void * ); +NTSTATUS ISteamClient_SteamClient019_CreateSteamPipe( void * ); +NTSTATUS ISteamClient_SteamClient019_BReleaseSteamPipe( void * ); +NTSTATUS ISteamClient_SteamClient019_ConnectToGlobalUser( void * ); +NTSTATUS ISteamClient_SteamClient019_CreateLocalUser( void * ); +NTSTATUS ISteamClient_SteamClient019_ReleaseUser( void * ); +NTSTATUS ISteamClient_SteamClient019_GetISteamUser( void * ); +NTSTATUS ISteamClient_SteamClient019_GetISteamGameServer( void * ); +NTSTATUS ISteamClient_SteamClient019_SetLocalIPBinding( void * ); +NTSTATUS ISteamClient_SteamClient019_GetISteamFriends( void * ); +NTSTATUS ISteamClient_SteamClient019_GetISteamUtils( void * ); +NTSTATUS ISteamClient_SteamClient019_GetISteamMatchmaking( void * ); +NTSTATUS ISteamClient_SteamClient019_GetISteamMatchmakingServers( void * ); +NTSTATUS ISteamClient_SteamClient019_GetISteamGenericInterface( void * ); +NTSTATUS ISteamClient_SteamClient019_GetISteamUserStats( void * ); +NTSTATUS ISteamClient_SteamClient019_GetISteamGameServerStats( void * ); +NTSTATUS ISteamClient_SteamClient019_GetISteamApps( void * ); +NTSTATUS ISteamClient_SteamClient019_GetISteamNetworking( void * ); +NTSTATUS ISteamClient_SteamClient019_GetISteamRemoteStorage( void * ); +NTSTATUS ISteamClient_SteamClient019_GetISteamScreenshots( void * ); +NTSTATUS ISteamClient_SteamClient019_GetISteamGameSearch( void * ); +NTSTATUS ISteamClient_SteamClient019_RunFrame( void * ); +NTSTATUS ISteamClient_SteamClient019_GetIPCCallCount( void * ); +NTSTATUS ISteamClient_SteamClient019_SetWarningMessageHook( void * ); +NTSTATUS ISteamClient_SteamClient019_BShutdownIfAllPipesClosed( void * ); +NTSTATUS ISteamClient_SteamClient019_GetISteamHTTP( void * ); +NTSTATUS ISteamClient_SteamClient019_DEPRECATED_GetISteamUnifiedMessages( void * ); +NTSTATUS ISteamClient_SteamClient019_GetISteamController( void * ); +NTSTATUS ISteamClient_SteamClient019_GetISteamUGC( void * ); +NTSTATUS ISteamClient_SteamClient019_GetISteamAppList( void * ); +NTSTATUS ISteamClient_SteamClient019_GetISteamMusic( void * ); +NTSTATUS ISteamClient_SteamClient019_GetISteamMusicRemote( void * ); +NTSTATUS ISteamClient_SteamClient019_GetISteamHTMLSurface( void * ); +NTSTATUS ISteamClient_SteamClient019_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess( void * ); +NTSTATUS ISteamClient_SteamClient019_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess( void * ); +NTSTATUS ISteamClient_SteamClient019_Set_SteamAPI_CCheckCallbackRegisteredInProcess( void * ); +NTSTATUS ISteamClient_SteamClient019_GetISteamInventory( void * ); +NTSTATUS ISteamClient_SteamClient019_GetISteamVideo( void * ); +NTSTATUS ISteamClient_SteamClient019_GetISteamParentalSettings( void * ); +NTSTATUS ISteamClient_SteamClient019_GetISteamInput( void * ); +NTSTATUS ISteamClient_SteamClient019_GetISteamParties( void * ); +NTSTATUS ISteamClient_SteamClient019_GetISteamRemotePlay( void * ); +NTSTATUS ISteamClient_SteamClient020_CreateSteamPipe( void * ); +NTSTATUS ISteamClient_SteamClient020_BReleaseSteamPipe( void * ); +NTSTATUS ISteamClient_SteamClient020_ConnectToGlobalUser( void * ); +NTSTATUS ISteamClient_SteamClient020_CreateLocalUser( void * ); +NTSTATUS ISteamClient_SteamClient020_ReleaseUser( void * ); +NTSTATUS ISteamClient_SteamClient020_GetISteamUser( void * ); +NTSTATUS ISteamClient_SteamClient020_GetISteamGameServer( void * ); +NTSTATUS ISteamClient_SteamClient020_SetLocalIPBinding( void * ); +NTSTATUS ISteamClient_SteamClient020_GetISteamFriends( void * ); +NTSTATUS ISteamClient_SteamClient020_GetISteamUtils( void * ); +NTSTATUS ISteamClient_SteamClient020_GetISteamMatchmaking( void * ); +NTSTATUS ISteamClient_SteamClient020_GetISteamMatchmakingServers( void * ); +NTSTATUS ISteamClient_SteamClient020_GetISteamGenericInterface( void * ); +NTSTATUS ISteamClient_SteamClient020_GetISteamUserStats( void * ); +NTSTATUS ISteamClient_SteamClient020_GetISteamGameServerStats( void * ); +NTSTATUS ISteamClient_SteamClient020_GetISteamApps( void * ); +NTSTATUS ISteamClient_SteamClient020_GetISteamNetworking( void * ); +NTSTATUS ISteamClient_SteamClient020_GetISteamRemoteStorage( void * ); +NTSTATUS ISteamClient_SteamClient020_GetISteamScreenshots( void * ); +NTSTATUS ISteamClient_SteamClient020_GetISteamGameSearch( void * ); +NTSTATUS ISteamClient_SteamClient020_RunFrame( void * ); +NTSTATUS ISteamClient_SteamClient020_GetIPCCallCount( void * ); +NTSTATUS ISteamClient_SteamClient020_SetWarningMessageHook( void * ); +NTSTATUS ISteamClient_SteamClient020_BShutdownIfAllPipesClosed( void * ); +NTSTATUS ISteamClient_SteamClient020_GetISteamHTTP( void * ); +NTSTATUS ISteamClient_SteamClient020_DEPRECATED_GetISteamUnifiedMessages( void * ); +NTSTATUS ISteamClient_SteamClient020_GetISteamController( void * ); +NTSTATUS ISteamClient_SteamClient020_GetISteamUGC( void * ); +NTSTATUS ISteamClient_SteamClient020_GetISteamAppList( void * ); +NTSTATUS ISteamClient_SteamClient020_GetISteamMusic( void * ); +NTSTATUS ISteamClient_SteamClient020_GetISteamMusicRemote( void * ); +NTSTATUS ISteamClient_SteamClient020_GetISteamHTMLSurface( void * ); +NTSTATUS ISteamClient_SteamClient020_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess( void * ); +NTSTATUS ISteamClient_SteamClient020_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess( void * ); +NTSTATUS ISteamClient_SteamClient020_Set_SteamAPI_CCheckCallbackRegisteredInProcess( void * ); +NTSTATUS ISteamClient_SteamClient020_GetISteamInventory( void * ); +NTSTATUS ISteamClient_SteamClient020_GetISteamVideo( void * ); +NTSTATUS ISteamClient_SteamClient020_GetISteamParentalSettings( void * ); +NTSTATUS ISteamClient_SteamClient020_GetISteamInput( void * ); +NTSTATUS ISteamClient_SteamClient020_GetISteamParties( void * ); +NTSTATUS ISteamClient_SteamClient020_GetISteamRemotePlay( void * ); +NTSTATUS ISteamClient_SteamClient020_DestroyAllInterfaces( void * ); +NTSTATUS ISteamController_SteamController003_Init( void * ); +NTSTATUS ISteamController_SteamController003_Shutdown( void * ); +NTSTATUS ISteamController_SteamController003_RunFrame( void * ); +NTSTATUS ISteamController_SteamController003_GetConnectedControllers( void * ); +NTSTATUS ISteamController_SteamController003_ShowBindingPanel( void * ); +NTSTATUS ISteamController_SteamController003_GetActionSetHandle( void * ); +NTSTATUS ISteamController_SteamController003_ActivateActionSet( void * ); +NTSTATUS ISteamController_SteamController003_GetCurrentActionSet( void * ); +NTSTATUS ISteamController_SteamController003_GetDigitalActionHandle( void * ); +NTSTATUS ISteamController_SteamController003_GetDigitalActionData( void * ); +NTSTATUS ISteamController_SteamController003_GetDigitalActionOrigins( void * ); +NTSTATUS ISteamController_SteamController003_GetAnalogActionHandle( void * ); +NTSTATUS ISteamController_SteamController003_GetAnalogActionData( void * ); +NTSTATUS ISteamController_SteamController003_GetAnalogActionOrigins( void * ); +NTSTATUS ISteamController_SteamController003_StopAnalogActionMomentum( void * ); +NTSTATUS ISteamController_SteamController003_TriggerHapticPulse( void * ); +NTSTATUS ISteamController_SteamController003_TriggerRepeatedHapticPulse( void * ); +NTSTATUS ISteamController_SteamController004_Init( void * ); +NTSTATUS ISteamController_SteamController004_Shutdown( void * ); +NTSTATUS ISteamController_SteamController004_RunFrame( void * ); +NTSTATUS ISteamController_SteamController004_GetConnectedControllers( void * ); +NTSTATUS ISteamController_SteamController004_ShowBindingPanel( void * ); +NTSTATUS ISteamController_SteamController004_GetActionSetHandle( void * ); +NTSTATUS ISteamController_SteamController004_ActivateActionSet( void * ); +NTSTATUS ISteamController_SteamController004_GetCurrentActionSet( void * ); +NTSTATUS ISteamController_SteamController004_GetDigitalActionHandle( void * ); +NTSTATUS ISteamController_SteamController004_GetDigitalActionData( void * ); +NTSTATUS ISteamController_SteamController004_GetDigitalActionOrigins( void * ); +NTSTATUS ISteamController_SteamController004_GetAnalogActionHandle( void * ); +NTSTATUS ISteamController_SteamController004_GetAnalogActionData( void * ); +NTSTATUS ISteamController_SteamController004_GetAnalogActionOrigins( void * ); +NTSTATUS ISteamController_SteamController004_StopAnalogActionMomentum( void * ); +NTSTATUS ISteamController_SteamController004_TriggerHapticPulse( void * ); +NTSTATUS ISteamController_SteamController004_TriggerRepeatedHapticPulse( void * ); +NTSTATUS ISteamController_SteamController004_GetGamepadIndexForController( void * ); +NTSTATUS ISteamController_SteamController004_GetControllerForGamepadIndex( void * ); +NTSTATUS ISteamController_SteamController004_GetMotionData( void * ); +NTSTATUS ISteamController_SteamController004_ShowDigitalActionOrigins( void * ); +NTSTATUS ISteamController_SteamController004_ShowAnalogActionOrigins( void * ); +NTSTATUS ISteamController_SteamController005_Init( void * ); +NTSTATUS ISteamController_SteamController005_Shutdown( void * ); +NTSTATUS ISteamController_SteamController005_RunFrame( void * ); +NTSTATUS ISteamController_SteamController005_GetConnectedControllers( void * ); +NTSTATUS ISteamController_SteamController005_ShowBindingPanel( void * ); +NTSTATUS ISteamController_SteamController005_GetActionSetHandle( void * ); +NTSTATUS ISteamController_SteamController005_ActivateActionSet( void * ); +NTSTATUS ISteamController_SteamController005_GetCurrentActionSet( void * ); +NTSTATUS ISteamController_SteamController005_GetDigitalActionHandle( void * ); +NTSTATUS ISteamController_SteamController005_GetDigitalActionData( void * ); +NTSTATUS ISteamController_SteamController005_GetDigitalActionOrigins( void * ); +NTSTATUS ISteamController_SteamController005_GetAnalogActionHandle( void * ); +NTSTATUS ISteamController_SteamController005_GetAnalogActionData( void * ); +NTSTATUS ISteamController_SteamController005_GetAnalogActionOrigins( void * ); +NTSTATUS ISteamController_SteamController005_StopAnalogActionMomentum( void * ); +NTSTATUS ISteamController_SteamController005_TriggerHapticPulse( void * ); +NTSTATUS ISteamController_SteamController005_TriggerRepeatedHapticPulse( void * ); +NTSTATUS ISteamController_SteamController005_TriggerVibration( void * ); +NTSTATUS ISteamController_SteamController005_SetLEDColor( void * ); +NTSTATUS ISteamController_SteamController005_GetGamepadIndexForController( void * ); +NTSTATUS ISteamController_SteamController005_GetControllerForGamepadIndex( void * ); +NTSTATUS ISteamController_SteamController005_GetMotionData( void * ); +NTSTATUS ISteamController_SteamController005_ShowDigitalActionOrigins( void * ); +NTSTATUS ISteamController_SteamController005_ShowAnalogActionOrigins( void * ); +NTSTATUS ISteamController_SteamController005_GetStringForActionOrigin( void * ); +NTSTATUS ISteamController_SteamController005_GetGlyphForActionOrigin( void * ); +NTSTATUS ISteamController_SteamController006_Init( void * ); +NTSTATUS ISteamController_SteamController006_Shutdown( void * ); +NTSTATUS ISteamController_SteamController006_RunFrame( void * ); +NTSTATUS ISteamController_SteamController006_GetConnectedControllers( void * ); +NTSTATUS ISteamController_SteamController006_ShowBindingPanel( void * ); +NTSTATUS ISteamController_SteamController006_GetActionSetHandle( void * ); +NTSTATUS ISteamController_SteamController006_ActivateActionSet( void * ); +NTSTATUS ISteamController_SteamController006_GetCurrentActionSet( void * ); +NTSTATUS ISteamController_SteamController006_ActivateActionSetLayer( void * ); +NTSTATUS ISteamController_SteamController006_DeactivateActionSetLayer( void * ); +NTSTATUS ISteamController_SteamController006_DeactivateAllActionSetLayers( void * ); +NTSTATUS ISteamController_SteamController006_GetActiveActionSetLayers( void * ); +NTSTATUS ISteamController_SteamController006_GetDigitalActionHandle( void * ); +NTSTATUS ISteamController_SteamController006_GetDigitalActionData( void * ); +NTSTATUS ISteamController_SteamController006_GetDigitalActionOrigins( void * ); +NTSTATUS ISteamController_SteamController006_GetAnalogActionHandle( void * ); +NTSTATUS ISteamController_SteamController006_GetAnalogActionData( void * ); +NTSTATUS ISteamController_SteamController006_GetAnalogActionOrigins( void * ); +NTSTATUS ISteamController_SteamController006_StopAnalogActionMomentum( void * ); +NTSTATUS ISteamController_SteamController006_TriggerHapticPulse( void * ); +NTSTATUS ISteamController_SteamController006_TriggerRepeatedHapticPulse( void * ); +NTSTATUS ISteamController_SteamController006_TriggerVibration( void * ); +NTSTATUS ISteamController_SteamController006_SetLEDColor( void * ); +NTSTATUS ISteamController_SteamController006_GetGamepadIndexForController( void * ); +NTSTATUS ISteamController_SteamController006_GetControllerForGamepadIndex( void * ); +NTSTATUS ISteamController_SteamController006_GetMotionData( void * ); +NTSTATUS ISteamController_SteamController006_ShowDigitalActionOrigins( void * ); +NTSTATUS ISteamController_SteamController006_ShowAnalogActionOrigins( void * ); +NTSTATUS ISteamController_SteamController006_GetStringForActionOrigin( void * ); +NTSTATUS ISteamController_SteamController006_GetGlyphForActionOrigin( void * ); +NTSTATUS ISteamController_SteamController006_GetInputTypeForHandle( void * ); +NTSTATUS ISteamController_SteamController007_Init( void * ); +NTSTATUS ISteamController_SteamController007_Shutdown( void * ); +NTSTATUS ISteamController_SteamController007_RunFrame( void * ); +NTSTATUS ISteamController_SteamController007_GetConnectedControllers( void * ); +NTSTATUS ISteamController_SteamController007_GetActionSetHandle( void * ); +NTSTATUS ISteamController_SteamController007_ActivateActionSet( void * ); +NTSTATUS ISteamController_SteamController007_GetCurrentActionSet( void * ); +NTSTATUS ISteamController_SteamController007_ActivateActionSetLayer( void * ); +NTSTATUS ISteamController_SteamController007_DeactivateActionSetLayer( void * ); +NTSTATUS ISteamController_SteamController007_DeactivateAllActionSetLayers( void * ); +NTSTATUS ISteamController_SteamController007_GetActiveActionSetLayers( void * ); +NTSTATUS ISteamController_SteamController007_GetDigitalActionHandle( void * ); +NTSTATUS ISteamController_SteamController007_GetDigitalActionData( void * ); +NTSTATUS ISteamController_SteamController007_GetDigitalActionOrigins( void * ); +NTSTATUS ISteamController_SteamController007_GetAnalogActionHandle( void * ); +NTSTATUS ISteamController_SteamController007_GetAnalogActionData( void * ); +NTSTATUS ISteamController_SteamController007_GetAnalogActionOrigins( void * ); +NTSTATUS ISteamController_SteamController007_GetGlyphForActionOrigin( void * ); +NTSTATUS ISteamController_SteamController007_GetStringForActionOrigin( void * ); +NTSTATUS ISteamController_SteamController007_StopAnalogActionMomentum( void * ); +NTSTATUS ISteamController_SteamController007_GetMotionData( void * ); +NTSTATUS ISteamController_SteamController007_TriggerHapticPulse( void * ); +NTSTATUS ISteamController_SteamController007_TriggerRepeatedHapticPulse( void * ); +NTSTATUS ISteamController_SteamController007_TriggerVibration( void * ); +NTSTATUS ISteamController_SteamController007_SetLEDColor( void * ); +NTSTATUS ISteamController_SteamController007_ShowBindingPanel( void * ); +NTSTATUS ISteamController_SteamController007_GetInputTypeForHandle( void * ); +NTSTATUS ISteamController_SteamController007_GetControllerForGamepadIndex( void * ); +NTSTATUS ISteamController_SteamController007_GetGamepadIndexForController( void * ); +NTSTATUS ISteamController_SteamController007_GetStringForXboxOrigin( void * ); +NTSTATUS ISteamController_SteamController007_GetGlyphForXboxOrigin( void * ); +NTSTATUS ISteamController_SteamController007_GetActionOriginFromXboxOrigin( void * ); +NTSTATUS ISteamController_SteamController007_TranslateActionOrigin( void * ); +NTSTATUS ISteamController_SteamController007_GetControllerBindingRevision( void * ); +NTSTATUS ISteamController_SteamController008_Init( void * ); +NTSTATUS ISteamController_SteamController008_Shutdown( void * ); +NTSTATUS ISteamController_SteamController008_RunFrame( void * ); +NTSTATUS ISteamController_SteamController008_GetConnectedControllers( void * ); +NTSTATUS ISteamController_SteamController008_GetActionSetHandle( void * ); +NTSTATUS ISteamController_SteamController008_ActivateActionSet( void * ); +NTSTATUS ISteamController_SteamController008_GetCurrentActionSet( void * ); +NTSTATUS ISteamController_SteamController008_ActivateActionSetLayer( void * ); +NTSTATUS ISteamController_SteamController008_DeactivateActionSetLayer( void * ); +NTSTATUS ISteamController_SteamController008_DeactivateAllActionSetLayers( void * ); +NTSTATUS ISteamController_SteamController008_GetActiveActionSetLayers( void * ); +NTSTATUS ISteamController_SteamController008_GetDigitalActionHandle( void * ); +NTSTATUS ISteamController_SteamController008_GetDigitalActionData( void * ); +NTSTATUS ISteamController_SteamController008_GetDigitalActionOrigins( void * ); +NTSTATUS ISteamController_SteamController008_GetAnalogActionHandle( void * ); +NTSTATUS ISteamController_SteamController008_GetAnalogActionData( void * ); +NTSTATUS ISteamController_SteamController008_GetAnalogActionOrigins( void * ); +NTSTATUS ISteamController_SteamController008_GetGlyphForActionOrigin( void * ); +NTSTATUS ISteamController_SteamController008_GetStringForActionOrigin( void * ); +NTSTATUS ISteamController_SteamController008_StopAnalogActionMomentum( void * ); +NTSTATUS ISteamController_SteamController008_GetMotionData( void * ); +NTSTATUS ISteamController_SteamController008_TriggerHapticPulse( void * ); +NTSTATUS ISteamController_SteamController008_TriggerRepeatedHapticPulse( void * ); +NTSTATUS ISteamController_SteamController008_TriggerVibration( void * ); +NTSTATUS ISteamController_SteamController008_SetLEDColor( void * ); +NTSTATUS ISteamController_SteamController008_ShowBindingPanel( void * ); +NTSTATUS ISteamController_SteamController008_GetInputTypeForHandle( void * ); +NTSTATUS ISteamController_SteamController008_GetControllerForGamepadIndex( void * ); +NTSTATUS ISteamController_SteamController008_GetGamepadIndexForController( void * ); +NTSTATUS ISteamController_SteamController008_GetStringForXboxOrigin( void * ); +NTSTATUS ISteamController_SteamController008_GetGlyphForXboxOrigin( void * ); +NTSTATUS ISteamController_SteamController008_GetActionOriginFromXboxOrigin( void * ); +NTSTATUS ISteamController_SteamController008_TranslateActionOrigin( void * ); +NTSTATUS ISteamController_SteamController008_GetControllerBindingRevision( void * ); +NTSTATUS ISteamFriends_SteamFriends001_GetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends001_SetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends001_GetPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends001_SetPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends001_AddFriend( void * ); +NTSTATUS ISteamFriends_SteamFriends001_RemoveFriend( void * ); +NTSTATUS ISteamFriends_SteamFriends001_HasFriend( void * ); +NTSTATUS ISteamFriends_SteamFriends001_GetFriendRelationship( void * ); +NTSTATUS ISteamFriends_SteamFriends001_GetFriendPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlayed( void * ); +NTSTATUS ISteamFriends_SteamFriends001_GetFriendPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends001_AddFriendByName( void * ); +NTSTATUS ISteamFriends_SteamFriends001_GetFriendCount( void * ); +NTSTATUS ISteamFriends_SteamFriends001_GetFriendByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends001_SendMsgToFriend( void * ); +NTSTATUS ISteamFriends_SteamFriends001_SetFriendRegValue( void * ); +NTSTATUS ISteamFriends_SteamFriends001_GetFriendRegValue( void * ); +NTSTATUS ISteamFriends_SteamFriends001_GetFriendPersonaNameHistory( void * ); +NTSTATUS ISteamFriends_SteamFriends001_GetChatMessage( void * ); +NTSTATUS ISteamFriends_SteamFriends001_SendMsgToFriend_2( void * ); +NTSTATUS ISteamFriends_SteamFriends001_GetChatIDOfChatHistoryStart( void * ); +NTSTATUS ISteamFriends_SteamFriends001_SetChatHistoryStart( void * ); +NTSTATUS ISteamFriends_SteamFriends001_ClearChatHistory( void * ); +NTSTATUS ISteamFriends_SteamFriends001_InviteFriendByEmail( void * ); +NTSTATUS ISteamFriends_SteamFriends001_GetBlockedFriendCount( void * ); +NTSTATUS ISteamFriends_SteamFriends001_GetFriendGamePlayed( void * ); +NTSTATUS ISteamFriends_SteamFriends001_GetFriendGamePlayed2( void * ); +NTSTATUS ISteamFriends_SteamFriends002_GetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends002_SetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends002_GetPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends002_SetPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends002_GetFriendCount( void * ); +NTSTATUS ISteamFriends_SteamFriends002_GetFriendByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends002_GetFriendRelationship( void * ); +NTSTATUS ISteamFriends_SteamFriends002_GetFriendPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends002_GetFriendPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends002_SetFriendRegValue( void * ); +NTSTATUS ISteamFriends_SteamFriends002_GetFriendRegValue( void * ); +NTSTATUS ISteamFriends_SteamFriends002_GetFriendGamePlayed( void * ); +NTSTATUS ISteamFriends_SteamFriends002_GetFriendPersonaNameHistory( void * ); +NTSTATUS ISteamFriends_SteamFriends002_AddFriend( void * ); +NTSTATUS ISteamFriends_SteamFriends002_RemoveFriend( void * ); +NTSTATUS ISteamFriends_SteamFriends002_HasFriend( void * ); +NTSTATUS ISteamFriends_SteamFriends002_AddFriendByName( void * ); +NTSTATUS ISteamFriends_SteamFriends002_InviteFriendByEmail( void * ); +NTSTATUS ISteamFriends_SteamFriends002_GetChatMessage( void * ); +NTSTATUS ISteamFriends_SteamFriends002_SendMsgToFriend( void * ); +NTSTATUS ISteamFriends_SteamFriends002_GetChatIDOfChatHistoryStart( void * ); +NTSTATUS ISteamFriends_SteamFriends002_SetChatHistoryStart( void * ); +NTSTATUS ISteamFriends_SteamFriends002_ClearChatHistory( void * ); +NTSTATUS ISteamFriends_SteamFriends002_GetClanCount( void * ); +NTSTATUS ISteamFriends_SteamFriends002_GetClanByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends002_GetClanName( void * ); +NTSTATUS ISteamFriends_SteamFriends002_InviteFriendToClan( void * ); +NTSTATUS ISteamFriends_SteamFriends002_AcknowledgeInviteToClan( void * ); +NTSTATUS ISteamFriends_SteamFriends002_GetFriendCountFromSource( void * ); +NTSTATUS ISteamFriends_SteamFriends002_GetFriendFromSourceByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends003_GetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends003_SetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends003_GetPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends003_GetFriendCount( void * ); +NTSTATUS ISteamFriends_SteamFriends003_GetFriendByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends003_GetFriendRelationship( void * ); +NTSTATUS ISteamFriends_SteamFriends003_GetFriendPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends003_GetFriendPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends003_GetFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends003_GetFriendGamePlayed( void * ); +NTSTATUS ISteamFriends_SteamFriends003_GetFriendPersonaNameHistory( void * ); +NTSTATUS ISteamFriends_SteamFriends003_HasFriend( void * ); +NTSTATUS ISteamFriends_SteamFriends003_GetClanCount( void * ); +NTSTATUS ISteamFriends_SteamFriends003_GetClanByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends003_GetClanName( void * ); +NTSTATUS ISteamFriends_SteamFriends003_GetFriendCountFromSource( void * ); +NTSTATUS ISteamFriends_SteamFriends003_GetFriendFromSourceByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends003_IsUserInSource( void * ); +NTSTATUS ISteamFriends_SteamFriends003_SetInGameVoiceSpeaking( void * ); +NTSTATUS ISteamFriends_SteamFriends003_ActivateGameOverlay( void * ); +NTSTATUS ISteamFriends_SteamFriends004_GetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends004_SetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends004_GetPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends004_GetFriendCount( void * ); +NTSTATUS ISteamFriends_SteamFriends004_GetFriendByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends004_GetFriendRelationship( void * ); +NTSTATUS ISteamFriends_SteamFriends004_GetFriendPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends004_GetFriendPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends004_GetFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends004_GetFriendGamePlayed( void * ); +NTSTATUS ISteamFriends_SteamFriends004_GetFriendPersonaNameHistory( void * ); +NTSTATUS ISteamFriends_SteamFriends004_HasFriend( void * ); +NTSTATUS ISteamFriends_SteamFriends004_GetClanCount( void * ); +NTSTATUS ISteamFriends_SteamFriends004_GetClanByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends004_GetClanName( void * ); +NTSTATUS ISteamFriends_SteamFriends004_GetFriendCountFromSource( void * ); +NTSTATUS ISteamFriends_SteamFriends004_GetFriendFromSourceByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends004_IsUserInSource( void * ); +NTSTATUS ISteamFriends_SteamFriends004_SetInGameVoiceSpeaking( void * ); +NTSTATUS ISteamFriends_SteamFriends004_ActivateGameOverlay( void * ); +NTSTATUS ISteamFriends_SteamFriends005_GetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends005_SetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends005_GetPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends005_GetFriendCount( void * ); +NTSTATUS ISteamFriends_SteamFriends005_GetFriendByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends005_GetFriendRelationship( void * ); +NTSTATUS ISteamFriends_SteamFriends005_GetFriendPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends005_GetFriendPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends005_GetFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends005_GetFriendGamePlayed( void * ); +NTSTATUS ISteamFriends_SteamFriends005_GetFriendPersonaNameHistory( void * ); +NTSTATUS ISteamFriends_SteamFriends005_HasFriend( void * ); +NTSTATUS ISteamFriends_SteamFriends005_GetClanCount( void * ); +NTSTATUS ISteamFriends_SteamFriends005_GetClanByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends005_GetClanName( void * ); +NTSTATUS ISteamFriends_SteamFriends005_GetFriendCountFromSource( void * ); +NTSTATUS ISteamFriends_SteamFriends005_GetFriendFromSourceByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends005_IsUserInSource( void * ); +NTSTATUS ISteamFriends_SteamFriends005_SetInGameVoiceSpeaking( void * ); +NTSTATUS ISteamFriends_SteamFriends005_ActivateGameOverlay( void * ); +NTSTATUS ISteamFriends_SteamFriends005_ActivateGameOverlayToUser( void * ); +NTSTATUS ISteamFriends_SteamFriends005_ActivateGameOverlayToWebPage( void * ); +NTSTATUS ISteamFriends_SteamFriends005_ActivateGameOverlayToStore( void * ); +NTSTATUS ISteamFriends_SteamFriends005_SetPlayedWith( void * ); +NTSTATUS ISteamFriends_SteamFriends006_GetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends006_SetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends006_GetPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends006_GetFriendCount( void * ); +NTSTATUS ISteamFriends_SteamFriends006_GetFriendByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends006_GetFriendRelationship( void * ); +NTSTATUS ISteamFriends_SteamFriends006_GetFriendPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends006_GetFriendPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends006_GetFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends006_GetFriendGamePlayed( void * ); +NTSTATUS ISteamFriends_SteamFriends006_GetFriendPersonaNameHistory( void * ); +NTSTATUS ISteamFriends_SteamFriends006_HasFriend( void * ); +NTSTATUS ISteamFriends_SteamFriends006_GetClanCount( void * ); +NTSTATUS ISteamFriends_SteamFriends006_GetClanByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends006_GetClanName( void * ); +NTSTATUS ISteamFriends_SteamFriends006_GetClanTag( void * ); +NTSTATUS ISteamFriends_SteamFriends006_GetFriendCountFromSource( void * ); +NTSTATUS ISteamFriends_SteamFriends006_GetFriendFromSourceByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends006_IsUserInSource( void * ); +NTSTATUS ISteamFriends_SteamFriends006_SetInGameVoiceSpeaking( void * ); +NTSTATUS ISteamFriends_SteamFriends006_ActivateGameOverlay( void * ); +NTSTATUS ISteamFriends_SteamFriends006_ActivateGameOverlayToUser( void * ); +NTSTATUS ISteamFriends_SteamFriends006_ActivateGameOverlayToWebPage( void * ); +NTSTATUS ISteamFriends_SteamFriends006_ActivateGameOverlayToStore( void * ); +NTSTATUS ISteamFriends_SteamFriends006_SetPlayedWith( void * ); +NTSTATUS ISteamFriends_SteamFriends006_ActivateGameOverlayInviteDialog( void * ); +NTSTATUS ISteamFriends_SteamFriends007_GetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends007_SetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends007_GetPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends007_GetFriendCount( void * ); +NTSTATUS ISteamFriends_SteamFriends007_GetFriendByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends007_GetFriendRelationship( void * ); +NTSTATUS ISteamFriends_SteamFriends007_GetFriendPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends007_GetFriendPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends007_GetFriendGamePlayed( void * ); +NTSTATUS ISteamFriends_SteamFriends007_GetFriendPersonaNameHistory( void * ); +NTSTATUS ISteamFriends_SteamFriends007_HasFriend( void * ); +NTSTATUS ISteamFriends_SteamFriends007_GetClanCount( void * ); +NTSTATUS ISteamFriends_SteamFriends007_GetClanByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends007_GetClanName( void * ); +NTSTATUS ISteamFriends_SteamFriends007_GetClanTag( void * ); +NTSTATUS ISteamFriends_SteamFriends007_GetFriendCountFromSource( void * ); +NTSTATUS ISteamFriends_SteamFriends007_GetFriendFromSourceByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends007_IsUserInSource( void * ); +NTSTATUS ISteamFriends_SteamFriends007_SetInGameVoiceSpeaking( void * ); +NTSTATUS ISteamFriends_SteamFriends007_ActivateGameOverlay( void * ); +NTSTATUS ISteamFriends_SteamFriends007_ActivateGameOverlayToUser( void * ); +NTSTATUS ISteamFriends_SteamFriends007_ActivateGameOverlayToWebPage( void * ); +NTSTATUS ISteamFriends_SteamFriends007_ActivateGameOverlayToStore( void * ); +NTSTATUS ISteamFriends_SteamFriends007_SetPlayedWith( void * ); +NTSTATUS ISteamFriends_SteamFriends007_ActivateGameOverlayInviteDialog( void * ); +NTSTATUS ISteamFriends_SteamFriends007_GetSmallFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends007_GetMediumFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends007_GetLargeFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends008_GetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends008_SetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends008_GetPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends008_GetFriendCount( void * ); +NTSTATUS ISteamFriends_SteamFriends008_GetFriendByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends008_GetFriendRelationship( void * ); +NTSTATUS ISteamFriends_SteamFriends008_GetFriendPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends008_GetFriendPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends008_GetFriendGamePlayed( void * ); +NTSTATUS ISteamFriends_SteamFriends008_GetFriendPersonaNameHistory( void * ); +NTSTATUS ISteamFriends_SteamFriends008_HasFriend( void * ); +NTSTATUS ISteamFriends_SteamFriends008_GetClanCount( void * ); +NTSTATUS ISteamFriends_SteamFriends008_GetClanByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends008_GetClanName( void * ); +NTSTATUS ISteamFriends_SteamFriends008_GetClanTag( void * ); +NTSTATUS ISteamFriends_SteamFriends008_GetFriendCountFromSource( void * ); +NTSTATUS ISteamFriends_SteamFriends008_GetFriendFromSourceByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends008_IsUserInSource( void * ); +NTSTATUS ISteamFriends_SteamFriends008_SetInGameVoiceSpeaking( void * ); +NTSTATUS ISteamFriends_SteamFriends008_ActivateGameOverlay( void * ); +NTSTATUS ISteamFriends_SteamFriends008_ActivateGameOverlayToUser( void * ); +NTSTATUS ISteamFriends_SteamFriends008_ActivateGameOverlayToWebPage( void * ); +NTSTATUS ISteamFriends_SteamFriends008_ActivateGameOverlayToStore( void * ); +NTSTATUS ISteamFriends_SteamFriends008_SetPlayedWith( void * ); +NTSTATUS ISteamFriends_SteamFriends008_ActivateGameOverlayInviteDialog( void * ); +NTSTATUS ISteamFriends_SteamFriends008_GetSmallFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends008_GetMediumFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends008_GetLargeFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends008_RequestUserInformation( void * ); +NTSTATUS ISteamFriends_SteamFriends008_RequestClanOfficerList( void * ); +NTSTATUS ISteamFriends_SteamFriends008_GetClanOwner( void * ); +NTSTATUS ISteamFriends_SteamFriends008_GetClanOfficerCount( void * ); +NTSTATUS ISteamFriends_SteamFriends008_GetClanOfficerByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends008_GetUserRestrictions( void * ); +NTSTATUS ISteamFriends_SteamFriends009_GetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends009_SetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends009_GetPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends009_GetFriendCount( void * ); +NTSTATUS ISteamFriends_SteamFriends009_GetFriendByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends009_GetFriendRelationship( void * ); +NTSTATUS ISteamFriends_SteamFriends009_GetFriendPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends009_GetFriendPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends009_GetFriendGamePlayed( void * ); +NTSTATUS ISteamFriends_SteamFriends009_GetFriendPersonaNameHistory( void * ); +NTSTATUS ISteamFriends_SteamFriends009_HasFriend( void * ); +NTSTATUS ISteamFriends_SteamFriends009_GetClanCount( void * ); +NTSTATUS ISteamFriends_SteamFriends009_GetClanByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends009_GetClanName( void * ); +NTSTATUS ISteamFriends_SteamFriends009_GetClanTag( void * ); +NTSTATUS ISteamFriends_SteamFriends009_GetFriendCountFromSource( void * ); +NTSTATUS ISteamFriends_SteamFriends009_GetFriendFromSourceByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends009_IsUserInSource( void * ); +NTSTATUS ISteamFriends_SteamFriends009_SetInGameVoiceSpeaking( void * ); +NTSTATUS ISteamFriends_SteamFriends009_ActivateGameOverlay( void * ); +NTSTATUS ISteamFriends_SteamFriends009_ActivateGameOverlayToUser( void * ); +NTSTATUS ISteamFriends_SteamFriends009_ActivateGameOverlayToWebPage( void * ); +NTSTATUS ISteamFriends_SteamFriends009_ActivateGameOverlayToStore( void * ); +NTSTATUS ISteamFriends_SteamFriends009_SetPlayedWith( void * ); +NTSTATUS ISteamFriends_SteamFriends009_ActivateGameOverlayInviteDialog( void * ); +NTSTATUS ISteamFriends_SteamFriends009_GetSmallFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends009_GetMediumFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends009_GetLargeFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends009_RequestUserInformation( void * ); +NTSTATUS ISteamFriends_SteamFriends009_RequestClanOfficerList( void * ); +NTSTATUS ISteamFriends_SteamFriends009_GetClanOwner( void * ); +NTSTATUS ISteamFriends_SteamFriends009_GetClanOfficerCount( void * ); +NTSTATUS ISteamFriends_SteamFriends009_GetClanOfficerByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends009_GetUserRestrictions( void * ); +NTSTATUS ISteamFriends_SteamFriends009_SetRichPresence( void * ); +NTSTATUS ISteamFriends_SteamFriends009_ClearRichPresence( void * ); +NTSTATUS ISteamFriends_SteamFriends009_GetFriendRichPresence( void * ); +NTSTATUS ISteamFriends_SteamFriends009_GetFriendRichPresenceKeyCount( void * ); +NTSTATUS ISteamFriends_SteamFriends009_GetFriendRichPresenceKeyByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends009_InviteUserToGame( void * ); +NTSTATUS ISteamFriends_SteamFriends009_GetCoplayFriendCount( void * ); +NTSTATUS ISteamFriends_SteamFriends009_GetCoplayFriend( void * ); +NTSTATUS ISteamFriends_SteamFriends009_GetFriendCoplayTime( void * ); +NTSTATUS ISteamFriends_SteamFriends009_GetFriendCoplayGame( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends010_SetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetFriendCount( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetFriendByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetFriendRelationship( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetFriendPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetFriendPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetFriendGamePlayed( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetFriendPersonaNameHistory( void * ); +NTSTATUS ISteamFriends_SteamFriends010_HasFriend( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetClanCount( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetClanByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetClanName( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetClanTag( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetClanActivityCounts( void * ); +NTSTATUS ISteamFriends_SteamFriends010_DownloadClanActivityCounts( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetFriendCountFromSource( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetFriendFromSourceByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends010_IsUserInSource( void * ); +NTSTATUS ISteamFriends_SteamFriends010_SetInGameVoiceSpeaking( void * ); +NTSTATUS ISteamFriends_SteamFriends010_ActivateGameOverlay( void * ); +NTSTATUS ISteamFriends_SteamFriends010_ActivateGameOverlayToUser( void * ); +NTSTATUS ISteamFriends_SteamFriends010_ActivateGameOverlayToWebPage( void * ); +NTSTATUS ISteamFriends_SteamFriends010_ActivateGameOverlayToStore( void * ); +NTSTATUS ISteamFriends_SteamFriends010_SetPlayedWith( void * ); +NTSTATUS ISteamFriends_SteamFriends010_ActivateGameOverlayInviteDialog( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetSmallFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetMediumFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetLargeFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends010_RequestUserInformation( void * ); +NTSTATUS ISteamFriends_SteamFriends010_RequestClanOfficerList( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetClanOwner( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetClanOfficerCount( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetClanOfficerByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetUserRestrictions( void * ); +NTSTATUS ISteamFriends_SteamFriends010_SetRichPresence( void * ); +NTSTATUS ISteamFriends_SteamFriends010_ClearRichPresence( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetFriendRichPresence( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetFriendRichPresenceKeyCount( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetFriendRichPresenceKeyByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends010_InviteUserToGame( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetCoplayFriendCount( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetCoplayFriend( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetFriendCoplayTime( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetFriendCoplayGame( void * ); +NTSTATUS ISteamFriends_SteamFriends010_JoinClanChatRoom( void * ); +NTSTATUS ISteamFriends_SteamFriends010_LeaveClanChatRoom( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetClanChatMemberCount( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetChatMemberByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends010_SendClanChatMessage( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetClanChatMessage( void * ); +NTSTATUS ISteamFriends_SteamFriends010_IsClanChatAdmin( void * ); +NTSTATUS ISteamFriends_SteamFriends010_IsClanChatWindowOpenInSteam( void * ); +NTSTATUS ISteamFriends_SteamFriends010_OpenClanChatWindowInSteam( void * ); +NTSTATUS ISteamFriends_SteamFriends010_CloseClanChatWindowInSteam( void * ); +NTSTATUS ISteamFriends_SteamFriends010_SetListenForFriendsMessages( void * ); +NTSTATUS ISteamFriends_SteamFriends010_ReplyToFriendMessage( void * ); +NTSTATUS ISteamFriends_SteamFriends010_GetFriendMessage( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends011_SetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetFriendCount( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetFriendByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetFriendRelationship( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetFriendPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetFriendPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetFriendGamePlayed( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetFriendPersonaNameHistory( void * ); +NTSTATUS ISteamFriends_SteamFriends011_HasFriend( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetClanCount( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetClanByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetClanName( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetClanTag( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetClanActivityCounts( void * ); +NTSTATUS ISteamFriends_SteamFriends011_DownloadClanActivityCounts( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetFriendCountFromSource( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetFriendFromSourceByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends011_IsUserInSource( void * ); +NTSTATUS ISteamFriends_SteamFriends011_SetInGameVoiceSpeaking( void * ); +NTSTATUS ISteamFriends_SteamFriends011_ActivateGameOverlay( void * ); +NTSTATUS ISteamFriends_SteamFriends011_ActivateGameOverlayToUser( void * ); +NTSTATUS ISteamFriends_SteamFriends011_ActivateGameOverlayToWebPage( void * ); +NTSTATUS ISteamFriends_SteamFriends011_ActivateGameOverlayToStore( void * ); +NTSTATUS ISteamFriends_SteamFriends011_SetPlayedWith( void * ); +NTSTATUS ISteamFriends_SteamFriends011_ActivateGameOverlayInviteDialog( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetSmallFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetMediumFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetLargeFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends011_RequestUserInformation( void * ); +NTSTATUS ISteamFriends_SteamFriends011_RequestClanOfficerList( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetClanOwner( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetClanOfficerCount( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetClanOfficerByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetUserRestrictions( void * ); +NTSTATUS ISteamFriends_SteamFriends011_SetRichPresence( void * ); +NTSTATUS ISteamFriends_SteamFriends011_ClearRichPresence( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetFriendRichPresence( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetFriendRichPresenceKeyCount( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetFriendRichPresenceKeyByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends011_RequestFriendRichPresence( void * ); +NTSTATUS ISteamFriends_SteamFriends011_InviteUserToGame( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetCoplayFriendCount( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetCoplayFriend( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetFriendCoplayTime( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetFriendCoplayGame( void * ); +NTSTATUS ISteamFriends_SteamFriends011_JoinClanChatRoom( void * ); +NTSTATUS ISteamFriends_SteamFriends011_LeaveClanChatRoom( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetClanChatMemberCount( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetChatMemberByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends011_SendClanChatMessage( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetClanChatMessage( void * ); +NTSTATUS ISteamFriends_SteamFriends011_IsClanChatAdmin( void * ); +NTSTATUS ISteamFriends_SteamFriends011_IsClanChatWindowOpenInSteam( void * ); +NTSTATUS ISteamFriends_SteamFriends011_OpenClanChatWindowInSteam( void * ); +NTSTATUS ISteamFriends_SteamFriends011_CloseClanChatWindowInSteam( void * ); +NTSTATUS ISteamFriends_SteamFriends011_SetListenForFriendsMessages( void * ); +NTSTATUS ISteamFriends_SteamFriends011_ReplyToFriendMessage( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetFriendMessage( void * ); +NTSTATUS ISteamFriends_SteamFriends011_GetFollowerCount( void * ); +NTSTATUS ISteamFriends_SteamFriends011_IsFollowing( void * ); +NTSTATUS ISteamFriends_SteamFriends011_EnumerateFollowingList( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends012_SetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetFriendCount( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetFriendByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetFriendRelationship( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetFriendPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetFriendPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetFriendGamePlayed( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetFriendPersonaNameHistory( void * ); +NTSTATUS ISteamFriends_SteamFriends012_HasFriend( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetClanCount( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetClanByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetClanName( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetClanTag( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetClanActivityCounts( void * ); +NTSTATUS ISteamFriends_SteamFriends012_DownloadClanActivityCounts( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetFriendCountFromSource( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetFriendFromSourceByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends012_IsUserInSource( void * ); +NTSTATUS ISteamFriends_SteamFriends012_SetInGameVoiceSpeaking( void * ); +NTSTATUS ISteamFriends_SteamFriends012_ActivateGameOverlay( void * ); +NTSTATUS ISteamFriends_SteamFriends012_ActivateGameOverlayToUser( void * ); +NTSTATUS ISteamFriends_SteamFriends012_ActivateGameOverlayToWebPage( void * ); +NTSTATUS ISteamFriends_SteamFriends012_ActivateGameOverlayToStore( void * ); +NTSTATUS ISteamFriends_SteamFriends012_SetPlayedWith( void * ); +NTSTATUS ISteamFriends_SteamFriends012_ActivateGameOverlayInviteDialog( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetSmallFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetMediumFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetLargeFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends012_RequestUserInformation( void * ); +NTSTATUS ISteamFriends_SteamFriends012_RequestClanOfficerList( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetClanOwner( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetClanOfficerCount( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetClanOfficerByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetUserRestrictions( void * ); +NTSTATUS ISteamFriends_SteamFriends012_SetRichPresence( void * ); +NTSTATUS ISteamFriends_SteamFriends012_ClearRichPresence( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetFriendRichPresence( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetFriendRichPresenceKeyCount( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetFriendRichPresenceKeyByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends012_RequestFriendRichPresence( void * ); +NTSTATUS ISteamFriends_SteamFriends012_InviteUserToGame( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetCoplayFriendCount( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetCoplayFriend( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetFriendCoplayTime( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetFriendCoplayGame( void * ); +NTSTATUS ISteamFriends_SteamFriends012_JoinClanChatRoom( void * ); +NTSTATUS ISteamFriends_SteamFriends012_LeaveClanChatRoom( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetClanChatMemberCount( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetChatMemberByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends012_SendClanChatMessage( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetClanChatMessage( void * ); +NTSTATUS ISteamFriends_SteamFriends012_IsClanChatAdmin( void * ); +NTSTATUS ISteamFriends_SteamFriends012_IsClanChatWindowOpenInSteam( void * ); +NTSTATUS ISteamFriends_SteamFriends012_OpenClanChatWindowInSteam( void * ); +NTSTATUS ISteamFriends_SteamFriends012_CloseClanChatWindowInSteam( void * ); +NTSTATUS ISteamFriends_SteamFriends012_SetListenForFriendsMessages( void * ); +NTSTATUS ISteamFriends_SteamFriends012_ReplyToFriendMessage( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetFriendMessage( void * ); +NTSTATUS ISteamFriends_SteamFriends012_GetFollowerCount( void * ); +NTSTATUS ISteamFriends_SteamFriends012_IsFollowing( void * ); +NTSTATUS ISteamFriends_SteamFriends012_EnumerateFollowingList( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends013_SetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetFriendCount( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetFriendByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetFriendRelationship( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetFriendPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetFriendPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetFriendGamePlayed( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetFriendPersonaNameHistory( void * ); +NTSTATUS ISteamFriends_SteamFriends013_HasFriend( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetClanCount( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetClanByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetClanName( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetClanTag( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetClanActivityCounts( void * ); +NTSTATUS ISteamFriends_SteamFriends013_DownloadClanActivityCounts( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetFriendCountFromSource( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetFriendFromSourceByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends013_IsUserInSource( void * ); +NTSTATUS ISteamFriends_SteamFriends013_SetInGameVoiceSpeaking( void * ); +NTSTATUS ISteamFriends_SteamFriends013_ActivateGameOverlay( void * ); +NTSTATUS ISteamFriends_SteamFriends013_ActivateGameOverlayToUser( void * ); +NTSTATUS ISteamFriends_SteamFriends013_ActivateGameOverlayToWebPage( void * ); +NTSTATUS ISteamFriends_SteamFriends013_ActivateGameOverlayToStore( void * ); +NTSTATUS ISteamFriends_SteamFriends013_SetPlayedWith( void * ); +NTSTATUS ISteamFriends_SteamFriends013_ActivateGameOverlayInviteDialog( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetSmallFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetMediumFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetLargeFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends013_RequestUserInformation( void * ); +NTSTATUS ISteamFriends_SteamFriends013_RequestClanOfficerList( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetClanOwner( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetClanOfficerCount( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetClanOfficerByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetUserRestrictions( void * ); +NTSTATUS ISteamFriends_SteamFriends013_SetRichPresence( void * ); +NTSTATUS ISteamFriends_SteamFriends013_ClearRichPresence( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetFriendRichPresence( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetFriendRichPresenceKeyCount( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetFriendRichPresenceKeyByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends013_RequestFriendRichPresence( void * ); +NTSTATUS ISteamFriends_SteamFriends013_InviteUserToGame( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetCoplayFriendCount( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetCoplayFriend( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetFriendCoplayTime( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetFriendCoplayGame( void * ); +NTSTATUS ISteamFriends_SteamFriends013_JoinClanChatRoom( void * ); +NTSTATUS ISteamFriends_SteamFriends013_LeaveClanChatRoom( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetClanChatMemberCount( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetChatMemberByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends013_SendClanChatMessage( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetClanChatMessage( void * ); +NTSTATUS ISteamFriends_SteamFriends013_IsClanChatAdmin( void * ); +NTSTATUS ISteamFriends_SteamFriends013_IsClanChatWindowOpenInSteam( void * ); +NTSTATUS ISteamFriends_SteamFriends013_OpenClanChatWindowInSteam( void * ); +NTSTATUS ISteamFriends_SteamFriends013_CloseClanChatWindowInSteam( void * ); +NTSTATUS ISteamFriends_SteamFriends013_SetListenForFriendsMessages( void * ); +NTSTATUS ISteamFriends_SteamFriends013_ReplyToFriendMessage( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetFriendMessage( void * ); +NTSTATUS ISteamFriends_SteamFriends013_GetFollowerCount( void * ); +NTSTATUS ISteamFriends_SteamFriends013_IsFollowing( void * ); +NTSTATUS ISteamFriends_SteamFriends013_EnumerateFollowingList( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends014_SetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetFriendCount( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetFriendByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetFriendRelationship( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetFriendPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetFriendPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetFriendGamePlayed( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetFriendPersonaNameHistory( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetPlayerNickname( void * ); +NTSTATUS ISteamFriends_SteamFriends014_HasFriend( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetClanCount( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetClanByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetClanName( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetClanTag( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetClanActivityCounts( void * ); +NTSTATUS ISteamFriends_SteamFriends014_DownloadClanActivityCounts( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetFriendCountFromSource( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetFriendFromSourceByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends014_IsUserInSource( void * ); +NTSTATUS ISteamFriends_SteamFriends014_SetInGameVoiceSpeaking( void * ); +NTSTATUS ISteamFriends_SteamFriends014_ActivateGameOverlay( void * ); +NTSTATUS ISteamFriends_SteamFriends014_ActivateGameOverlayToUser( void * ); +NTSTATUS ISteamFriends_SteamFriends014_ActivateGameOverlayToWebPage( void * ); +NTSTATUS ISteamFriends_SteamFriends014_ActivateGameOverlayToStore( void * ); +NTSTATUS ISteamFriends_SteamFriends014_SetPlayedWith( void * ); +NTSTATUS ISteamFriends_SteamFriends014_ActivateGameOverlayInviteDialog( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetSmallFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetMediumFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetLargeFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends014_RequestUserInformation( void * ); +NTSTATUS ISteamFriends_SteamFriends014_RequestClanOfficerList( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetClanOwner( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetClanOfficerCount( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetClanOfficerByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetUserRestrictions( void * ); +NTSTATUS ISteamFriends_SteamFriends014_SetRichPresence( void * ); +NTSTATUS ISteamFriends_SteamFriends014_ClearRichPresence( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetFriendRichPresence( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetFriendRichPresenceKeyCount( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetFriendRichPresenceKeyByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends014_RequestFriendRichPresence( void * ); +NTSTATUS ISteamFriends_SteamFriends014_InviteUserToGame( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetCoplayFriendCount( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetCoplayFriend( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetFriendCoplayTime( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetFriendCoplayGame( void * ); +NTSTATUS ISteamFriends_SteamFriends014_JoinClanChatRoom( void * ); +NTSTATUS ISteamFriends_SteamFriends014_LeaveClanChatRoom( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetClanChatMemberCount( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetChatMemberByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends014_SendClanChatMessage( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetClanChatMessage( void * ); +NTSTATUS ISteamFriends_SteamFriends014_IsClanChatAdmin( void * ); +NTSTATUS ISteamFriends_SteamFriends014_IsClanChatWindowOpenInSteam( void * ); +NTSTATUS ISteamFriends_SteamFriends014_OpenClanChatWindowInSteam( void * ); +NTSTATUS ISteamFriends_SteamFriends014_CloseClanChatWindowInSteam( void * ); +NTSTATUS ISteamFriends_SteamFriends014_SetListenForFriendsMessages( void * ); +NTSTATUS ISteamFriends_SteamFriends014_ReplyToFriendMessage( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetFriendMessage( void * ); +NTSTATUS ISteamFriends_SteamFriends014_GetFollowerCount( void * ); +NTSTATUS ISteamFriends_SteamFriends014_IsFollowing( void * ); +NTSTATUS ISteamFriends_SteamFriends014_EnumerateFollowingList( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends015_SetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetFriendCount( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetFriendByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetFriendRelationship( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetFriendPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetFriendPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetFriendGamePlayed( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetFriendPersonaNameHistory( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetFriendSteamLevel( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetPlayerNickname( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetFriendsGroupCount( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetFriendsGroupIDByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetFriendsGroupName( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetFriendsGroupMembersCount( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetFriendsGroupMembersList( void * ); +NTSTATUS ISteamFriends_SteamFriends015_HasFriend( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetClanCount( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetClanByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetClanName( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetClanTag( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetClanActivityCounts( void * ); +NTSTATUS ISteamFriends_SteamFriends015_DownloadClanActivityCounts( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetFriendCountFromSource( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetFriendFromSourceByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends015_IsUserInSource( void * ); +NTSTATUS ISteamFriends_SteamFriends015_SetInGameVoiceSpeaking( void * ); +NTSTATUS ISteamFriends_SteamFriends015_ActivateGameOverlay( void * ); +NTSTATUS ISteamFriends_SteamFriends015_ActivateGameOverlayToUser( void * ); +NTSTATUS ISteamFriends_SteamFriends015_ActivateGameOverlayToWebPage( void * ); +NTSTATUS ISteamFriends_SteamFriends015_ActivateGameOverlayToStore( void * ); +NTSTATUS ISteamFriends_SteamFriends015_SetPlayedWith( void * ); +NTSTATUS ISteamFriends_SteamFriends015_ActivateGameOverlayInviteDialog( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetSmallFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetMediumFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetLargeFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends015_RequestUserInformation( void * ); +NTSTATUS ISteamFriends_SteamFriends015_RequestClanOfficerList( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetClanOwner( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetClanOfficerCount( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetClanOfficerByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetUserRestrictions( void * ); +NTSTATUS ISteamFriends_SteamFriends015_SetRichPresence( void * ); +NTSTATUS ISteamFriends_SteamFriends015_ClearRichPresence( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetFriendRichPresence( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetFriendRichPresenceKeyCount( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetFriendRichPresenceKeyByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends015_RequestFriendRichPresence( void * ); +NTSTATUS ISteamFriends_SteamFriends015_InviteUserToGame( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetCoplayFriendCount( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetCoplayFriend( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetFriendCoplayTime( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetFriendCoplayGame( void * ); +NTSTATUS ISteamFriends_SteamFriends015_JoinClanChatRoom( void * ); +NTSTATUS ISteamFriends_SteamFriends015_LeaveClanChatRoom( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetClanChatMemberCount( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetChatMemberByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends015_SendClanChatMessage( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetClanChatMessage( void * ); +NTSTATUS ISteamFriends_SteamFriends015_IsClanChatAdmin( void * ); +NTSTATUS ISteamFriends_SteamFriends015_IsClanChatWindowOpenInSteam( void * ); +NTSTATUS ISteamFriends_SteamFriends015_OpenClanChatWindowInSteam( void * ); +NTSTATUS ISteamFriends_SteamFriends015_CloseClanChatWindowInSteam( void * ); +NTSTATUS ISteamFriends_SteamFriends015_SetListenForFriendsMessages( void * ); +NTSTATUS ISteamFriends_SteamFriends015_ReplyToFriendMessage( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetFriendMessage( void * ); +NTSTATUS ISteamFriends_SteamFriends015_GetFollowerCount( void * ); +NTSTATUS ISteamFriends_SteamFriends015_IsFollowing( void * ); +NTSTATUS ISteamFriends_SteamFriends015_EnumerateFollowingList( void * ); +NTSTATUS ISteamFriends_SteamFriends015_IsClanPublic( void * ); +NTSTATUS ISteamFriends_SteamFriends015_IsClanOfficialGameGroup( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends017_SetPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetFriendCount( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetFriendByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetFriendRelationship( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetFriendPersonaState( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetFriendPersonaName( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetFriendGamePlayed( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetFriendPersonaNameHistory( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetFriendSteamLevel( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetPlayerNickname( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetFriendsGroupCount( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetFriendsGroupIDByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetFriendsGroupName( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetFriendsGroupMembersCount( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetFriendsGroupMembersList( void * ); +NTSTATUS ISteamFriends_SteamFriends017_HasFriend( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetClanCount( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetClanByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetClanName( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetClanTag( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetClanActivityCounts( void * ); +NTSTATUS ISteamFriends_SteamFriends017_DownloadClanActivityCounts( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetFriendCountFromSource( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetFriendFromSourceByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends017_IsUserInSource( void * ); +NTSTATUS ISteamFriends_SteamFriends017_SetInGameVoiceSpeaking( void * ); +NTSTATUS ISteamFriends_SteamFriends017_ActivateGameOverlay( void * ); +NTSTATUS ISteamFriends_SteamFriends017_ActivateGameOverlayToUser( void * ); +NTSTATUS ISteamFriends_SteamFriends017_ActivateGameOverlayToWebPage( void * ); +NTSTATUS ISteamFriends_SteamFriends017_ActivateGameOverlayToStore( void * ); +NTSTATUS ISteamFriends_SteamFriends017_SetPlayedWith( void * ); +NTSTATUS ISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialog( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetSmallFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetMediumFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetLargeFriendAvatar( void * ); +NTSTATUS ISteamFriends_SteamFriends017_RequestUserInformation( void * ); +NTSTATUS ISteamFriends_SteamFriends017_RequestClanOfficerList( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetClanOwner( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetClanOfficerCount( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetClanOfficerByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetUserRestrictions( void * ); +NTSTATUS ISteamFriends_SteamFriends017_SetRichPresence( void * ); +NTSTATUS ISteamFriends_SteamFriends017_ClearRichPresence( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetFriendRichPresence( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetFriendRichPresenceKeyCount( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetFriendRichPresenceKeyByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends017_RequestFriendRichPresence( void * ); +NTSTATUS ISteamFriends_SteamFriends017_InviteUserToGame( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetCoplayFriendCount( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetCoplayFriend( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetFriendCoplayTime( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetFriendCoplayGame( void * ); +NTSTATUS ISteamFriends_SteamFriends017_JoinClanChatRoom( void * ); +NTSTATUS ISteamFriends_SteamFriends017_LeaveClanChatRoom( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetClanChatMemberCount( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetChatMemberByIndex( void * ); +NTSTATUS ISteamFriends_SteamFriends017_SendClanChatMessage( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetClanChatMessage( void * ); +NTSTATUS ISteamFriends_SteamFriends017_IsClanChatAdmin( void * ); +NTSTATUS ISteamFriends_SteamFriends017_IsClanChatWindowOpenInSteam( void * ); +NTSTATUS ISteamFriends_SteamFriends017_OpenClanChatWindowInSteam( void * ); +NTSTATUS ISteamFriends_SteamFriends017_CloseClanChatWindowInSteam( void * ); +NTSTATUS ISteamFriends_SteamFriends017_SetListenForFriendsMessages( void * ); +NTSTATUS ISteamFriends_SteamFriends017_ReplyToFriendMessage( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetFriendMessage( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetFollowerCount( void * ); +NTSTATUS ISteamFriends_SteamFriends017_IsFollowing( void * ); +NTSTATUS ISteamFriends_SteamFriends017_EnumerateFollowingList( void * ); +NTSTATUS ISteamFriends_SteamFriends017_IsClanPublic( void * ); +NTSTATUS ISteamFriends_SteamFriends017_IsClanOfficialGameGroup( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetNumChatsWithUnreadPriorityMessages( void * ); +NTSTATUS ISteamFriends_SteamFriends017_ActivateGameOverlayRemotePlayTogetherInviteDialog( void * ); +NTSTATUS ISteamFriends_SteamFriends017_RegisterProtocolInOverlayBrowser( void * ); +NTSTATUS ISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialogConnectString( void * ); +NTSTATUS ISteamFriends_SteamFriends017_RequestEquippedProfileItems( void * ); +NTSTATUS ISteamFriends_SteamFriends017_BHasEquippedProfileItem( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetProfileItemPropertyString( void * ); +NTSTATUS ISteamFriends_SteamFriends017_GetProfileItemPropertyUint( void * ); +NTSTATUS ISteamGameCoordinator_SteamGameCoordinator001_SendMessage( void * ); +NTSTATUS ISteamGameCoordinator_SteamGameCoordinator001_IsMessageAvailable( void * ); +NTSTATUS ISteamGameCoordinator_SteamGameCoordinator001_RetrieveMessage( void * ); +NTSTATUS ISteamGameServer_SteamGameServer002_LogOn( void * ); +NTSTATUS ISteamGameServer_SteamGameServer002_LogOff( void * ); +NTSTATUS ISteamGameServer_SteamGameServer002_BLoggedOn( void * ); +NTSTATUS ISteamGameServer_SteamGameServer002_GSSetSpawnCount( void * ); +NTSTATUS ISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionKeyToSendToNewClient( void * ); +NTSTATUS ISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect( void * ); +NTSTATUS ISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect( void * ); +NTSTATUS ISteamGameServer_SteamGameServer002_GSRemoveUserConnect( void * ); +NTSTATUS ISteamGameServer_SteamGameServer002_GSSendUserDisconnect( void * ); +NTSTATUS ISteamGameServer_SteamGameServer002_GSSendUserStatusResponse( void * ); +NTSTATUS ISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus( void * ); +NTSTATUS ISteamGameServer_SteamGameServer002_GSUpdateStatus( void * ); +NTSTATUS ISteamGameServer_SteamGameServer002_BSecure( void * ); +NTSTATUS ISteamGameServer_SteamGameServer002_GetSteamID( void * ); +NTSTATUS ISteamGameServer_SteamGameServer002_GSSetServerType( void * ); +NTSTATUS ISteamGameServer_SteamGameServer002_GSSetServerType2( void * ); +NTSTATUS ISteamGameServer_SteamGameServer002_GSUpdateStatus2( void * ); +NTSTATUS ISteamGameServer_SteamGameServer002_GSCreateUnauthenticatedUser( void * ); +NTSTATUS ISteamGameServer_SteamGameServer002_GSSetUserData( void * ); +NTSTATUS ISteamGameServer_SteamGameServer002_GSUpdateSpectatorPort( void * ); +NTSTATUS ISteamGameServer_SteamGameServer002_GSSetGameType( void * ); +NTSTATUS ISteamGameServer_SteamGameServer003_LogOn( void * ); +NTSTATUS ISteamGameServer_SteamGameServer003_LogOff( void * ); +NTSTATUS ISteamGameServer_SteamGameServer003_BLoggedOn( void * ); +NTSTATUS ISteamGameServer_SteamGameServer003_BSecure( void * ); +NTSTATUS ISteamGameServer_SteamGameServer003_GetSteamID( void * ); +NTSTATUS ISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionKeyToSendToNewClient( void * ); +NTSTATUS ISteamGameServer_SteamGameServer003_GSSendUserConnect( void * ); +NTSTATUS ISteamGameServer_SteamGameServer003_GSRemoveUserConnect( void * ); +NTSTATUS ISteamGameServer_SteamGameServer003_GSSendUserDisconnect( void * ); +NTSTATUS ISteamGameServer_SteamGameServer003_GSSetSpawnCount( void * ); +NTSTATUS ISteamGameServer_SteamGameServer003_GSSetServerType( void * ); +NTSTATUS ISteamGameServer_SteamGameServer003_GSUpdateStatus( void * ); +NTSTATUS ISteamGameServer_SteamGameServer003_GSCreateUnauthenticatedUser( void * ); +NTSTATUS ISteamGameServer_SteamGameServer003_GSSetUserData( void * ); +NTSTATUS ISteamGameServer_SteamGameServer003_GSUpdateSpectatorPort( void * ); +NTSTATUS ISteamGameServer_SteamGameServer003_GSSetGameType( void * ); +NTSTATUS ISteamGameServer_SteamGameServer003_GSGetUserAchievementStatus( void * ); +NTSTATUS ISteamGameServer_SteamGameServer004_LogOn( void * ); +NTSTATUS ISteamGameServer_SteamGameServer004_LogOff( void * ); +NTSTATUS ISteamGameServer_SteamGameServer004_BLoggedOn( void * ); +NTSTATUS ISteamGameServer_SteamGameServer004_BSecure( void * ); +NTSTATUS ISteamGameServer_SteamGameServer004_GetSteamID( void * ); +NTSTATUS ISteamGameServer_SteamGameServer004_SendUserConnectAndAuthenticate( void * ); +NTSTATUS ISteamGameServer_SteamGameServer004_CreateUnauthenticatedUserConnection( void * ); +NTSTATUS ISteamGameServer_SteamGameServer004_SendUserDisconnect( void * ); +NTSTATUS ISteamGameServer_SteamGameServer004_BUpdateUserData( void * ); +NTSTATUS ISteamGameServer_SteamGameServer004_BSetServerType( void * ); +NTSTATUS ISteamGameServer_SteamGameServer004_UpdateServerStatus( void * ); +NTSTATUS ISteamGameServer_SteamGameServer004_UpdateSpectatorPort( void * ); +NTSTATUS ISteamGameServer_SteamGameServer004_SetGameType( void * ); +NTSTATUS ISteamGameServer_SteamGameServer004_BGetUserAchievementStatus( void * ); +NTSTATUS ISteamGameServer_SteamGameServer005_LogOn( void * ); +NTSTATUS ISteamGameServer_SteamGameServer005_LogOff( void * ); +NTSTATUS ISteamGameServer_SteamGameServer005_BLoggedOn( void * ); +NTSTATUS ISteamGameServer_SteamGameServer005_BSecure( void * ); +NTSTATUS ISteamGameServer_SteamGameServer005_GetSteamID( void * ); +NTSTATUS ISteamGameServer_SteamGameServer005_SendUserConnectAndAuthenticate( void * ); +NTSTATUS ISteamGameServer_SteamGameServer005_CreateUnauthenticatedUserConnection( void * ); +NTSTATUS ISteamGameServer_SteamGameServer005_SendUserDisconnect( void * ); +NTSTATUS ISteamGameServer_SteamGameServer005_BUpdateUserData( void * ); +NTSTATUS ISteamGameServer_SteamGameServer005_BSetServerType( void * ); +NTSTATUS ISteamGameServer_SteamGameServer005_UpdateServerStatus( void * ); +NTSTATUS ISteamGameServer_SteamGameServer005_UpdateSpectatorPort( void * ); +NTSTATUS ISteamGameServer_SteamGameServer005_SetGameType( void * ); +NTSTATUS ISteamGameServer_SteamGameServer005_BGetUserAchievementStatus( void * ); +NTSTATUS ISteamGameServer_SteamGameServer008_LogOn( void * ); +NTSTATUS ISteamGameServer_SteamGameServer008_LogOff( void * ); +NTSTATUS ISteamGameServer_SteamGameServer008_BLoggedOn( void * ); +NTSTATUS ISteamGameServer_SteamGameServer008_BSecure( void * ); +NTSTATUS ISteamGameServer_SteamGameServer008_GetSteamID( void * ); +NTSTATUS ISteamGameServer_SteamGameServer008_SendUserConnectAndAuthenticate( void * ); +NTSTATUS ISteamGameServer_SteamGameServer008_CreateUnauthenticatedUserConnection( void * ); +NTSTATUS ISteamGameServer_SteamGameServer008_SendUserDisconnect( void * ); +NTSTATUS ISteamGameServer_SteamGameServer008_BUpdateUserData( void * ); +NTSTATUS ISteamGameServer_SteamGameServer008_BSetServerType( void * ); +NTSTATUS ISteamGameServer_SteamGameServer008_UpdateServerStatus( void * ); +NTSTATUS ISteamGameServer_SteamGameServer008_UpdateSpectatorPort( void * ); +NTSTATUS ISteamGameServer_SteamGameServer008_SetGameType( void * ); +NTSTATUS ISteamGameServer_SteamGameServer008_BGetUserAchievementStatus( void * ); +NTSTATUS ISteamGameServer_SteamGameServer008_GetGameplayStats( void * ); +NTSTATUS ISteamGameServer_SteamGameServer008_RequestUserGroupStatus( void * ); +NTSTATUS ISteamGameServer_SteamGameServer008_GetPublicIP( void * ); +NTSTATUS ISteamGameServer_SteamGameServer009_LogOn( void * ); +NTSTATUS ISteamGameServer_SteamGameServer009_LogOff( void * ); +NTSTATUS ISteamGameServer_SteamGameServer009_BLoggedOn( void * ); +NTSTATUS ISteamGameServer_SteamGameServer009_BSecure( void * ); +NTSTATUS ISteamGameServer_SteamGameServer009_GetSteamID( void * ); +NTSTATUS ISteamGameServer_SteamGameServer009_SendUserConnectAndAuthenticate( void * ); +NTSTATUS ISteamGameServer_SteamGameServer009_CreateUnauthenticatedUserConnection( void * ); +NTSTATUS ISteamGameServer_SteamGameServer009_SendUserDisconnect( void * ); +NTSTATUS ISteamGameServer_SteamGameServer009_BUpdateUserData( void * ); +NTSTATUS ISteamGameServer_SteamGameServer009_BSetServerType( void * ); +NTSTATUS ISteamGameServer_SteamGameServer009_UpdateServerStatus( void * ); +NTSTATUS ISteamGameServer_SteamGameServer009_UpdateSpectatorPort( void * ); +NTSTATUS ISteamGameServer_SteamGameServer009_SetGameType( void * ); +NTSTATUS ISteamGameServer_SteamGameServer009_BGetUserAchievementStatus( void * ); +NTSTATUS ISteamGameServer_SteamGameServer009_GetGameplayStats( void * ); +NTSTATUS ISteamGameServer_SteamGameServer009_RequestUserGroupStatus( void * ); +NTSTATUS ISteamGameServer_SteamGameServer009_GetPublicIP( void * ); +NTSTATUS ISteamGameServer_SteamGameServer009_SetGameData( void * ); +NTSTATUS ISteamGameServer_SteamGameServer009_UserHasLicenseForApp( void * ); +NTSTATUS ISteamGameServer_SteamGameServer010_LogOn( void * ); +NTSTATUS ISteamGameServer_SteamGameServer010_LogOff( void * ); +NTSTATUS ISteamGameServer_SteamGameServer010_BLoggedOn( void * ); +NTSTATUS ISteamGameServer_SteamGameServer010_BSecure( void * ); +NTSTATUS ISteamGameServer_SteamGameServer010_GetSteamID( void * ); +NTSTATUS ISteamGameServer_SteamGameServer010_SendUserConnectAndAuthenticate( void * ); +NTSTATUS ISteamGameServer_SteamGameServer010_CreateUnauthenticatedUserConnection( void * ); +NTSTATUS ISteamGameServer_SteamGameServer010_SendUserDisconnect( void * ); +NTSTATUS ISteamGameServer_SteamGameServer010_BUpdateUserData( void * ); +NTSTATUS ISteamGameServer_SteamGameServer010_BSetServerType( void * ); +NTSTATUS ISteamGameServer_SteamGameServer010_UpdateServerStatus( void * ); +NTSTATUS ISteamGameServer_SteamGameServer010_UpdateSpectatorPort( void * ); +NTSTATUS ISteamGameServer_SteamGameServer010_SetGameTags( void * ); +NTSTATUS ISteamGameServer_SteamGameServer010_GetGameplayStats( void * ); +NTSTATUS ISteamGameServer_SteamGameServer010_GetServerReputation( void * ); +NTSTATUS ISteamGameServer_SteamGameServer010_RequestUserGroupStatus( void * ); +NTSTATUS ISteamGameServer_SteamGameServer010_GetPublicIP( void * ); +NTSTATUS ISteamGameServer_SteamGameServer010_SetGameData( void * ); +NTSTATUS ISteamGameServer_SteamGameServer010_UserHasLicenseForApp( void * ); +NTSTATUS ISteamGameServer_SteamGameServer010_GetAuthSessionTicket( void * ); +NTSTATUS ISteamGameServer_SteamGameServer010_BeginAuthSession( void * ); +NTSTATUS ISteamGameServer_SteamGameServer010_EndAuthSession( void * ); +NTSTATUS ISteamGameServer_SteamGameServer010_CancelAuthTicket( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_InitGameServer( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_SetProduct( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_SetGameDescription( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_SetModDir( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_SetDedicatedServer( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_LogOn( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_LogOnAnonymous( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_LogOff( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_BLoggedOn( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_BSecure( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_GetSteamID( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_WasRestartRequested( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_SetMaxPlayerCount( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_SetBotPlayerCount( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_SetServerName( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_SetMapName( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_SetPasswordProtected( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_SetSpectatorPort( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_SetSpectatorServerName( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_ClearAllKeyValues( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_SetKeyValue( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_SetGameTags( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_SetGameData( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_SetRegion( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_SendUserConnectAndAuthenticate( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_CreateUnauthenticatedUserConnection( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_SendUserDisconnect( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_BUpdateUserData( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_GetAuthSessionTicket( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_BeginAuthSession( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_EndAuthSession( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_CancelAuthTicket( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_UserHasLicenseForApp( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_RequestUserGroupStatus( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_GetGameplayStats( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_GetServerReputation( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_GetPublicIP( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_HandleIncomingPacket( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_GetNextOutgoingPacket( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_EnableHeartbeats( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_SetHeartbeatInterval( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_ForceHeartbeat( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_AssociateWithClan( void * ); +NTSTATUS ISteamGameServer_SteamGameServer011_ComputeNewPlayerCompatibility( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_InitGameServer( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_SetProduct( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_SetGameDescription( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_SetModDir( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_SetDedicatedServer( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_LogOn( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_LogOnAnonymous( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_LogOff( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_BLoggedOn( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_BSecure( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_GetSteamID( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_WasRestartRequested( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_SetMaxPlayerCount( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_SetBotPlayerCount( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_SetServerName( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_SetMapName( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_SetPasswordProtected( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_SetSpectatorPort( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_SetSpectatorServerName( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_ClearAllKeyValues( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_SetKeyValue( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_SetGameTags( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_SetGameData( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_SetRegion( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_SendUserConnectAndAuthenticate( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_CreateUnauthenticatedUserConnection( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_SendUserDisconnect( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_BUpdateUserData( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_GetAuthSessionTicket( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_BeginAuthSession( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_EndAuthSession( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_CancelAuthTicket( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_UserHasLicenseForApp( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_RequestUserGroupStatus( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_GetGameplayStats( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_GetServerReputation( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_GetPublicIP( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_HandleIncomingPacket( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_GetNextOutgoingPacket( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_EnableHeartbeats( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_SetHeartbeatInterval( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_ForceHeartbeat( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_AssociateWithClan( void * ); +NTSTATUS ISteamGameServer_SteamGameServer012_ComputeNewPlayerCompatibility( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_InitGameServer( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_SetProduct( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_SetGameDescription( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_SetModDir( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_SetDedicatedServer( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_LogOn( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_LogOnAnonymous( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_LogOff( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_BLoggedOn( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_BSecure( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_GetSteamID( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_WasRestartRequested( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_SetMaxPlayerCount( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_SetBotPlayerCount( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_SetServerName( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_SetMapName( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_SetPasswordProtected( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_SetSpectatorPort( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_SetSpectatorServerName( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_ClearAllKeyValues( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_SetKeyValue( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_SetGameTags( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_SetGameData( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_SetRegion( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_SendUserConnectAndAuthenticate( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_CreateUnauthenticatedUserConnection( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_SendUserDisconnect( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_BUpdateUserData( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_GetAuthSessionTicket( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_BeginAuthSession( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_EndAuthSession( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_CancelAuthTicket( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_UserHasLicenseForApp( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_RequestUserGroupStatus( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_GetGameplayStats( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_GetServerReputation( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_GetPublicIP( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_HandleIncomingPacket( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_GetNextOutgoingPacket( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_EnableHeartbeats( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_SetHeartbeatInterval( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_ForceHeartbeat( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_AssociateWithClan( void * ); +NTSTATUS ISteamGameServer_SteamGameServer013_ComputeNewPlayerCompatibility( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_InitGameServer( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_SetProduct( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_SetGameDescription( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_SetModDir( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_SetDedicatedServer( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_LogOn( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_LogOnAnonymous( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_LogOff( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_BLoggedOn( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_BSecure( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_GetSteamID( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_WasRestartRequested( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_SetMaxPlayerCount( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_SetBotPlayerCount( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_SetServerName( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_SetMapName( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_SetPasswordProtected( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_SetSpectatorPort( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_SetSpectatorServerName( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_ClearAllKeyValues( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_SetKeyValue( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_SetGameTags( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_SetGameData( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_SetRegion( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_SetAdvertiseServerActive( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_GetAuthSessionTicket( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_BeginAuthSession( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_EndAuthSession( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_CancelAuthTicket( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_UserHasLicenseForApp( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_RequestUserGroupStatus( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_GetGameplayStats( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_GetServerReputation( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_GetPublicIP( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_HandleIncomingPacket( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_GetNextOutgoingPacket( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_AssociateWithClan( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_ComputeNewPlayerCompatibility( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEPRECATED( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_CreateUnauthenticatedUserConnection( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_SendUserDisconnect_DEPRECATED( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_BUpdateUserData( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_SetMasterServerHeartbeatInterval_DEPRECATED( void * ); +NTSTATUS ISteamGameServer_SteamGameServer014_ForceMasterServerHeartbeat_DEPRECATED( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_InitGameServer( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_SetProduct( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_SetGameDescription( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_SetModDir( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_SetDedicatedServer( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_LogOn( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_LogOnAnonymous( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_LogOff( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_BLoggedOn( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_BSecure( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_GetSteamID( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_WasRestartRequested( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_SetMaxPlayerCount( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_SetBotPlayerCount( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_SetServerName( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_SetMapName( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_SetPasswordProtected( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_SetSpectatorPort( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_SetSpectatorServerName( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_ClearAllKeyValues( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_SetKeyValue( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_SetGameTags( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_SetGameData( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_SetRegion( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_SetAdvertiseServerActive( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_GetAuthSessionTicket( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_BeginAuthSession( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_EndAuthSession( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_CancelAuthTicket( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_UserHasLicenseForApp( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_RequestUserGroupStatus( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_GetGameplayStats( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_GetServerReputation( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_GetPublicIP( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_HandleIncomingPacket( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_GetNextOutgoingPacket( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_AssociateWithClan( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_ComputeNewPlayerCompatibility( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_SendUserConnectAndAuthenticate_DEPRECATED( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_CreateUnauthenticatedUserConnection( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_SendUserDisconnect_DEPRECATED( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_BUpdateUserData( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_SetMasterServerHeartbeatInterval_DEPRECATED( void * ); +NTSTATUS ISteamGameServer_SteamGameServer015_ForceMasterServerHeartbeat_DEPRECATED( void * ); +NTSTATUS ISteamGameServerStats_SteamGameServerStats001_RequestUserStats( void * ); +NTSTATUS ISteamGameServerStats_SteamGameServerStats001_GetUserStat( void * ); +NTSTATUS ISteamGameServerStats_SteamGameServerStats001_GetUserStat_2( void * ); +NTSTATUS ISteamGameServerStats_SteamGameServerStats001_GetUserAchievement( void * ); +NTSTATUS ISteamGameServerStats_SteamGameServerStats001_SetUserStat( void * ); +NTSTATUS ISteamGameServerStats_SteamGameServerStats001_SetUserStat_2( void * ); +NTSTATUS ISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRateStat( void * ); +NTSTATUS ISteamGameServerStats_SteamGameServerStats001_SetUserAchievement( void * ); +NTSTATUS ISteamGameServerStats_SteamGameServerStats001_ClearUserAchievement( void * ); +NTSTATUS ISteamGameServerStats_SteamGameServerStats001_StoreUserStats( void * ); +NTSTATUS ISteamGameStats_SteamGameStats001_GetNewSession( void * ); +NTSTATUS ISteamGameStats_SteamGameStats001_EndSession( void * ); +NTSTATUS ISteamGameStats_SteamGameStats001_AddSessionAttributeInt( void * ); +NTSTATUS ISteamGameStats_SteamGameStats001_AddSessionAttributeString( void * ); +NTSTATUS ISteamGameStats_SteamGameStats001_AddSessionAttributeFloat( void * ); +NTSTATUS ISteamGameStats_SteamGameStats001_AddNewRow( void * ); +NTSTATUS ISteamGameStats_SteamGameStats001_CommitRow( void * ); +NTSTATUS ISteamGameStats_SteamGameStats001_CommitOutstandingRows( void * ); +NTSTATUS ISteamGameStats_SteamGameStats001_AddRowAttributeInt( void * ); +NTSTATUS ISteamGameStats_SteamGameStats001_AddRowAtributeString( void * ); +NTSTATUS ISteamGameStats_SteamGameStats001_AddRowAttributeFloat( void * ); +NTSTATUS ISteamGameStats_SteamGameStats001_AddSessionAttributeInt64( void * ); +NTSTATUS ISteamGameStats_SteamGameStats001_AddRowAttributeInt64( void * ); +NTSTATUS ISteamInput_SteamInput001_Init( void * ); +NTSTATUS ISteamInput_SteamInput001_Shutdown( void * ); +NTSTATUS ISteamInput_SteamInput001_RunFrame( void * ); +NTSTATUS ISteamInput_SteamInput001_GetConnectedControllers( void * ); +NTSTATUS ISteamInput_SteamInput001_GetActionSetHandle( void * ); +NTSTATUS ISteamInput_SteamInput001_ActivateActionSet( void * ); +NTSTATUS ISteamInput_SteamInput001_GetCurrentActionSet( void * ); +NTSTATUS ISteamInput_SteamInput001_ActivateActionSetLayer( void * ); +NTSTATUS ISteamInput_SteamInput001_DeactivateActionSetLayer( void * ); +NTSTATUS ISteamInput_SteamInput001_DeactivateAllActionSetLayers( void * ); +NTSTATUS ISteamInput_SteamInput001_GetActiveActionSetLayers( void * ); +NTSTATUS ISteamInput_SteamInput001_GetDigitalActionHandle( void * ); +NTSTATUS ISteamInput_SteamInput001_GetDigitalActionData( void * ); +NTSTATUS ISteamInput_SteamInput001_GetDigitalActionOrigins( void * ); +NTSTATUS ISteamInput_SteamInput001_GetAnalogActionHandle( void * ); +NTSTATUS ISteamInput_SteamInput001_GetAnalogActionData( void * ); +NTSTATUS ISteamInput_SteamInput001_GetAnalogActionOrigins( void * ); +NTSTATUS ISteamInput_SteamInput001_GetGlyphForActionOrigin( void * ); +NTSTATUS ISteamInput_SteamInput001_GetStringForActionOrigin( void * ); +NTSTATUS ISteamInput_SteamInput001_StopAnalogActionMomentum( void * ); +NTSTATUS ISteamInput_SteamInput001_GetMotionData( void * ); +NTSTATUS ISteamInput_SteamInput001_TriggerVibration( void * ); +NTSTATUS ISteamInput_SteamInput001_SetLEDColor( void * ); +NTSTATUS ISteamInput_SteamInput001_TriggerHapticPulse( void * ); +NTSTATUS ISteamInput_SteamInput001_TriggerRepeatedHapticPulse( void * ); +NTSTATUS ISteamInput_SteamInput001_ShowBindingPanel( void * ); +NTSTATUS ISteamInput_SteamInput001_GetInputTypeForHandle( void * ); +NTSTATUS ISteamInput_SteamInput001_GetControllerForGamepadIndex( void * ); +NTSTATUS ISteamInput_SteamInput001_GetGamepadIndexForController( void * ); +NTSTATUS ISteamInput_SteamInput001_GetStringForXboxOrigin( void * ); +NTSTATUS ISteamInput_SteamInput001_GetGlyphForXboxOrigin( void * ); +NTSTATUS ISteamInput_SteamInput001_GetActionOriginFromXboxOrigin( void * ); +NTSTATUS ISteamInput_SteamInput001_TranslateActionOrigin( void * ); +NTSTATUS ISteamInput_SteamInput001_GetDeviceBindingRevision( void * ); +NTSTATUS ISteamInput_SteamInput001_GetRemotePlaySessionID( void * ); +NTSTATUS ISteamInput_SteamInput002_Init( void * ); +NTSTATUS ISteamInput_SteamInput002_Shutdown( void * ); +NTSTATUS ISteamInput_SteamInput002_RunFrame( void * ); +NTSTATUS ISteamInput_SteamInput002_GetConnectedControllers( void * ); +NTSTATUS ISteamInput_SteamInput002_GetActionSetHandle( void * ); +NTSTATUS ISteamInput_SteamInput002_ActivateActionSet( void * ); +NTSTATUS ISteamInput_SteamInput002_GetCurrentActionSet( void * ); +NTSTATUS ISteamInput_SteamInput002_ActivateActionSetLayer( void * ); +NTSTATUS ISteamInput_SteamInput002_DeactivateActionSetLayer( void * ); +NTSTATUS ISteamInput_SteamInput002_DeactivateAllActionSetLayers( void * ); +NTSTATUS ISteamInput_SteamInput002_GetActiveActionSetLayers( void * ); +NTSTATUS ISteamInput_SteamInput002_GetDigitalActionHandle( void * ); +NTSTATUS ISteamInput_SteamInput002_GetDigitalActionData( void * ); +NTSTATUS ISteamInput_SteamInput002_GetDigitalActionOrigins( void * ); +NTSTATUS ISteamInput_SteamInput002_GetAnalogActionHandle( void * ); +NTSTATUS ISteamInput_SteamInput002_GetAnalogActionData( void * ); +NTSTATUS ISteamInput_SteamInput002_GetAnalogActionOrigins( void * ); +NTSTATUS ISteamInput_SteamInput002_GetGlyphForActionOrigin( void * ); +NTSTATUS ISteamInput_SteamInput002_GetStringForActionOrigin( void * ); +NTSTATUS ISteamInput_SteamInput002_StopAnalogActionMomentum( void * ); +NTSTATUS ISteamInput_SteamInput002_GetMotionData( void * ); +NTSTATUS ISteamInput_SteamInput002_TriggerVibration( void * ); +NTSTATUS ISteamInput_SteamInput002_SetLEDColor( void * ); +NTSTATUS ISteamInput_SteamInput002_TriggerHapticPulse( void * ); +NTSTATUS ISteamInput_SteamInput002_TriggerRepeatedHapticPulse( void * ); +NTSTATUS ISteamInput_SteamInput002_ShowBindingPanel( void * ); +NTSTATUS ISteamInput_SteamInput002_GetInputTypeForHandle( void * ); +NTSTATUS ISteamInput_SteamInput002_GetControllerForGamepadIndex( void * ); +NTSTATUS ISteamInput_SteamInput002_GetGamepadIndexForController( void * ); +NTSTATUS ISteamInput_SteamInput002_GetStringForXboxOrigin( void * ); +NTSTATUS ISteamInput_SteamInput002_GetGlyphForXboxOrigin( void * ); +NTSTATUS ISteamInput_SteamInput002_GetActionOriginFromXboxOrigin( void * ); +NTSTATUS ISteamInput_SteamInput002_TranslateActionOrigin( void * ); +NTSTATUS ISteamInput_SteamInput002_GetDeviceBindingRevision( void * ); +NTSTATUS ISteamInput_SteamInput002_GetRemotePlaySessionID( void * ); +NTSTATUS ISteamInput_SteamInput005_Init( void * ); +NTSTATUS ISteamInput_SteamInput005_Shutdown( void * ); +NTSTATUS ISteamInput_SteamInput005_SetInputActionManifestFilePath( void * ); +NTSTATUS ISteamInput_SteamInput005_RunFrame( void * ); +NTSTATUS ISteamInput_SteamInput005_BWaitForData( void * ); +NTSTATUS ISteamInput_SteamInput005_BNewDataAvailable( void * ); +NTSTATUS ISteamInput_SteamInput005_GetConnectedControllers( void * ); +NTSTATUS ISteamInput_SteamInput005_EnableDeviceCallbacks( void * ); +NTSTATUS ISteamInput_SteamInput005_EnableActionEventCallbacks( void * ); +NTSTATUS ISteamInput_SteamInput005_GetActionSetHandle( void * ); +NTSTATUS ISteamInput_SteamInput005_ActivateActionSet( void * ); +NTSTATUS ISteamInput_SteamInput005_GetCurrentActionSet( void * ); +NTSTATUS ISteamInput_SteamInput005_ActivateActionSetLayer( void * ); +NTSTATUS ISteamInput_SteamInput005_DeactivateActionSetLayer( void * ); +NTSTATUS ISteamInput_SteamInput005_DeactivateAllActionSetLayers( void * ); +NTSTATUS ISteamInput_SteamInput005_GetActiveActionSetLayers( void * ); +NTSTATUS ISteamInput_SteamInput005_GetDigitalActionHandle( void * ); +NTSTATUS ISteamInput_SteamInput005_GetDigitalActionData( void * ); +NTSTATUS ISteamInput_SteamInput005_GetDigitalActionOrigins( void * ); +NTSTATUS ISteamInput_SteamInput005_GetStringForDigitalActionName( void * ); +NTSTATUS ISteamInput_SteamInput005_GetAnalogActionHandle( void * ); +NTSTATUS ISteamInput_SteamInput005_GetAnalogActionData( void * ); +NTSTATUS ISteamInput_SteamInput005_GetAnalogActionOrigins( void * ); +NTSTATUS ISteamInput_SteamInput005_GetGlyphPNGForActionOrigin( void * ); +NTSTATUS ISteamInput_SteamInput005_GetGlyphSVGForActionOrigin( void * ); +NTSTATUS ISteamInput_SteamInput005_GetGlyphForActionOrigin_Legacy( void * ); +NTSTATUS ISteamInput_SteamInput005_GetStringForActionOrigin( void * ); +NTSTATUS ISteamInput_SteamInput005_GetStringForAnalogActionName( void * ); +NTSTATUS ISteamInput_SteamInput005_StopAnalogActionMomentum( void * ); +NTSTATUS ISteamInput_SteamInput005_GetMotionData( void * ); +NTSTATUS ISteamInput_SteamInput005_TriggerVibration( void * ); +NTSTATUS ISteamInput_SteamInput005_TriggerVibrationExtended( void * ); +NTSTATUS ISteamInput_SteamInput005_TriggerSimpleHapticEvent( void * ); +NTSTATUS ISteamInput_SteamInput005_SetLEDColor( void * ); +NTSTATUS ISteamInput_SteamInput005_Legacy_TriggerHapticPulse( void * ); +NTSTATUS ISteamInput_SteamInput005_Legacy_TriggerRepeatedHapticPulse( void * ); +NTSTATUS ISteamInput_SteamInput005_ShowBindingPanel( void * ); +NTSTATUS ISteamInput_SteamInput005_GetInputTypeForHandle( void * ); +NTSTATUS ISteamInput_SteamInput005_GetControllerForGamepadIndex( void * ); +NTSTATUS ISteamInput_SteamInput005_GetGamepadIndexForController( void * ); +NTSTATUS ISteamInput_SteamInput005_GetStringForXboxOrigin( void * ); +NTSTATUS ISteamInput_SteamInput005_GetGlyphForXboxOrigin( void * ); +NTSTATUS ISteamInput_SteamInput005_GetActionOriginFromXboxOrigin( void * ); +NTSTATUS ISteamInput_SteamInput005_TranslateActionOrigin( void * ); +NTSTATUS ISteamInput_SteamInput005_GetDeviceBindingRevision( void * ); +NTSTATUS ISteamInput_SteamInput005_GetRemotePlaySessionID( void * ); +NTSTATUS ISteamInput_SteamInput005_GetSessionInputConfigurationSettings( void * ); +NTSTATUS ISteamInput_SteamInput006_Init( void * ); +NTSTATUS ISteamInput_SteamInput006_Shutdown( void * ); +NTSTATUS ISteamInput_SteamInput006_SetInputActionManifestFilePath( void * ); +NTSTATUS ISteamInput_SteamInput006_RunFrame( void * ); +NTSTATUS ISteamInput_SteamInput006_BWaitForData( void * ); +NTSTATUS ISteamInput_SteamInput006_BNewDataAvailable( void * ); +NTSTATUS ISteamInput_SteamInput006_GetConnectedControllers( void * ); +NTSTATUS ISteamInput_SteamInput006_EnableDeviceCallbacks( void * ); +NTSTATUS ISteamInput_SteamInput006_EnableActionEventCallbacks( void * ); +NTSTATUS ISteamInput_SteamInput006_GetActionSetHandle( void * ); +NTSTATUS ISteamInput_SteamInput006_ActivateActionSet( void * ); +NTSTATUS ISteamInput_SteamInput006_GetCurrentActionSet( void * ); +NTSTATUS ISteamInput_SteamInput006_ActivateActionSetLayer( void * ); +NTSTATUS ISteamInput_SteamInput006_DeactivateActionSetLayer( void * ); +NTSTATUS ISteamInput_SteamInput006_DeactivateAllActionSetLayers( void * ); +NTSTATUS ISteamInput_SteamInput006_GetActiveActionSetLayers( void * ); +NTSTATUS ISteamInput_SteamInput006_GetDigitalActionHandle( void * ); +NTSTATUS ISteamInput_SteamInput006_GetDigitalActionData( void * ); +NTSTATUS ISteamInput_SteamInput006_GetDigitalActionOrigins( void * ); +NTSTATUS ISteamInput_SteamInput006_GetStringForDigitalActionName( void * ); +NTSTATUS ISteamInput_SteamInput006_GetAnalogActionHandle( void * ); +NTSTATUS ISteamInput_SteamInput006_GetAnalogActionData( void * ); +NTSTATUS ISteamInput_SteamInput006_GetAnalogActionOrigins( void * ); +NTSTATUS ISteamInput_SteamInput006_GetGlyphPNGForActionOrigin( void * ); +NTSTATUS ISteamInput_SteamInput006_GetGlyphSVGForActionOrigin( void * ); +NTSTATUS ISteamInput_SteamInput006_GetGlyphForActionOrigin_Legacy( void * ); +NTSTATUS ISteamInput_SteamInput006_GetStringForActionOrigin( void * ); +NTSTATUS ISteamInput_SteamInput006_GetStringForAnalogActionName( void * ); +NTSTATUS ISteamInput_SteamInput006_StopAnalogActionMomentum( void * ); +NTSTATUS ISteamInput_SteamInput006_GetMotionData( void * ); +NTSTATUS ISteamInput_SteamInput006_TriggerVibration( void * ); +NTSTATUS ISteamInput_SteamInput006_TriggerVibrationExtended( void * ); +NTSTATUS ISteamInput_SteamInput006_TriggerSimpleHapticEvent( void * ); +NTSTATUS ISteamInput_SteamInput006_SetLEDColor( void * ); +NTSTATUS ISteamInput_SteamInput006_Legacy_TriggerHapticPulse( void * ); +NTSTATUS ISteamInput_SteamInput006_Legacy_TriggerRepeatedHapticPulse( void * ); +NTSTATUS ISteamInput_SteamInput006_ShowBindingPanel( void * ); +NTSTATUS ISteamInput_SteamInput006_GetInputTypeForHandle( void * ); +NTSTATUS ISteamInput_SteamInput006_GetControllerForGamepadIndex( void * ); +NTSTATUS ISteamInput_SteamInput006_GetGamepadIndexForController( void * ); +NTSTATUS ISteamInput_SteamInput006_GetStringForXboxOrigin( void * ); +NTSTATUS ISteamInput_SteamInput006_GetGlyphForXboxOrigin( void * ); +NTSTATUS ISteamInput_SteamInput006_GetActionOriginFromXboxOrigin( void * ); +NTSTATUS ISteamInput_SteamInput006_TranslateActionOrigin( void * ); +NTSTATUS ISteamInput_SteamInput006_GetDeviceBindingRevision( void * ); +NTSTATUS ISteamInput_SteamInput006_GetRemotePlaySessionID( void * ); +NTSTATUS ISteamInput_SteamInput006_GetSessionInputConfigurationSettings( void * ); +NTSTATUS ISteamInput_SteamInput006_SetDualSenseTriggerEffect( void * ); +NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetActive( void * ); +NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetHeartbeatInterval( void * ); +NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_HandleIncomingPacket( void * ); +NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNextOutgoingPacket( void * ); +NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasicServerData( void * ); +NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_ClearAllKeyValues( void * ); +NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetKeyValue( void * ); +NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_NotifyShutdown( void * ); +NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_WasRestartRequested( void * ); +NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_ForceHeartbeat( void * ); +NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_AddMasterServer( void * ); +NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_RemoveMasterServer( void * ); +NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNumMasterServers( void * ); +NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetMasterServerAddress( void * ); +NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_AddGameSearchParams( void * ); +NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_SearchForGameWithLobby( void * ); +NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_SearchForGameSolo( void * ); +NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_AcceptGame( void * ); +NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_DeclineGame( void * ); +NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_RetrieveConnectionDetails( void * ); +NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_EndGameSearch( void * ); +NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_SetGameHostParams( void * ); +NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_SetConnectionDetails( void * ); +NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_RequestPlayersForGame( void * ); +NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_HostConfirmGameStart( void * ); +NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_CancelRequestPlayersForGame( void * ); +NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_SubmitPlayerResult( void * ); +NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_EndGame( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGameCount( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame2( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame2( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame2( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking001_RequestLobbyList( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking001_GetLobbyByIndex( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking001_CreateLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking001_JoinLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking001_LeaveLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking001_InviteUserToLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking001_GetNumLobbyMembers( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberByIndex( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking001_GetLobbyData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking001_SetLobbyData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMsg( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking001_GetLobbyChatEntry( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking001_RequestLobbyData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGameCount( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking002_AddFavoriteGame( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking002_RemoveFavoriteGame( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking002_RequestLobbyList( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking002_GetLobbyByIndex( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking002_CreateLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking002_JoinLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking002_LeaveLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking002_InviteUserToLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking002_GetNumLobbyMembers( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberByIndex( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking002_GetLobbyData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking002_SetLobbyData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking002_SetLobbyMemberData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking002_SendLobbyChatMsg( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking002_GetLobbyChatEntry( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking002_RequestLobbyData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking002_SetLobbyGameServer( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGameCount( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking003_AddFavoriteGame( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking003_RemoveFavoriteGame( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking003_RequestLobbyList( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListFilter( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListNumericalFilter( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListSlotsAvailableFilter( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking003_GetLobbyByIndex( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking003_CreateLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking003_JoinLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking003_LeaveLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking003_InviteUserToLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking003_GetNumLobbyMembers( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberByIndex( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking003_GetLobbyData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking003_SetLobbyData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking003_SendLobbyChatMsg( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking003_GetLobbyChatEntry( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking003_RequestLobbyData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking003_SetLobbyGameServer( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberLimit( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberLimit( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking003_RequestFriendsLobbies( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGameCount( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking004_AddFavoriteGame( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking004_RemoveFavoriteGame( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking004_RequestLobbyList( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListFilter( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListNumericalFilter( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListSlotsAvailableFilter( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking004_GetLobbyByIndex( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking004_CreateLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking004_JoinLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking004_LeaveLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking004_InviteUserToLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking004_GetNumLobbyMembers( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberByIndex( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking004_GetLobbyData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking004_SetLobbyData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking004_SendLobbyChatMsg( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking004_GetLobbyChatEntry( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking004_RequestLobbyData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking004_SetLobbyGameServer( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberLimit( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberLimit( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking004_RequestFriendsLobbies( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGameCount( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking005_AddFavoriteGame( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking005_RemoveFavoriteGame( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking005_RequestLobbyList( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListFilter( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNumericalFilter( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListSlotsAvailableFilter( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNearValueFilter( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetLobbyByIndex( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking005_CreateLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking005_JoinLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking005_LeaveLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking005_InviteUserToLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetNumLobbyMembers( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberByIndex( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetLobbyData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking005_SetLobbyData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking005_SendLobbyChatMsg( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetLobbyChatEntry( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking005_RequestLobbyData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking005_SetLobbyGameServer( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberLimit( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberLimit( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking005_RequestFriendsLobbies( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking005_SetLobbyType( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetLobbyOwner( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetLobbyDistance( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGameCount( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking006_AddFavoriteGame( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking006_RemoveFavoriteGame( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking006_RequestLobbyList( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListFilter( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNumericalFilter( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNearValueFilter( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetLobbyByIndex( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking006_CreateLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking006_JoinLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking006_LeaveLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking006_InviteUserToLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetNumLobbyMembers( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberByIndex( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetLobbyData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking006_SetLobbyData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking006_SendLobbyChatMsg( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetLobbyChatEntry( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking006_RequestLobbyData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking006_SetLobbyGameServer( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberLimit( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberLimit( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking006_SetLobbyType( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetLobbyOwner( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGameCount( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_AddFavoriteGame( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_RemoveFavoriteGame( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_RequestLobbyList( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListStringFilter( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNumericalFilter( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNearValueFilter( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListFilterSlotsAvailable( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetLobbyByIndex( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_CreateLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_JoinLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_LeaveLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_InviteUserToLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetNumLobbyMembers( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberByIndex( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetLobbyData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_SetLobbyData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataCount( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_DeleteLobbyData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_SendLobbyChatMsg( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetLobbyChatEntry( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_RequestLobbyData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_SetLobbyGameServer( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberLimit( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberLimit( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_SetLobbyType( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_SetLobbyJoinable( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetLobbyOwner( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking007_SetLobbyOwner( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGameCount( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_AddFavoriteGame( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_RemoveFavoriteGame( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_RequestLobbyList( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListStringFilter( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNumericalFilter( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNearValueFilter( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListFilterSlotsAvailable( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListDistanceFilter( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListResultCountFilter( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetLobbyByIndex( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_CreateLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_JoinLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_LeaveLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_InviteUserToLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetNumLobbyMembers( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberByIndex( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetLobbyData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_SetLobbyData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataCount( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_DeleteLobbyData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_SendLobbyChatMsg( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetLobbyChatEntry( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_RequestLobbyData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_SetLobbyGameServer( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberLimit( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberLimit( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_SetLobbyType( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_SetLobbyJoinable( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetLobbyOwner( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking008_SetLobbyOwner( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGameCount( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_AddFavoriteGame( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_RemoveFavoriteGame( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_RequestLobbyList( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListStringFilter( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNumericalFilter( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNearValueFilter( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListFilterSlotsAvailable( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListDistanceFilter( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListResultCountFilter( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListCompatibleMembersFilter( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetLobbyByIndex( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_CreateLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_JoinLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_LeaveLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_InviteUserToLobby( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetNumLobbyMembers( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberByIndex( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetLobbyData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_SetLobbyData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataCount( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_DeleteLobbyData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_SendLobbyChatMsg( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetLobbyChatEntry( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_RequestLobbyData( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_SetLobbyGameServer( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberLimit( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberLimit( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_SetLobbyType( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_SetLobbyJoinable( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetLobbyOwner( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner( void * ); +NTSTATUS ISteamMatchmaking_SteamMatchMaking009_SetLinkedLobby( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_RequestInternetServerList( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_RequestLANServerList( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_RequestFriendsServerList( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_RequestFavoritesServerList( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_RequestHistoryServerList( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_RequestSpectatorServerList( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_GetServerDetails( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_CancelQuery( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_RefreshQuery( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_IsRefreshing( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_GetServerCount( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_RefreshServer( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_PingServer( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_PlayerDetails( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_ServerRules( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_CancelServerQuery( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_RequestInternetServerList( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_RequestLANServerList( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_RequestFriendsServerList( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_RequestFavoritesServerList( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_RequestHistoryServerList( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_RequestSpectatorServerList( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_ReleaseRequest( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_GetServerDetails( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_CancelQuery( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_RefreshQuery( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_IsRefreshing( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_GetServerCount( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_RefreshServer( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_PingServer( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_PlayerDetails( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_ServerRules( void * ); +NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_CancelServerQuery( void * ); +NTSTATUS ISteamNetworking_SteamNetworking001_CreateListenSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking001_CreateP2PConnectionSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking001_CreateConnectionSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking001_DestroySocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking001_DestroyListenSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking001_SendDataOnSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking001_RetrieveDataFromSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking001_IsDataAvailable( void * ); +NTSTATUS ISteamNetworking_SteamNetworking001_RetrieveData( void * ); +NTSTATUS ISteamNetworking_SteamNetworking001_GetSocketInfo( void * ); +NTSTATUS ISteamNetworking_SteamNetworking001_GetListenSocketInfo( void * ); +NTSTATUS ISteamNetworking_SteamNetworking002_CreateListenSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking002_CreateP2PConnectionSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking002_CreateConnectionSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking002_DestroySocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking002_DestroyListenSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking002_SendDataOnSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking002_RetrieveDataFromSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking002_IsDataAvailable( void * ); +NTSTATUS ISteamNetworking_SteamNetworking002_RetrieveData( void * ); +NTSTATUS ISteamNetworking_SteamNetworking002_GetSocketInfo( void * ); +NTSTATUS ISteamNetworking_SteamNetworking002_GetListenSocketInfo( void * ); +NTSTATUS ISteamNetworking_SteamNetworking002_GetSocketConnectionType( void * ); +NTSTATUS ISteamNetworking_SteamNetworking002_GetMaxPacketSize( void * ); +NTSTATUS ISteamNetworking_SteamNetworking003_SendP2PPacket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking003_IsP2PPacketAvailable( void * ); +NTSTATUS ISteamNetworking_SteamNetworking003_ReadP2PPacket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking003_AcceptP2PSessionWithUser( void * ); +NTSTATUS ISteamNetworking_SteamNetworking003_CloseP2PSessionWithUser( void * ); +NTSTATUS ISteamNetworking_SteamNetworking003_GetP2PSessionState( void * ); +NTSTATUS ISteamNetworking_SteamNetworking003_CreateListenSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking003_CreateP2PConnectionSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking003_CreateConnectionSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking003_DestroySocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking003_DestroyListenSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking003_SendDataOnSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking003_RetrieveDataFromSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking003_IsDataAvailable( void * ); +NTSTATUS ISteamNetworking_SteamNetworking003_RetrieveData( void * ); +NTSTATUS ISteamNetworking_SteamNetworking003_GetSocketInfo( void * ); +NTSTATUS ISteamNetworking_SteamNetworking003_GetListenSocketInfo( void * ); +NTSTATUS ISteamNetworking_SteamNetworking003_GetSocketConnectionType( void * ); +NTSTATUS ISteamNetworking_SteamNetworking003_GetMaxPacketSize( void * ); +NTSTATUS ISteamNetworking_SteamNetworking004_SendP2PPacket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking004_IsP2PPacketAvailable( void * ); +NTSTATUS ISteamNetworking_SteamNetworking004_ReadP2PPacket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking004_AcceptP2PSessionWithUser( void * ); +NTSTATUS ISteamNetworking_SteamNetworking004_CloseP2PSessionWithUser( void * ); +NTSTATUS ISteamNetworking_SteamNetworking004_GetP2PSessionState( void * ); +NTSTATUS ISteamNetworking_SteamNetworking004_CreateListenSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking004_CreateP2PConnectionSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking004_CreateConnectionSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking004_DestroySocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking004_DestroyListenSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking004_SendDataOnSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking004_RetrieveDataFromSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking004_IsDataAvailable( void * ); +NTSTATUS ISteamNetworking_SteamNetworking004_RetrieveData( void * ); +NTSTATUS ISteamNetworking_SteamNetworking004_GetSocketInfo( void * ); +NTSTATUS ISteamNetworking_SteamNetworking004_GetListenSocketInfo( void * ); +NTSTATUS ISteamNetworking_SteamNetworking004_GetSocketConnectionType( void * ); +NTSTATUS ISteamNetworking_SteamNetworking004_GetMaxPacketSize( void * ); +NTSTATUS ISteamNetworking_SteamNetworking005_SendP2PPacket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking005_IsP2PPacketAvailable( void * ); +NTSTATUS ISteamNetworking_SteamNetworking005_ReadP2PPacket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking005_AcceptP2PSessionWithUser( void * ); +NTSTATUS ISteamNetworking_SteamNetworking005_CloseP2PSessionWithUser( void * ); +NTSTATUS ISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser( void * ); +NTSTATUS ISteamNetworking_SteamNetworking005_GetP2PSessionState( void * ); +NTSTATUS ISteamNetworking_SteamNetworking005_AllowP2PPacketRelay( void * ); +NTSTATUS ISteamNetworking_SteamNetworking005_CreateListenSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking005_CreateP2PConnectionSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking005_CreateConnectionSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking005_DestroySocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking005_DestroyListenSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking005_SendDataOnSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking005_RetrieveDataFromSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking005_IsDataAvailable( void * ); +NTSTATUS ISteamNetworking_SteamNetworking005_RetrieveData( void * ); +NTSTATUS ISteamNetworking_SteamNetworking005_GetSocketInfo( void * ); +NTSTATUS ISteamNetworking_SteamNetworking005_GetListenSocketInfo( void * ); +NTSTATUS ISteamNetworking_SteamNetworking005_GetSocketConnectionType( void * ); +NTSTATUS ISteamNetworking_SteamNetworking005_GetMaxPacketSize( void * ); +NTSTATUS ISteamNetworking_SteamNetworking006_SendP2PPacket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking006_IsP2PPacketAvailable( void * ); +NTSTATUS ISteamNetworking_SteamNetworking006_ReadP2PPacket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking006_AcceptP2PSessionWithUser( void * ); +NTSTATUS ISteamNetworking_SteamNetworking006_CloseP2PSessionWithUser( void * ); +NTSTATUS ISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser( void * ); +NTSTATUS ISteamNetworking_SteamNetworking006_GetP2PSessionState( void * ); +NTSTATUS ISteamNetworking_SteamNetworking006_AllowP2PPacketRelay( void * ); +NTSTATUS ISteamNetworking_SteamNetworking006_CreateListenSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking006_CreateP2PConnectionSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking006_CreateConnectionSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking006_DestroySocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking006_DestroyListenSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking006_SendDataOnSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking006_RetrieveDataFromSocket( void * ); +NTSTATUS ISteamNetworking_SteamNetworking006_IsDataAvailable( void * ); +NTSTATUS ISteamNetworking_SteamNetworking006_RetrieveData( void * ); +NTSTATUS ISteamNetworking_SteamNetworking006_GetSocketInfo( void * ); +NTSTATUS ISteamNetworking_SteamNetworking006_GetListenSocketInfo( void * ); +NTSTATUS ISteamNetworking_SteamNetworking006_GetSocketConnectionType( void * ); +NTSTATUS ISteamNetworking_SteamNetworking006_GetMaxPacketSize( void * ); +NTSTATUS ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_DestroyFakeUDPPort( void * ); +NTSTATUS ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_SendMessageToFakeIP( void * ); +NTSTATUS ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ReceiveMessages( void * ); +NTSTATUS ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ScheduleCleanup( void * ); +NTSTATUS ISteamNetworkingMessages_SteamNetworkingMessages002_SendMessageToUser( void * ); +NTSTATUS ISteamNetworkingMessages_SteamNetworkingMessages002_ReceiveMessagesOnChannel( void * ); +NTSTATUS ISteamNetworkingMessages_SteamNetworkingMessages002_AcceptSessionWithUser( void * ); +NTSTATUS ISteamNetworkingMessages_SteamNetworkingMessages002_CloseSessionWithUser( void * ); +NTSTATUS ISteamNetworkingMessages_SteamNetworkingMessages002_CloseChannelWithUser( void * ); +NTSTATUS ISteamNetworkingMessages_SteamNetworkingMessages002_GetSessionConnectionInfo( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketIP( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectByIPAddress( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketP2P( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectP2P( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_AcceptConnection( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_CloseConnection( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_CloseListenSocket( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionUserData( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionUserData( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionName( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionName( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_SendMessageToConnection( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_FlushMessagesOnConnection( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnConnection( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnListenSocket( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionInfo( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_GetQuickConnectionStatus( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_GetDetailedConnectionStatus( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_GetListenSocketAddress( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocketPair( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_GetIdentity( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_ReceivedRelayAuthTicket( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_FindRelayAuthTicketForServer( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectToHostedDedicatedServer( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPort( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPOPID( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerAddress( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_CreateHostedDedicatedServerListenSocket( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketIP( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectByIPAddress( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketP2P( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectP2P( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_AcceptConnection( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_CloseConnection( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_CloseListenSocket( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionUserData( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionUserData( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionName( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionName( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_SendMessageToConnection( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_FlushMessagesOnConnection( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnConnection( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnListenSocket( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionInfo( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetQuickConnectionStatus( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetDetailedConnectionStatus( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetListenSocketAddress( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocketPair( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetIdentity( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_InitAuthentication( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetAuthenticationStatus( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_ReceivedRelayAuthTicket( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_FindRelayAuthTicketForServer( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectToHostedDedicatedServer( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPort( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPOPID( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerAddress( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_CreateHostedDedicatedServerListenSocket( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetGameCoordinatorServerLogin( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketIP( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectByIPAddress( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketP2P( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2P( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_AcceptConnection( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_CloseConnection( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_CloseListenSocket( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionUserData( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionUserData( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionName( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionName( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_SendMessageToConnection( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_SendMessages( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_FlushMessagesOnConnection( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnConnection( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnListenSocket( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionInfo( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetQuickConnectionStatus( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetDetailedConnectionStatus( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetListenSocketAddress( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocketPair( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetIdentity( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_InitAuthentication( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetAuthenticationStatus( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedRelayAuthTicket( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_FindRelayAuthTicketForServer( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectToHostedDedicatedServer( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPort( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPOPID( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerAddress( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_CreateHostedDedicatedServerListenSocket( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetGameCoordinatorServerLogin( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2PCustomSignaling( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP2PCustomSignal( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketIP( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectByIPAddress( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketP2P( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2P( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_AcceptConnection( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_CloseConnection( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_CloseListenSocket( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionUserData( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionUserData( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionName( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionName( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_SendMessageToConnection( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_SendMessages( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_FlushMessagesOnConnection( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnConnection( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionInfo( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetQuickConnectionStatus( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetDetailedConnectionStatus( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetListenSocketAddress( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocketPair( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetIdentity( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_InitAuthentication( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetAuthenticationStatus( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_CreatePollGroup( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_DestroyPollGroup( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionPollGroup( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnPollGroup( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedRelayAuthTicket( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_FindRelayAuthTicketForServer( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectToHostedDedicatedServer( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPort( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPOPID( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerAddress( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_CreateHostedDedicatedServerListenSocket( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetGameCoordinatorServerLogin( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2PCustomSignaling( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP2PCustomSignal( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetCertificateRequest( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_SetCertificate( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketIP( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectByIPAddress( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketP2P( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2P( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_AcceptConnection( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_CloseConnection( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_CloseListenSocket( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionUserData( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionUserData( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionName( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionName( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_SendMessageToConnection( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_SendMessages( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_FlushMessagesOnConnection( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnConnection( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionInfo( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetQuickConnectionStatus( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetDetailedConnectionStatus( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetListenSocketAddress( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocketPair( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetIdentity( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_InitAuthentication( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetAuthenticationStatus( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_CreatePollGroup( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_DestroyPollGroup( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionPollGroup( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnPollGroup( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedRelayAuthTicket( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_FindRelayAuthTicketForServer( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectToHostedDedicatedServer( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPort( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPOPID( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerAddress( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_CreateHostedDedicatedServerListenSocket( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetGameCoordinatorServerLogin( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2PCustomSignaling( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2PCustomSignal( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetCertificateRequest( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_SetCertificate( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_RunCallbacks( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketIP( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectByIPAddress( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2P( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2P( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_AcceptConnection( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_CloseConnection( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_CloseListenSocket( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionUserData( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionUserData( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionName( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionName( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_SendMessageToConnection( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_SendMessages( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_FlushMessagesOnConnection( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnConnection( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionInfo( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionRealTimeStatus( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetDetailedConnectionStatus( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetListenSocketAddress( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_CreateSocketPair( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_ConfigureConnectionLanes( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetIdentity( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_InitAuthentication( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetAuthenticationStatus( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_CreatePollGroup( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_DestroyPollGroup( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionPollGroup( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnPollGroup( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedRelayAuthTicket( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_FindRelayAuthTicketForServer( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectToHostedDedicatedServer( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPort( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPOPID( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerAddress( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_CreateHostedDedicatedServerListenSocket( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetGameCoordinatorServerLogin( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2PCustomSignaling( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2PCustomSignal( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetCertificateRequest( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_SetCertificate( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_ResetIdentity( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_RunCallbacks( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_BeginAsyncRequestFakeIP( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetFakeIP( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2PFakeIP( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetRemoteFakeIPForConnection( void * ); +NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_CreateFakeUDPPort( void * ); +NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PRendezvous( void * ); +NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PConnectionFailure( void * ); +NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCertAsync( void * ); +NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetNetworkConfigJSON( void * ); +NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_CacheRelayTicket( void * ); +NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicketCount( void * ); +NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicket( void * ); +NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_PostConnectionStateMsg( void * ); +NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PRendezvous( void * ); +NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PConnectionFailure( void * ); +NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCertAsync( void * ); +NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetNetworkConfigJSON( void * ); +NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_CacheRelayTicket( void * ); +NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicketCount( void * ); +NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicket( void * ); +NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_PostConnectionStateMsg( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalPingLocation( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeBetweenTwoLocations( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeFromLocalHost( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_ConvertPingLocationToString( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLocationString( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_CheckPingDataUpToDate( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_IsPingMeasurementInProgress( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_GetPingToDataCenter( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_GetDirectPingToPOP( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPCount( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPList( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalTimestamp( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_SetDebugOutputFunction( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValue( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_GetFirstConfigValue( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ToString( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ParseString( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ToString( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ParseString( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_GetRelayNetworkStatus( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalPingLocation( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeBetweenTwoLocations( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeFromLocalHost( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_ConvertPingLocationToString( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLocationString( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_CheckPingDataUpToDate( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_GetPingToDataCenter( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_GetDirectPingToPOP( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPCount( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPList( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalTimestamp( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_SetDebugOutputFunction( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_SetConfigValue( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValue( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValueInfo( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_GetFirstConfigValue( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ToString( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ParseString( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ToString( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ParseString( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_AllocateMessage( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_GetRelayNetworkStatus( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalPingLocation( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeBetweenTwoLocations( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeFromLocalHost( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_ConvertPingLocationToString( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLocationString( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_CheckPingDataUpToDate( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_GetPingToDataCenter( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_GetDirectPingToPOP( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPCount( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPList( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalTimestamp( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_SetDebugOutputFunction( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValue( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValueInfo( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_GetFirstConfigValue( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ToString( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ParseString( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ToString( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ParseString( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_AllocateMessage( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetRelayNetworkStatus( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalPingLocation( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeBetweenTwoLocations( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeFromLocalHost( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_ConvertPingLocationToString( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLocationString( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_CheckPingDataUpToDate( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetPingToDataCenter( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetDirectPingToPOP( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPCount( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPList( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalTimestamp( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_SetDebugOutputFunction( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetIPv4FakeIPType( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetRealIdentityForFakeIP( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValue( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValueInfo( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_IterateGenericEditableConfigValues( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToString( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ParseString( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_GetFakeIPType( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ToString( void * ); +NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ParseString( void * ); +NTSTATUS ISteamParties_SteamParties002_GetNumActiveBeacons( void * ); +NTSTATUS ISteamParties_SteamParties002_GetBeaconByIndex( void * ); +NTSTATUS ISteamParties_SteamParties002_GetBeaconDetails( void * ); +NTSTATUS ISteamParties_SteamParties002_JoinParty( void * ); +NTSTATUS ISteamParties_SteamParties002_GetNumAvailableBeaconLocations( void * ); +NTSTATUS ISteamParties_SteamParties002_GetAvailableBeaconLocations( void * ); +NTSTATUS ISteamParties_SteamParties002_CreateBeacon( void * ); +NTSTATUS ISteamParties_SteamParties002_OnReservationCompleted( void * ); +NTSTATUS ISteamParties_SteamParties002_CancelReservation( void * ); +NTSTATUS ISteamParties_SteamParties002_ChangeNumOpenSlots( void * ); +NTSTATUS ISteamParties_SteamParties002_DestroyBeacon( void * ); +NTSTATUS ISteamParties_SteamParties002_GetBeaconLocationData( void * ); +NTSTATUS ISteamUser_SteamUser004_GetHSteamUser( void * ); +NTSTATUS ISteamUser_SteamUser004_LogOn( void * ); +NTSTATUS ISteamUser_SteamUser004_LogOff( void * ); +NTSTATUS ISteamUser_SteamUser004_BLoggedOn( void * ); +NTSTATUS ISteamUser_SteamUser004_GetLogonState( void * ); +NTSTATUS ISteamUser_SteamUser004_BConnected( void * ); +NTSTATUS ISteamUser_SteamUser004_GetSteamID( void * ); +NTSTATUS ISteamUser_SteamUser004_IsVACBanned( void * ); +NTSTATUS ISteamUser_SteamUser004_RequireShowVACBannedMessage( void * ); +NTSTATUS ISteamUser_SteamUser004_AcknowledgeVACBanning( void * ); +NTSTATUS ISteamUser_SteamUser004_NClientGameIDAdd( void * ); +NTSTATUS ISteamUser_SteamUser004_RemoveClientGame( void * ); +NTSTATUS ISteamUser_SteamUser004_SetClientGameServer( void * ); +NTSTATUS ISteamUser_SteamUser004_SetSteam2Ticket( void * ); +NTSTATUS ISteamUser_SteamUser004_AddServerNetAddress( void * ); +NTSTATUS ISteamUser_SteamUser004_SetEmail( void * ); +NTSTATUS ISteamUser_SteamUser004_GetSteamGameConnectToken( void * ); +NTSTATUS ISteamUser_SteamUser004_SetRegistryString( void * ); +NTSTATUS ISteamUser_SteamUser004_GetRegistryString( void * ); +NTSTATUS ISteamUser_SteamUser004_SetRegistryInt( void * ); +NTSTATUS ISteamUser_SteamUser004_GetRegistryInt( void * ); +NTSTATUS ISteamUser_SteamUser004_InitiateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser004_TerminateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser004_SetSelfAsPrimaryChatDestination( void * ); +NTSTATUS ISteamUser_SteamUser004_IsPrimaryChatDestination( void * ); +NTSTATUS ISteamUser_SteamUser004_RequestLegacyCDKey( void * ); +NTSTATUS ISteamUser_SteamUser005_GetHSteamUser( void * ); +NTSTATUS ISteamUser_SteamUser005_LogOn( void * ); +NTSTATUS ISteamUser_SteamUser005_LogOff( void * ); +NTSTATUS ISteamUser_SteamUser005_BLoggedOn( void * ); +NTSTATUS ISteamUser_SteamUser005_GetLogonState( void * ); +NTSTATUS ISteamUser_SteamUser005_BConnected( void * ); +NTSTATUS ISteamUser_SteamUser005_GetSteamID( void * ); +NTSTATUS ISteamUser_SteamUser005_IsVACBanned( void * ); +NTSTATUS ISteamUser_SteamUser005_RequireShowVACBannedMessage( void * ); +NTSTATUS ISteamUser_SteamUser005_AcknowledgeVACBanning( void * ); +NTSTATUS ISteamUser_SteamUser005_SetSteam2Ticket( void * ); +NTSTATUS ISteamUser_SteamUser005_AddServerNetAddress( void * ); +NTSTATUS ISteamUser_SteamUser005_SetEmail( void * ); +NTSTATUS ISteamUser_SteamUser005_SetRegistryString( void * ); +NTSTATUS ISteamUser_SteamUser005_GetRegistryString( void * ); +NTSTATUS ISteamUser_SteamUser005_SetRegistryInt( void * ); +NTSTATUS ISteamUser_SteamUser005_GetRegistryInt( void * ); +NTSTATUS ISteamUser_SteamUser005_InitiateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser005_TerminateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser005_SetSelfAsPrimaryChatDestination( void * ); +NTSTATUS ISteamUser_SteamUser005_IsPrimaryChatDestination( void * ); +NTSTATUS ISteamUser_SteamUser005_RequestLegacyCDKey( void * ); +NTSTATUS ISteamUser_SteamUser005_SendGuestPassByEmail( void * ); +NTSTATUS ISteamUser_SteamUser005_SendGuestPassByAccountID( void * ); +NTSTATUS ISteamUser_SteamUser005_AckGuestPass( void * ); +NTSTATUS ISteamUser_SteamUser005_RedeemGuestPass( void * ); +NTSTATUS ISteamUser_SteamUser005_GetGuestPassToGiveCount( void * ); +NTSTATUS ISteamUser_SteamUser005_GetGuestPassToRedeemCount( void * ); +NTSTATUS ISteamUser_SteamUser005_GetGuestPassLastUpdateTime( void * ); +NTSTATUS ISteamUser_SteamUser005_GetGuestPassToGiveInfo( void * ); +NTSTATUS ISteamUser_SteamUser005_GetGuestPassToRedeemInfo( void * ); +NTSTATUS ISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress( void * ); +NTSTATUS ISteamUser_SteamUser005_GetGuestPassToRedeemSenderName( void * ); +NTSTATUS ISteamUser_SteamUser005_AcknowledgeMessageByGID( void * ); +NTSTATUS ISteamUser_SteamUser005_SetLanguage( void * ); +NTSTATUS ISteamUser_SteamUser005_TrackAppUsageEvent( void * ); +NTSTATUS ISteamUser_SteamUser005_SetAccountName( void * ); +NTSTATUS ISteamUser_SteamUser005_SetPassword( void * ); +NTSTATUS ISteamUser_SteamUser005_SetAccountCreationTime( void * ); +NTSTATUS ISteamUser_SteamUser006_GetHSteamUser( void * ); +NTSTATUS ISteamUser_SteamUser006_LogOn( void * ); +NTSTATUS ISteamUser_SteamUser006_LogOff( void * ); +NTSTATUS ISteamUser_SteamUser006_BLoggedOn( void * ); +NTSTATUS ISteamUser_SteamUser006_GetSteamID( void * ); +NTSTATUS ISteamUser_SteamUser006_SetRegistryString( void * ); +NTSTATUS ISteamUser_SteamUser006_GetRegistryString( void * ); +NTSTATUS ISteamUser_SteamUser006_SetRegistryInt( void * ); +NTSTATUS ISteamUser_SteamUser006_GetRegistryInt( void * ); +NTSTATUS ISteamUser_SteamUser006_InitiateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser006_TerminateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser006_TrackAppUsageEvent( void * ); +NTSTATUS ISteamUser_SteamUser007_GetHSteamUser( void * ); +NTSTATUS ISteamUser_SteamUser007_LogOn( void * ); +NTSTATUS ISteamUser_SteamUser007_LogOff( void * ); +NTSTATUS ISteamUser_SteamUser007_BLoggedOn( void * ); +NTSTATUS ISteamUser_SteamUser007_GetSteamID( void * ); +NTSTATUS ISteamUser_SteamUser007_SetRegistryString( void * ); +NTSTATUS ISteamUser_SteamUser007_GetRegistryString( void * ); +NTSTATUS ISteamUser_SteamUser007_SetRegistryInt( void * ); +NTSTATUS ISteamUser_SteamUser007_GetRegistryInt( void * ); +NTSTATUS ISteamUser_SteamUser007_InitiateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser007_TerminateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser007_TrackAppUsageEvent( void * ); +NTSTATUS ISteamUser_SteamUser007_RefreshSteam2Login( void * ); +NTSTATUS ISteamUser_SteamUser008_GetHSteamUser( void * ); +NTSTATUS ISteamUser_SteamUser008_BLoggedOn( void * ); +NTSTATUS ISteamUser_SteamUser008_GetSteamID( void * ); +NTSTATUS ISteamUser_SteamUser008_InitiateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser008_TerminateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser008_TrackAppUsageEvent( void * ); +NTSTATUS ISteamUser_SteamUser008_RefreshSteam2Login( void * ); +NTSTATUS ISteamUser_SteamUser009_GetHSteamUser( void * ); +NTSTATUS ISteamUser_SteamUser009_BLoggedOn( void * ); +NTSTATUS ISteamUser_SteamUser009_GetSteamID( void * ); +NTSTATUS ISteamUser_SteamUser009_InitiateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser009_TerminateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser009_TrackAppUsageEvent( void * ); +NTSTATUS ISteamUser_SteamUser009_RefreshSteam2Login( void * ); +NTSTATUS ISteamUser_SteamUser010_GetHSteamUser( void * ); +NTSTATUS ISteamUser_SteamUser010_BLoggedOn( void * ); +NTSTATUS ISteamUser_SteamUser010_GetSteamID( void * ); +NTSTATUS ISteamUser_SteamUser010_InitiateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser010_TerminateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser010_TrackAppUsageEvent( void * ); +NTSTATUS ISteamUser_SteamUser011_GetHSteamUser( void * ); +NTSTATUS ISteamUser_SteamUser011_BLoggedOn( void * ); +NTSTATUS ISteamUser_SteamUser011_GetSteamID( void * ); +NTSTATUS ISteamUser_SteamUser011_InitiateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser011_TerminateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser011_TrackAppUsageEvent( void * ); +NTSTATUS ISteamUser_SteamUser011_GetUserDataFolder( void * ); +NTSTATUS ISteamUser_SteamUser011_StartVoiceRecording( void * ); +NTSTATUS ISteamUser_SteamUser011_StopVoiceRecording( void * ); +NTSTATUS ISteamUser_SteamUser011_GetCompressedVoice( void * ); +NTSTATUS ISteamUser_SteamUser011_DecompressVoice( void * ); +NTSTATUS ISteamUser_SteamUser012_GetHSteamUser( void * ); +NTSTATUS ISteamUser_SteamUser012_BLoggedOn( void * ); +NTSTATUS ISteamUser_SteamUser012_GetSteamID( void * ); +NTSTATUS ISteamUser_SteamUser012_InitiateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser012_TerminateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser012_TrackAppUsageEvent( void * ); +NTSTATUS ISteamUser_SteamUser012_GetUserDataFolder( void * ); +NTSTATUS ISteamUser_SteamUser012_StartVoiceRecording( void * ); +NTSTATUS ISteamUser_SteamUser012_StopVoiceRecording( void * ); +NTSTATUS ISteamUser_SteamUser012_GetCompressedVoice( void * ); +NTSTATUS ISteamUser_SteamUser012_DecompressVoice( void * ); +NTSTATUS ISteamUser_SteamUser012_GetAuthSessionTicket( void * ); +NTSTATUS ISteamUser_SteamUser012_BeginAuthSession( void * ); +NTSTATUS ISteamUser_SteamUser012_EndAuthSession( void * ); +NTSTATUS ISteamUser_SteamUser012_CancelAuthTicket( void * ); +NTSTATUS ISteamUser_SteamUser012_UserHasLicenseForApp( void * ); +NTSTATUS ISteamUser_SteamUser013_GetHSteamUser( void * ); +NTSTATUS ISteamUser_SteamUser013_BLoggedOn( void * ); +NTSTATUS ISteamUser_SteamUser013_GetSteamID( void * ); +NTSTATUS ISteamUser_SteamUser013_InitiateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser013_TerminateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser013_TrackAppUsageEvent( void * ); +NTSTATUS ISteamUser_SteamUser013_GetUserDataFolder( void * ); +NTSTATUS ISteamUser_SteamUser013_StartVoiceRecording( void * ); +NTSTATUS ISteamUser_SteamUser013_StopVoiceRecording( void * ); +NTSTATUS ISteamUser_SteamUser013_GetAvailableVoice( void * ); +NTSTATUS ISteamUser_SteamUser013_GetVoice( void * ); +NTSTATUS ISteamUser_SteamUser013_DecompressVoice( void * ); +NTSTATUS ISteamUser_SteamUser013_GetAuthSessionTicket( void * ); +NTSTATUS ISteamUser_SteamUser013_BeginAuthSession( void * ); +NTSTATUS ISteamUser_SteamUser013_EndAuthSession( void * ); +NTSTATUS ISteamUser_SteamUser013_CancelAuthTicket( void * ); +NTSTATUS ISteamUser_SteamUser013_UserHasLicenseForApp( void * ); +NTSTATUS ISteamUser_SteamUser014_GetHSteamUser( void * ); +NTSTATUS ISteamUser_SteamUser014_BLoggedOn( void * ); +NTSTATUS ISteamUser_SteamUser014_GetSteamID( void * ); +NTSTATUS ISteamUser_SteamUser014_InitiateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser014_TerminateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser014_TrackAppUsageEvent( void * ); +NTSTATUS ISteamUser_SteamUser014_GetUserDataFolder( void * ); +NTSTATUS ISteamUser_SteamUser014_StartVoiceRecording( void * ); +NTSTATUS ISteamUser_SteamUser014_StopVoiceRecording( void * ); +NTSTATUS ISteamUser_SteamUser014_GetAvailableVoice( void * ); +NTSTATUS ISteamUser_SteamUser014_GetVoice( void * ); +NTSTATUS ISteamUser_SteamUser014_DecompressVoice( void * ); +NTSTATUS ISteamUser_SteamUser014_GetAuthSessionTicket( void * ); +NTSTATUS ISteamUser_SteamUser014_BeginAuthSession( void * ); +NTSTATUS ISteamUser_SteamUser014_EndAuthSession( void * ); +NTSTATUS ISteamUser_SteamUser014_CancelAuthTicket( void * ); +NTSTATUS ISteamUser_SteamUser014_UserHasLicenseForApp( void * ); +NTSTATUS ISteamUser_SteamUser014_BIsBehindNAT( void * ); +NTSTATUS ISteamUser_SteamUser014_AdvertiseGame( void * ); +NTSTATUS ISteamUser_SteamUser014_RequestEncryptedAppTicket( void * ); +NTSTATUS ISteamUser_SteamUser014_GetEncryptedAppTicket( void * ); +NTSTATUS ISteamUser_SteamUser015_GetHSteamUser( void * ); +NTSTATUS ISteamUser_SteamUser015_BLoggedOn( void * ); +NTSTATUS ISteamUser_SteamUser015_GetSteamID( void * ); +NTSTATUS ISteamUser_SteamUser015_InitiateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser015_TerminateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser015_TrackAppUsageEvent( void * ); +NTSTATUS ISteamUser_SteamUser015_GetUserDataFolder( void * ); +NTSTATUS ISteamUser_SteamUser015_StartVoiceRecording( void * ); +NTSTATUS ISteamUser_SteamUser015_StopVoiceRecording( void * ); +NTSTATUS ISteamUser_SteamUser015_GetAvailableVoice( void * ); +NTSTATUS ISteamUser_SteamUser015_GetVoice( void * ); +NTSTATUS ISteamUser_SteamUser015_DecompressVoice( void * ); +NTSTATUS ISteamUser_SteamUser015_GetVoiceOptimalSampleRate( void * ); +NTSTATUS ISteamUser_SteamUser015_GetAuthSessionTicket( void * ); +NTSTATUS ISteamUser_SteamUser015_BeginAuthSession( void * ); +NTSTATUS ISteamUser_SteamUser015_EndAuthSession( void * ); +NTSTATUS ISteamUser_SteamUser015_CancelAuthTicket( void * ); +NTSTATUS ISteamUser_SteamUser015_UserHasLicenseForApp( void * ); +NTSTATUS ISteamUser_SteamUser015_BIsBehindNAT( void * ); +NTSTATUS ISteamUser_SteamUser015_AdvertiseGame( void * ); +NTSTATUS ISteamUser_SteamUser015_RequestEncryptedAppTicket( void * ); +NTSTATUS ISteamUser_SteamUser015_GetEncryptedAppTicket( void * ); +NTSTATUS ISteamUser_SteamUser016_GetHSteamUser( void * ); +NTSTATUS ISteamUser_SteamUser016_BLoggedOn( void * ); +NTSTATUS ISteamUser_SteamUser016_GetSteamID( void * ); +NTSTATUS ISteamUser_SteamUser016_InitiateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser016_TerminateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser016_TrackAppUsageEvent( void * ); +NTSTATUS ISteamUser_SteamUser016_GetUserDataFolder( void * ); +NTSTATUS ISteamUser_SteamUser016_StartVoiceRecording( void * ); +NTSTATUS ISteamUser_SteamUser016_StopVoiceRecording( void * ); +NTSTATUS ISteamUser_SteamUser016_GetAvailableVoice( void * ); +NTSTATUS ISteamUser_SteamUser016_GetVoice( void * ); +NTSTATUS ISteamUser_SteamUser016_DecompressVoice( void * ); +NTSTATUS ISteamUser_SteamUser016_GetVoiceOptimalSampleRate( void * ); +NTSTATUS ISteamUser_SteamUser016_GetAuthSessionTicket( void * ); +NTSTATUS ISteamUser_SteamUser016_BeginAuthSession( void * ); +NTSTATUS ISteamUser_SteamUser016_EndAuthSession( void * ); +NTSTATUS ISteamUser_SteamUser016_CancelAuthTicket( void * ); +NTSTATUS ISteamUser_SteamUser016_UserHasLicenseForApp( void * ); +NTSTATUS ISteamUser_SteamUser016_BIsBehindNAT( void * ); +NTSTATUS ISteamUser_SteamUser016_AdvertiseGame( void * ); +NTSTATUS ISteamUser_SteamUser016_RequestEncryptedAppTicket( void * ); +NTSTATUS ISteamUser_SteamUser016_GetEncryptedAppTicket( void * ); +NTSTATUS ISteamUser_SteamUser017_GetHSteamUser( void * ); +NTSTATUS ISteamUser_SteamUser017_BLoggedOn( void * ); +NTSTATUS ISteamUser_SteamUser017_GetSteamID( void * ); +NTSTATUS ISteamUser_SteamUser017_InitiateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser017_TerminateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser017_TrackAppUsageEvent( void * ); +NTSTATUS ISteamUser_SteamUser017_GetUserDataFolder( void * ); +NTSTATUS ISteamUser_SteamUser017_StartVoiceRecording( void * ); +NTSTATUS ISteamUser_SteamUser017_StopVoiceRecording( void * ); +NTSTATUS ISteamUser_SteamUser017_GetAvailableVoice( void * ); +NTSTATUS ISteamUser_SteamUser017_GetVoice( void * ); +NTSTATUS ISteamUser_SteamUser017_DecompressVoice( void * ); +NTSTATUS ISteamUser_SteamUser017_GetVoiceOptimalSampleRate( void * ); +NTSTATUS ISteamUser_SteamUser017_GetAuthSessionTicket( void * ); +NTSTATUS ISteamUser_SteamUser017_BeginAuthSession( void * ); +NTSTATUS ISteamUser_SteamUser017_EndAuthSession( void * ); +NTSTATUS ISteamUser_SteamUser017_CancelAuthTicket( void * ); +NTSTATUS ISteamUser_SteamUser017_UserHasLicenseForApp( void * ); +NTSTATUS ISteamUser_SteamUser017_BIsBehindNAT( void * ); +NTSTATUS ISteamUser_SteamUser017_AdvertiseGame( void * ); +NTSTATUS ISteamUser_SteamUser017_RequestEncryptedAppTicket( void * ); +NTSTATUS ISteamUser_SteamUser017_GetEncryptedAppTicket( void * ); +NTSTATUS ISteamUser_SteamUser017_GetGameBadgeLevel( void * ); +NTSTATUS ISteamUser_SteamUser017_GetPlayerSteamLevel( void * ); +NTSTATUS ISteamUser_SteamUser018_GetHSteamUser( void * ); +NTSTATUS ISteamUser_SteamUser018_BLoggedOn( void * ); +NTSTATUS ISteamUser_SteamUser018_GetSteamID( void * ); +NTSTATUS ISteamUser_SteamUser018_InitiateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser018_TerminateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser018_TrackAppUsageEvent( void * ); +NTSTATUS ISteamUser_SteamUser018_GetUserDataFolder( void * ); +NTSTATUS ISteamUser_SteamUser018_StartVoiceRecording( void * ); +NTSTATUS ISteamUser_SteamUser018_StopVoiceRecording( void * ); +NTSTATUS ISteamUser_SteamUser018_GetAvailableVoice( void * ); +NTSTATUS ISteamUser_SteamUser018_GetVoice( void * ); +NTSTATUS ISteamUser_SteamUser018_DecompressVoice( void * ); +NTSTATUS ISteamUser_SteamUser018_GetVoiceOptimalSampleRate( void * ); +NTSTATUS ISteamUser_SteamUser018_GetAuthSessionTicket( void * ); +NTSTATUS ISteamUser_SteamUser018_BeginAuthSession( void * ); +NTSTATUS ISteamUser_SteamUser018_EndAuthSession( void * ); +NTSTATUS ISteamUser_SteamUser018_CancelAuthTicket( void * ); +NTSTATUS ISteamUser_SteamUser018_UserHasLicenseForApp( void * ); +NTSTATUS ISteamUser_SteamUser018_BIsBehindNAT( void * ); +NTSTATUS ISteamUser_SteamUser018_AdvertiseGame( void * ); +NTSTATUS ISteamUser_SteamUser018_RequestEncryptedAppTicket( void * ); +NTSTATUS ISteamUser_SteamUser018_GetEncryptedAppTicket( void * ); +NTSTATUS ISteamUser_SteamUser018_GetGameBadgeLevel( void * ); +NTSTATUS ISteamUser_SteamUser018_GetPlayerSteamLevel( void * ); +NTSTATUS ISteamUser_SteamUser018_RequestStoreAuthURL( void * ); +NTSTATUS ISteamUser_SteamUser019_GetHSteamUser( void * ); +NTSTATUS ISteamUser_SteamUser019_BLoggedOn( void * ); +NTSTATUS ISteamUser_SteamUser019_GetSteamID( void * ); +NTSTATUS ISteamUser_SteamUser019_InitiateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser019_TerminateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser019_TrackAppUsageEvent( void * ); +NTSTATUS ISteamUser_SteamUser019_GetUserDataFolder( void * ); +NTSTATUS ISteamUser_SteamUser019_StartVoiceRecording( void * ); +NTSTATUS ISteamUser_SteamUser019_StopVoiceRecording( void * ); +NTSTATUS ISteamUser_SteamUser019_GetAvailableVoice( void * ); +NTSTATUS ISteamUser_SteamUser019_GetVoice( void * ); +NTSTATUS ISteamUser_SteamUser019_DecompressVoice( void * ); +NTSTATUS ISteamUser_SteamUser019_GetVoiceOptimalSampleRate( void * ); +NTSTATUS ISteamUser_SteamUser019_GetAuthSessionTicket( void * ); +NTSTATUS ISteamUser_SteamUser019_BeginAuthSession( void * ); +NTSTATUS ISteamUser_SteamUser019_EndAuthSession( void * ); +NTSTATUS ISteamUser_SteamUser019_CancelAuthTicket( void * ); +NTSTATUS ISteamUser_SteamUser019_UserHasLicenseForApp( void * ); +NTSTATUS ISteamUser_SteamUser019_BIsBehindNAT( void * ); +NTSTATUS ISteamUser_SteamUser019_AdvertiseGame( void * ); +NTSTATUS ISteamUser_SteamUser019_RequestEncryptedAppTicket( void * ); +NTSTATUS ISteamUser_SteamUser019_GetEncryptedAppTicket( void * ); +NTSTATUS ISteamUser_SteamUser019_GetGameBadgeLevel( void * ); +NTSTATUS ISteamUser_SteamUser019_GetPlayerSteamLevel( void * ); +NTSTATUS ISteamUser_SteamUser019_RequestStoreAuthURL( void * ); +NTSTATUS ISteamUser_SteamUser019_BIsPhoneVerified( void * ); +NTSTATUS ISteamUser_SteamUser019_BIsTwoFactorEnabled( void * ); +NTSTATUS ISteamUser_SteamUser019_BIsPhoneIdentifying( void * ); +NTSTATUS ISteamUser_SteamUser019_BIsPhoneRequiringVerification( void * ); +NTSTATUS ISteamUser_SteamUser020_GetHSteamUser( void * ); +NTSTATUS ISteamUser_SteamUser020_BLoggedOn( void * ); +NTSTATUS ISteamUser_SteamUser020_GetSteamID( void * ); +NTSTATUS ISteamUser_SteamUser020_InitiateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser020_TerminateGameConnection( void * ); +NTSTATUS ISteamUser_SteamUser020_TrackAppUsageEvent( void * ); +NTSTATUS ISteamUser_SteamUser020_GetUserDataFolder( void * ); +NTSTATUS ISteamUser_SteamUser020_StartVoiceRecording( void * ); +NTSTATUS ISteamUser_SteamUser020_StopVoiceRecording( void * ); +NTSTATUS ISteamUser_SteamUser020_GetAvailableVoice( void * ); +NTSTATUS ISteamUser_SteamUser020_GetVoice( void * ); +NTSTATUS ISteamUser_SteamUser020_DecompressVoice( void * ); +NTSTATUS ISteamUser_SteamUser020_GetVoiceOptimalSampleRate( void * ); +NTSTATUS ISteamUser_SteamUser020_GetAuthSessionTicket( void * ); +NTSTATUS ISteamUser_SteamUser020_BeginAuthSession( void * ); +NTSTATUS ISteamUser_SteamUser020_EndAuthSession( void * ); +NTSTATUS ISteamUser_SteamUser020_CancelAuthTicket( void * ); +NTSTATUS ISteamUser_SteamUser020_UserHasLicenseForApp( void * ); +NTSTATUS ISteamUser_SteamUser020_BIsBehindNAT( void * ); +NTSTATUS ISteamUser_SteamUser020_AdvertiseGame( void * ); +NTSTATUS ISteamUser_SteamUser020_RequestEncryptedAppTicket( void * ); +NTSTATUS ISteamUser_SteamUser020_GetEncryptedAppTicket( void * ); +NTSTATUS ISteamUser_SteamUser020_GetGameBadgeLevel( void * ); +NTSTATUS ISteamUser_SteamUser020_GetPlayerSteamLevel( void * ); +NTSTATUS ISteamUser_SteamUser020_RequestStoreAuthURL( void * ); +NTSTATUS ISteamUser_SteamUser020_BIsPhoneVerified( void * ); +NTSTATUS ISteamUser_SteamUser020_BIsTwoFactorEnabled( void * ); +NTSTATUS ISteamUser_SteamUser020_BIsPhoneIdentifying( void * ); +NTSTATUS ISteamUser_SteamUser020_BIsPhoneRequiringVerification( void * ); +NTSTATUS ISteamUser_SteamUser020_GetMarketEligibility( void * ); +NTSTATUS ISteamUser_SteamUser020_GetDurationControl( void * ); +NTSTATUS ISteamUser_SteamUser021_GetHSteamUser( void * ); +NTSTATUS ISteamUser_SteamUser021_BLoggedOn( void * ); +NTSTATUS ISteamUser_SteamUser021_GetSteamID( void * ); +NTSTATUS ISteamUser_SteamUser021_InitiateGameConnection_DEPRECATED( void * ); +NTSTATUS ISteamUser_SteamUser021_TerminateGameConnection_DEPRECATED( void * ); +NTSTATUS ISteamUser_SteamUser021_TrackAppUsageEvent( void * ); +NTSTATUS ISteamUser_SteamUser021_GetUserDataFolder( void * ); +NTSTATUS ISteamUser_SteamUser021_StartVoiceRecording( void * ); +NTSTATUS ISteamUser_SteamUser021_StopVoiceRecording( void * ); +NTSTATUS ISteamUser_SteamUser021_GetAvailableVoice( void * ); +NTSTATUS ISteamUser_SteamUser021_GetVoice( void * ); +NTSTATUS ISteamUser_SteamUser021_DecompressVoice( void * ); +NTSTATUS ISteamUser_SteamUser021_GetVoiceOptimalSampleRate( void * ); +NTSTATUS ISteamUser_SteamUser021_GetAuthSessionTicket( void * ); +NTSTATUS ISteamUser_SteamUser021_BeginAuthSession( void * ); +NTSTATUS ISteamUser_SteamUser021_EndAuthSession( void * ); +NTSTATUS ISteamUser_SteamUser021_CancelAuthTicket( void * ); +NTSTATUS ISteamUser_SteamUser021_UserHasLicenseForApp( void * ); +NTSTATUS ISteamUser_SteamUser021_BIsBehindNAT( void * ); +NTSTATUS ISteamUser_SteamUser021_AdvertiseGame( void * ); +NTSTATUS ISteamUser_SteamUser021_RequestEncryptedAppTicket( void * ); +NTSTATUS ISteamUser_SteamUser021_GetEncryptedAppTicket( void * ); +NTSTATUS ISteamUser_SteamUser021_GetGameBadgeLevel( void * ); +NTSTATUS ISteamUser_SteamUser021_GetPlayerSteamLevel( void * ); +NTSTATUS ISteamUser_SteamUser021_RequestStoreAuthURL( void * ); +NTSTATUS ISteamUser_SteamUser021_BIsPhoneVerified( void * ); +NTSTATUS ISteamUser_SteamUser021_BIsTwoFactorEnabled( void * ); +NTSTATUS ISteamUser_SteamUser021_BIsPhoneIdentifying( void * ); +NTSTATUS ISteamUser_SteamUser021_BIsPhoneRequiringVerification( void * ); +NTSTATUS ISteamUser_SteamUser021_GetMarketEligibility( void * ); +NTSTATUS ISteamUser_SteamUser021_GetDurationControl( void * ); +NTSTATUS ISteamUser_SteamUser021_BSetDurationControlOnlineState( void * ); +NTSTATUS ISteamUser_SteamUser022_GetHSteamUser( void * ); +NTSTATUS ISteamUser_SteamUser022_BLoggedOn( void * ); +NTSTATUS ISteamUser_SteamUser022_GetSteamID( void * ); +NTSTATUS ISteamUser_SteamUser022_InitiateGameConnection_DEPRECATED( void * ); +NTSTATUS ISteamUser_SteamUser022_TerminateGameConnection_DEPRECATED( void * ); +NTSTATUS ISteamUser_SteamUser022_TrackAppUsageEvent( void * ); +NTSTATUS ISteamUser_SteamUser022_GetUserDataFolder( void * ); +NTSTATUS ISteamUser_SteamUser022_StartVoiceRecording( void * ); +NTSTATUS ISteamUser_SteamUser022_StopVoiceRecording( void * ); +NTSTATUS ISteamUser_SteamUser022_GetAvailableVoice( void * ); +NTSTATUS ISteamUser_SteamUser022_GetVoice( void * ); +NTSTATUS ISteamUser_SteamUser022_DecompressVoice( void * ); +NTSTATUS ISteamUser_SteamUser022_GetVoiceOptimalSampleRate( void * ); +NTSTATUS ISteamUser_SteamUser022_GetAuthSessionTicket( void * ); +NTSTATUS ISteamUser_SteamUser022_BeginAuthSession( void * ); +NTSTATUS ISteamUser_SteamUser022_EndAuthSession( void * ); +NTSTATUS ISteamUser_SteamUser022_CancelAuthTicket( void * ); +NTSTATUS ISteamUser_SteamUser022_UserHasLicenseForApp( void * ); +NTSTATUS ISteamUser_SteamUser022_BIsBehindNAT( void * ); +NTSTATUS ISteamUser_SteamUser022_AdvertiseGame( void * ); +NTSTATUS ISteamUser_SteamUser022_RequestEncryptedAppTicket( void * ); +NTSTATUS ISteamUser_SteamUser022_GetEncryptedAppTicket( void * ); +NTSTATUS ISteamUser_SteamUser022_GetGameBadgeLevel( void * ); +NTSTATUS ISteamUser_SteamUser022_GetPlayerSteamLevel( void * ); +NTSTATUS ISteamUser_SteamUser022_RequestStoreAuthURL( void * ); +NTSTATUS ISteamUser_SteamUser022_BIsPhoneVerified( void * ); +NTSTATUS ISteamUser_SteamUser022_BIsTwoFactorEnabled( void * ); +NTSTATUS ISteamUser_SteamUser022_BIsPhoneIdentifying( void * ); +NTSTATUS ISteamUser_SteamUser022_BIsPhoneRequiringVerification( void * ); +NTSTATUS ISteamUser_SteamUser022_GetMarketEligibility( void * ); +NTSTATUS ISteamUser_SteamUser022_GetDurationControl( void * ); +NTSTATUS ISteamUser_SteamUser022_BSetDurationControlOnlineState( void * ); +NTSTATUS ISteamUser_SteamUser023_GetHSteamUser( void * ); +NTSTATUS ISteamUser_SteamUser023_BLoggedOn( void * ); +NTSTATUS ISteamUser_SteamUser023_GetSteamID( void * ); +NTSTATUS ISteamUser_SteamUser023_InitiateGameConnection_DEPRECATED( void * ); +NTSTATUS ISteamUser_SteamUser023_TerminateGameConnection_DEPRECATED( void * ); +NTSTATUS ISteamUser_SteamUser023_TrackAppUsageEvent( void * ); +NTSTATUS ISteamUser_SteamUser023_GetUserDataFolder( void * ); +NTSTATUS ISteamUser_SteamUser023_StartVoiceRecording( void * ); +NTSTATUS ISteamUser_SteamUser023_StopVoiceRecording( void * ); +NTSTATUS ISteamUser_SteamUser023_GetAvailableVoice( void * ); +NTSTATUS ISteamUser_SteamUser023_GetVoice( void * ); +NTSTATUS ISteamUser_SteamUser023_DecompressVoice( void * ); +NTSTATUS ISteamUser_SteamUser023_GetVoiceOptimalSampleRate( void * ); +NTSTATUS ISteamUser_SteamUser023_GetAuthSessionTicket( void * ); +NTSTATUS ISteamUser_SteamUser023_GetAuthTicketForWebApi( void * ); +NTSTATUS ISteamUser_SteamUser023_BeginAuthSession( void * ); +NTSTATUS ISteamUser_SteamUser023_EndAuthSession( void * ); +NTSTATUS ISteamUser_SteamUser023_CancelAuthTicket( void * ); +NTSTATUS ISteamUser_SteamUser023_UserHasLicenseForApp( void * ); +NTSTATUS ISteamUser_SteamUser023_BIsBehindNAT( void * ); +NTSTATUS ISteamUser_SteamUser023_AdvertiseGame( void * ); +NTSTATUS ISteamUser_SteamUser023_RequestEncryptedAppTicket( void * ); +NTSTATUS ISteamUser_SteamUser023_GetEncryptedAppTicket( void * ); +NTSTATUS ISteamUser_SteamUser023_GetGameBadgeLevel( void * ); +NTSTATUS ISteamUser_SteamUser023_GetPlayerSteamLevel( void * ); +NTSTATUS ISteamUser_SteamUser023_RequestStoreAuthURL( void * ); +NTSTATUS ISteamUser_SteamUser023_BIsPhoneVerified( void * ); +NTSTATUS ISteamUser_SteamUser023_BIsTwoFactorEnabled( void * ); +NTSTATUS ISteamUser_SteamUser023_BIsPhoneIdentifying( void * ); +NTSTATUS ISteamUser_SteamUser023_BIsPhoneRequiringVerification( void * ); +NTSTATUS ISteamUser_SteamUser023_GetMarketEligibility( void * ); +NTSTATUS ISteamUser_SteamUser023_GetDurationControl( void * ); +NTSTATUS ISteamUser_SteamUser023_BSetDurationControlOnlineState( void * ); +NTSTATUS ISteamUtils_SteamUtils002_GetSecondsSinceAppActive( void * ); +NTSTATUS ISteamUtils_SteamUtils002_GetSecondsSinceComputerActive( void * ); +NTSTATUS ISteamUtils_SteamUtils002_GetConnectedUniverse( void * ); +NTSTATUS ISteamUtils_SteamUtils002_GetServerRealTime( void * ); +NTSTATUS ISteamUtils_SteamUtils002_GetIPCountry( void * ); +NTSTATUS ISteamUtils_SteamUtils002_GetImageSize( void * ); +NTSTATUS ISteamUtils_SteamUtils002_GetImageRGBA( void * ); +NTSTATUS ISteamUtils_SteamUtils002_GetCSERIPPort( void * ); +NTSTATUS ISteamUtils_SteamUtils002_GetCurrentBatteryPower( void * ); +NTSTATUS ISteamUtils_SteamUtils002_GetAppID( void * ); +NTSTATUS ISteamUtils_SteamUtils002_SetOverlayNotificationPosition( void * ); +NTSTATUS ISteamUtils_SteamUtils002_IsAPICallCompleted( void * ); +NTSTATUS ISteamUtils_SteamUtils002_GetAPICallFailureReason( void * ); +NTSTATUS ISteamUtils_SteamUtils002_GetAPICallResult( void * ); +NTSTATUS ISteamUtils_SteamUtils004_GetSecondsSinceAppActive( void * ); +NTSTATUS ISteamUtils_SteamUtils004_GetSecondsSinceComputerActive( void * ); +NTSTATUS ISteamUtils_SteamUtils004_GetConnectedUniverse( void * ); +NTSTATUS ISteamUtils_SteamUtils004_GetServerRealTime( void * ); +NTSTATUS ISteamUtils_SteamUtils004_GetIPCountry( void * ); +NTSTATUS ISteamUtils_SteamUtils004_GetImageSize( void * ); +NTSTATUS ISteamUtils_SteamUtils004_GetImageRGBA( void * ); +NTSTATUS ISteamUtils_SteamUtils004_GetCSERIPPort( void * ); +NTSTATUS ISteamUtils_SteamUtils004_GetCurrentBatteryPower( void * ); +NTSTATUS ISteamUtils_SteamUtils004_GetAppID( void * ); +NTSTATUS ISteamUtils_SteamUtils004_SetOverlayNotificationPosition( void * ); +NTSTATUS ISteamUtils_SteamUtils004_IsAPICallCompleted( void * ); +NTSTATUS ISteamUtils_SteamUtils004_GetAPICallFailureReason( void * ); +NTSTATUS ISteamUtils_SteamUtils004_GetAPICallResult( void * ); +NTSTATUS ISteamUtils_SteamUtils004_RunFrame( void * ); +NTSTATUS ISteamUtils_SteamUtils004_GetIPCCallCount( void * ); +NTSTATUS ISteamUtils_SteamUtils004_SetWarningMessageHook( void * ); +NTSTATUS ISteamUtils_SteamUtils004_IsOverlayEnabled( void * ); +NTSTATUS ISteamUtils_SteamUtils005_GetSecondsSinceAppActive( void * ); +NTSTATUS ISteamUtils_SteamUtils005_GetSecondsSinceComputerActive( void * ); +NTSTATUS ISteamUtils_SteamUtils005_GetConnectedUniverse( void * ); +NTSTATUS ISteamUtils_SteamUtils005_GetServerRealTime( void * ); +NTSTATUS ISteamUtils_SteamUtils005_GetIPCountry( void * ); +NTSTATUS ISteamUtils_SteamUtils005_GetImageSize( void * ); +NTSTATUS ISteamUtils_SteamUtils005_GetImageRGBA( void * ); +NTSTATUS ISteamUtils_SteamUtils005_GetCSERIPPort( void * ); +NTSTATUS ISteamUtils_SteamUtils005_GetCurrentBatteryPower( void * ); +NTSTATUS ISteamUtils_SteamUtils005_GetAppID( void * ); +NTSTATUS ISteamUtils_SteamUtils005_SetOverlayNotificationPosition( void * ); +NTSTATUS ISteamUtils_SteamUtils005_IsAPICallCompleted( void * ); +NTSTATUS ISteamUtils_SteamUtils005_GetAPICallFailureReason( void * ); +NTSTATUS ISteamUtils_SteamUtils005_GetAPICallResult( void * ); +NTSTATUS ISteamUtils_SteamUtils005_RunFrame( void * ); +NTSTATUS ISteamUtils_SteamUtils005_GetIPCCallCount( void * ); +NTSTATUS ISteamUtils_SteamUtils005_SetWarningMessageHook( void * ); +NTSTATUS ISteamUtils_SteamUtils005_IsOverlayEnabled( void * ); +NTSTATUS ISteamUtils_SteamUtils005_BOverlayNeedsPresent( void * ); +NTSTATUS ISteamUtils_SteamUtils005_CheckFileSignature( void * ); +NTSTATUS ISteamUtils_SteamUtils005_ShowGamepadTextInput( void * ); +NTSTATUS ISteamUtils_SteamUtils005_GetEnteredGamepadTextLength( void * ); +NTSTATUS ISteamUtils_SteamUtils005_GetEnteredGamepadTextInput( void * ); +NTSTATUS ISteamUtils_SteamUtils006_GetSecondsSinceAppActive( void * ); +NTSTATUS ISteamUtils_SteamUtils006_GetSecondsSinceComputerActive( void * ); +NTSTATUS ISteamUtils_SteamUtils006_GetConnectedUniverse( void * ); +NTSTATUS ISteamUtils_SteamUtils006_GetServerRealTime( void * ); +NTSTATUS ISteamUtils_SteamUtils006_GetIPCountry( void * ); +NTSTATUS ISteamUtils_SteamUtils006_GetImageSize( void * ); +NTSTATUS ISteamUtils_SteamUtils006_GetImageRGBA( void * ); +NTSTATUS ISteamUtils_SteamUtils006_GetCSERIPPort( void * ); +NTSTATUS ISteamUtils_SteamUtils006_GetCurrentBatteryPower( void * ); +NTSTATUS ISteamUtils_SteamUtils006_GetAppID( void * ); +NTSTATUS ISteamUtils_SteamUtils006_SetOverlayNotificationPosition( void * ); +NTSTATUS ISteamUtils_SteamUtils006_IsAPICallCompleted( void * ); +NTSTATUS ISteamUtils_SteamUtils006_GetAPICallFailureReason( void * ); +NTSTATUS ISteamUtils_SteamUtils006_GetAPICallResult( void * ); +NTSTATUS ISteamUtils_SteamUtils006_RunFrame( void * ); +NTSTATUS ISteamUtils_SteamUtils006_GetIPCCallCount( void * ); +NTSTATUS ISteamUtils_SteamUtils006_SetWarningMessageHook( void * ); +NTSTATUS ISteamUtils_SteamUtils006_IsOverlayEnabled( void * ); +NTSTATUS ISteamUtils_SteamUtils006_BOverlayNeedsPresent( void * ); +NTSTATUS ISteamUtils_SteamUtils006_CheckFileSignature( void * ); +NTSTATUS ISteamUtils_SteamUtils006_ShowGamepadTextInput( void * ); +NTSTATUS ISteamUtils_SteamUtils006_GetEnteredGamepadTextLength( void * ); +NTSTATUS ISteamUtils_SteamUtils006_GetEnteredGamepadTextInput( void * ); +NTSTATUS ISteamUtils_SteamUtils006_GetSteamUILanguage( void * ); +NTSTATUS ISteamUtils_SteamUtils006_IsSteamRunningInVR( void * ); +NTSTATUS ISteamUtils_SteamUtils007_GetSecondsSinceAppActive( void * ); +NTSTATUS ISteamUtils_SteamUtils007_GetSecondsSinceComputerActive( void * ); +NTSTATUS ISteamUtils_SteamUtils007_GetConnectedUniverse( void * ); +NTSTATUS ISteamUtils_SteamUtils007_GetServerRealTime( void * ); +NTSTATUS ISteamUtils_SteamUtils007_GetIPCountry( void * ); +NTSTATUS ISteamUtils_SteamUtils007_GetImageSize( void * ); +NTSTATUS ISteamUtils_SteamUtils007_GetImageRGBA( void * ); +NTSTATUS ISteamUtils_SteamUtils007_GetCSERIPPort( void * ); +NTSTATUS ISteamUtils_SteamUtils007_GetCurrentBatteryPower( void * ); +NTSTATUS ISteamUtils_SteamUtils007_GetAppID( void * ); +NTSTATUS ISteamUtils_SteamUtils007_SetOverlayNotificationPosition( void * ); +NTSTATUS ISteamUtils_SteamUtils007_IsAPICallCompleted( void * ); +NTSTATUS ISteamUtils_SteamUtils007_GetAPICallFailureReason( void * ); +NTSTATUS ISteamUtils_SteamUtils007_GetAPICallResult( void * ); +NTSTATUS ISteamUtils_SteamUtils007_RunFrame( void * ); +NTSTATUS ISteamUtils_SteamUtils007_GetIPCCallCount( void * ); +NTSTATUS ISteamUtils_SteamUtils007_SetWarningMessageHook( void * ); +NTSTATUS ISteamUtils_SteamUtils007_IsOverlayEnabled( void * ); +NTSTATUS ISteamUtils_SteamUtils007_BOverlayNeedsPresent( void * ); +NTSTATUS ISteamUtils_SteamUtils007_CheckFileSignature( void * ); +NTSTATUS ISteamUtils_SteamUtils007_ShowGamepadTextInput( void * ); +NTSTATUS ISteamUtils_SteamUtils007_GetEnteredGamepadTextLength( void * ); +NTSTATUS ISteamUtils_SteamUtils007_GetEnteredGamepadTextInput( void * ); +NTSTATUS ISteamUtils_SteamUtils007_GetSteamUILanguage( void * ); +NTSTATUS ISteamUtils_SteamUtils007_IsSteamRunningInVR( void * ); +NTSTATUS ISteamUtils_SteamUtils007_SetOverlayNotificationInset( void * ); +NTSTATUS ISteamUtils_SteamUtils008_GetSecondsSinceAppActive( void * ); +NTSTATUS ISteamUtils_SteamUtils008_GetSecondsSinceComputerActive( void * ); +NTSTATUS ISteamUtils_SteamUtils008_GetConnectedUniverse( void * ); +NTSTATUS ISteamUtils_SteamUtils008_GetServerRealTime( void * ); +NTSTATUS ISteamUtils_SteamUtils008_GetIPCountry( void * ); +NTSTATUS ISteamUtils_SteamUtils008_GetImageSize( void * ); +NTSTATUS ISteamUtils_SteamUtils008_GetImageRGBA( void * ); +NTSTATUS ISteamUtils_SteamUtils008_GetCSERIPPort( void * ); +NTSTATUS ISteamUtils_SteamUtils008_GetCurrentBatteryPower( void * ); +NTSTATUS ISteamUtils_SteamUtils008_GetAppID( void * ); +NTSTATUS ISteamUtils_SteamUtils008_SetOverlayNotificationPosition( void * ); +NTSTATUS ISteamUtils_SteamUtils008_IsAPICallCompleted( void * ); +NTSTATUS ISteamUtils_SteamUtils008_GetAPICallFailureReason( void * ); +NTSTATUS ISteamUtils_SteamUtils008_GetAPICallResult( void * ); +NTSTATUS ISteamUtils_SteamUtils008_RunFrame( void * ); +NTSTATUS ISteamUtils_SteamUtils008_GetIPCCallCount( void * ); +NTSTATUS ISteamUtils_SteamUtils008_SetWarningMessageHook( void * ); +NTSTATUS ISteamUtils_SteamUtils008_IsOverlayEnabled( void * ); +NTSTATUS ISteamUtils_SteamUtils008_BOverlayNeedsPresent( void * ); +NTSTATUS ISteamUtils_SteamUtils008_CheckFileSignature( void * ); +NTSTATUS ISteamUtils_SteamUtils008_ShowGamepadTextInput( void * ); +NTSTATUS ISteamUtils_SteamUtils008_GetEnteredGamepadTextLength( void * ); +NTSTATUS ISteamUtils_SteamUtils008_GetEnteredGamepadTextInput( void * ); +NTSTATUS ISteamUtils_SteamUtils008_GetSteamUILanguage( void * ); +NTSTATUS ISteamUtils_SteamUtils008_IsSteamRunningInVR( void * ); +NTSTATUS ISteamUtils_SteamUtils008_SetOverlayNotificationInset( void * ); +NTSTATUS ISteamUtils_SteamUtils008_IsSteamInBigPictureMode( void * ); +NTSTATUS ISteamUtils_SteamUtils008_StartVRDashboard( void * ); +NTSTATUS ISteamUtils_SteamUtils009_GetSecondsSinceAppActive( void * ); +NTSTATUS ISteamUtils_SteamUtils009_GetSecondsSinceComputerActive( void * ); +NTSTATUS ISteamUtils_SteamUtils009_GetConnectedUniverse( void * ); +NTSTATUS ISteamUtils_SteamUtils009_GetServerRealTime( void * ); +NTSTATUS ISteamUtils_SteamUtils009_GetIPCountry( void * ); +NTSTATUS ISteamUtils_SteamUtils009_GetImageSize( void * ); +NTSTATUS ISteamUtils_SteamUtils009_GetImageRGBA( void * ); +NTSTATUS ISteamUtils_SteamUtils009_GetCSERIPPort( void * ); +NTSTATUS ISteamUtils_SteamUtils009_GetCurrentBatteryPower( void * ); +NTSTATUS ISteamUtils_SteamUtils009_GetAppID( void * ); +NTSTATUS ISteamUtils_SteamUtils009_SetOverlayNotificationPosition( void * ); +NTSTATUS ISteamUtils_SteamUtils009_IsAPICallCompleted( void * ); +NTSTATUS ISteamUtils_SteamUtils009_GetAPICallFailureReason( void * ); +NTSTATUS ISteamUtils_SteamUtils009_GetAPICallResult( void * ); +NTSTATUS ISteamUtils_SteamUtils009_RunFrame( void * ); +NTSTATUS ISteamUtils_SteamUtils009_GetIPCCallCount( void * ); +NTSTATUS ISteamUtils_SteamUtils009_SetWarningMessageHook( void * ); +NTSTATUS ISteamUtils_SteamUtils009_IsOverlayEnabled( void * ); +NTSTATUS ISteamUtils_SteamUtils009_BOverlayNeedsPresent( void * ); +NTSTATUS ISteamUtils_SteamUtils009_CheckFileSignature( void * ); +NTSTATUS ISteamUtils_SteamUtils009_ShowGamepadTextInput( void * ); +NTSTATUS ISteamUtils_SteamUtils009_GetEnteredGamepadTextLength( void * ); +NTSTATUS ISteamUtils_SteamUtils009_GetEnteredGamepadTextInput( void * ); +NTSTATUS ISteamUtils_SteamUtils009_GetSteamUILanguage( void * ); +NTSTATUS ISteamUtils_SteamUtils009_IsSteamRunningInVR( void * ); +NTSTATUS ISteamUtils_SteamUtils009_SetOverlayNotificationInset( void * ); +NTSTATUS ISteamUtils_SteamUtils009_IsSteamInBigPictureMode( void * ); +NTSTATUS ISteamUtils_SteamUtils009_StartVRDashboard( void * ); +NTSTATUS ISteamUtils_SteamUtils009_IsVRHeadsetStreamingEnabled( void * ); +NTSTATUS ISteamUtils_SteamUtils009_SetVRHeadsetStreamingEnabled( void * ); +NTSTATUS ISteamUtils_SteamUtils009_IsSteamChinaLauncher( void * ); +NTSTATUS ISteamUtils_SteamUtils009_InitFilterText( void * ); +NTSTATUS ISteamUtils_SteamUtils009_FilterText( void * ); +NTSTATUS ISteamUtils_SteamUtils009_GetIPv6ConnectivityState( void * ); +NTSTATUS ISteamUtils_SteamUtils010_GetSecondsSinceAppActive( void * ); +NTSTATUS ISteamUtils_SteamUtils010_GetSecondsSinceComputerActive( void * ); +NTSTATUS ISteamUtils_SteamUtils010_GetConnectedUniverse( void * ); +NTSTATUS ISteamUtils_SteamUtils010_GetServerRealTime( void * ); +NTSTATUS ISteamUtils_SteamUtils010_GetIPCountry( void * ); +NTSTATUS ISteamUtils_SteamUtils010_GetImageSize( void * ); +NTSTATUS ISteamUtils_SteamUtils010_GetImageRGBA( void * ); +NTSTATUS ISteamUtils_SteamUtils010_GetCSERIPPort( void * ); +NTSTATUS ISteamUtils_SteamUtils010_GetCurrentBatteryPower( void * ); +NTSTATUS ISteamUtils_SteamUtils010_GetAppID( void * ); +NTSTATUS ISteamUtils_SteamUtils010_SetOverlayNotificationPosition( void * ); +NTSTATUS ISteamUtils_SteamUtils010_IsAPICallCompleted( void * ); +NTSTATUS ISteamUtils_SteamUtils010_GetAPICallFailureReason( void * ); +NTSTATUS ISteamUtils_SteamUtils010_GetAPICallResult( void * ); +NTSTATUS ISteamUtils_SteamUtils010_RunFrame( void * ); +NTSTATUS ISteamUtils_SteamUtils010_GetIPCCallCount( void * ); +NTSTATUS ISteamUtils_SteamUtils010_SetWarningMessageHook( void * ); +NTSTATUS ISteamUtils_SteamUtils010_IsOverlayEnabled( void * ); +NTSTATUS ISteamUtils_SteamUtils010_BOverlayNeedsPresent( void * ); +NTSTATUS ISteamUtils_SteamUtils010_CheckFileSignature( void * ); +NTSTATUS ISteamUtils_SteamUtils010_ShowGamepadTextInput( void * ); +NTSTATUS ISteamUtils_SteamUtils010_GetEnteredGamepadTextLength( void * ); +NTSTATUS ISteamUtils_SteamUtils010_GetEnteredGamepadTextInput( void * ); +NTSTATUS ISteamUtils_SteamUtils010_GetSteamUILanguage( void * ); +NTSTATUS ISteamUtils_SteamUtils010_IsSteamRunningInVR( void * ); +NTSTATUS ISteamUtils_SteamUtils010_SetOverlayNotificationInset( void * ); +NTSTATUS ISteamUtils_SteamUtils010_IsSteamInBigPictureMode( void * ); +NTSTATUS ISteamUtils_SteamUtils010_StartVRDashboard( void * ); +NTSTATUS ISteamUtils_SteamUtils010_IsVRHeadsetStreamingEnabled( void * ); +NTSTATUS ISteamUtils_SteamUtils010_SetVRHeadsetStreamingEnabled( void * ); +NTSTATUS ISteamUtils_SteamUtils010_IsSteamChinaLauncher( void * ); +NTSTATUS ISteamUtils_SteamUtils010_InitFilterText( void * ); +NTSTATUS ISteamUtils_SteamUtils010_FilterText( void * ); +NTSTATUS ISteamUtils_SteamUtils010_GetIPv6ConnectivityState( void * ); +NTSTATUS ISteamUtils_SteamUtils010_IsSteamRunningOnSteamDeck( void * ); +NTSTATUS ISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput( void * ); +NTSTATUS ISteamUtils_SteamUtils010_SetGameLauncherMode( void * ); +NTSTATUS ISteamUtils_SteamUtils010_DismissFloatingGamepadTextInput( void * ); + +#ifdef __cplusplus +} /* extern "C" */ +#endif /* __cplusplus */ diff --git a/lsteamclient/unix_steam_client_manual.cpp b/lsteamclient/unix_steam_client_manual.cpp index 900e8d13..93291511 100644 --- a/lsteamclient/unix_steam_client_manual.cpp +++ b/lsteamclient/unix_steam_client_manual.cpp @@ -1,10 +1,10 @@ #include "unix_private.h" -#include "cppISteamClient_SteamClient020.h" - -void cppISteamClient_SteamClient020_Set_SteamAPI_CCheckCallbackRegisteredInProcess( struct cppISteamClient_SteamClient020_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params *params ) +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; 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/unix_steam_input_manual.cpp b/lsteamclient/unix_steam_input_manual.cpp index a12e8857..2080810e 100644 --- a/lsteamclient/unix_steam_input_manual.cpp +++ b/lsteamclient/unix_steam_input_manual.cpp @@ -2,15 +2,6 @@ #include -#include "cppISteamController_SteamController005.h" -#include "cppISteamController_SteamController006.h" -#include "cppISteamController_SteamController007.h" -#include "cppISteamController_SteamController008.h" -#include "cppISteamInput_SteamInput001.h" -#include "cppISteamInput_SteamInput002.h" -#include "cppISteamInput_SteamInput005.h" -#include "cppISteamInput_SteamInput006.h" - #ifdef __linux__ #include #endif @@ -221,162 +212,202 @@ static const char *glyph_cache_lookup( glyph_cache &cache, const char *lin_path, /* ISteamController_SteamController005 */ -void cppISteamController_SteamController005_GetGlyphForActionOrigin( struct cppISteamController_SteamController005_GetGlyphForActionOrigin_params *params ) +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; - if (!(params->_ret = iface->GetGlyphForActionOrigin( params->eOrigin ))) return; + if (!(params->_ret = iface->GetGlyphForActionOrigin( params->eOrigin ))) return 0; params->_ret = glyph_cache_lookup( controller_cache, params->_ret, params->eOrigin, 0, 0 ); + return 0; } /* ISteamController_SteamController006 */ -void cppISteamController_SteamController006_GetGlyphForActionOrigin( struct cppISteamController_SteamController006_GetGlyphForActionOrigin_params *params ) +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; - if (!(params->_ret = iface->GetGlyphForActionOrigin( params->eOrigin ))) return; + if (!(params->_ret = iface->GetGlyphForActionOrigin( params->eOrigin ))) return 0; params->_ret = glyph_cache_lookup( controller_cache, params->_ret, params->eOrigin, 0, 0 ); + return 0; } /* ISteamController_SteamController007 */ -void cppISteamController_SteamController007_GetGlyphForActionOrigin( struct cppISteamController_SteamController007_GetGlyphForActionOrigin_params *params ) +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; - if (!(params->_ret = iface->GetGlyphForActionOrigin( params->eOrigin ))) return; + if (!(params->_ret = iface->GetGlyphForActionOrigin( params->eOrigin ))) return 0; params->_ret = glyph_cache_lookup( controller_cache, params->_ret, params->eOrigin, 0, 0 ); + return 0; } -void cppISteamController_SteamController007_GetGlyphForXboxOrigin( struct cppISteamController_SteamController007_GetGlyphForXboxOrigin_params *params ) +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; - if (!(params->_ret = iface->GetGlyphForXboxOrigin( params->eOrigin ))) return; + if (!(params->_ret = iface->GetGlyphForXboxOrigin( params->eOrigin ))) return 0; params->_ret = glyph_cache_lookup( xbox_cache, params->_ret, params->eOrigin, 0, 0 ); + return 0; } /* ISteamController_SteamController008 */ -void cppISteamController_SteamController008_GetGlyphForActionOrigin( struct cppISteamController_SteamController008_GetGlyphForActionOrigin_params *params ) +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; - if (!(params->_ret = iface->GetGlyphForActionOrigin( params->eOrigin ))) return; + if (!(params->_ret = iface->GetGlyphForActionOrigin( params->eOrigin ))) return 0; params->_ret = glyph_cache_lookup( controller_cache, params->_ret, params->eOrigin, 0, 0 ); + return 0; } -void cppISteamController_SteamController008_GetGlyphForXboxOrigin( struct cppISteamController_SteamController008_GetGlyphForXboxOrigin_params *params ) +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; - if (!(params->_ret = iface->GetGlyphForXboxOrigin( params->eOrigin ))) return; + if (!(params->_ret = iface->GetGlyphForXboxOrigin( params->eOrigin ))) return 0; params->_ret = glyph_cache_lookup( xbox_cache, params->_ret, params->eOrigin, 0, 0 ); + return 0; } /* ISteamInput_SteamInput001 */ -void cppISteamInput_SteamInput001_GetGlyphForActionOrigin( struct cppISteamInput_SteamInput001_GetGlyphForActionOrigin_params *params ) +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; - if (!(params->_ret = iface->GetGlyphForActionOrigin( params->eOrigin ))) return; + if (!(params->_ret = iface->GetGlyphForActionOrigin( params->eOrigin ))) return 0; params->_ret = glyph_cache_lookup( input_cache, params->_ret, params->eOrigin, 0, 0 ); + return 0; } -void cppISteamInput_SteamInput001_GetGlyphForXboxOrigin( struct cppISteamInput_SteamInput001_GetGlyphForXboxOrigin_params *params ) +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; - if (!(params->_ret = iface->GetGlyphForXboxOrigin( params->eOrigin ))) return; + if (!(params->_ret = iface->GetGlyphForXboxOrigin( params->eOrigin ))) return 0; params->_ret = glyph_cache_lookup( xbox_cache, params->_ret, params->eOrigin, 0, 0 ); + return 0; } /* ISteamInput_SteamInput002 */ -void cppISteamInput_SteamInput002_GetGlyphForActionOrigin( struct cppISteamInput_SteamInput002_GetGlyphForActionOrigin_params *params ) +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; - if (!(params->_ret = iface->GetGlyphForActionOrigin( params->eOrigin ))) return; + if (!(params->_ret = iface->GetGlyphForActionOrigin( params->eOrigin ))) return 0; params->_ret = glyph_cache_lookup( input_cache, params->_ret, params->eOrigin, 0, 0 ); + return 0; } -void cppISteamInput_SteamInput002_GetGlyphForXboxOrigin( struct cppISteamInput_SteamInput002_GetGlyphForXboxOrigin_params *params ) +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; - if (!(params->_ret = iface->GetGlyphForXboxOrigin( params->eOrigin ))) return; + if (!(params->_ret = iface->GetGlyphForXboxOrigin( params->eOrigin ))) return 0; params->_ret = glyph_cache_lookup( xbox_cache, params->_ret, params->eOrigin, 0, 0 ); + return 0; } /* ISteamInput_SteamInput005 */ -static void (W_STDCALL *w_EnableActionEventCallbacks)( SteamInputActionEvent_t * ); -static void u_SteamInputActionEventCallbackPointer( SteamInputActionEvent_t *dat ) +static void (W_STDCALL *w_EnableActionEventCallbacks_152)( SteamInputActionEvent_t * ); +static void u_SteamInputActionEventCallbackPointer_152( SteamInputActionEvent_t *dat ) { - if (w_EnableActionEventCallbacks) w_EnableActionEventCallbacks( dat ); + if (w_EnableActionEventCallbacks_152) w_EnableActionEventCallbacks_152( dat ); } -void cppISteamInput_SteamInput005_EnableActionEventCallbacks( struct cppISteamInput_SteamInput005_EnableActionEventCallbacks_params *params ) +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; - w_EnableActionEventCallbacks = params->pCallback; - iface->EnableActionEventCallbacks( params->pCallback ? &u_SteamInputActionEventCallbackPointer : NULL ); + w_EnableActionEventCallbacks_152 = params->pCallback; + iface->EnableActionEventCallbacks( params->pCallback ? &u_SteamInputActionEventCallbackPointer_152 : NULL ); + return 0; } -void cppISteamInput_SteamInput005_GetGlyphPNGForActionOrigin( struct cppISteamInput_SteamInput005_GetGlyphPNGForActionOrigin_params *params ) +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; - if (!(params->_ret = iface->GetGlyphPNGForActionOrigin( params->eOrigin, params->eSize, params->unFlags ))) return; + 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; } -void cppISteamInput_SteamInput005_GetGlyphSVGForActionOrigin( struct cppISteamInput_SteamInput005_GetGlyphSVGForActionOrigin_params *params ) +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; - if (!(params->_ret = iface->GetGlyphSVGForActionOrigin( params->eOrigin, params->unFlags ))) return; + 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; } -void cppISteamInput_SteamInput005_GetGlyphForActionOrigin_Legacy( struct cppISteamInput_SteamInput005_GetGlyphForActionOrigin_Legacy_params *params ) +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; - if (!(params->_ret = iface->GetGlyphForActionOrigin_Legacy( params->eOrigin ))) return; + 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; } -void cppISteamInput_SteamInput005_GetGlyphForXboxOrigin( struct cppISteamInput_SteamInput005_GetGlyphForXboxOrigin_params *params ) +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; - if (!(params->_ret = iface->GetGlyphForXboxOrigin( params->eOrigin ))) return; + if (!(params->_ret = iface->GetGlyphForXboxOrigin( params->eOrigin ))) return 0; params->_ret = glyph_cache_lookup( xbox_cache, params->_ret, params->eOrigin, 0, 0 ); + return 0; } /* ISteamInput_SteamInput006 */ -void cppISteamInput_SteamInput006_EnableActionEventCallbacks( struct cppISteamInput_SteamInput006_EnableActionEventCallbacks_params *params ) +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; - w_EnableActionEventCallbacks = params->pCallback; - iface->EnableActionEventCallbacks( params->pCallback ? &u_SteamInputActionEventCallbackPointer : NULL ); + w_EnableActionEventCallbacks_152 = params->pCallback; + iface->EnableActionEventCallbacks( params->pCallback ? &u_SteamInputActionEventCallbackPointer_152 : NULL ); + return 0; } -void cppISteamInput_SteamInput006_GetGlyphPNGForActionOrigin( struct cppISteamInput_SteamInput006_GetGlyphPNGForActionOrigin_params *params ) +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; - if (!(params->_ret = iface->GetGlyphPNGForActionOrigin( params->eOrigin, params->eSize, params->unFlags ))) return; + 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; } -void cppISteamInput_SteamInput006_GetGlyphSVGForActionOrigin( struct cppISteamInput_SteamInput006_GetGlyphSVGForActionOrigin_params *params ) +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; - if (!(params->_ret = iface->GetGlyphSVGForActionOrigin( params->eOrigin, params->unFlags ))) return; + 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; } -void cppISteamInput_SteamInput006_GetGlyphForActionOrigin_Legacy( struct cppISteamInput_SteamInput006_GetGlyphForActionOrigin_Legacy_params *params ) +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; - if (!(params->_ret = iface->GetGlyphForActionOrigin_Legacy( params->eOrigin ))) return; + 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; } -void cppISteamInput_SteamInput006_GetGlyphForXboxOrigin( struct cppISteamInput_SteamInput006_GetGlyphForXboxOrigin_params *params ) +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; - if (!(params->_ret = iface->GetGlyphForXboxOrigin( params->eOrigin ))) return; + 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 3f5c11c3..ac25b48d 100644 --- a/lsteamclient/unix_steam_networking_manual.cpp +++ b/lsteamclient/unix_steam_networking_manual.cpp @@ -2,17 +2,6 @@ #include -#include "cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001.h" -#include "cppISteamNetworkingMessages_SteamNetworkingMessages002.h" -#include "cppISteamNetworkingSockets_SteamNetworkingSockets002.h" -#include "cppISteamNetworkingSockets_SteamNetworkingSockets004.h" -#include "cppISteamNetworkingSockets_SteamNetworkingSockets006.h" -#include "cppISteamNetworkingSockets_SteamNetworkingSockets008.h" -#include "cppISteamNetworkingSockets_SteamNetworkingSockets009.h" -#include "cppISteamNetworkingSockets_SteamNetworkingSockets012.h" -#include "cppISteamNetworkingUtils_SteamNetworkingUtils003.h" -#include "cppISteamNetworkingUtils_SteamNetworkingUtils004.h" - static void receive_messages_utow_144( uint32_t count, u_SteamNetworkingMessage_t_144 **u_msgs, w_SteamNetworkingMessage_t_144 **w_msgs ) { @@ -53,38 +42,46 @@ void unix_networking_messages_receive_144( uint32_t count, w_SteamNetworkingMess /* ISteamNetworkingSockets_SteamNetworkingSockets002 */ -void cppISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnConnection_params *params ) +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; 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 ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnListenSocket( struct cppISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnListenSocket_params *params ) +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; 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 ); + return 0; } /* ISteamNetworkingSockets_SteamNetworkingSockets004 */ -void cppISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnConnection_params *params ) +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; 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 ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnListenSocket( struct cppISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnListenSocket_params *params ) +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; 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 ); + return 0; } static void receive_messages_utow_147( uint32_t count, u_SteamNetworkingMessage_t_147 **u_msgs, @@ -179,89 +176,109 @@ void unix_networking_message_release_147( w_SteamNetworkingMessage_t_147 *w_msg /* ISteamNetworkingSockets_SteamNetworkingSockets006 */ -void cppISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnConnection_params *params ) +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; 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 ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnListenSocket( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnListenSocket_params *params ) +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; 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 ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets006_SendMessages( struct cppISteamNetworkingSockets_SteamNetworkingSockets006_SendMessages_params *params ) +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; 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 ); + return 0; } /* ISteamNetworkingSockets_SteamNetworkingSockets008 */ -void cppISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnConnection_params *params ) +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; 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 ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnPollGroup( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnPollGroup_params *params ) +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; 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 ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets008_SendMessages( struct cppISteamNetworkingSockets_SteamNetworkingSockets008_SendMessages_params *params ) +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; 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 ); + return 0; } /* ISteamNetworkingSockets_SteamNetworkingSockets009 */ -void cppISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnConnection_params *params ) +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; 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 ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnPollGroup( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnPollGroup_params *params ) +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; 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 ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets009_SendMessages( struct cppISteamNetworkingSockets_SteamNetworkingSockets009_SendMessages_params *params ) +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; 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 ); + return 0; } /* ISteamNetworkingUtils_SteamNetworkingUtils003 */ -void cppISteamNetworkingUtils_SteamNetworkingUtils003_AllocateMessage( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_AllocateMessage_params *params ) +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; u_SteamNetworkingMessage_t_147 *u_msg = iface->AllocateMessage( params->cbAllocateBuffer ); if (u_msg) receive_messages_utow_147( 1, &u_msg, ¶ms->_ret ); + return 0; } typedef void (*CDECL win_FnSteamNetConnectionStatusChanged)( w_SteamNetConnectionStatusChangedCallback_t_151 * ); @@ -308,8 +325,9 @@ static void lin_SteamNetworkingMessagesSessionFailed( SteamNetworkingMessagesSes if (fn) fn( dat ); } -void cppISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue_params *params ) +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; void *lin_fn; /* api requires passing pointer-to-pointer */ @@ -342,6 +360,8 @@ void cppISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue( struct cpp params->_ret = iface->SetConfigValue( params->eValue, params->eScopeType, params->scopeObj, params->eDataType, params->pArg ); } + + return 0; } static void receive_messages_utow_153a( uint32_t count, u_SteamNetworkingMessage_t_153a **u_msgs, @@ -438,57 +458,69 @@ void unix_networking_message_release_153a( w_SteamNetworkingMessage_t_153a *w_ms /* ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001 */ -void cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ReceiveMessages( struct cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ReceiveMessages_params *params ) +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; 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 ); + return 0; } /* ISteamNetworkingMessages_SteamNetworkingMessages002 */ -void cppISteamNetworkingMessages_SteamNetworkingMessages002_ReceiveMessagesOnChannel( struct cppISteamNetworkingMessages_SteamNetworkingMessages002_ReceiveMessagesOnChannel_params *params ) +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; 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 ); + return 0; } /* ISteamNetworkingSockets_SteamNetworkingSockets012 */ -void cppISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnConnection( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnConnection_params *params ) +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; 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 ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnPollGroup( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnPollGroup_params *params ) +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; 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 ); + return 0; } -void cppISteamNetworkingSockets_SteamNetworkingSockets012_SendMessages( struct cppISteamNetworkingSockets_SteamNetworkingSockets012_SendMessages_params *params ) +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; 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 ); + return 0; } /* ISteamNetworkingUtils_SteamNetworkingUtils004 */ -void cppISteamNetworkingUtils_SteamNetworkingUtils004_AllocateMessage( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_AllocateMessage_params *params ) +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; u_SteamNetworkingMessage_t_153a *u_msg = iface->AllocateMessage( params->cbAllocateBuffer ); if (u_msg) receive_messages_utow_153a( 1, &u_msg, ¶ms->_ret ); + return 0; } typedef void (*CDECL win_FnSteamNetConnectionStatusChanged_153a)( w_SteamNetConnectionStatusChangedCallback_t_153a * ); @@ -511,8 +543,9 @@ static void lin_SteamNetworkingMessagesSessionFailed_153a( SteamNetworkingMessag if (fn) fn( dat ); } -void cppISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue( struct cppISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue_params *params ) +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; bool ret; void *lin_fn; /* api requires passing pointer-to-pointer */ @@ -547,4 +580,6 @@ void cppISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue( struct cpp params->_ret = iface->SetConfigValue( params->eValue, params->eScopeType, params->scopeObj, params->eDataType, params->pArg ); } + + return 0; } diff --git a/lsteamclient/unix_steam_utils_manual.cpp b/lsteamclient/unix_steam_utils_manual.cpp index 36286b49..eb5ce3df 100644 --- a/lsteamclient/unix_steam_utils_manual.cpp +++ b/lsteamclient/unix_steam_utils_manual.cpp @@ -1,20 +1,12 @@ #include "unix_private.h" -#include "cppISteamUtils_SteamUtils002.h" -#include "cppISteamUtils_SteamUtils004.h" -#include "cppISteamUtils_SteamUtils005.h" -#include "cppISteamUtils_SteamUtils006.h" -#include "cppISteamUtils_SteamUtils007.h" -#include "cppISteamUtils_SteamUtils008.h" -#include "cppISteamUtils_SteamUtils009.h" -#include "cppISteamUtils_SteamUtils010.h" - WINE_DEFAULT_DEBUG_CHANNEL(steamclient); /* ISteamUtils_SteamUtils002 */ -void cppISteamUtils_SteamUtils002_GetAPICallResult( struct cppISteamUtils_SteamUtils002_GetAPICallResult_params *params ) +NTSTATUS ISteamUtils_SteamUtils002_GetAPICallResult( void *args ) { + struct ISteamUtils_SteamUtils002_GetAPICallResult_params *params = (struct ISteamUtils_SteamUtils002_GetAPICallResult_params *)args; struct u_ISteamUtils_SteamUtils002 *iface = (struct u_ISteamUtils_SteamUtils002 *)params->linux_side; int u_callback_len = params->cubCallback; void *u_callback; @@ -22,7 +14,7 @@ void cppISteamUtils_SteamUtils002_GetAPICallResult( struct cppISteamUtils_SteamU if (!(u_callback = alloc_callback_wtou( params->iCallbackExpected, params->pCallback, &u_callback_len ))) { params->_ret = FALSE; - return; + return 0; } params->_ret = iface->GetAPICallResult( params->hSteamAPICall, u_callback, u_callback_len, @@ -33,12 +25,15 @@ void cppISteamUtils_SteamUtils002_GetAPICallResult( struct cppISteamUtils_SteamU params->pCallback, params->cubCallback ); HeapFree( GetProcessHeap(), 0, u_callback ); } + + return 0; } /* ISteamUtils_SteamUtils004 */ -void cppISteamUtils_SteamUtils004_GetAPICallResult( struct cppISteamUtils_SteamUtils004_GetAPICallResult_params *params ) +NTSTATUS ISteamUtils_SteamUtils004_GetAPICallResult( void *args ) { + struct ISteamUtils_SteamUtils004_GetAPICallResult_params *params = (struct ISteamUtils_SteamUtils004_GetAPICallResult_params *)args; struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->linux_side; int u_callback_len = params->cubCallback; void *u_callback; @@ -46,7 +41,7 @@ void cppISteamUtils_SteamUtils004_GetAPICallResult( struct cppISteamUtils_SteamU if (!(u_callback = alloc_callback_wtou( params->iCallbackExpected, params->pCallback, &u_callback_len ))) { params->_ret = FALSE; - return; + return 0; } params->_ret = iface->GetAPICallResult( params->hSteamAPICall, u_callback, u_callback_len, @@ -57,12 +52,15 @@ void cppISteamUtils_SteamUtils004_GetAPICallResult( struct cppISteamUtils_SteamU params->pCallback, params->cubCallback ); HeapFree( GetProcessHeap(), 0, u_callback ); } + + return 0; } /* ISteamUtils_SteamUtils005 */ -void cppISteamUtils_SteamUtils005_GetAPICallResult( struct cppISteamUtils_SteamUtils005_GetAPICallResult_params *params ) +NTSTATUS ISteamUtils_SteamUtils005_GetAPICallResult( void *args ) { + struct ISteamUtils_SteamUtils005_GetAPICallResult_params *params = (struct ISteamUtils_SteamUtils005_GetAPICallResult_params *)args; struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->linux_side; int u_callback_len = params->cubCallback; void *u_callback; @@ -70,7 +68,7 @@ void cppISteamUtils_SteamUtils005_GetAPICallResult( struct cppISteamUtils_SteamU if (!(u_callback = alloc_callback_wtou( params->iCallbackExpected, params->pCallback, &u_callback_len ))) { params->_ret = FALSE; - return; + return 0; } params->_ret = iface->GetAPICallResult( params->hSteamAPICall, u_callback, u_callback_len, @@ -81,20 +79,23 @@ void cppISteamUtils_SteamUtils005_GetAPICallResult( struct cppISteamUtils_SteamU params->pCallback, params->cubCallback ); HeapFree( GetProcessHeap(), 0, u_callback ); } + + return 0; } /* ISteamUtils_SteamUtils006 */ -void cppISteamUtils_SteamUtils006_GetAPICallResult( struct cppISteamUtils_SteamUtils006_GetAPICallResult_params *params ) +NTSTATUS ISteamUtils_SteamUtils006_GetAPICallResult( void *args ) { - struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->linux_side; + struct ISteamUtils_SteamUtils006_GetAPICallResult_params *params = (struct ISteamUtils_SteamUtils006_GetAPICallResult_params *)args; + struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->linux_side; int u_callback_len = params->cubCallback; void *u_callback; if (!(u_callback = alloc_callback_wtou( params->iCallbackExpected, params->pCallback, &u_callback_len ))) { params->_ret = FALSE; - return; + return 0; } params->_ret = iface->GetAPICallResult( params->hSteamAPICall, u_callback, u_callback_len, @@ -105,12 +106,15 @@ void cppISteamUtils_SteamUtils006_GetAPICallResult( struct cppISteamUtils_SteamU params->pCallback, params->cubCallback ); HeapFree( GetProcessHeap(), 0, u_callback ); } + + return 0; } /* ISteamUtils_SteamUtils007 */ -void cppISteamUtils_SteamUtils007_GetAPICallResult( struct cppISteamUtils_SteamUtils007_GetAPICallResult_params *params ) +NTSTATUS ISteamUtils_SteamUtils007_GetAPICallResult( void *args ) { + struct ISteamUtils_SteamUtils007_GetAPICallResult_params *params = (struct ISteamUtils_SteamUtils007_GetAPICallResult_params *)args; struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->linux_side; int u_callback_len = params->cubCallback; void *u_callback; @@ -118,7 +122,7 @@ void cppISteamUtils_SteamUtils007_GetAPICallResult( struct cppISteamUtils_SteamU if (!(u_callback = alloc_callback_wtou( params->iCallbackExpected, params->pCallback, &u_callback_len ))) { params->_ret = FALSE; - return; + return 0; } params->_ret = iface->GetAPICallResult( params->hSteamAPICall, u_callback, u_callback_len, @@ -129,12 +133,15 @@ void cppISteamUtils_SteamUtils007_GetAPICallResult( struct cppISteamUtils_SteamU params->pCallback, params->cubCallback ); HeapFree( GetProcessHeap(), 0, u_callback ); } + + return 0; } /* ISteamUtils_SteamUtils008 */ -void cppISteamUtils_SteamUtils008_GetAPICallResult( struct cppISteamUtils_SteamUtils008_GetAPICallResult_params *params ) +NTSTATUS ISteamUtils_SteamUtils008_GetAPICallResult( void *args ) { + struct ISteamUtils_SteamUtils008_GetAPICallResult_params *params = (struct ISteamUtils_SteamUtils008_GetAPICallResult_params *)args; struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->linux_side; int u_callback_len = params->cubCallback; void *u_callback; @@ -142,7 +149,7 @@ void cppISteamUtils_SteamUtils008_GetAPICallResult( struct cppISteamUtils_SteamU if (!(u_callback = alloc_callback_wtou( params->iCallbackExpected, params->pCallback, &u_callback_len ))) { params->_ret = FALSE; - return; + return 0; } params->_ret = iface->GetAPICallResult( params->hSteamAPICall, u_callback, u_callback_len, @@ -153,12 +160,15 @@ void cppISteamUtils_SteamUtils008_GetAPICallResult( struct cppISteamUtils_SteamU params->pCallback, params->cubCallback ); HeapFree( GetProcessHeap(), 0, u_callback ); } + + return 0; } /* ISteamUtils_SteamUtils009 */ -void cppISteamUtils_SteamUtils009_GetAPICallResult( struct cppISteamUtils_SteamUtils009_GetAPICallResult_params *params ) +NTSTATUS ISteamUtils_SteamUtils009_GetAPICallResult( void *args ) { + struct ISteamUtils_SteamUtils009_GetAPICallResult_params *params = (struct ISteamUtils_SteamUtils009_GetAPICallResult_params *)args; struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; int u_callback_len = params->cubCallback; void *u_callback; @@ -166,7 +176,7 @@ void cppISteamUtils_SteamUtils009_GetAPICallResult( struct cppISteamUtils_SteamU if (!(u_callback = alloc_callback_wtou( params->iCallbackExpected, params->pCallback, &u_callback_len ))) { params->_ret = FALSE; - return; + return 0; } params->_ret = iface->GetAPICallResult( params->hSteamAPICall, u_callback, u_callback_len, @@ -177,12 +187,15 @@ void cppISteamUtils_SteamUtils009_GetAPICallResult( struct cppISteamUtils_SteamU params->pCallback, params->cubCallback ); HeapFree( GetProcessHeap(), 0, u_callback ); } + + return 0; } /* ISteamUtils_SteamUtils010 */ -void cppISteamUtils_SteamUtils010_GetAPICallResult( struct cppISteamUtils_SteamUtils010_GetAPICallResult_params *params ) +NTSTATUS ISteamUtils_SteamUtils010_GetAPICallResult( void *args ) { + struct ISteamUtils_SteamUtils010_GetAPICallResult_params *params = (struct ISteamUtils_SteamUtils010_GetAPICallResult_params *)args; struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; int u_callback_len = params->cubCallback; void *u_callback; @@ -190,7 +203,7 @@ void cppISteamUtils_SteamUtils010_GetAPICallResult( struct cppISteamUtils_SteamU if (!(u_callback = alloc_callback_wtou( params->iCallbackExpected, params->pCallback, &u_callback_len ))) { params->_ret = FALSE; - return; + return 0; } params->_ret = iface->GetAPICallResult( params->hSteamAPICall, u_callback, u_callback_len, @@ -201,4 +214,6 @@ void cppISteamUtils_SteamUtils010_GetAPICallResult( struct cppISteamUtils_SteamU params->pCallback, params->cubCallback ); HeapFree( GetProcessHeap(), 0, u_callback ); } + + return 0; } diff --git a/lsteamclient/unixlib.h b/lsteamclient/unixlib.h index fc19590a..d5c7d652 100644 --- a/lsteamclient/unixlib.h +++ b/lsteamclient/unixlib.h @@ -8,9 +8,12 @@ #include #include +#include #include "steamclient_structs.h" +#include "wine/unixlib.h" + #ifdef __cplusplus extern "C" { @@ -103,8 +106,15 @@ extern void unix_networking_messages_receive_153a( uint32_t count, w_SteamNetwor extern void unix_networking_message_release_147( w_SteamNetworkingMessage_t_147 *w_msg ); extern void unix_networking_message_release_153a( w_SteamNetworkingMessage_t_153a *w_msg ); +typedef NTSTATUS (*unixlib_entry_t)( void *args ); +extern const unixlib_entry_t __wine_unix_call_funcs[]; + +#define STEAMCLIENT_CALL( code, args ) __wine_unix_call_funcs[unix_ ## code]( args ) + #ifdef __cplusplus } /* extern "C" */ #endif /* __cplusplus */ +#include "unixlib_generated.h" + #endif /* __STEAMCLIENT_UNIXLIB_H */ diff --git a/lsteamclient/unixlib_generated.cpp b/lsteamclient/unixlib_generated.cpp index e31805f8..f634d0db 100644 --- a/lsteamclient/unixlib_generated.cpp +++ b/lsteamclient/unixlib_generated.cpp @@ -2,6 +2,5860 @@ #include "unix_private.h" +extern "C" const unixlib_entry_t __wine_unix_call_funcs[] = +{ + ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetNumInstalledApps, + ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetInstalledApps, + ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName, + ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInstallDir, + ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppBuildId, + ISteamApps_STEAMAPPS_INTERFACE_VERSION001_GetAppData, + ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed, + ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence, + ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe, + ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned, + ISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentGameLanguage, + ISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages, + ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp, + ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribed, + ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsLowViolence, + ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsCybercafe, + ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsVACBanned, + ISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetCurrentGameLanguage, + ISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetAvailableGameLanguages, + ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp, + ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsDlcInstalled, + ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribed, + ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsLowViolence, + ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsCybercafe, + ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsVACBanned, + ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetCurrentGameLanguage, + ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetAvailableGameLanguages, + ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedApp, + ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsDlcInstalled, + ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetEarliestPurchaseUnixTime, + ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedFromFreeWeekend, + ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetDLCCount, + ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByIndex, + ISteamApps_STEAMAPPS_INTERFACE_VERSION004_InstallDLC, + ISteamApps_STEAMAPPS_INTERFACE_VERSION004_UninstallDLC, + ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribed, + ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsLowViolence, + ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsCybercafe, + ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsVACBanned, + ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentGameLanguage, + ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAvailableGameLanguages, + ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedApp, + ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsDlcInstalled, + ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetEarliestPurchaseUnixTime, + ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedFromFreeWeekend, + ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetDLCCount, + ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BGetDLCDataByIndex, + ISteamApps_STEAMAPPS_INTERFACE_VERSION005_InstallDLC, + ISteamApps_STEAMAPPS_INTERFACE_VERSION005_UninstallDLC, + ISteamApps_STEAMAPPS_INTERFACE_VERSION005_RequestAppProofOfPurchaseKey, + ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaName, + ISteamApps_STEAMAPPS_INTERFACE_VERSION005_MarkContentCorrupt, + ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetInstalledDepots, + ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAppInstallDir, + ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsAppInstalled, + ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribed, + ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsLowViolence, + ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsCybercafe, + ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsVACBanned, + ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentGameLanguage, + ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAvailableGameLanguages, + ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedApp, + ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsDlcInstalled, + ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetEarliestPurchaseUnixTime, + ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedFromFreeWeekend, + ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetDLCCount, + ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BGetDLCDataByIndex, + ISteamApps_STEAMAPPS_INTERFACE_VERSION006_InstallDLC, + ISteamApps_STEAMAPPS_INTERFACE_VERSION006_UninstallDLC, + ISteamApps_STEAMAPPS_INTERFACE_VERSION006_RequestAppProofOfPurchaseKey, + ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaName, + ISteamApps_STEAMAPPS_INTERFACE_VERSION006_MarkContentCorrupt, + ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetInstalledDepots, + ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppInstallDir, + ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsAppInstalled, + ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppOwner, + ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetLaunchQueryParam, + ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribed, + ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsLowViolence, + ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsCybercafe, + ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsVACBanned, + ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentGameLanguage, + ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAvailableGameLanguages, + ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedApp, + ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsDlcInstalled, + ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetEarliestPurchaseUnixTime, + ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedFromFreeWeekend, + ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDLCCount, + ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BGetDLCDataByIndex, + ISteamApps_STEAMAPPS_INTERFACE_VERSION007_InstallDLC, + ISteamApps_STEAMAPPS_INTERFACE_VERSION007_UninstallDLC, + ISteamApps_STEAMAPPS_INTERFACE_VERSION007_RequestAppProofOfPurchaseKey, + ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName, + ISteamApps_STEAMAPPS_INTERFACE_VERSION007_MarkContentCorrupt, + ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetInstalledDepots, + ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppInstallDir, + ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsAppInstalled, + ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppOwner, + ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetLaunchQueryParam, + ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress, + ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppBuildId, + ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribed, + ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsLowViolence, + ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsCybercafe, + ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsVACBanned, + ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentGameLanguage, + ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAvailableGameLanguages, + ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedApp, + ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsDlcInstalled, + ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetEarliestPurchaseUnixTime, + ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFreeWeekend, + ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDLCCount, + ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BGetDLCDataByIndex, + ISteamApps_STEAMAPPS_INTERFACE_VERSION008_InstallDLC, + ISteamApps_STEAMAPPS_INTERFACE_VERSION008_UninstallDLC, + ISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAppProofOfPurchaseKey, + ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaName, + ISteamApps_STEAMAPPS_INTERFACE_VERSION008_MarkContentCorrupt, + ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetInstalledDepots, + ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppInstallDir, + ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsAppInstalled, + ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppOwner, + ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchQueryParam, + ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDlcDownloadProgress, + ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppBuildId, + ISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAllProofOfPurchaseKeys, + ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetFileDetails, + ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchCommandLine, + ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFamilySharing, + ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial, + ISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetDlcContext, + ISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001_GetAppOwnershipTicketData, + ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Init, + ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Shutdown, + ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_RunFrame, + ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_GetControllerState, + ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_TriggerHapticPulse, + ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_SetOverrideMode, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Init, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Shutdown, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CreateBrowser, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_RemoveBrowser, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_LoadURL, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetSize, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopLoad, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Reload, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoBack, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoForward, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AddHeader, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ExecuteJavascript, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseUp, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDown, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDoubleClick, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseMove, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseWheel, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyDown, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyUp, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyChar, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetHorizontalScroll, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetVerticalScroll, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetKeyFocus, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ViewSource, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CopyToClipboard, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_PasteFromClipboard, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Find, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopFind, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GetLinkAtPosition, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AllowStartRequest, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_JSDialogResponse, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_FileLoadDialogResponse, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Init, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Shutdown, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CreateBrowser, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_RemoveBrowser, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_LoadURL, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetSize, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopLoad, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Reload, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoBack, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoForward, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AddHeader, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ExecuteJavascript, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseUp, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDown, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDoubleClick, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseMove, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseWheel, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyDown, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyUp, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyChar, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetHorizontalScroll, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetVerticalScroll, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetKeyFocus, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ViewSource, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CopyToClipboard, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_PasteFromClipboard, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Find, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopFind, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GetLinkAtPosition, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetCookie, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetPageScaleFactor, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AllowStartRequest, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_JSDialogResponse, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_FileLoadDialogResponse, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Init, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Shutdown, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CreateBrowser, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_RemoveBrowser, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_LoadURL, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetSize, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopLoad, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Reload, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoBack, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoForward, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AddHeader, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ExecuteJavascript, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseUp, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDown, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDoubleClick, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseMove, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseWheel, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyDown, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyUp, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyChar, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetHorizontalScroll, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetVerticalScroll, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetKeyFocus, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ViewSource, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CopyToClipboard, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_PasteFromClipboard, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Find, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopFind, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GetLinkAtPosition, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetCookie, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetPageScaleFactor, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetBackgroundMode, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AllowStartRequest, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_JSDialogResponse, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_FileLoadDialogResponse, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Init, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Shutdown, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CreateBrowser, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_RemoveBrowser, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_LoadURL, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetSize, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopLoad, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Reload, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoBack, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoForward, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AddHeader, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ExecuteJavascript, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseUp, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDown, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDoubleClick, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseMove, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseWheel, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyDown, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyUp, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyChar, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetHorizontalScroll, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetVerticalScroll, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetKeyFocus, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ViewSource, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CopyToClipboard, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_PasteFromClipboard, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Find, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopFind, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GetLinkAtPosition, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetCookie, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetPageScaleFactor, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetBackgroundMode, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetDPIScalingFactor, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AllowStartRequest, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_JSDialogResponse, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_FileLoadDialogResponse, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Init, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Shutdown, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CreateBrowser, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_RemoveBrowser, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_LoadURL, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetSize, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopLoad, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Reload, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoBack, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoForward, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AddHeader, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ExecuteJavascript, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseUp, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDown, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDoubleClick, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseMove, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseWheel, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyDown, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyUp, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyChar, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetHorizontalScroll, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetVerticalScroll, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetKeyFocus, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ViewSource, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CopyToClipboard, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_PasteFromClipboard, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Find, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopFind, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GetLinkAtPosition, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetCookie, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetPageScaleFactor, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetBackgroundMode, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetDPIScalingFactor, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_OpenDeveloperTools, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AllowStartRequest, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_JSDialogResponse, + ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_FileLoadDialogResponse, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_CreateHTTPRequest, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestContextValue, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetworkActivityTimeout, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeaderValue, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOrPostParameter, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_DeferHTTPRequest, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_PrioritizeHTTPRequest, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderSize, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderValue, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodySize, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodyData, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_ReleaseHTTPRequest, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProgressPct, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestRawPostBody, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateHTTPRequest, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestContextValue, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetworkActivityTimeout, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeaderValue, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOrPostParameter, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAndStreamResponse, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_DeferHTTPRequest, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_PrioritizeHTTPRequest, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderSize, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderValue, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodySize, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodyData, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingResponseBodyData, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseHTTPRequest, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadProgressPct, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRawPostBody, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateCookieContainer, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseCookieContainer, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCookieContainer, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUserAgentInfo, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRequiresVerifiedCertificate, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsoluteTimeoutMS, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPRequestWasTimedOut, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateHTTPRequest, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestContextValue, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetworkActivityTimeout, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeaderValue, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOrPostParameter, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAndStreamResponse, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_DeferHTTPRequest, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_PrioritizeHTTPRequest, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderSize, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderValue, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodySize, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodyData, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingResponseBodyData, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseHTTPRequest, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadProgressPct, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRawPostBody, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateCookieContainer, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseCookieContainer, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCookieContainer, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUserAgentInfo, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRequiresVerifiedCertificate, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsoluteTimeoutMS, + ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPRequestWasTimedOut, + ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultStatus, + ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItems, + ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultTimestamp, + ISteamInventory_STEAMINVENTORY_INTERFACE_V001_CheckResultSteamID, + ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DestroyResult, + ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetAllItems, + ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID, + ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult, + ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeResult, + ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems, + ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GrantPromoItems, + ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem, + ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems, + ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem, + ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems, + ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TransferItemQuantity, + ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SendItemDropHeartbeat, + ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDrop, + ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems, + ISteamInventory_STEAMINVENTORY_INTERFACE_V001_LoadItemDefinitions, + ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionIDs, + ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionProperty, + ISteamInventory_STEAMINVENTORY_INTERFACE_V001_RequestEligiblePromoItemDefinitionsIDs, + ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetEligiblePromoItemDefinitionIDs, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultStatus, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItemProperty, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultTimestamp, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_CheckResultSteamID, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DestroyResult, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetAllItems, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeResult, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GrantPromoItems, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TransferItemQuantity, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SendItemDropHeartbeat, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDrop, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_LoadItemDefinitions, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionIDs, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionProperty, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestEligiblePromoItemDefinitionsIDs, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetEligiblePromoItemDefinitionIDs, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartPurchase, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestPrices, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetNumItemsWithPrices, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPrices, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemPrice, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartUpdateProperties, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4, + ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SubmitUpdateProperties, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultStatus, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItemProperty, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultTimestamp, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_CheckResultSteamID, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DestroyResult, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetAllItems, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeResult, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GrantPromoItems, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TransferItemQuantity, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SendItemDropHeartbeat, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDrop, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_LoadItemDefinitions, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionIDs, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionProperty, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestEligiblePromoItemDefinitionsIDs, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetEligiblePromoItemDefinitionIDs, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartPurchase, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestPrices, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetNumItemsWithPrices, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPrices, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemPrice, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartUpdateProperties, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateProperties, + ISteamInventory_STEAMINVENTORY_INTERFACE_V003_InspectItem, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_RegisterSteamMusicRemote, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_DeregisterSteamMusicRemote, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BIsCurrentMusicRemote, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BActivationSuccess, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetDisplayName, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPNGIcon_64x64, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayPrevious, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayNext, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableShuffled, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableLooped, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableQueue, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlaylists, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdatePlaybackStatus, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateShuffled, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateLooped, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateVolume, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryWillChange, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryIsAvailable, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryText, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryElapsedSeconds, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryCoverArt, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryDidChange, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueWillChange, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetQueueEntries, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQueueEntry, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentQueueEntry, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueDidChange, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistWillChange, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetPlaylistEntries, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPlaylistEntry, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentPlaylistEntry, + ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistDidChange, + ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsEnabled, + ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsPlaying, + ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetPlaybackStatus, + ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Play, + ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Pause, + ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayPrevious, + ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayNext, + ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_SetVolume, + ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetVolume, + ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockEnabled, + ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockLocked, + ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppBlocked, + ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppInBlockList, + ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureBlocked, + ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureInBlockList, + ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionCount, + ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionID, + ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionSteamID, + ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientName, + ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientFormFactor, + ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSessionClientResolution, + ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BSendRemotePlayTogetherInvite, + ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionCount, + ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionID, + ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionSteamID, + ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientName, + ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientFormFactor, + ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSessionClientResolution, + ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BStartRemotePlayTogether, + ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BSendRemotePlayTogetherInvite, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileWrite, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileSize, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileRead, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileExists, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileDelete, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileCount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileNameAndSize, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetQuota, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileWrite, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileSize, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileRead, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileExists, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileCount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileNameAndSize, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetQuota, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileWrite, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileRead, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileForget, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileDelete, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileShare, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileExists, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FilePersisted, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileSize, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileTimestamp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileCount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileNameAndSize, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetQuota, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForAccount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForApp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_SetCloudEnabledForApp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCDownload, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetUGCDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCRead, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCCount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCHandle, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileWrite, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileRead, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileForget, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileDelete, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileShare, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetSyncPlatforms, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileExists, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FilePersisted, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileSize, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileTimestamp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetSyncPlatforms, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileCount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileNameAndSize, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetQuota, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForAccount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForApp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetCloudEnabledForApp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCDownload, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetUGCDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCRead, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCCount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCHandle, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileWrite, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileRead, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileForget, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileDelete, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileShare, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetSyncPlatforms, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileExists, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FilePersisted, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileSize, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileTimestamp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetSyncPlatforms, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileCount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileNameAndSize, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetQuota, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForAccount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForApp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetCloudEnabledForApp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCDownload, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetUGCDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCRead, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCCount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCHandle, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishWorkshopFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UpdatePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetPublishedFileDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_DeletePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserPublishedFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SubscribePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserSubscribedFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UnsubscribePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileWrite, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileRead, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileForget, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileDelete, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileShare, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetSyncPlatforms, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileExists, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FilePersisted, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileSize, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileTimestamp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetSyncPlatforms, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileCount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileNameAndSize, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetQuota, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForAccount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForApp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetCloudEnabledForApp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCDownload, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDownloadProgress, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCRead, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCCount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCHandle, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishWorkshopFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CreatePublishedFileUpdateRequest, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFilePreviewFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTitle, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileDescription, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileVisibility, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTags, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CommitPublishedFileUpdate, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedFileDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_DeletePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserPublishedFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SubscribePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSubscribedFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UnsubscribePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileSetChangeDescription, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedItemVoteDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdateUserPublishedItemVote, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUserPublishedItemVoteDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSharedWorkshopFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishVideo, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetUserPublishedFileAction, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedFilesByUserAction, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedWorkshopFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileWrite, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileRead, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileForget, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileDelete, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileShare, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetSyncPlatforms, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileExists, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FilePersisted, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileSize, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileTimestamp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetSyncPlatforms, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileCount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileNameAndSize, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetQuota, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForAccount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForApp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetCloudEnabledForApp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCDownload, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDownloadProgress, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCRead, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCCount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCHandle, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishWorkshopFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CreatePublishedFileUpdateRequest, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFilePreviewFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTitle, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileDescription, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileVisibility, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTags, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CommitPublishedFileUpdate, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedFileDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_DeletePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserPublishedFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SubscribePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSubscribedFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UnsubscribePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileSetChangeDescription, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedItemVoteDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdateUserPublishedItemVote, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUserPublishedItemVoteDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSharedWorkshopFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishVideo, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetUserPublishedFileAction, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedFilesByUserAction, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedWorkshopFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWrite, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileRead, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileForget, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileDelete, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileShare, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetSyncPlatforms, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamOpen, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamWriteChunk, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamClose, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamCancel, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileExists, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FilePersisted, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileSize, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileTimestamp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetSyncPlatforms, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileCount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileNameAndSize, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetQuota, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForAccount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForApp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetCloudEnabledForApp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCDownload, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDownloadProgress, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCRead, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCCount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCHandle, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishWorkshopFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CreatePublishedFileUpdateRequest, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFilePreviewFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTitle, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileDescription, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileVisibility, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTags, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CommitPublishedFileUpdate, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedFileDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_DeletePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserPublishedFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SubscribePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSubscribedFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UnsubscribePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileSetChangeDescription, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedItemVoteDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdateUserPublishedItemVote, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUserPublishedItemVoteDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSharedWorkshopFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishVideo, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetUserPublishedFileAction, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedFilesByUserAction, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedWorkshopFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWrite, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileRead, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileForget, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileDelete, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileShare, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetSyncPlatforms, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamOpen, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamWriteChunk, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamClose, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamCancel, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileExists, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FilePersisted, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileSize, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileTimestamp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetSyncPlatforms, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileCount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileNameAndSize, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetQuota, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForAccount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForApp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetCloudEnabledForApp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCDownload, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDownloadProgress, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCRead, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCCount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCHandle, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishWorkshopFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CreatePublishedFileUpdateRequest, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFilePreviewFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTitle, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileDescription, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileVisibility, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTags, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CommitPublishedFileUpdate, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedFileDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_DeletePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserPublishedFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SubscribePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSubscribedFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UnsubscribePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileSetChangeDescription, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedItemVoteDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdateUserPublishedItemVote, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUserPublishedItemVoteDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSharedWorkshopFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishVideo, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetUserPublishedFileAction, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedFilesByUserAction, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedWorkshopFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWrite, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileRead, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileForget, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileDelete, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileShare, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetSyncPlatforms, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamOpen, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamWriteChunk, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamClose, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamCancel, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileExists, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FilePersisted, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileSize, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileTimestamp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetSyncPlatforms, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileCount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileNameAndSize, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetQuota, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForAccount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForApp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetCloudEnabledForApp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownload, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDownloadProgress, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCRead, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCCount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCHandle, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishWorkshopFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CreatePublishedFileUpdateRequest, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFilePreviewFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTitle, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileDescription, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileVisibility, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTags, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CommitPublishedFileUpdate, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedFileDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_DeletePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserPublishedFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SubscribePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSubscribedFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UnsubscribePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileSetChangeDescription, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedItemVoteDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdateUserPublishedItemVote, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUserPublishedItemVoteDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSharedWorkshopFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishVideo, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetUserPublishedFileAction, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedFilesByUserAction, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedWorkshopFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownloadToLocation, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWrite, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileRead, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileForget, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileDelete, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileShare, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetSyncPlatforms, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamOpen, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamWriteChunk, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamClose, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamCancel, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileExists, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FilePersisted, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileSize, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileTimestamp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetSyncPlatforms, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileCount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileNameAndSize, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetQuota, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForAccount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForApp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetCloudEnabledForApp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownload, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDownloadProgress, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCRead, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCCount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCHandle, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishWorkshopFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CreatePublishedFileUpdateRequest, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFilePreviewFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTitle, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileDescription, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileVisibility, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTags, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CommitPublishedFileUpdate, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedFileDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_DeletePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserPublishedFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SubscribePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSubscribedFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UnsubscribePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileSetChangeDescription, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedItemVoteDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdateUserPublishedItemVote, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUserPublishedItemVoteDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSharedWorkshopFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishVideo, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetUserPublishedFileAction, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedFilesByUserAction, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedWorkshopFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownloadToLocation, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWrite, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileRead, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileForget, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileDelete, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileShare, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetSyncPlatforms, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamOpen, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamWriteChunk, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamClose, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamCancel, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileExists, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FilePersisted, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileSize, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileTimestamp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetSyncPlatforms, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileCount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileNameAndSize, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetQuota, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForAccount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForApp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetCloudEnabledForApp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownload, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDownloadProgress, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCRead, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCCount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCHandle, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishWorkshopFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CreatePublishedFileUpdateRequest, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFilePreviewFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTitle, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileDescription, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileVisibility, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTags, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CommitPublishedFileUpdate, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedFileDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_DeletePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserPublishedFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SubscribePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSubscribedFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UnsubscribePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileSetChangeDescription, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedItemVoteDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdateUserPublishedItemVote, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUserPublishedItemVoteDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSharedWorkshopFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishVideo, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetUserPublishedFileAction, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedFilesByUserAction, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedWorkshopFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownloadToLocation, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWrite, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileRead, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteAsync, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsync, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsyncComplete, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileForget, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileDelete, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileShare, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetSyncPlatforms, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamOpen, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamWriteChunk, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamClose, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamCancel, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileExists, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FilePersisted, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileSize, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileTimestamp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetSyncPlatforms, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileCount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileNameAndSize, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetQuota, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForAccount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForApp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetCloudEnabledForApp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownload, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDownloadProgress, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCRead, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCCount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCHandle, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishWorkshopFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CreatePublishedFileUpdateRequest, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFilePreviewFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTitle, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileDescription, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileVisibility, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTags, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CommitPublishedFileUpdate, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedFileDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_DeletePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserPublishedFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SubscribePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSubscribedFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UnsubscribePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileSetChangeDescription, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedItemVoteDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdateUserPublishedItemVote, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUserPublishedItemVoteDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSharedWorkshopFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishVideo, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetUserPublishedFileAction, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedFilesByUserAction, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedWorkshopFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownloadToLocation, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWrite, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileRead, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteAsync, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsync, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsyncComplete, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileForget, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileDelete, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileShare, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetSyncPlatforms, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamOpen, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamWriteChunk, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamClose, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamCancel, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileExists, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FilePersisted, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileSize, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileTimestamp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetSyncPlatforms, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileCount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileNameAndSize, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetQuota, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForAccount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForApp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetCloudEnabledForApp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownload, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDownloadProgress, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCRead, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCCount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCHandle, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishWorkshopFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CreatePublishedFileUpdateRequest, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFilePreviewFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTitle, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileDescription, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileVisibility, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTags, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CommitPublishedFileUpdate, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedFileDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_DeletePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserPublishedFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SubscribePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSubscribedFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UnsubscribePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileSetChangeDescription, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedItemVoteDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdateUserPublishedItemVote, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUserPublishedItemVoteDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSharedWorkshopFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishVideo, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetUserPublishedFileAction, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedFilesByUserAction, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedWorkshopFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownloadToLocation, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWrite, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileRead, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteAsync, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsync, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsyncComplete, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileForget, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileDelete, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileShare, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetSyncPlatforms, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamOpen, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamWriteChunk, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamClose, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamCancel, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileExists, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FilePersisted, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileSize, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileTimestamp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetSyncPlatforms, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileCount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileNameAndSize, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetQuota, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForAccount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForApp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetCloudEnabledForApp, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownload, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDownloadProgress, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCRead, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCCount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCHandle, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishWorkshopFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CreatePublishedFileUpdateRequest, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFilePreviewFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTitle, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileDescription, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileVisibility, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTags, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CommitPublishedFileUpdate, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedFileDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_DeletePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserPublishedFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SubscribePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSubscribedFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UnsubscribePublishedFile, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileSetChangeDescription, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedItemVoteDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdateUserPublishedItemVote, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUserPublishedItemVoteDetails, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSharedWorkshopFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishVideo, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetUserPublishedFileAction, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedFilesByUserAction, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedWorkshopFiles, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownloadToLocation, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChangeCount, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChange, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_BeginFileWriteBatch, + ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EndFileWriteBatch, + ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_WriteScreenshot, + ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_AddScreenshotToLibrary, + ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TriggerScreenshot, + ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_HookScreenshots, + ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLocation, + ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TagUser, + ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_WriteScreenshot, + ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_AddScreenshotToLibrary, + ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TriggerScreenshot, + ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_HookScreenshots, + ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_SetLocation, + ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUser, + ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagPublishedFile, + ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_WriteScreenshot, + ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddScreenshotToLibrary, + ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TriggerScreenshot, + ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_HookScreenshots, + ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_SetLocation, + ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagUser, + ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagPublishedFile, + ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_IsScreenshotsHooked, + ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddVRScreenshotToLibrary, + ISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryUserUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryAllUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SendQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult, + ISteamUGC_STEAMUGC_INTERFACE_VERSION001_ReleaseQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnLongDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnTotalOnly, + ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFilter, + ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetMatchAnyTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText, + ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetRankedByTrendDays, + ISteamUGC_STEAMUGC_INTERFACE_VERSION001_RequestUGCDetails, + ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryUserUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryAllUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SendQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult, + ISteamUGC_STEAMUGC_INTERFACE_VERSION002_ReleaseQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnLongDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnTotalOnly, + ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedResponse, + ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFilter, + ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetMatchAnyTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText, + ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetRankedByTrendDays, + ISteamUGC_STEAMUGC_INTERFACE_VERSION002_RequestUGCDetails, + ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION002_StartItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle, + ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility, + ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent, + ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubmitItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateProgress, + ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION002_UnsubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetNumSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryUserUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryAllUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SendQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult, + ISteamUGC_STEAMUGC_INTERFACE_VERSION003_ReleaseQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly, + ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse, + ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter, + ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText, + ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDays, + ISteamUGC_STEAMUGC_INTERFACE_VERSION003_RequestUGCDetails, + ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION003_StartItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle, + ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility, + ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent, + ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubmitItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateProgress, + ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION003_UnsubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetNumSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryUserUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryAllUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SendQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_ReleaseQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnLongDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnTotalOnly, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedResponse, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFilter, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetMatchAnyTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetRankedByTrendDays, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_RequestUGCDetails, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_StartItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubmitItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemUpdateProgress, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_UnsubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetNumSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemState, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION004_DownloadItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUserUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryAllUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUGCDetailsRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SendQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCStatistic, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCNumAdditionalPreviews, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAdditionalPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_ReleaseQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnLongDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnChildren, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnAdditionalPreviews, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnTotalOnly, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedResponse, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFilter, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetMatchAnyTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetRankedByTrendDays, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_RequestUGCDetails, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_StartItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubmitItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemUpdateProgress, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddItemToFavorites, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_RemoveItemFromFavorites, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_UnsubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetNumSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemState, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION005_DownloadItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUserUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryAllUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUGCDetailsRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SendQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCStatistic, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCNumAdditionalPreviews, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAdditionalPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_ReleaseQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnLongDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnChildren, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnAdditionalPreviews, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnTotalOnly, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedResponse, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFilter, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetMatchAnyTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetRankedByTrendDays, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_RequestUGCDetails, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_StartItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLanguage, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubmitItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemUpdateProgress, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetUserItemVote, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetUserItemVote, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddItemToFavorites, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_RemoveItemFromFavorites, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_UnsubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetNumSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemState, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION006_DownloadItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUserUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryAllUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUGCDetailsRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SendQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCStatistic, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumAdditionalPreviews, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCAdditionalPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_ReleaseQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnLongDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnChildren, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnAdditionalPreviews, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnTotalOnly, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedResponse, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFilter, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetMatchAnyTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDays, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RequestUGCDetails, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_StartItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLanguage, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubmitItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemUpdateProgress, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetUserItemVote, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetUserItemVote, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemToFavorites, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemFromFavorites, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_UnsubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetNumSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemState, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameServer, + ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SuspendDownloads, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUserUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryAllUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUGCDetailsRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SendQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCStatistic, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumAdditionalPreviews, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCAdditionalPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_ReleaseQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnLongDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnChildren, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnAdditionalPreviews, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnTotalOnly, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedResponse, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFilter, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetMatchAnyTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDays, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RequestUGCDetails, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_StartItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLanguage, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVideo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubmitItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemUpdateProgress, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetUserItemVote, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetUserItemVote, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemToFavorites, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemFromFavorites, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UnsubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetNumSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemState, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameServer, + ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SuspendDownloads, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUserUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryAllUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUGCDetailsRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SendQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCStatistic, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumAdditionalPreviews, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCAdditionalPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_ReleaseQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnOnlyIDs, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnLongDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnChildren, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnAdditionalPreviews, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnTotalOnly, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedResponse, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFilter, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetMatchAnyTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDays, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RequestUGCDetails, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLanguage, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVideo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubmitItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemUpdateProgress, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetUserItemVote, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetUserItemVote, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemToFavorites, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemFromFavorites, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UnsubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetNumSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemState, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_DownloadItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameServer, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SuspendDownloads, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartPlaytimeTracking, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTracking, + ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTrackingForAllItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUserUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryAllUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUGCDetailsRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SendQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCStatistic, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumAdditionalPreviews, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCAdditionalPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_ReleaseQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnOnlyIDs, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnLongDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnChildren, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnAdditionalPreviews, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnTotalOnly, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeStats, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedResponse, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFilter, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetMatchAnyTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDays, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RequestUGCDetails, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLanguage, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVideo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubmitItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemUpdateProgress, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetUserItemVote, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetUserItemVote, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemToFavorites, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemFromFavorites, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UnsubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetNumSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemState, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_DownloadItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameServer, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SuspendDownloads, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartPlaytimeTracking, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTracking, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTrackingForAllItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddAppDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveAppDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetAppDependencies, + ISteamUGC_STEAMUGC_INTERFACE_VERSION010_DeleteItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUserUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_2, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUGCDetailsRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SendQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCStatistic, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumAdditionalPreviews, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCAdditionalPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_ReleaseQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnOnlyIDs, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnLongDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnChildren, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnAdditionalPreviews, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnTotalOnly, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeStats, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedResponse, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFilter, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetMatchAnyTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDays, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RequestUGCDetails, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLanguage, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowLegacyUpload, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVideo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubmitItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemUpdateProgress, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetUserItemVote, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetUserItemVote, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemToFavorites, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemFromFavorites, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UnsubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetNumSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemState, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_DownloadItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameServer, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SuspendDownloads, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartPlaytimeTracking, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTracking, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTrackingForAllItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddAppDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveAppDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetAppDependencies, + ISteamUGC_STEAMUGC_INTERFACE_VERSION012_DeleteItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUserUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_2, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUGCDetailsRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SendQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCStatistic, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumAdditionalPreviews, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCAdditionalPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_2, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_ReleaseQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnOnlyIDs, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnLongDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnChildren, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnAdditionalPreviews, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnTotalOnly, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeStats, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedResponse, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFilter, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetMatchAnyTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDays, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RequestUGCDetails, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLanguage, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowLegacyUpload, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAllItemKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVideo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubmitItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemUpdateProgress, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetUserItemVote, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetUserItemVote, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemToFavorites, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemFromFavorites, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UnsubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetNumSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemState, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_DownloadItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameServer, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SuspendDownloads, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartPlaytimeTracking, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTracking, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTrackingForAllItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddAppDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAppDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetAppDependencies, + ISteamUGC_STEAMUGC_INTERFACE_VERSION013_DeleteItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUserUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_2, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUGCDetailsRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SendQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCStatistic, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumAdditionalPreviews, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCAdditionalPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_2, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_ReleaseQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnOnlyIDs, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnLongDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnChildren, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnAdditionalPreviews, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnTotalOnly, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeStats, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedResponse, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFilter, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetMatchAnyTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDays, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RequestUGCDetails, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLanguage, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowLegacyUpload, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAllItemKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVideo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubmitItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemUpdateProgress, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetUserItemVote, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetUserItemVote, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemToFavorites, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemFromFavorites, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UnsubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetNumSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemState, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_DownloadItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameServer, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SuspendDownloads, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartPlaytimeTracking, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTracking, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTrackingForAllItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddAppDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAppDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetAppDependencies, + ISteamUGC_STEAMUGC_INTERFACE_VERSION014_DeleteItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUserUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_2, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUGCDetailsRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SendQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCResult, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplayName, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCStatistic, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumAdditionalPreviews, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCAdditionalPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_2, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_ReleaseQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnOnlyIDs, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnLongDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnChildren, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnAdditionalPreviews, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnTotalOnly, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeStats, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedResponse, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFilter, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetMatchAnyTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDays, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RequestUGCDetails, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLanguage, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowLegacyUpload, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAllItemKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVideo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubmitItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemUpdateProgress, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetUserItemVote, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetUserItemVote, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemToFavorites, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemFromFavorites, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UnsubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetNumSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemState, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_DownloadItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameServer, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SuspendDownloads, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartPlaytimeTracking, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTracking, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTrackingForAllItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddAppDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAppDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetAppDependencies, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_DeleteItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_ShowWorkshopEULA, + ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetWorkshopEULAStatus, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUserUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_2, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUGCDetailsRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SendQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCResult, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplayName, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumAdditionalPreviews, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_2, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_ReleaseQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnOnlyIDs, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnLongDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnChildren, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnAdditionalPreviews, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnTotalOnly, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeStats, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedResponse, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFilter, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetMatchAnyTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDays, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRange, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRange, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RequestUGCDetails, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLanguage, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowLegacyUpload, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAllItemKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVideo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubmitItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemUpdateProgress, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetUserItemVote, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetUserItemVote, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemToFavorites, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemFromFavorites, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UnsubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetNumSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemState, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_DownloadItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameServer, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SuspendDownloads, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartPlaytimeTracking, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTracking, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTrackingForAllItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddAppDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAppDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetAppDependencies, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_DeleteItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_ShowWorkshopEULA, + ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetWorkshopEULAStatus, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUserUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_2, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUGCDetailsRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SendQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCResult, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplayName, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCStatistic, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumAdditionalPreviews, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCAdditionalPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_2, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCContentDescriptors, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_ReleaseQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnOnlyIDs, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnLongDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnChildren, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnAdditionalPreviews, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnTotalOnly, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeStats, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedResponse, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFilter, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetMatchAnyTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDays, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRange, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRange, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RequestUGCDetails, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLanguage, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowLegacyUpload, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAllItemKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVideo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescriptor, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveContentDescriptor, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubmitItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemUpdateProgress, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetUserItemVote, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetUserItemVote, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemToFavorites, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemFromFavorites, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UnsubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetNumSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemState, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_DownloadItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameServer, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SuspendDownloads, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartPlaytimeTracking, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTracking, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTrackingForAllItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddAppDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAppDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetAppDependencies, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_DeleteItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_ShowWorkshopEULA, + ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetWorkshopEULAStatus, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUserUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_2, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUGCDetailsRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SendQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCResult, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplayName, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCStatistic, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumAdditionalPreviews, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCAdditionalPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_2, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCContentDescriptors, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_ReleaseQueryUGCRequest, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnOnlyIDs, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnLongDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnChildren, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnAdditionalPreviews, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnTotalOnly, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeStats, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedResponse, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFilter, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetMatchAnyTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDays, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRange, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRange, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RequestUGCDetails, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLanguage, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowLegacyUpload, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAllItemKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueTags, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVideo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescriptor, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveContentDescriptor, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubmitItemUpdate, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemUpdateProgress, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetUserItemVote, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserItemVote, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemToFavorites, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemFromFavorites, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UnsubscribeItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetNumSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetSubscribedItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemState, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_DownloadItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameServer, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SuspendDownloads, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartPlaytimeTracking, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTracking, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTrackingForAllItems, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddAppDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAppDependency, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetAppDependencies, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_DeleteItem, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_ShowWorkshopEULA, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetWorkshopEULAStatus, + ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserContentDescriptorPreferences, + ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendMethod, + ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseInfo, + ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseData, + ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_ReleaseMethod, + ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNotification, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatName, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatType, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumAchievements, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementName, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumGroupAchievements, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievementName, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_RequestCurrentStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvgRateStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGroupAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_StoreStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearGroupAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementIcon, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementDisplayAttribute, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatName, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatType, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumAchievements, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementName, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_RequestCurrentStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvgRateStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_StoreStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementIcon, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementDisplayAttribute, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_IndicateAchievementProgress, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_RequestCurrentStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvgRateStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_ClearAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_StoreStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementIcon, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementDisplayAttribute, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementProgress, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestCurrentStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvgRateStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_ClearAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_StoreStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementIcon, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementDisplayAttribute, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_IndicateAchievementProgress, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestUserStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestCurrentStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvgRateStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ClearAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_StoreStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementIcon, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementDisplayAttribute, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_IndicateAchievementProgress, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestUserStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ResetAllStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindOrCreateLeaderboard, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindLeaderboard, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardName, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardEntryCount, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardSortMethod, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardDisplayType, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_DownloadLeaderboardEntries, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownloadedLeaderboardEntry, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UploadLeaderboardScore, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestCurrentStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvgRateStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ClearAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_StoreStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementIcon, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementDisplayAttribute, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_IndicateAchievementProgress, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestUserStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ResetAllStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindOrCreateLeaderboard, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindLeaderboard, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardName, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardEntryCount, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardSortMethod, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardDisplayType, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_DownloadLeaderboardEntries, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetDownloadedLeaderboardEntry, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UploadLeaderboardScore, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetNumberOfCurrentPlayers, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestCurrentStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvgRateStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ClearAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementAndUnlockTime, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_StoreStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementIcon, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementDisplayAttribute, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_IndicateAchievementProgress, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestUserStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievementAndUnlockTime, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ResetAllStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindOrCreateLeaderboard, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindLeaderboard, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardName, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardEntryCount, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardSortMethod, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardDisplayType, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_DownloadLeaderboardEntries, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetDownloadedLeaderboardEntry, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UploadLeaderboardScore, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetNumberOfCurrentPlayers, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestCurrentStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvgRateStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ClearAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementAndUnlockTime, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_StoreStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementIcon, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementDisplayAttribute, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_IndicateAchievementProgress, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestUserStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievementAndUnlockTime, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ResetAllStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindOrCreateLeaderboard, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindLeaderboard, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardName, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardEntryCount, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardSortMethod, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardDisplayType, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_DownloadLeaderboardEntries, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetDownloadedLeaderboardEntry, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UploadLeaderboardScore, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_AttachLeaderboardUGC, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetNumberOfCurrentPlayers, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestCurrentStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvgRateStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ClearAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementAndUnlockTime, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_StoreStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementIcon, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementDisplayAttribute, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_IndicateAchievementProgress, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestUserStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievementAndUnlockTime, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ResetAllStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindOrCreateLeaderboard, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindLeaderboard, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardName, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardEntryCount, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardSortMethod, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardDisplayType, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntries, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntriesForUsers, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetDownloadedLeaderboardEntry, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UploadLeaderboardScore, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_AttachLeaderboardUGC, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetNumberOfCurrentPlayers, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCurrentStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ClearAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAndUnlockTime, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_StoreStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementIcon, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementDisplayAttribute, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateAchievementProgress, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestUserStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievementAndUnlockTime, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ResetAllStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindOrCreateLeaderboard, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindLeaderboard, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardName, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardEntryCount, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardSortMethod, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardDisplayType, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntries, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntriesForUsers, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownloadedLeaderboardEntry, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UploadLeaderboardScore, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_AttachLeaderboardUGC, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNumberOfCurrentPlayers, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalAchievementPercentages, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMostAchievedAchievementInfo, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchievedAchievementInfo, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAchievedPercent, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestCurrentStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvgRateStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ClearAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAndUnlockTime, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_StoreStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementIcon, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementDisplayAttribute, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_IndicateAchievementProgress, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumAchievements, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementName, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestUserStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievementAndUnlockTime, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ResetAllStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindOrCreateLeaderboard, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindLeaderboard, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardName, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardEntryCount, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardSortMethod, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardDisplayType, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntries, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntriesForUsers, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetDownloadedLeaderboardEntry, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UploadLeaderboardScore, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_AttachLeaderboardUGC, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumberOfCurrentPlayers, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalAchievementPercentages, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetMostAchievedAchievementInfo, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNextMostAchievedAchievementInfo, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAchievedPercent, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestCurrentStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvgRateStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ClearAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAndUnlockTime, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_StoreStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementIcon, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementDisplayAttribute, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_IndicateAchievementProgress, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumAchievements, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementName, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestUserStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievement, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievementAndUnlockTime, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ResetAllStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindOrCreateLeaderboard, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindLeaderboard, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardName, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardEntryCount, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardSortMethod, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardDisplayType, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntries, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntriesForUsers, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetDownloadedLeaderboardEntry, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UploadLeaderboardScore, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_AttachLeaderboardUGC, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumberOfCurrentPlayers, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalAchievementPercentages, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetMostAchievedAchievementInfo, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNextMostAchievedAchievementInfo, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAchievedPercent, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalStats, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_2, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits, + ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_2, + ISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL, + ISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting, + ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetVideoURL, + ISteamVideo_STEAMVIDEO_INTERFACE_V002_IsBroadcasting, + ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFSettings, + ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringForApp, + ISteamClient_SteamClient006_CreateSteamPipe, + ISteamClient_SteamClient006_BReleaseSteamPipe, + ISteamClient_SteamClient006_CreateGlobalUser, + ISteamClient_SteamClient006_ConnectToGlobalUser, + ISteamClient_SteamClient006_CreateLocalUser, + ISteamClient_SteamClient006_ReleaseUser, + ISteamClient_SteamClient006_GetISteamUser, + ISteamClient_SteamClient006_GetIVAC, + ISteamClient_SteamClient006_GetISteamGameServer, + ISteamClient_SteamClient006_SetLocalIPBinding, + ISteamClient_SteamClient006_GetUniverseName, + ISteamClient_SteamClient006_GetISteamFriends, + ISteamClient_SteamClient006_GetISteamUtils, + ISteamClient_SteamClient006_GetISteamBilling, + ISteamClient_SteamClient006_GetISteamMatchmaking, + ISteamClient_SteamClient006_GetISteamApps, + ISteamClient_SteamClient006_GetISteamContentServer, + ISteamClient_SteamClient006_GetISteamMasterServerUpdater, + ISteamClient_SteamClient006_GetISteamMatchmakingServers, + ISteamClient_SteamClient006_RunFrame, + ISteamClient_SteamClient006_GetIPCCallCount, + ISteamClient_SteamClient007_CreateSteamPipe, + ISteamClient_SteamClient007_BReleaseSteamPipe, + ISteamClient_SteamClient007_ConnectToGlobalUser, + ISteamClient_SteamClient007_CreateLocalUser, + ISteamClient_SteamClient007_ReleaseUser, + ISteamClient_SteamClient007_GetISteamUser, + ISteamClient_SteamClient007_GetISteamGameServer, + ISteamClient_SteamClient007_SetLocalIPBinding, + ISteamClient_SteamClient007_GetISteamFriends, + ISteamClient_SteamClient007_GetISteamUtils, + ISteamClient_SteamClient007_GetISteamMatchmaking, + ISteamClient_SteamClient007_GetISteamContentServer, + ISteamClient_SteamClient007_GetISteamMasterServerUpdater, + ISteamClient_SteamClient007_GetISteamMatchmakingServers, + ISteamClient_SteamClient007_GetISteamGenericInterface, + ISteamClient_SteamClient007_RunFrame, + ISteamClient_SteamClient007_GetIPCCallCount, + ISteamClient_SteamClient007_GetISteamUserStats, + ISteamClient_SteamClient007_GetISteamApps, + ISteamClient_SteamClient007_GetISteamNetworking, + ISteamClient_SteamClient007_SetWarningMessageHook, + ISteamClient_SteamClient007_GetISteamRemoteStorage, + ISteamClient_SteamClient008_CreateSteamPipe, + ISteamClient_SteamClient008_BReleaseSteamPipe, + ISteamClient_SteamClient008_ConnectToGlobalUser, + ISteamClient_SteamClient008_CreateLocalUser, + ISteamClient_SteamClient008_ReleaseUser, + ISteamClient_SteamClient008_GetISteamUser, + ISteamClient_SteamClient008_GetISteamGameServer, + ISteamClient_SteamClient008_SetLocalIPBinding, + ISteamClient_SteamClient008_GetISteamFriends, + ISteamClient_SteamClient008_GetISteamUtils, + ISteamClient_SteamClient008_GetISteamMatchmaking, + ISteamClient_SteamClient008_GetISteamMasterServerUpdater, + ISteamClient_SteamClient008_GetISteamMatchmakingServers, + ISteamClient_SteamClient008_GetISteamGenericInterface, + ISteamClient_SteamClient008_GetISteamUserStats, + ISteamClient_SteamClient008_GetISteamApps, + ISteamClient_SteamClient008_GetISteamNetworking, + ISteamClient_SteamClient008_GetISteamRemoteStorage, + ISteamClient_SteamClient008_RunFrame, + ISteamClient_SteamClient008_GetIPCCallCount, + ISteamClient_SteamClient008_SetWarningMessageHook, + ISteamClient_SteamClient009_CreateSteamPipe, + ISteamClient_SteamClient009_BReleaseSteamPipe, + ISteamClient_SteamClient009_ConnectToGlobalUser, + ISteamClient_SteamClient009_CreateLocalUser, + ISteamClient_SteamClient009_ReleaseUser, + ISteamClient_SteamClient009_GetISteamUser, + ISteamClient_SteamClient009_GetISteamGameServer, + ISteamClient_SteamClient009_SetLocalIPBinding, + ISteamClient_SteamClient009_GetISteamFriends, + ISteamClient_SteamClient009_GetISteamUtils, + ISteamClient_SteamClient009_GetISteamMatchmaking, + ISteamClient_SteamClient009_GetISteamMasterServerUpdater, + ISteamClient_SteamClient009_GetISteamMatchmakingServers, + ISteamClient_SteamClient009_GetISteamGenericInterface, + ISteamClient_SteamClient009_GetISteamUserStats, + ISteamClient_SteamClient009_GetISteamGameServerStats, + ISteamClient_SteamClient009_GetISteamApps, + ISteamClient_SteamClient009_GetISteamNetworking, + ISteamClient_SteamClient009_GetISteamRemoteStorage, + ISteamClient_SteamClient009_RunFrame, + ISteamClient_SteamClient009_GetIPCCallCount, + ISteamClient_SteamClient009_SetWarningMessageHook, + ISteamClient_SteamClient010_CreateSteamPipe, + ISteamClient_SteamClient010_BReleaseSteamPipe, + ISteamClient_SteamClient010_ConnectToGlobalUser, + ISteamClient_SteamClient010_CreateLocalUser, + ISteamClient_SteamClient010_ReleaseUser, + ISteamClient_SteamClient010_GetISteamUser, + ISteamClient_SteamClient010_GetISteamGameServer, + ISteamClient_SteamClient010_SetLocalIPBinding, + ISteamClient_SteamClient010_GetISteamFriends, + ISteamClient_SteamClient010_GetISteamUtils, + ISteamClient_SteamClient010_GetISteamMatchmaking, + ISteamClient_SteamClient010_GetISteamMasterServerUpdater, + ISteamClient_SteamClient010_GetISteamMatchmakingServers, + ISteamClient_SteamClient010_GetISteamGenericInterface, + ISteamClient_SteamClient010_GetISteamUserStats, + ISteamClient_SteamClient010_GetISteamGameServerStats, + ISteamClient_SteamClient010_GetISteamApps, + ISteamClient_SteamClient010_GetISteamNetworking, + ISteamClient_SteamClient010_GetISteamRemoteStorage, + ISteamClient_SteamClient010_RunFrame, + ISteamClient_SteamClient010_GetIPCCallCount, + ISteamClient_SteamClient010_SetWarningMessageHook, + ISteamClient_SteamClient010_BShutdownIfAllPipesClosed, + ISteamClient_SteamClient010_GetISteamHTTP, + ISteamClient_SteamClient011_CreateSteamPipe, + ISteamClient_SteamClient011_BReleaseSteamPipe, + ISteamClient_SteamClient011_ConnectToGlobalUser, + ISteamClient_SteamClient011_CreateLocalUser, + ISteamClient_SteamClient011_ReleaseUser, + ISteamClient_SteamClient011_GetISteamUser, + ISteamClient_SteamClient011_GetISteamGameServer, + ISteamClient_SteamClient011_SetLocalIPBinding, + ISteamClient_SteamClient011_GetISteamFriends, + ISteamClient_SteamClient011_GetISteamUtils, + ISteamClient_SteamClient011_GetISteamMatchmaking, + ISteamClient_SteamClient011_GetISteamMasterServerUpdater, + ISteamClient_SteamClient011_GetISteamMatchmakingServers, + ISteamClient_SteamClient011_GetISteamGenericInterface, + ISteamClient_SteamClient011_GetISteamUserStats, + ISteamClient_SteamClient011_GetISteamGameServerStats, + ISteamClient_SteamClient011_GetISteamApps, + ISteamClient_SteamClient011_GetISteamNetworking, + ISteamClient_SteamClient011_GetISteamRemoteStorage, + ISteamClient_SteamClient011_GetISteamScreenshots, + ISteamClient_SteamClient011_RunFrame, + ISteamClient_SteamClient011_GetIPCCallCount, + ISteamClient_SteamClient011_SetWarningMessageHook, + ISteamClient_SteamClient011_BShutdownIfAllPipesClosed, + ISteamClient_SteamClient011_GetISteamHTTP, + ISteamClient_SteamClient012_CreateSteamPipe, + ISteamClient_SteamClient012_BReleaseSteamPipe, + ISteamClient_SteamClient012_ConnectToGlobalUser, + ISteamClient_SteamClient012_CreateLocalUser, + ISteamClient_SteamClient012_ReleaseUser, + ISteamClient_SteamClient012_GetISteamUser, + ISteamClient_SteamClient012_GetISteamGameServer, + ISteamClient_SteamClient012_SetLocalIPBinding, + ISteamClient_SteamClient012_GetISteamFriends, + ISteamClient_SteamClient012_GetISteamUtils, + ISteamClient_SteamClient012_GetISteamMatchmaking, + ISteamClient_SteamClient012_GetISteamMatchmakingServers, + ISteamClient_SteamClient012_GetISteamGenericInterface, + ISteamClient_SteamClient012_GetISteamUserStats, + ISteamClient_SteamClient012_GetISteamGameServerStats, + ISteamClient_SteamClient012_GetISteamApps, + ISteamClient_SteamClient012_GetISteamNetworking, + ISteamClient_SteamClient012_GetISteamRemoteStorage, + ISteamClient_SteamClient012_GetISteamScreenshots, + ISteamClient_SteamClient012_RunFrame, + ISteamClient_SteamClient012_GetIPCCallCount, + ISteamClient_SteamClient012_SetWarningMessageHook, + ISteamClient_SteamClient012_BShutdownIfAllPipesClosed, + ISteamClient_SteamClient012_GetISteamHTTP, + ISteamClient_SteamClient012_GetISteamUnifiedMessages, + ISteamClient_SteamClient012_GetISteamController, + ISteamClient_SteamClient012_GetISteamUGC, + ISteamClient_SteamClient013_CreateSteamPipe, + ISteamClient_SteamClient013_BReleaseSteamPipe, + ISteamClient_SteamClient013_ConnectToGlobalUser, + ISteamClient_SteamClient013_CreateLocalUser, + ISteamClient_SteamClient013_ReleaseUser, + ISteamClient_SteamClient013_GetISteamUser, + ISteamClient_SteamClient013_GetISteamGameServer, + ISteamClient_SteamClient013_SetLocalIPBinding, + ISteamClient_SteamClient013_GetISteamFriends, + ISteamClient_SteamClient013_GetISteamUtils, + ISteamClient_SteamClient013_GetISteamMatchmaking, + ISteamClient_SteamClient013_GetISteamMatchmakingServers, + ISteamClient_SteamClient013_GetISteamGenericInterface, + ISteamClient_SteamClient013_GetISteamUserStats, + ISteamClient_SteamClient013_GetISteamGameServerStats, + ISteamClient_SteamClient013_GetISteamApps, + ISteamClient_SteamClient013_GetISteamNetworking, + ISteamClient_SteamClient013_GetISteamRemoteStorage, + ISteamClient_SteamClient013_GetISteamScreenshots, + ISteamClient_SteamClient013_RunFrame, + ISteamClient_SteamClient013_GetIPCCallCount, + ISteamClient_SteamClient013_SetWarningMessageHook, + ISteamClient_SteamClient013_BShutdownIfAllPipesClosed, + ISteamClient_SteamClient013_GetISteamHTTP, + ISteamClient_SteamClient013_GetISteamUnifiedMessages, + ISteamClient_SteamClient013_GetISteamController, + ISteamClient_SteamClient013_GetISteamUGC, + ISteamClient_SteamClient013_GetISteamInventory, + ISteamClient_SteamClient013_GetISteamVideo, + ISteamClient_SteamClient013_GetISteamAppList, + ISteamClient_SteamClient014_CreateSteamPipe, + ISteamClient_SteamClient014_BReleaseSteamPipe, + ISteamClient_SteamClient014_ConnectToGlobalUser, + ISteamClient_SteamClient014_CreateLocalUser, + ISteamClient_SteamClient014_ReleaseUser, + ISteamClient_SteamClient014_GetISteamUser, + ISteamClient_SteamClient014_GetISteamGameServer, + ISteamClient_SteamClient014_SetLocalIPBinding, + ISteamClient_SteamClient014_GetISteamFriends, + ISteamClient_SteamClient014_GetISteamUtils, + ISteamClient_SteamClient014_GetISteamMatchmaking, + ISteamClient_SteamClient014_GetISteamMatchmakingServers, + ISteamClient_SteamClient014_GetISteamGenericInterface, + ISteamClient_SteamClient014_GetISteamUserStats, + ISteamClient_SteamClient014_GetISteamGameServerStats, + ISteamClient_SteamClient014_GetISteamApps, + ISteamClient_SteamClient014_GetISteamNetworking, + ISteamClient_SteamClient014_GetISteamRemoteStorage, + ISteamClient_SteamClient014_GetISteamScreenshots, + ISteamClient_SteamClient014_RunFrame, + ISteamClient_SteamClient014_GetIPCCallCount, + ISteamClient_SteamClient014_SetWarningMessageHook, + ISteamClient_SteamClient014_BShutdownIfAllPipesClosed, + ISteamClient_SteamClient014_GetISteamHTTP, + ISteamClient_SteamClient014_GetISteamUnifiedMessages, + ISteamClient_SteamClient014_GetISteamController, + ISteamClient_SteamClient014_GetISteamUGC, + ISteamClient_SteamClient014_GetISteamAppList, + ISteamClient_SteamClient014_GetISteamMusic, + ISteamClient_SteamClient015_CreateSteamPipe, + ISteamClient_SteamClient015_BReleaseSteamPipe, + ISteamClient_SteamClient015_ConnectToGlobalUser, + ISteamClient_SteamClient015_CreateLocalUser, + ISteamClient_SteamClient015_ReleaseUser, + ISteamClient_SteamClient015_GetISteamUser, + ISteamClient_SteamClient015_GetISteamGameServer, + ISteamClient_SteamClient015_SetLocalIPBinding, + ISteamClient_SteamClient015_GetISteamFriends, + ISteamClient_SteamClient015_GetISteamUtils, + ISteamClient_SteamClient015_GetISteamMatchmaking, + ISteamClient_SteamClient015_GetISteamMatchmakingServers, + ISteamClient_SteamClient015_GetISteamGenericInterface, + ISteamClient_SteamClient015_GetISteamUserStats, + ISteamClient_SteamClient015_GetISteamGameServerStats, + ISteamClient_SteamClient015_GetISteamApps, + ISteamClient_SteamClient015_GetISteamNetworking, + ISteamClient_SteamClient015_GetISteamRemoteStorage, + ISteamClient_SteamClient015_GetISteamScreenshots, + ISteamClient_SteamClient015_RunFrame, + ISteamClient_SteamClient015_GetIPCCallCount, + ISteamClient_SteamClient015_SetWarningMessageHook, + ISteamClient_SteamClient015_BShutdownIfAllPipesClosed, + ISteamClient_SteamClient015_GetISteamHTTP, + ISteamClient_SteamClient015_GetISteamUnifiedMessages, + ISteamClient_SteamClient015_GetISteamController, + ISteamClient_SteamClient015_GetISteamUGC, + ISteamClient_SteamClient015_GetISteamAppList, + ISteamClient_SteamClient015_GetISteamMusic, + ISteamClient_SteamClient015_GetISteamMusicRemote, + ISteamClient_SteamClient016_CreateSteamPipe, + ISteamClient_SteamClient016_BReleaseSteamPipe, + ISteamClient_SteamClient016_ConnectToGlobalUser, + ISteamClient_SteamClient016_CreateLocalUser, + ISteamClient_SteamClient016_ReleaseUser, + ISteamClient_SteamClient016_GetISteamUser, + ISteamClient_SteamClient016_GetISteamGameServer, + ISteamClient_SteamClient016_SetLocalIPBinding, + ISteamClient_SteamClient016_GetISteamFriends, + ISteamClient_SteamClient016_GetISteamUtils, + ISteamClient_SteamClient016_GetISteamMatchmaking, + ISteamClient_SteamClient016_GetISteamMatchmakingServers, + ISteamClient_SteamClient016_GetISteamGenericInterface, + ISteamClient_SteamClient016_GetISteamUserStats, + ISteamClient_SteamClient016_GetISteamGameServerStats, + ISteamClient_SteamClient016_GetISteamApps, + ISteamClient_SteamClient016_GetISteamNetworking, + ISteamClient_SteamClient016_GetISteamRemoteStorage, + ISteamClient_SteamClient016_GetISteamScreenshots, + ISteamClient_SteamClient016_RunFrame, + ISteamClient_SteamClient016_GetIPCCallCount, + ISteamClient_SteamClient016_SetWarningMessageHook, + ISteamClient_SteamClient016_BShutdownIfAllPipesClosed, + ISteamClient_SteamClient016_GetISteamHTTP, + ISteamClient_SteamClient016_GetISteamUnifiedMessages, + ISteamClient_SteamClient016_GetISteamController, + ISteamClient_SteamClient016_GetISteamUGC, + ISteamClient_SteamClient016_GetISteamAppList, + ISteamClient_SteamClient016_GetISteamMusic, + ISteamClient_SteamClient016_GetISteamMusicRemote, + ISteamClient_SteamClient016_GetISteamHTMLSurface, + ISteamClient_SteamClient016_Set_SteamAPI_CPostAPIResultInProcess, + ISteamClient_SteamClient016_Remove_SteamAPI_CPostAPIResultInProcess, + ISteamClient_SteamClient016_Set_SteamAPI_CCheckCallbackRegisteredInProcess, + ISteamClient_SteamClient017_CreateSteamPipe, + ISteamClient_SteamClient017_BReleaseSteamPipe, + ISteamClient_SteamClient017_ConnectToGlobalUser, + ISteamClient_SteamClient017_CreateLocalUser, + ISteamClient_SteamClient017_ReleaseUser, + ISteamClient_SteamClient017_GetISteamUser, + ISteamClient_SteamClient017_GetISteamGameServer, + ISteamClient_SteamClient017_SetLocalIPBinding, + ISteamClient_SteamClient017_GetISteamFriends, + ISteamClient_SteamClient017_GetISteamUtils, + ISteamClient_SteamClient017_GetISteamMatchmaking, + ISteamClient_SteamClient017_GetISteamMatchmakingServers, + ISteamClient_SteamClient017_GetISteamGenericInterface, + ISteamClient_SteamClient017_GetISteamUserStats, + ISteamClient_SteamClient017_GetISteamGameServerStats, + ISteamClient_SteamClient017_GetISteamApps, + ISteamClient_SteamClient017_GetISteamNetworking, + ISteamClient_SteamClient017_GetISteamRemoteStorage, + ISteamClient_SteamClient017_GetISteamScreenshots, + ISteamClient_SteamClient017_RunFrame, + ISteamClient_SteamClient017_GetIPCCallCount, + ISteamClient_SteamClient017_SetWarningMessageHook, + ISteamClient_SteamClient017_BShutdownIfAllPipesClosed, + ISteamClient_SteamClient017_GetISteamHTTP, + ISteamClient_SteamClient017_DEPRECATED_GetISteamUnifiedMessages, + ISteamClient_SteamClient017_GetISteamController, + ISteamClient_SteamClient017_GetISteamUGC, + ISteamClient_SteamClient017_GetISteamAppList, + ISteamClient_SteamClient017_GetISteamMusic, + ISteamClient_SteamClient017_GetISteamMusicRemote, + ISteamClient_SteamClient017_GetISteamHTMLSurface, + ISteamClient_SteamClient017_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess, + ISteamClient_SteamClient017_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess, + ISteamClient_SteamClient017_Set_SteamAPI_CCheckCallbackRegisteredInProcess, + ISteamClient_SteamClient017_GetISteamInventory, + ISteamClient_SteamClient017_GetISteamVideo, + ISteamClient_SteamClient017_GetISteamParentalSettings, + ISteamClient_SteamClient018_CreateSteamPipe, + ISteamClient_SteamClient018_BReleaseSteamPipe, + ISteamClient_SteamClient018_ConnectToGlobalUser, + ISteamClient_SteamClient018_CreateLocalUser, + ISteamClient_SteamClient018_ReleaseUser, + ISteamClient_SteamClient018_GetISteamUser, + ISteamClient_SteamClient018_GetISteamGameServer, + ISteamClient_SteamClient018_SetLocalIPBinding, + ISteamClient_SteamClient018_GetISteamFriends, + ISteamClient_SteamClient018_GetISteamUtils, + ISteamClient_SteamClient018_GetISteamMatchmaking, + ISteamClient_SteamClient018_GetISteamMatchmakingServers, + ISteamClient_SteamClient018_GetISteamGenericInterface, + ISteamClient_SteamClient018_GetISteamUserStats, + ISteamClient_SteamClient018_GetISteamGameServerStats, + ISteamClient_SteamClient018_GetISteamApps, + ISteamClient_SteamClient018_GetISteamNetworking, + ISteamClient_SteamClient018_GetISteamRemoteStorage, + ISteamClient_SteamClient018_GetISteamScreenshots, + ISteamClient_SteamClient018_GetISteamGameSearch, + ISteamClient_SteamClient018_RunFrame, + ISteamClient_SteamClient018_GetIPCCallCount, + ISteamClient_SteamClient018_SetWarningMessageHook, + ISteamClient_SteamClient018_BShutdownIfAllPipesClosed, + ISteamClient_SteamClient018_GetISteamHTTP, + ISteamClient_SteamClient018_DEPRECATED_GetISteamUnifiedMessages, + ISteamClient_SteamClient018_GetISteamController, + ISteamClient_SteamClient018_GetISteamUGC, + ISteamClient_SteamClient018_GetISteamAppList, + ISteamClient_SteamClient018_GetISteamMusic, + ISteamClient_SteamClient018_GetISteamMusicRemote, + ISteamClient_SteamClient018_GetISteamHTMLSurface, + ISteamClient_SteamClient018_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess, + ISteamClient_SteamClient018_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess, + ISteamClient_SteamClient018_Set_SteamAPI_CCheckCallbackRegisteredInProcess, + ISteamClient_SteamClient018_GetISteamInventory, + ISteamClient_SteamClient018_GetISteamVideo, + ISteamClient_SteamClient018_GetISteamParentalSettings, + ISteamClient_SteamClient018_GetISteamInput, + ISteamClient_SteamClient018_GetISteamParties, + ISteamClient_SteamClient019_CreateSteamPipe, + ISteamClient_SteamClient019_BReleaseSteamPipe, + ISteamClient_SteamClient019_ConnectToGlobalUser, + ISteamClient_SteamClient019_CreateLocalUser, + ISteamClient_SteamClient019_ReleaseUser, + ISteamClient_SteamClient019_GetISteamUser, + ISteamClient_SteamClient019_GetISteamGameServer, + ISteamClient_SteamClient019_SetLocalIPBinding, + ISteamClient_SteamClient019_GetISteamFriends, + ISteamClient_SteamClient019_GetISteamUtils, + ISteamClient_SteamClient019_GetISteamMatchmaking, + ISteamClient_SteamClient019_GetISteamMatchmakingServers, + ISteamClient_SteamClient019_GetISteamGenericInterface, + ISteamClient_SteamClient019_GetISteamUserStats, + ISteamClient_SteamClient019_GetISteamGameServerStats, + ISteamClient_SteamClient019_GetISteamApps, + ISteamClient_SteamClient019_GetISteamNetworking, + ISteamClient_SteamClient019_GetISteamRemoteStorage, + ISteamClient_SteamClient019_GetISteamScreenshots, + ISteamClient_SteamClient019_GetISteamGameSearch, + ISteamClient_SteamClient019_RunFrame, + ISteamClient_SteamClient019_GetIPCCallCount, + ISteamClient_SteamClient019_SetWarningMessageHook, + ISteamClient_SteamClient019_BShutdownIfAllPipesClosed, + ISteamClient_SteamClient019_GetISteamHTTP, + ISteamClient_SteamClient019_DEPRECATED_GetISteamUnifiedMessages, + ISteamClient_SteamClient019_GetISteamController, + ISteamClient_SteamClient019_GetISteamUGC, + ISteamClient_SteamClient019_GetISteamAppList, + ISteamClient_SteamClient019_GetISteamMusic, + ISteamClient_SteamClient019_GetISteamMusicRemote, + ISteamClient_SteamClient019_GetISteamHTMLSurface, + ISteamClient_SteamClient019_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess, + ISteamClient_SteamClient019_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess, + ISteamClient_SteamClient019_Set_SteamAPI_CCheckCallbackRegisteredInProcess, + ISteamClient_SteamClient019_GetISteamInventory, + ISteamClient_SteamClient019_GetISteamVideo, + ISteamClient_SteamClient019_GetISteamParentalSettings, + ISteamClient_SteamClient019_GetISteamInput, + ISteamClient_SteamClient019_GetISteamParties, + ISteamClient_SteamClient019_GetISteamRemotePlay, + ISteamClient_SteamClient020_CreateSteamPipe, + ISteamClient_SteamClient020_BReleaseSteamPipe, + ISteamClient_SteamClient020_ConnectToGlobalUser, + ISteamClient_SteamClient020_CreateLocalUser, + ISteamClient_SteamClient020_ReleaseUser, + ISteamClient_SteamClient020_GetISteamUser, + ISteamClient_SteamClient020_GetISteamGameServer, + ISteamClient_SteamClient020_SetLocalIPBinding, + ISteamClient_SteamClient020_GetISteamFriends, + ISteamClient_SteamClient020_GetISteamUtils, + ISteamClient_SteamClient020_GetISteamMatchmaking, + ISteamClient_SteamClient020_GetISteamMatchmakingServers, + ISteamClient_SteamClient020_GetISteamGenericInterface, + ISteamClient_SteamClient020_GetISteamUserStats, + ISteamClient_SteamClient020_GetISteamGameServerStats, + ISteamClient_SteamClient020_GetISteamApps, + ISteamClient_SteamClient020_GetISteamNetworking, + ISteamClient_SteamClient020_GetISteamRemoteStorage, + ISteamClient_SteamClient020_GetISteamScreenshots, + ISteamClient_SteamClient020_GetISteamGameSearch, + ISteamClient_SteamClient020_RunFrame, + ISteamClient_SteamClient020_GetIPCCallCount, + ISteamClient_SteamClient020_SetWarningMessageHook, + ISteamClient_SteamClient020_BShutdownIfAllPipesClosed, + ISteamClient_SteamClient020_GetISteamHTTP, + ISteamClient_SteamClient020_DEPRECATED_GetISteamUnifiedMessages, + ISteamClient_SteamClient020_GetISteamController, + ISteamClient_SteamClient020_GetISteamUGC, + ISteamClient_SteamClient020_GetISteamAppList, + ISteamClient_SteamClient020_GetISteamMusic, + ISteamClient_SteamClient020_GetISteamMusicRemote, + ISteamClient_SteamClient020_GetISteamHTMLSurface, + ISteamClient_SteamClient020_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess, + ISteamClient_SteamClient020_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess, + ISteamClient_SteamClient020_Set_SteamAPI_CCheckCallbackRegisteredInProcess, + ISteamClient_SteamClient020_GetISteamInventory, + ISteamClient_SteamClient020_GetISteamVideo, + ISteamClient_SteamClient020_GetISteamParentalSettings, + ISteamClient_SteamClient020_GetISteamInput, + ISteamClient_SteamClient020_GetISteamParties, + ISteamClient_SteamClient020_GetISteamRemotePlay, + ISteamClient_SteamClient020_DestroyAllInterfaces, + ISteamController_SteamController003_Init, + ISteamController_SteamController003_Shutdown, + ISteamController_SteamController003_RunFrame, + ISteamController_SteamController003_GetConnectedControllers, + ISteamController_SteamController003_ShowBindingPanel, + ISteamController_SteamController003_GetActionSetHandle, + ISteamController_SteamController003_ActivateActionSet, + ISteamController_SteamController003_GetCurrentActionSet, + ISteamController_SteamController003_GetDigitalActionHandle, + ISteamController_SteamController003_GetDigitalActionData, + ISteamController_SteamController003_GetDigitalActionOrigins, + ISteamController_SteamController003_GetAnalogActionHandle, + ISteamController_SteamController003_GetAnalogActionData, + ISteamController_SteamController003_GetAnalogActionOrigins, + ISteamController_SteamController003_StopAnalogActionMomentum, + ISteamController_SteamController003_TriggerHapticPulse, + ISteamController_SteamController003_TriggerRepeatedHapticPulse, + ISteamController_SteamController004_Init, + ISteamController_SteamController004_Shutdown, + ISteamController_SteamController004_RunFrame, + ISteamController_SteamController004_GetConnectedControllers, + ISteamController_SteamController004_ShowBindingPanel, + ISteamController_SteamController004_GetActionSetHandle, + ISteamController_SteamController004_ActivateActionSet, + ISteamController_SteamController004_GetCurrentActionSet, + ISteamController_SteamController004_GetDigitalActionHandle, + ISteamController_SteamController004_GetDigitalActionData, + ISteamController_SteamController004_GetDigitalActionOrigins, + ISteamController_SteamController004_GetAnalogActionHandle, + ISteamController_SteamController004_GetAnalogActionData, + ISteamController_SteamController004_GetAnalogActionOrigins, + ISteamController_SteamController004_StopAnalogActionMomentum, + ISteamController_SteamController004_TriggerHapticPulse, + ISteamController_SteamController004_TriggerRepeatedHapticPulse, + ISteamController_SteamController004_GetGamepadIndexForController, + ISteamController_SteamController004_GetControllerForGamepadIndex, + ISteamController_SteamController004_GetMotionData, + ISteamController_SteamController004_ShowDigitalActionOrigins, + ISteamController_SteamController004_ShowAnalogActionOrigins, + ISteamController_SteamController005_Init, + ISteamController_SteamController005_Shutdown, + ISteamController_SteamController005_RunFrame, + ISteamController_SteamController005_GetConnectedControllers, + ISteamController_SteamController005_ShowBindingPanel, + ISteamController_SteamController005_GetActionSetHandle, + ISteamController_SteamController005_ActivateActionSet, + ISteamController_SteamController005_GetCurrentActionSet, + ISteamController_SteamController005_GetDigitalActionHandle, + ISteamController_SteamController005_GetDigitalActionData, + ISteamController_SteamController005_GetDigitalActionOrigins, + ISteamController_SteamController005_GetAnalogActionHandle, + ISteamController_SteamController005_GetAnalogActionData, + ISteamController_SteamController005_GetAnalogActionOrigins, + ISteamController_SteamController005_StopAnalogActionMomentum, + ISteamController_SteamController005_TriggerHapticPulse, + ISteamController_SteamController005_TriggerRepeatedHapticPulse, + ISteamController_SteamController005_TriggerVibration, + ISteamController_SteamController005_SetLEDColor, + ISteamController_SteamController005_GetGamepadIndexForController, + ISteamController_SteamController005_GetControllerForGamepadIndex, + ISteamController_SteamController005_GetMotionData, + ISteamController_SteamController005_ShowDigitalActionOrigins, + ISteamController_SteamController005_ShowAnalogActionOrigins, + ISteamController_SteamController005_GetStringForActionOrigin, + ISteamController_SteamController005_GetGlyphForActionOrigin, + ISteamController_SteamController006_Init, + ISteamController_SteamController006_Shutdown, + ISteamController_SteamController006_RunFrame, + ISteamController_SteamController006_GetConnectedControllers, + ISteamController_SteamController006_ShowBindingPanel, + ISteamController_SteamController006_GetActionSetHandle, + ISteamController_SteamController006_ActivateActionSet, + ISteamController_SteamController006_GetCurrentActionSet, + ISteamController_SteamController006_ActivateActionSetLayer, + ISteamController_SteamController006_DeactivateActionSetLayer, + ISteamController_SteamController006_DeactivateAllActionSetLayers, + ISteamController_SteamController006_GetActiveActionSetLayers, + ISteamController_SteamController006_GetDigitalActionHandle, + ISteamController_SteamController006_GetDigitalActionData, + ISteamController_SteamController006_GetDigitalActionOrigins, + ISteamController_SteamController006_GetAnalogActionHandle, + ISteamController_SteamController006_GetAnalogActionData, + ISteamController_SteamController006_GetAnalogActionOrigins, + ISteamController_SteamController006_StopAnalogActionMomentum, + ISteamController_SteamController006_TriggerHapticPulse, + ISteamController_SteamController006_TriggerRepeatedHapticPulse, + ISteamController_SteamController006_TriggerVibration, + ISteamController_SteamController006_SetLEDColor, + ISteamController_SteamController006_GetGamepadIndexForController, + ISteamController_SteamController006_GetControllerForGamepadIndex, + ISteamController_SteamController006_GetMotionData, + ISteamController_SteamController006_ShowDigitalActionOrigins, + ISteamController_SteamController006_ShowAnalogActionOrigins, + ISteamController_SteamController006_GetStringForActionOrigin, + ISteamController_SteamController006_GetGlyphForActionOrigin, + ISteamController_SteamController006_GetInputTypeForHandle, + ISteamController_SteamController007_Init, + ISteamController_SteamController007_Shutdown, + ISteamController_SteamController007_RunFrame, + ISteamController_SteamController007_GetConnectedControllers, + ISteamController_SteamController007_GetActionSetHandle, + ISteamController_SteamController007_ActivateActionSet, + ISteamController_SteamController007_GetCurrentActionSet, + ISteamController_SteamController007_ActivateActionSetLayer, + ISteamController_SteamController007_DeactivateActionSetLayer, + ISteamController_SteamController007_DeactivateAllActionSetLayers, + ISteamController_SteamController007_GetActiveActionSetLayers, + ISteamController_SteamController007_GetDigitalActionHandle, + ISteamController_SteamController007_GetDigitalActionData, + ISteamController_SteamController007_GetDigitalActionOrigins, + ISteamController_SteamController007_GetAnalogActionHandle, + ISteamController_SteamController007_GetAnalogActionData, + ISteamController_SteamController007_GetAnalogActionOrigins, + ISteamController_SteamController007_GetGlyphForActionOrigin, + ISteamController_SteamController007_GetStringForActionOrigin, + ISteamController_SteamController007_StopAnalogActionMomentum, + ISteamController_SteamController007_GetMotionData, + ISteamController_SteamController007_TriggerHapticPulse, + ISteamController_SteamController007_TriggerRepeatedHapticPulse, + ISteamController_SteamController007_TriggerVibration, + ISteamController_SteamController007_SetLEDColor, + ISteamController_SteamController007_ShowBindingPanel, + ISteamController_SteamController007_GetInputTypeForHandle, + ISteamController_SteamController007_GetControllerForGamepadIndex, + ISteamController_SteamController007_GetGamepadIndexForController, + ISteamController_SteamController007_GetStringForXboxOrigin, + ISteamController_SteamController007_GetGlyphForXboxOrigin, + ISteamController_SteamController007_GetActionOriginFromXboxOrigin, + ISteamController_SteamController007_TranslateActionOrigin, + ISteamController_SteamController007_GetControllerBindingRevision, + ISteamController_SteamController008_Init, + ISteamController_SteamController008_Shutdown, + ISteamController_SteamController008_RunFrame, + ISteamController_SteamController008_GetConnectedControllers, + ISteamController_SteamController008_GetActionSetHandle, + ISteamController_SteamController008_ActivateActionSet, + ISteamController_SteamController008_GetCurrentActionSet, + ISteamController_SteamController008_ActivateActionSetLayer, + ISteamController_SteamController008_DeactivateActionSetLayer, + ISteamController_SteamController008_DeactivateAllActionSetLayers, + ISteamController_SteamController008_GetActiveActionSetLayers, + ISteamController_SteamController008_GetDigitalActionHandle, + ISteamController_SteamController008_GetDigitalActionData, + ISteamController_SteamController008_GetDigitalActionOrigins, + ISteamController_SteamController008_GetAnalogActionHandle, + ISteamController_SteamController008_GetAnalogActionData, + ISteamController_SteamController008_GetAnalogActionOrigins, + ISteamController_SteamController008_GetGlyphForActionOrigin, + ISteamController_SteamController008_GetStringForActionOrigin, + ISteamController_SteamController008_StopAnalogActionMomentum, + ISteamController_SteamController008_GetMotionData, + ISteamController_SteamController008_TriggerHapticPulse, + ISteamController_SteamController008_TriggerRepeatedHapticPulse, + ISteamController_SteamController008_TriggerVibration, + ISteamController_SteamController008_SetLEDColor, + ISteamController_SteamController008_ShowBindingPanel, + ISteamController_SteamController008_GetInputTypeForHandle, + ISteamController_SteamController008_GetControllerForGamepadIndex, + ISteamController_SteamController008_GetGamepadIndexForController, + ISteamController_SteamController008_GetStringForXboxOrigin, + ISteamController_SteamController008_GetGlyphForXboxOrigin, + ISteamController_SteamController008_GetActionOriginFromXboxOrigin, + ISteamController_SteamController008_TranslateActionOrigin, + ISteamController_SteamController008_GetControllerBindingRevision, + ISteamFriends_SteamFriends001_GetPersonaName, + ISteamFriends_SteamFriends001_SetPersonaName, + ISteamFriends_SteamFriends001_GetPersonaState, + ISteamFriends_SteamFriends001_SetPersonaState, + ISteamFriends_SteamFriends001_AddFriend, + ISteamFriends_SteamFriends001_RemoveFriend, + ISteamFriends_SteamFriends001_HasFriend, + ISteamFriends_SteamFriends001_GetFriendRelationship, + ISteamFriends_SteamFriends001_GetFriendPersonaState, + ISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlayed, + ISteamFriends_SteamFriends001_GetFriendPersonaName, + ISteamFriends_SteamFriends001_AddFriendByName, + ISteamFriends_SteamFriends001_GetFriendCount, + ISteamFriends_SteamFriends001_GetFriendByIndex, + ISteamFriends_SteamFriends001_SendMsgToFriend, + ISteamFriends_SteamFriends001_SetFriendRegValue, + ISteamFriends_SteamFriends001_GetFriendRegValue, + ISteamFriends_SteamFriends001_GetFriendPersonaNameHistory, + ISteamFriends_SteamFriends001_GetChatMessage, + ISteamFriends_SteamFriends001_SendMsgToFriend_2, + ISteamFriends_SteamFriends001_GetChatIDOfChatHistoryStart, + ISteamFriends_SteamFriends001_SetChatHistoryStart, + ISteamFriends_SteamFriends001_ClearChatHistory, + ISteamFriends_SteamFriends001_InviteFriendByEmail, + ISteamFriends_SteamFriends001_GetBlockedFriendCount, + ISteamFriends_SteamFriends001_GetFriendGamePlayed, + ISteamFriends_SteamFriends001_GetFriendGamePlayed2, + ISteamFriends_SteamFriends002_GetPersonaName, + ISteamFriends_SteamFriends002_SetPersonaName, + ISteamFriends_SteamFriends002_GetPersonaState, + ISteamFriends_SteamFriends002_SetPersonaState, + ISteamFriends_SteamFriends002_GetFriendCount, + ISteamFriends_SteamFriends002_GetFriendByIndex, + ISteamFriends_SteamFriends002_GetFriendRelationship, + ISteamFriends_SteamFriends002_GetFriendPersonaState, + ISteamFriends_SteamFriends002_GetFriendPersonaName, + ISteamFriends_SteamFriends002_SetFriendRegValue, + ISteamFriends_SteamFriends002_GetFriendRegValue, + ISteamFriends_SteamFriends002_GetFriendGamePlayed, + ISteamFriends_SteamFriends002_GetFriendPersonaNameHistory, + ISteamFriends_SteamFriends002_AddFriend, + ISteamFriends_SteamFriends002_RemoveFriend, + ISteamFriends_SteamFriends002_HasFriend, + ISteamFriends_SteamFriends002_AddFriendByName, + ISteamFriends_SteamFriends002_InviteFriendByEmail, + ISteamFriends_SteamFriends002_GetChatMessage, + ISteamFriends_SteamFriends002_SendMsgToFriend, + ISteamFriends_SteamFriends002_GetChatIDOfChatHistoryStart, + ISteamFriends_SteamFriends002_SetChatHistoryStart, + ISteamFriends_SteamFriends002_ClearChatHistory, + ISteamFriends_SteamFriends002_GetClanCount, + ISteamFriends_SteamFriends002_GetClanByIndex, + ISteamFriends_SteamFriends002_GetClanName, + ISteamFriends_SteamFriends002_InviteFriendToClan, + ISteamFriends_SteamFriends002_AcknowledgeInviteToClan, + ISteamFriends_SteamFriends002_GetFriendCountFromSource, + ISteamFriends_SteamFriends002_GetFriendFromSourceByIndex, + ISteamFriends_SteamFriends003_GetPersonaName, + ISteamFriends_SteamFriends003_SetPersonaName, + ISteamFriends_SteamFriends003_GetPersonaState, + ISteamFriends_SteamFriends003_GetFriendCount, + ISteamFriends_SteamFriends003_GetFriendByIndex, + ISteamFriends_SteamFriends003_GetFriendRelationship, + ISteamFriends_SteamFriends003_GetFriendPersonaState, + ISteamFriends_SteamFriends003_GetFriendPersonaName, + ISteamFriends_SteamFriends003_GetFriendAvatar, + ISteamFriends_SteamFriends003_GetFriendGamePlayed, + ISteamFriends_SteamFriends003_GetFriendPersonaNameHistory, + ISteamFriends_SteamFriends003_HasFriend, + ISteamFriends_SteamFriends003_GetClanCount, + ISteamFriends_SteamFriends003_GetClanByIndex, + ISteamFriends_SteamFriends003_GetClanName, + ISteamFriends_SteamFriends003_GetFriendCountFromSource, + ISteamFriends_SteamFriends003_GetFriendFromSourceByIndex, + ISteamFriends_SteamFriends003_IsUserInSource, + ISteamFriends_SteamFriends003_SetInGameVoiceSpeaking, + ISteamFriends_SteamFriends003_ActivateGameOverlay, + ISteamFriends_SteamFriends004_GetPersonaName, + ISteamFriends_SteamFriends004_SetPersonaName, + ISteamFriends_SteamFriends004_GetPersonaState, + ISteamFriends_SteamFriends004_GetFriendCount, + ISteamFriends_SteamFriends004_GetFriendByIndex, + ISteamFriends_SteamFriends004_GetFriendRelationship, + ISteamFriends_SteamFriends004_GetFriendPersonaState, + ISteamFriends_SteamFriends004_GetFriendPersonaName, + ISteamFriends_SteamFriends004_GetFriendAvatar, + ISteamFriends_SteamFriends004_GetFriendGamePlayed, + ISteamFriends_SteamFriends004_GetFriendPersonaNameHistory, + ISteamFriends_SteamFriends004_HasFriend, + ISteamFriends_SteamFriends004_GetClanCount, + ISteamFriends_SteamFriends004_GetClanByIndex, + ISteamFriends_SteamFriends004_GetClanName, + ISteamFriends_SteamFriends004_GetFriendCountFromSource, + ISteamFriends_SteamFriends004_GetFriendFromSourceByIndex, + ISteamFriends_SteamFriends004_IsUserInSource, + ISteamFriends_SteamFriends004_SetInGameVoiceSpeaking, + ISteamFriends_SteamFriends004_ActivateGameOverlay, + ISteamFriends_SteamFriends005_GetPersonaName, + ISteamFriends_SteamFriends005_SetPersonaName, + ISteamFriends_SteamFriends005_GetPersonaState, + ISteamFriends_SteamFriends005_GetFriendCount, + ISteamFriends_SteamFriends005_GetFriendByIndex, + ISteamFriends_SteamFriends005_GetFriendRelationship, + ISteamFriends_SteamFriends005_GetFriendPersonaState, + ISteamFriends_SteamFriends005_GetFriendPersonaName, + ISteamFriends_SteamFriends005_GetFriendAvatar, + ISteamFriends_SteamFriends005_GetFriendGamePlayed, + ISteamFriends_SteamFriends005_GetFriendPersonaNameHistory, + ISteamFriends_SteamFriends005_HasFriend, + ISteamFriends_SteamFriends005_GetClanCount, + ISteamFriends_SteamFriends005_GetClanByIndex, + ISteamFriends_SteamFriends005_GetClanName, + ISteamFriends_SteamFriends005_GetFriendCountFromSource, + ISteamFriends_SteamFriends005_GetFriendFromSourceByIndex, + ISteamFriends_SteamFriends005_IsUserInSource, + ISteamFriends_SteamFriends005_SetInGameVoiceSpeaking, + ISteamFriends_SteamFriends005_ActivateGameOverlay, + ISteamFriends_SteamFriends005_ActivateGameOverlayToUser, + ISteamFriends_SteamFriends005_ActivateGameOverlayToWebPage, + ISteamFriends_SteamFriends005_ActivateGameOverlayToStore, + ISteamFriends_SteamFriends005_SetPlayedWith, + ISteamFriends_SteamFriends006_GetPersonaName, + ISteamFriends_SteamFriends006_SetPersonaName, + ISteamFriends_SteamFriends006_GetPersonaState, + ISteamFriends_SteamFriends006_GetFriendCount, + ISteamFriends_SteamFriends006_GetFriendByIndex, + ISteamFriends_SteamFriends006_GetFriendRelationship, + ISteamFriends_SteamFriends006_GetFriendPersonaState, + ISteamFriends_SteamFriends006_GetFriendPersonaName, + ISteamFriends_SteamFriends006_GetFriendAvatar, + ISteamFriends_SteamFriends006_GetFriendGamePlayed, + ISteamFriends_SteamFriends006_GetFriendPersonaNameHistory, + ISteamFriends_SteamFriends006_HasFriend, + ISteamFriends_SteamFriends006_GetClanCount, + ISteamFriends_SteamFriends006_GetClanByIndex, + ISteamFriends_SteamFriends006_GetClanName, + ISteamFriends_SteamFriends006_GetClanTag, + ISteamFriends_SteamFriends006_GetFriendCountFromSource, + ISteamFriends_SteamFriends006_GetFriendFromSourceByIndex, + ISteamFriends_SteamFriends006_IsUserInSource, + ISteamFriends_SteamFriends006_SetInGameVoiceSpeaking, + ISteamFriends_SteamFriends006_ActivateGameOverlay, + ISteamFriends_SteamFriends006_ActivateGameOverlayToUser, + ISteamFriends_SteamFriends006_ActivateGameOverlayToWebPage, + ISteamFriends_SteamFriends006_ActivateGameOverlayToStore, + ISteamFriends_SteamFriends006_SetPlayedWith, + ISteamFriends_SteamFriends006_ActivateGameOverlayInviteDialog, + ISteamFriends_SteamFriends007_GetPersonaName, + ISteamFriends_SteamFriends007_SetPersonaName, + ISteamFriends_SteamFriends007_GetPersonaState, + ISteamFriends_SteamFriends007_GetFriendCount, + ISteamFriends_SteamFriends007_GetFriendByIndex, + ISteamFriends_SteamFriends007_GetFriendRelationship, + ISteamFriends_SteamFriends007_GetFriendPersonaState, + ISteamFriends_SteamFriends007_GetFriendPersonaName, + ISteamFriends_SteamFriends007_GetFriendGamePlayed, + ISteamFriends_SteamFriends007_GetFriendPersonaNameHistory, + ISteamFriends_SteamFriends007_HasFriend, + ISteamFriends_SteamFriends007_GetClanCount, + ISteamFriends_SteamFriends007_GetClanByIndex, + ISteamFriends_SteamFriends007_GetClanName, + ISteamFriends_SteamFriends007_GetClanTag, + ISteamFriends_SteamFriends007_GetFriendCountFromSource, + ISteamFriends_SteamFriends007_GetFriendFromSourceByIndex, + ISteamFriends_SteamFriends007_IsUserInSource, + ISteamFriends_SteamFriends007_SetInGameVoiceSpeaking, + ISteamFriends_SteamFriends007_ActivateGameOverlay, + ISteamFriends_SteamFriends007_ActivateGameOverlayToUser, + ISteamFriends_SteamFriends007_ActivateGameOverlayToWebPage, + ISteamFriends_SteamFriends007_ActivateGameOverlayToStore, + ISteamFriends_SteamFriends007_SetPlayedWith, + ISteamFriends_SteamFriends007_ActivateGameOverlayInviteDialog, + ISteamFriends_SteamFriends007_GetSmallFriendAvatar, + ISteamFriends_SteamFriends007_GetMediumFriendAvatar, + ISteamFriends_SteamFriends007_GetLargeFriendAvatar, + ISteamFriends_SteamFriends008_GetPersonaName, + ISteamFriends_SteamFriends008_SetPersonaName, + ISteamFriends_SteamFriends008_GetPersonaState, + ISteamFriends_SteamFriends008_GetFriendCount, + ISteamFriends_SteamFriends008_GetFriendByIndex, + ISteamFriends_SteamFriends008_GetFriendRelationship, + ISteamFriends_SteamFriends008_GetFriendPersonaState, + ISteamFriends_SteamFriends008_GetFriendPersonaName, + ISteamFriends_SteamFriends008_GetFriendGamePlayed, + ISteamFriends_SteamFriends008_GetFriendPersonaNameHistory, + ISteamFriends_SteamFriends008_HasFriend, + ISteamFriends_SteamFriends008_GetClanCount, + ISteamFriends_SteamFriends008_GetClanByIndex, + ISteamFriends_SteamFriends008_GetClanName, + ISteamFriends_SteamFriends008_GetClanTag, + ISteamFriends_SteamFriends008_GetFriendCountFromSource, + ISteamFriends_SteamFriends008_GetFriendFromSourceByIndex, + ISteamFriends_SteamFriends008_IsUserInSource, + ISteamFriends_SteamFriends008_SetInGameVoiceSpeaking, + ISteamFriends_SteamFriends008_ActivateGameOverlay, + ISteamFriends_SteamFriends008_ActivateGameOverlayToUser, + ISteamFriends_SteamFriends008_ActivateGameOverlayToWebPage, + ISteamFriends_SteamFriends008_ActivateGameOverlayToStore, + ISteamFriends_SteamFriends008_SetPlayedWith, + ISteamFriends_SteamFriends008_ActivateGameOverlayInviteDialog, + ISteamFriends_SteamFriends008_GetSmallFriendAvatar, + ISteamFriends_SteamFriends008_GetMediumFriendAvatar, + ISteamFriends_SteamFriends008_GetLargeFriendAvatar, + ISteamFriends_SteamFriends008_RequestUserInformation, + ISteamFriends_SteamFriends008_RequestClanOfficerList, + ISteamFriends_SteamFriends008_GetClanOwner, + ISteamFriends_SteamFriends008_GetClanOfficerCount, + ISteamFriends_SteamFriends008_GetClanOfficerByIndex, + ISteamFriends_SteamFriends008_GetUserRestrictions, + ISteamFriends_SteamFriends009_GetPersonaName, + ISteamFriends_SteamFriends009_SetPersonaName, + ISteamFriends_SteamFriends009_GetPersonaState, + ISteamFriends_SteamFriends009_GetFriendCount, + ISteamFriends_SteamFriends009_GetFriendByIndex, + ISteamFriends_SteamFriends009_GetFriendRelationship, + ISteamFriends_SteamFriends009_GetFriendPersonaState, + ISteamFriends_SteamFriends009_GetFriendPersonaName, + ISteamFriends_SteamFriends009_GetFriendGamePlayed, + ISteamFriends_SteamFriends009_GetFriendPersonaNameHistory, + ISteamFriends_SteamFriends009_HasFriend, + ISteamFriends_SteamFriends009_GetClanCount, + ISteamFriends_SteamFriends009_GetClanByIndex, + ISteamFriends_SteamFriends009_GetClanName, + ISteamFriends_SteamFriends009_GetClanTag, + ISteamFriends_SteamFriends009_GetFriendCountFromSource, + ISteamFriends_SteamFriends009_GetFriendFromSourceByIndex, + ISteamFriends_SteamFriends009_IsUserInSource, + ISteamFriends_SteamFriends009_SetInGameVoiceSpeaking, + ISteamFriends_SteamFriends009_ActivateGameOverlay, + ISteamFriends_SteamFriends009_ActivateGameOverlayToUser, + ISteamFriends_SteamFriends009_ActivateGameOverlayToWebPage, + ISteamFriends_SteamFriends009_ActivateGameOverlayToStore, + ISteamFriends_SteamFriends009_SetPlayedWith, + ISteamFriends_SteamFriends009_ActivateGameOverlayInviteDialog, + ISteamFriends_SteamFriends009_GetSmallFriendAvatar, + ISteamFriends_SteamFriends009_GetMediumFriendAvatar, + ISteamFriends_SteamFriends009_GetLargeFriendAvatar, + ISteamFriends_SteamFriends009_RequestUserInformation, + ISteamFriends_SteamFriends009_RequestClanOfficerList, + ISteamFriends_SteamFriends009_GetClanOwner, + ISteamFriends_SteamFriends009_GetClanOfficerCount, + ISteamFriends_SteamFriends009_GetClanOfficerByIndex, + ISteamFriends_SteamFriends009_GetUserRestrictions, + ISteamFriends_SteamFriends009_SetRichPresence, + ISteamFriends_SteamFriends009_ClearRichPresence, + ISteamFriends_SteamFriends009_GetFriendRichPresence, + ISteamFriends_SteamFriends009_GetFriendRichPresenceKeyCount, + ISteamFriends_SteamFriends009_GetFriendRichPresenceKeyByIndex, + ISteamFriends_SteamFriends009_InviteUserToGame, + ISteamFriends_SteamFriends009_GetCoplayFriendCount, + ISteamFriends_SteamFriends009_GetCoplayFriend, + ISteamFriends_SteamFriends009_GetFriendCoplayTime, + ISteamFriends_SteamFriends009_GetFriendCoplayGame, + ISteamFriends_SteamFriends010_GetPersonaName, + ISteamFriends_SteamFriends010_SetPersonaName, + ISteamFriends_SteamFriends010_GetPersonaState, + ISteamFriends_SteamFriends010_GetFriendCount, + ISteamFriends_SteamFriends010_GetFriendByIndex, + ISteamFriends_SteamFriends010_GetFriendRelationship, + ISteamFriends_SteamFriends010_GetFriendPersonaState, + ISteamFriends_SteamFriends010_GetFriendPersonaName, + ISteamFriends_SteamFriends010_GetFriendGamePlayed, + ISteamFriends_SteamFriends010_GetFriendPersonaNameHistory, + ISteamFriends_SteamFriends010_HasFriend, + ISteamFriends_SteamFriends010_GetClanCount, + ISteamFriends_SteamFriends010_GetClanByIndex, + ISteamFriends_SteamFriends010_GetClanName, + ISteamFriends_SteamFriends010_GetClanTag, + ISteamFriends_SteamFriends010_GetClanActivityCounts, + ISteamFriends_SteamFriends010_DownloadClanActivityCounts, + ISteamFriends_SteamFriends010_GetFriendCountFromSource, + ISteamFriends_SteamFriends010_GetFriendFromSourceByIndex, + ISteamFriends_SteamFriends010_IsUserInSource, + ISteamFriends_SteamFriends010_SetInGameVoiceSpeaking, + ISteamFriends_SteamFriends010_ActivateGameOverlay, + ISteamFriends_SteamFriends010_ActivateGameOverlayToUser, + ISteamFriends_SteamFriends010_ActivateGameOverlayToWebPage, + ISteamFriends_SteamFriends010_ActivateGameOverlayToStore, + ISteamFriends_SteamFriends010_SetPlayedWith, + ISteamFriends_SteamFriends010_ActivateGameOverlayInviteDialog, + ISteamFriends_SteamFriends010_GetSmallFriendAvatar, + ISteamFriends_SteamFriends010_GetMediumFriendAvatar, + ISteamFriends_SteamFriends010_GetLargeFriendAvatar, + ISteamFriends_SteamFriends010_RequestUserInformation, + ISteamFriends_SteamFriends010_RequestClanOfficerList, + ISteamFriends_SteamFriends010_GetClanOwner, + ISteamFriends_SteamFriends010_GetClanOfficerCount, + ISteamFriends_SteamFriends010_GetClanOfficerByIndex, + ISteamFriends_SteamFriends010_GetUserRestrictions, + ISteamFriends_SteamFriends010_SetRichPresence, + ISteamFriends_SteamFriends010_ClearRichPresence, + ISteamFriends_SteamFriends010_GetFriendRichPresence, + ISteamFriends_SteamFriends010_GetFriendRichPresenceKeyCount, + ISteamFriends_SteamFriends010_GetFriendRichPresenceKeyByIndex, + ISteamFriends_SteamFriends010_InviteUserToGame, + ISteamFriends_SteamFriends010_GetCoplayFriendCount, + ISteamFriends_SteamFriends010_GetCoplayFriend, + ISteamFriends_SteamFriends010_GetFriendCoplayTime, + ISteamFriends_SteamFriends010_GetFriendCoplayGame, + ISteamFriends_SteamFriends010_JoinClanChatRoom, + ISteamFriends_SteamFriends010_LeaveClanChatRoom, + ISteamFriends_SteamFriends010_GetClanChatMemberCount, + ISteamFriends_SteamFriends010_GetChatMemberByIndex, + ISteamFriends_SteamFriends010_SendClanChatMessage, + ISteamFriends_SteamFriends010_GetClanChatMessage, + ISteamFriends_SteamFriends010_IsClanChatAdmin, + ISteamFriends_SteamFriends010_IsClanChatWindowOpenInSteam, + ISteamFriends_SteamFriends010_OpenClanChatWindowInSteam, + ISteamFriends_SteamFriends010_CloseClanChatWindowInSteam, + ISteamFriends_SteamFriends010_SetListenForFriendsMessages, + ISteamFriends_SteamFriends010_ReplyToFriendMessage, + ISteamFriends_SteamFriends010_GetFriendMessage, + ISteamFriends_SteamFriends011_GetPersonaName, + ISteamFriends_SteamFriends011_SetPersonaName, + ISteamFriends_SteamFriends011_GetPersonaState, + ISteamFriends_SteamFriends011_GetFriendCount, + ISteamFriends_SteamFriends011_GetFriendByIndex, + ISteamFriends_SteamFriends011_GetFriendRelationship, + ISteamFriends_SteamFriends011_GetFriendPersonaState, + ISteamFriends_SteamFriends011_GetFriendPersonaName, + ISteamFriends_SteamFriends011_GetFriendGamePlayed, + ISteamFriends_SteamFriends011_GetFriendPersonaNameHistory, + ISteamFriends_SteamFriends011_HasFriend, + ISteamFriends_SteamFriends011_GetClanCount, + ISteamFriends_SteamFriends011_GetClanByIndex, + ISteamFriends_SteamFriends011_GetClanName, + ISteamFriends_SteamFriends011_GetClanTag, + ISteamFriends_SteamFriends011_GetClanActivityCounts, + ISteamFriends_SteamFriends011_DownloadClanActivityCounts, + ISteamFriends_SteamFriends011_GetFriendCountFromSource, + ISteamFriends_SteamFriends011_GetFriendFromSourceByIndex, + ISteamFriends_SteamFriends011_IsUserInSource, + ISteamFriends_SteamFriends011_SetInGameVoiceSpeaking, + ISteamFriends_SteamFriends011_ActivateGameOverlay, + ISteamFriends_SteamFriends011_ActivateGameOverlayToUser, + ISteamFriends_SteamFriends011_ActivateGameOverlayToWebPage, + ISteamFriends_SteamFriends011_ActivateGameOverlayToStore, + ISteamFriends_SteamFriends011_SetPlayedWith, + ISteamFriends_SteamFriends011_ActivateGameOverlayInviteDialog, + ISteamFriends_SteamFriends011_GetSmallFriendAvatar, + ISteamFriends_SteamFriends011_GetMediumFriendAvatar, + ISteamFriends_SteamFriends011_GetLargeFriendAvatar, + ISteamFriends_SteamFriends011_RequestUserInformation, + ISteamFriends_SteamFriends011_RequestClanOfficerList, + ISteamFriends_SteamFriends011_GetClanOwner, + ISteamFriends_SteamFriends011_GetClanOfficerCount, + ISteamFriends_SteamFriends011_GetClanOfficerByIndex, + ISteamFriends_SteamFriends011_GetUserRestrictions, + ISteamFriends_SteamFriends011_SetRichPresence, + ISteamFriends_SteamFriends011_ClearRichPresence, + ISteamFriends_SteamFriends011_GetFriendRichPresence, + ISteamFriends_SteamFriends011_GetFriendRichPresenceKeyCount, + ISteamFriends_SteamFriends011_GetFriendRichPresenceKeyByIndex, + ISteamFriends_SteamFriends011_RequestFriendRichPresence, + ISteamFriends_SteamFriends011_InviteUserToGame, + ISteamFriends_SteamFriends011_GetCoplayFriendCount, + ISteamFriends_SteamFriends011_GetCoplayFriend, + ISteamFriends_SteamFriends011_GetFriendCoplayTime, + ISteamFriends_SteamFriends011_GetFriendCoplayGame, + ISteamFriends_SteamFriends011_JoinClanChatRoom, + ISteamFriends_SteamFriends011_LeaveClanChatRoom, + ISteamFriends_SteamFriends011_GetClanChatMemberCount, + ISteamFriends_SteamFriends011_GetChatMemberByIndex, + ISteamFriends_SteamFriends011_SendClanChatMessage, + ISteamFriends_SteamFriends011_GetClanChatMessage, + ISteamFriends_SteamFriends011_IsClanChatAdmin, + ISteamFriends_SteamFriends011_IsClanChatWindowOpenInSteam, + ISteamFriends_SteamFriends011_OpenClanChatWindowInSteam, + ISteamFriends_SteamFriends011_CloseClanChatWindowInSteam, + ISteamFriends_SteamFriends011_SetListenForFriendsMessages, + ISteamFriends_SteamFriends011_ReplyToFriendMessage, + ISteamFriends_SteamFriends011_GetFriendMessage, + ISteamFriends_SteamFriends011_GetFollowerCount, + ISteamFriends_SteamFriends011_IsFollowing, + ISteamFriends_SteamFriends011_EnumerateFollowingList, + ISteamFriends_SteamFriends012_GetPersonaName, + ISteamFriends_SteamFriends012_SetPersonaName, + ISteamFriends_SteamFriends012_GetPersonaState, + ISteamFriends_SteamFriends012_GetFriendCount, + ISteamFriends_SteamFriends012_GetFriendByIndex, + ISteamFriends_SteamFriends012_GetFriendRelationship, + ISteamFriends_SteamFriends012_GetFriendPersonaState, + ISteamFriends_SteamFriends012_GetFriendPersonaName, + ISteamFriends_SteamFriends012_GetFriendGamePlayed, + ISteamFriends_SteamFriends012_GetFriendPersonaNameHistory, + ISteamFriends_SteamFriends012_HasFriend, + ISteamFriends_SteamFriends012_GetClanCount, + ISteamFriends_SteamFriends012_GetClanByIndex, + ISteamFriends_SteamFriends012_GetClanName, + ISteamFriends_SteamFriends012_GetClanTag, + ISteamFriends_SteamFriends012_GetClanActivityCounts, + ISteamFriends_SteamFriends012_DownloadClanActivityCounts, + ISteamFriends_SteamFriends012_GetFriendCountFromSource, + ISteamFriends_SteamFriends012_GetFriendFromSourceByIndex, + ISteamFriends_SteamFriends012_IsUserInSource, + ISteamFriends_SteamFriends012_SetInGameVoiceSpeaking, + ISteamFriends_SteamFriends012_ActivateGameOverlay, + ISteamFriends_SteamFriends012_ActivateGameOverlayToUser, + ISteamFriends_SteamFriends012_ActivateGameOverlayToWebPage, + ISteamFriends_SteamFriends012_ActivateGameOverlayToStore, + ISteamFriends_SteamFriends012_SetPlayedWith, + ISteamFriends_SteamFriends012_ActivateGameOverlayInviteDialog, + ISteamFriends_SteamFriends012_GetSmallFriendAvatar, + ISteamFriends_SteamFriends012_GetMediumFriendAvatar, + ISteamFriends_SteamFriends012_GetLargeFriendAvatar, + ISteamFriends_SteamFriends012_RequestUserInformation, + ISteamFriends_SteamFriends012_RequestClanOfficerList, + ISteamFriends_SteamFriends012_GetClanOwner, + ISteamFriends_SteamFriends012_GetClanOfficerCount, + ISteamFriends_SteamFriends012_GetClanOfficerByIndex, + ISteamFriends_SteamFriends012_GetUserRestrictions, + ISteamFriends_SteamFriends012_SetRichPresence, + ISteamFriends_SteamFriends012_ClearRichPresence, + ISteamFriends_SteamFriends012_GetFriendRichPresence, + ISteamFriends_SteamFriends012_GetFriendRichPresenceKeyCount, + ISteamFriends_SteamFriends012_GetFriendRichPresenceKeyByIndex, + ISteamFriends_SteamFriends012_RequestFriendRichPresence, + ISteamFriends_SteamFriends012_InviteUserToGame, + ISteamFriends_SteamFriends012_GetCoplayFriendCount, + ISteamFriends_SteamFriends012_GetCoplayFriend, + ISteamFriends_SteamFriends012_GetFriendCoplayTime, + ISteamFriends_SteamFriends012_GetFriendCoplayGame, + ISteamFriends_SteamFriends012_JoinClanChatRoom, + ISteamFriends_SteamFriends012_LeaveClanChatRoom, + ISteamFriends_SteamFriends012_GetClanChatMemberCount, + ISteamFriends_SteamFriends012_GetChatMemberByIndex, + ISteamFriends_SteamFriends012_SendClanChatMessage, + ISteamFriends_SteamFriends012_GetClanChatMessage, + ISteamFriends_SteamFriends012_IsClanChatAdmin, + ISteamFriends_SteamFriends012_IsClanChatWindowOpenInSteam, + ISteamFriends_SteamFriends012_OpenClanChatWindowInSteam, + ISteamFriends_SteamFriends012_CloseClanChatWindowInSteam, + ISteamFriends_SteamFriends012_SetListenForFriendsMessages, + ISteamFriends_SteamFriends012_ReplyToFriendMessage, + ISteamFriends_SteamFriends012_GetFriendMessage, + ISteamFriends_SteamFriends012_GetFollowerCount, + ISteamFriends_SteamFriends012_IsFollowing, + ISteamFriends_SteamFriends012_EnumerateFollowingList, + ISteamFriends_SteamFriends013_GetPersonaName, + ISteamFriends_SteamFriends013_SetPersonaName, + ISteamFriends_SteamFriends013_GetPersonaState, + ISteamFriends_SteamFriends013_GetFriendCount, + ISteamFriends_SteamFriends013_GetFriendByIndex, + ISteamFriends_SteamFriends013_GetFriendRelationship, + ISteamFriends_SteamFriends013_GetFriendPersonaState, + ISteamFriends_SteamFriends013_GetFriendPersonaName, + ISteamFriends_SteamFriends013_GetFriendGamePlayed, + ISteamFriends_SteamFriends013_GetFriendPersonaNameHistory, + ISteamFriends_SteamFriends013_HasFriend, + ISteamFriends_SteamFriends013_GetClanCount, + ISteamFriends_SteamFriends013_GetClanByIndex, + ISteamFriends_SteamFriends013_GetClanName, + ISteamFriends_SteamFriends013_GetClanTag, + ISteamFriends_SteamFriends013_GetClanActivityCounts, + ISteamFriends_SteamFriends013_DownloadClanActivityCounts, + ISteamFriends_SteamFriends013_GetFriendCountFromSource, + ISteamFriends_SteamFriends013_GetFriendFromSourceByIndex, + ISteamFriends_SteamFriends013_IsUserInSource, + ISteamFriends_SteamFriends013_SetInGameVoiceSpeaking, + ISteamFriends_SteamFriends013_ActivateGameOverlay, + ISteamFriends_SteamFriends013_ActivateGameOverlayToUser, + ISteamFriends_SteamFriends013_ActivateGameOverlayToWebPage, + ISteamFriends_SteamFriends013_ActivateGameOverlayToStore, + ISteamFriends_SteamFriends013_SetPlayedWith, + ISteamFriends_SteamFriends013_ActivateGameOverlayInviteDialog, + ISteamFriends_SteamFriends013_GetSmallFriendAvatar, + ISteamFriends_SteamFriends013_GetMediumFriendAvatar, + ISteamFriends_SteamFriends013_GetLargeFriendAvatar, + ISteamFriends_SteamFriends013_RequestUserInformation, + ISteamFriends_SteamFriends013_RequestClanOfficerList, + ISteamFriends_SteamFriends013_GetClanOwner, + ISteamFriends_SteamFriends013_GetClanOfficerCount, + ISteamFriends_SteamFriends013_GetClanOfficerByIndex, + ISteamFriends_SteamFriends013_GetUserRestrictions, + ISteamFriends_SteamFriends013_SetRichPresence, + ISteamFriends_SteamFriends013_ClearRichPresence, + ISteamFriends_SteamFriends013_GetFriendRichPresence, + ISteamFriends_SteamFriends013_GetFriendRichPresenceKeyCount, + ISteamFriends_SteamFriends013_GetFriendRichPresenceKeyByIndex, + ISteamFriends_SteamFriends013_RequestFriendRichPresence, + ISteamFriends_SteamFriends013_InviteUserToGame, + ISteamFriends_SteamFriends013_GetCoplayFriendCount, + ISteamFriends_SteamFriends013_GetCoplayFriend, + ISteamFriends_SteamFriends013_GetFriendCoplayTime, + ISteamFriends_SteamFriends013_GetFriendCoplayGame, + ISteamFriends_SteamFriends013_JoinClanChatRoom, + ISteamFriends_SteamFriends013_LeaveClanChatRoom, + ISteamFriends_SteamFriends013_GetClanChatMemberCount, + ISteamFriends_SteamFriends013_GetChatMemberByIndex, + ISteamFriends_SteamFriends013_SendClanChatMessage, + ISteamFriends_SteamFriends013_GetClanChatMessage, + ISteamFriends_SteamFriends013_IsClanChatAdmin, + ISteamFriends_SteamFriends013_IsClanChatWindowOpenInSteam, + ISteamFriends_SteamFriends013_OpenClanChatWindowInSteam, + ISteamFriends_SteamFriends013_CloseClanChatWindowInSteam, + ISteamFriends_SteamFriends013_SetListenForFriendsMessages, + ISteamFriends_SteamFriends013_ReplyToFriendMessage, + ISteamFriends_SteamFriends013_GetFriendMessage, + ISteamFriends_SteamFriends013_GetFollowerCount, + ISteamFriends_SteamFriends013_IsFollowing, + ISteamFriends_SteamFriends013_EnumerateFollowingList, + ISteamFriends_SteamFriends014_GetPersonaName, + ISteamFriends_SteamFriends014_SetPersonaName, + ISteamFriends_SteamFriends014_GetPersonaState, + ISteamFriends_SteamFriends014_GetFriendCount, + ISteamFriends_SteamFriends014_GetFriendByIndex, + ISteamFriends_SteamFriends014_GetFriendRelationship, + ISteamFriends_SteamFriends014_GetFriendPersonaState, + ISteamFriends_SteamFriends014_GetFriendPersonaName, + ISteamFriends_SteamFriends014_GetFriendGamePlayed, + ISteamFriends_SteamFriends014_GetFriendPersonaNameHistory, + ISteamFriends_SteamFriends014_GetPlayerNickname, + ISteamFriends_SteamFriends014_HasFriend, + ISteamFriends_SteamFriends014_GetClanCount, + ISteamFriends_SteamFriends014_GetClanByIndex, + ISteamFriends_SteamFriends014_GetClanName, + ISteamFriends_SteamFriends014_GetClanTag, + ISteamFriends_SteamFriends014_GetClanActivityCounts, + ISteamFriends_SteamFriends014_DownloadClanActivityCounts, + ISteamFriends_SteamFriends014_GetFriendCountFromSource, + ISteamFriends_SteamFriends014_GetFriendFromSourceByIndex, + ISteamFriends_SteamFriends014_IsUserInSource, + ISteamFriends_SteamFriends014_SetInGameVoiceSpeaking, + ISteamFriends_SteamFriends014_ActivateGameOverlay, + ISteamFriends_SteamFriends014_ActivateGameOverlayToUser, + ISteamFriends_SteamFriends014_ActivateGameOverlayToWebPage, + ISteamFriends_SteamFriends014_ActivateGameOverlayToStore, + ISteamFriends_SteamFriends014_SetPlayedWith, + ISteamFriends_SteamFriends014_ActivateGameOverlayInviteDialog, + ISteamFriends_SteamFriends014_GetSmallFriendAvatar, + ISteamFriends_SteamFriends014_GetMediumFriendAvatar, + ISteamFriends_SteamFriends014_GetLargeFriendAvatar, + ISteamFriends_SteamFriends014_RequestUserInformation, + ISteamFriends_SteamFriends014_RequestClanOfficerList, + ISteamFriends_SteamFriends014_GetClanOwner, + ISteamFriends_SteamFriends014_GetClanOfficerCount, + ISteamFriends_SteamFriends014_GetClanOfficerByIndex, + ISteamFriends_SteamFriends014_GetUserRestrictions, + ISteamFriends_SteamFriends014_SetRichPresence, + ISteamFriends_SteamFriends014_ClearRichPresence, + ISteamFriends_SteamFriends014_GetFriendRichPresence, + ISteamFriends_SteamFriends014_GetFriendRichPresenceKeyCount, + ISteamFriends_SteamFriends014_GetFriendRichPresenceKeyByIndex, + ISteamFriends_SteamFriends014_RequestFriendRichPresence, + ISteamFriends_SteamFriends014_InviteUserToGame, + ISteamFriends_SteamFriends014_GetCoplayFriendCount, + ISteamFriends_SteamFriends014_GetCoplayFriend, + ISteamFriends_SteamFriends014_GetFriendCoplayTime, + ISteamFriends_SteamFriends014_GetFriendCoplayGame, + ISteamFriends_SteamFriends014_JoinClanChatRoom, + ISteamFriends_SteamFriends014_LeaveClanChatRoom, + ISteamFriends_SteamFriends014_GetClanChatMemberCount, + ISteamFriends_SteamFriends014_GetChatMemberByIndex, + ISteamFriends_SteamFriends014_SendClanChatMessage, + ISteamFriends_SteamFriends014_GetClanChatMessage, + ISteamFriends_SteamFriends014_IsClanChatAdmin, + ISteamFriends_SteamFriends014_IsClanChatWindowOpenInSteam, + ISteamFriends_SteamFriends014_OpenClanChatWindowInSteam, + ISteamFriends_SteamFriends014_CloseClanChatWindowInSteam, + ISteamFriends_SteamFriends014_SetListenForFriendsMessages, + ISteamFriends_SteamFriends014_ReplyToFriendMessage, + ISteamFriends_SteamFriends014_GetFriendMessage, + ISteamFriends_SteamFriends014_GetFollowerCount, + ISteamFriends_SteamFriends014_IsFollowing, + ISteamFriends_SteamFriends014_EnumerateFollowingList, + ISteamFriends_SteamFriends015_GetPersonaName, + ISteamFriends_SteamFriends015_SetPersonaName, + ISteamFriends_SteamFriends015_GetPersonaState, + ISteamFriends_SteamFriends015_GetFriendCount, + ISteamFriends_SteamFriends015_GetFriendByIndex, + ISteamFriends_SteamFriends015_GetFriendRelationship, + ISteamFriends_SteamFriends015_GetFriendPersonaState, + ISteamFriends_SteamFriends015_GetFriendPersonaName, + ISteamFriends_SteamFriends015_GetFriendGamePlayed, + ISteamFriends_SteamFriends015_GetFriendPersonaNameHistory, + ISteamFriends_SteamFriends015_GetFriendSteamLevel, + ISteamFriends_SteamFriends015_GetPlayerNickname, + ISteamFriends_SteamFriends015_GetFriendsGroupCount, + ISteamFriends_SteamFriends015_GetFriendsGroupIDByIndex, + ISteamFriends_SteamFriends015_GetFriendsGroupName, + ISteamFriends_SteamFriends015_GetFriendsGroupMembersCount, + ISteamFriends_SteamFriends015_GetFriendsGroupMembersList, + ISteamFriends_SteamFriends015_HasFriend, + ISteamFriends_SteamFriends015_GetClanCount, + ISteamFriends_SteamFriends015_GetClanByIndex, + ISteamFriends_SteamFriends015_GetClanName, + ISteamFriends_SteamFriends015_GetClanTag, + ISteamFriends_SteamFriends015_GetClanActivityCounts, + ISteamFriends_SteamFriends015_DownloadClanActivityCounts, + ISteamFriends_SteamFriends015_GetFriendCountFromSource, + ISteamFriends_SteamFriends015_GetFriendFromSourceByIndex, + ISteamFriends_SteamFriends015_IsUserInSource, + ISteamFriends_SteamFriends015_SetInGameVoiceSpeaking, + ISteamFriends_SteamFriends015_ActivateGameOverlay, + ISteamFriends_SteamFriends015_ActivateGameOverlayToUser, + ISteamFriends_SteamFriends015_ActivateGameOverlayToWebPage, + ISteamFriends_SteamFriends015_ActivateGameOverlayToStore, + ISteamFriends_SteamFriends015_SetPlayedWith, + ISteamFriends_SteamFriends015_ActivateGameOverlayInviteDialog, + ISteamFriends_SteamFriends015_GetSmallFriendAvatar, + ISteamFriends_SteamFriends015_GetMediumFriendAvatar, + ISteamFriends_SteamFriends015_GetLargeFriendAvatar, + ISteamFriends_SteamFriends015_RequestUserInformation, + ISteamFriends_SteamFriends015_RequestClanOfficerList, + ISteamFriends_SteamFriends015_GetClanOwner, + ISteamFriends_SteamFriends015_GetClanOfficerCount, + ISteamFriends_SteamFriends015_GetClanOfficerByIndex, + ISteamFriends_SteamFriends015_GetUserRestrictions, + ISteamFriends_SteamFriends015_SetRichPresence, + ISteamFriends_SteamFriends015_ClearRichPresence, + ISteamFriends_SteamFriends015_GetFriendRichPresence, + ISteamFriends_SteamFriends015_GetFriendRichPresenceKeyCount, + ISteamFriends_SteamFriends015_GetFriendRichPresenceKeyByIndex, + ISteamFriends_SteamFriends015_RequestFriendRichPresence, + ISteamFriends_SteamFriends015_InviteUserToGame, + ISteamFriends_SteamFriends015_GetCoplayFriendCount, + ISteamFriends_SteamFriends015_GetCoplayFriend, + ISteamFriends_SteamFriends015_GetFriendCoplayTime, + ISteamFriends_SteamFriends015_GetFriendCoplayGame, + ISteamFriends_SteamFriends015_JoinClanChatRoom, + ISteamFriends_SteamFriends015_LeaveClanChatRoom, + ISteamFriends_SteamFriends015_GetClanChatMemberCount, + ISteamFriends_SteamFriends015_GetChatMemberByIndex, + ISteamFriends_SteamFriends015_SendClanChatMessage, + ISteamFriends_SteamFriends015_GetClanChatMessage, + ISteamFriends_SteamFriends015_IsClanChatAdmin, + ISteamFriends_SteamFriends015_IsClanChatWindowOpenInSteam, + ISteamFriends_SteamFriends015_OpenClanChatWindowInSteam, + ISteamFriends_SteamFriends015_CloseClanChatWindowInSteam, + ISteamFriends_SteamFriends015_SetListenForFriendsMessages, + ISteamFriends_SteamFriends015_ReplyToFriendMessage, + ISteamFriends_SteamFriends015_GetFriendMessage, + ISteamFriends_SteamFriends015_GetFollowerCount, + ISteamFriends_SteamFriends015_IsFollowing, + ISteamFriends_SteamFriends015_EnumerateFollowingList, + ISteamFriends_SteamFriends015_IsClanPublic, + ISteamFriends_SteamFriends015_IsClanOfficialGameGroup, + ISteamFriends_SteamFriends017_GetPersonaName, + ISteamFriends_SteamFriends017_SetPersonaName, + ISteamFriends_SteamFriends017_GetPersonaState, + ISteamFriends_SteamFriends017_GetFriendCount, + ISteamFriends_SteamFriends017_GetFriendByIndex, + ISteamFriends_SteamFriends017_GetFriendRelationship, + ISteamFriends_SteamFriends017_GetFriendPersonaState, + ISteamFriends_SteamFriends017_GetFriendPersonaName, + ISteamFriends_SteamFriends017_GetFriendGamePlayed, + ISteamFriends_SteamFriends017_GetFriendPersonaNameHistory, + ISteamFriends_SteamFriends017_GetFriendSteamLevel, + ISteamFriends_SteamFriends017_GetPlayerNickname, + ISteamFriends_SteamFriends017_GetFriendsGroupCount, + ISteamFriends_SteamFriends017_GetFriendsGroupIDByIndex, + ISteamFriends_SteamFriends017_GetFriendsGroupName, + ISteamFriends_SteamFriends017_GetFriendsGroupMembersCount, + ISteamFriends_SteamFriends017_GetFriendsGroupMembersList, + ISteamFriends_SteamFriends017_HasFriend, + ISteamFriends_SteamFriends017_GetClanCount, + ISteamFriends_SteamFriends017_GetClanByIndex, + ISteamFriends_SteamFriends017_GetClanName, + ISteamFriends_SteamFriends017_GetClanTag, + ISteamFriends_SteamFriends017_GetClanActivityCounts, + ISteamFriends_SteamFriends017_DownloadClanActivityCounts, + ISteamFriends_SteamFriends017_GetFriendCountFromSource, + ISteamFriends_SteamFriends017_GetFriendFromSourceByIndex, + ISteamFriends_SteamFriends017_IsUserInSource, + ISteamFriends_SteamFriends017_SetInGameVoiceSpeaking, + ISteamFriends_SteamFriends017_ActivateGameOverlay, + ISteamFriends_SteamFriends017_ActivateGameOverlayToUser, + ISteamFriends_SteamFriends017_ActivateGameOverlayToWebPage, + ISteamFriends_SteamFriends017_ActivateGameOverlayToStore, + ISteamFriends_SteamFriends017_SetPlayedWith, + ISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialog, + ISteamFriends_SteamFriends017_GetSmallFriendAvatar, + ISteamFriends_SteamFriends017_GetMediumFriendAvatar, + ISteamFriends_SteamFriends017_GetLargeFriendAvatar, + ISteamFriends_SteamFriends017_RequestUserInformation, + ISteamFriends_SteamFriends017_RequestClanOfficerList, + ISteamFriends_SteamFriends017_GetClanOwner, + ISteamFriends_SteamFriends017_GetClanOfficerCount, + ISteamFriends_SteamFriends017_GetClanOfficerByIndex, + ISteamFriends_SteamFriends017_GetUserRestrictions, + ISteamFriends_SteamFriends017_SetRichPresence, + ISteamFriends_SteamFriends017_ClearRichPresence, + ISteamFriends_SteamFriends017_GetFriendRichPresence, + ISteamFriends_SteamFriends017_GetFriendRichPresenceKeyCount, + ISteamFriends_SteamFriends017_GetFriendRichPresenceKeyByIndex, + ISteamFriends_SteamFriends017_RequestFriendRichPresence, + ISteamFriends_SteamFriends017_InviteUserToGame, + ISteamFriends_SteamFriends017_GetCoplayFriendCount, + ISteamFriends_SteamFriends017_GetCoplayFriend, + ISteamFriends_SteamFriends017_GetFriendCoplayTime, + ISteamFriends_SteamFriends017_GetFriendCoplayGame, + ISteamFriends_SteamFriends017_JoinClanChatRoom, + ISteamFriends_SteamFriends017_LeaveClanChatRoom, + ISteamFriends_SteamFriends017_GetClanChatMemberCount, + ISteamFriends_SteamFriends017_GetChatMemberByIndex, + ISteamFriends_SteamFriends017_SendClanChatMessage, + ISteamFriends_SteamFriends017_GetClanChatMessage, + ISteamFriends_SteamFriends017_IsClanChatAdmin, + ISteamFriends_SteamFriends017_IsClanChatWindowOpenInSteam, + ISteamFriends_SteamFriends017_OpenClanChatWindowInSteam, + ISteamFriends_SteamFriends017_CloseClanChatWindowInSteam, + ISteamFriends_SteamFriends017_SetListenForFriendsMessages, + ISteamFriends_SteamFriends017_ReplyToFriendMessage, + ISteamFriends_SteamFriends017_GetFriendMessage, + ISteamFriends_SteamFriends017_GetFollowerCount, + ISteamFriends_SteamFriends017_IsFollowing, + ISteamFriends_SteamFriends017_EnumerateFollowingList, + ISteamFriends_SteamFriends017_IsClanPublic, + ISteamFriends_SteamFriends017_IsClanOfficialGameGroup, + ISteamFriends_SteamFriends017_GetNumChatsWithUnreadPriorityMessages, + ISteamFriends_SteamFriends017_ActivateGameOverlayRemotePlayTogetherInviteDialog, + ISteamFriends_SteamFriends017_RegisterProtocolInOverlayBrowser, + ISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialogConnectString, + ISteamFriends_SteamFriends017_RequestEquippedProfileItems, + ISteamFriends_SteamFriends017_BHasEquippedProfileItem, + ISteamFriends_SteamFriends017_GetProfileItemPropertyString, + ISteamFriends_SteamFriends017_GetProfileItemPropertyUint, + ISteamGameCoordinator_SteamGameCoordinator001_SendMessage, + ISteamGameCoordinator_SteamGameCoordinator001_IsMessageAvailable, + ISteamGameCoordinator_SteamGameCoordinator001_RetrieveMessage, + ISteamGameServer_SteamGameServer002_LogOn, + ISteamGameServer_SteamGameServer002_LogOff, + ISteamGameServer_SteamGameServer002_BLoggedOn, + ISteamGameServer_SteamGameServer002_GSSetSpawnCount, + ISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionKeyToSendToNewClient, + ISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect, + ISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect, + ISteamGameServer_SteamGameServer002_GSRemoveUserConnect, + ISteamGameServer_SteamGameServer002_GSSendUserDisconnect, + ISteamGameServer_SteamGameServer002_GSSendUserStatusResponse, + ISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus, + ISteamGameServer_SteamGameServer002_GSUpdateStatus, + ISteamGameServer_SteamGameServer002_BSecure, + ISteamGameServer_SteamGameServer002_GetSteamID, + ISteamGameServer_SteamGameServer002_GSSetServerType, + ISteamGameServer_SteamGameServer002_GSSetServerType2, + ISteamGameServer_SteamGameServer002_GSUpdateStatus2, + ISteamGameServer_SteamGameServer002_GSCreateUnauthenticatedUser, + ISteamGameServer_SteamGameServer002_GSSetUserData, + ISteamGameServer_SteamGameServer002_GSUpdateSpectatorPort, + ISteamGameServer_SteamGameServer002_GSSetGameType, + ISteamGameServer_SteamGameServer003_LogOn, + ISteamGameServer_SteamGameServer003_LogOff, + ISteamGameServer_SteamGameServer003_BLoggedOn, + ISteamGameServer_SteamGameServer003_BSecure, + ISteamGameServer_SteamGameServer003_GetSteamID, + ISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionKeyToSendToNewClient, + ISteamGameServer_SteamGameServer003_GSSendUserConnect, + ISteamGameServer_SteamGameServer003_GSRemoveUserConnect, + ISteamGameServer_SteamGameServer003_GSSendUserDisconnect, + ISteamGameServer_SteamGameServer003_GSSetSpawnCount, + ISteamGameServer_SteamGameServer003_GSSetServerType, + ISteamGameServer_SteamGameServer003_GSUpdateStatus, + ISteamGameServer_SteamGameServer003_GSCreateUnauthenticatedUser, + ISteamGameServer_SteamGameServer003_GSSetUserData, + ISteamGameServer_SteamGameServer003_GSUpdateSpectatorPort, + ISteamGameServer_SteamGameServer003_GSSetGameType, + ISteamGameServer_SteamGameServer003_GSGetUserAchievementStatus, + ISteamGameServer_SteamGameServer004_LogOn, + ISteamGameServer_SteamGameServer004_LogOff, + ISteamGameServer_SteamGameServer004_BLoggedOn, + ISteamGameServer_SteamGameServer004_BSecure, + ISteamGameServer_SteamGameServer004_GetSteamID, + ISteamGameServer_SteamGameServer004_SendUserConnectAndAuthenticate, + ISteamGameServer_SteamGameServer004_CreateUnauthenticatedUserConnection, + ISteamGameServer_SteamGameServer004_SendUserDisconnect, + ISteamGameServer_SteamGameServer004_BUpdateUserData, + ISteamGameServer_SteamGameServer004_BSetServerType, + ISteamGameServer_SteamGameServer004_UpdateServerStatus, + ISteamGameServer_SteamGameServer004_UpdateSpectatorPort, + ISteamGameServer_SteamGameServer004_SetGameType, + ISteamGameServer_SteamGameServer004_BGetUserAchievementStatus, + ISteamGameServer_SteamGameServer005_LogOn, + ISteamGameServer_SteamGameServer005_LogOff, + ISteamGameServer_SteamGameServer005_BLoggedOn, + ISteamGameServer_SteamGameServer005_BSecure, + ISteamGameServer_SteamGameServer005_GetSteamID, + ISteamGameServer_SteamGameServer005_SendUserConnectAndAuthenticate, + ISteamGameServer_SteamGameServer005_CreateUnauthenticatedUserConnection, + ISteamGameServer_SteamGameServer005_SendUserDisconnect, + ISteamGameServer_SteamGameServer005_BUpdateUserData, + ISteamGameServer_SteamGameServer005_BSetServerType, + ISteamGameServer_SteamGameServer005_UpdateServerStatus, + ISteamGameServer_SteamGameServer005_UpdateSpectatorPort, + ISteamGameServer_SteamGameServer005_SetGameType, + ISteamGameServer_SteamGameServer005_BGetUserAchievementStatus, + ISteamGameServer_SteamGameServer008_LogOn, + ISteamGameServer_SteamGameServer008_LogOff, + ISteamGameServer_SteamGameServer008_BLoggedOn, + ISteamGameServer_SteamGameServer008_BSecure, + ISteamGameServer_SteamGameServer008_GetSteamID, + ISteamGameServer_SteamGameServer008_SendUserConnectAndAuthenticate, + ISteamGameServer_SteamGameServer008_CreateUnauthenticatedUserConnection, + ISteamGameServer_SteamGameServer008_SendUserDisconnect, + ISteamGameServer_SteamGameServer008_BUpdateUserData, + ISteamGameServer_SteamGameServer008_BSetServerType, + ISteamGameServer_SteamGameServer008_UpdateServerStatus, + ISteamGameServer_SteamGameServer008_UpdateSpectatorPort, + ISteamGameServer_SteamGameServer008_SetGameType, + ISteamGameServer_SteamGameServer008_BGetUserAchievementStatus, + ISteamGameServer_SteamGameServer008_GetGameplayStats, + ISteamGameServer_SteamGameServer008_RequestUserGroupStatus, + ISteamGameServer_SteamGameServer008_GetPublicIP, + ISteamGameServer_SteamGameServer009_LogOn, + ISteamGameServer_SteamGameServer009_LogOff, + ISteamGameServer_SteamGameServer009_BLoggedOn, + ISteamGameServer_SteamGameServer009_BSecure, + ISteamGameServer_SteamGameServer009_GetSteamID, + ISteamGameServer_SteamGameServer009_SendUserConnectAndAuthenticate, + ISteamGameServer_SteamGameServer009_CreateUnauthenticatedUserConnection, + ISteamGameServer_SteamGameServer009_SendUserDisconnect, + ISteamGameServer_SteamGameServer009_BUpdateUserData, + ISteamGameServer_SteamGameServer009_BSetServerType, + ISteamGameServer_SteamGameServer009_UpdateServerStatus, + ISteamGameServer_SteamGameServer009_UpdateSpectatorPort, + ISteamGameServer_SteamGameServer009_SetGameType, + ISteamGameServer_SteamGameServer009_BGetUserAchievementStatus, + ISteamGameServer_SteamGameServer009_GetGameplayStats, + ISteamGameServer_SteamGameServer009_RequestUserGroupStatus, + ISteamGameServer_SteamGameServer009_GetPublicIP, + ISteamGameServer_SteamGameServer009_SetGameData, + ISteamGameServer_SteamGameServer009_UserHasLicenseForApp, + ISteamGameServer_SteamGameServer010_LogOn, + ISteamGameServer_SteamGameServer010_LogOff, + ISteamGameServer_SteamGameServer010_BLoggedOn, + ISteamGameServer_SteamGameServer010_BSecure, + ISteamGameServer_SteamGameServer010_GetSteamID, + ISteamGameServer_SteamGameServer010_SendUserConnectAndAuthenticate, + ISteamGameServer_SteamGameServer010_CreateUnauthenticatedUserConnection, + ISteamGameServer_SteamGameServer010_SendUserDisconnect, + ISteamGameServer_SteamGameServer010_BUpdateUserData, + ISteamGameServer_SteamGameServer010_BSetServerType, + ISteamGameServer_SteamGameServer010_UpdateServerStatus, + ISteamGameServer_SteamGameServer010_UpdateSpectatorPort, + ISteamGameServer_SteamGameServer010_SetGameTags, + ISteamGameServer_SteamGameServer010_GetGameplayStats, + ISteamGameServer_SteamGameServer010_GetServerReputation, + ISteamGameServer_SteamGameServer010_RequestUserGroupStatus, + ISteamGameServer_SteamGameServer010_GetPublicIP, + ISteamGameServer_SteamGameServer010_SetGameData, + ISteamGameServer_SteamGameServer010_UserHasLicenseForApp, + ISteamGameServer_SteamGameServer010_GetAuthSessionTicket, + ISteamGameServer_SteamGameServer010_BeginAuthSession, + ISteamGameServer_SteamGameServer010_EndAuthSession, + ISteamGameServer_SteamGameServer010_CancelAuthTicket, + ISteamGameServer_SteamGameServer011_InitGameServer, + ISteamGameServer_SteamGameServer011_SetProduct, + ISteamGameServer_SteamGameServer011_SetGameDescription, + ISteamGameServer_SteamGameServer011_SetModDir, + ISteamGameServer_SteamGameServer011_SetDedicatedServer, + ISteamGameServer_SteamGameServer011_LogOn, + ISteamGameServer_SteamGameServer011_LogOnAnonymous, + ISteamGameServer_SteamGameServer011_LogOff, + ISteamGameServer_SteamGameServer011_BLoggedOn, + ISteamGameServer_SteamGameServer011_BSecure, + ISteamGameServer_SteamGameServer011_GetSteamID, + ISteamGameServer_SteamGameServer011_WasRestartRequested, + ISteamGameServer_SteamGameServer011_SetMaxPlayerCount, + ISteamGameServer_SteamGameServer011_SetBotPlayerCount, + ISteamGameServer_SteamGameServer011_SetServerName, + ISteamGameServer_SteamGameServer011_SetMapName, + ISteamGameServer_SteamGameServer011_SetPasswordProtected, + ISteamGameServer_SteamGameServer011_SetSpectatorPort, + ISteamGameServer_SteamGameServer011_SetSpectatorServerName, + ISteamGameServer_SteamGameServer011_ClearAllKeyValues, + ISteamGameServer_SteamGameServer011_SetKeyValue, + ISteamGameServer_SteamGameServer011_SetGameTags, + ISteamGameServer_SteamGameServer011_SetGameData, + ISteamGameServer_SteamGameServer011_SetRegion, + ISteamGameServer_SteamGameServer011_SendUserConnectAndAuthenticate, + ISteamGameServer_SteamGameServer011_CreateUnauthenticatedUserConnection, + ISteamGameServer_SteamGameServer011_SendUserDisconnect, + ISteamGameServer_SteamGameServer011_BUpdateUserData, + ISteamGameServer_SteamGameServer011_GetAuthSessionTicket, + ISteamGameServer_SteamGameServer011_BeginAuthSession, + ISteamGameServer_SteamGameServer011_EndAuthSession, + ISteamGameServer_SteamGameServer011_CancelAuthTicket, + ISteamGameServer_SteamGameServer011_UserHasLicenseForApp, + ISteamGameServer_SteamGameServer011_RequestUserGroupStatus, + ISteamGameServer_SteamGameServer011_GetGameplayStats, + ISteamGameServer_SteamGameServer011_GetServerReputation, + ISteamGameServer_SteamGameServer011_GetPublicIP, + ISteamGameServer_SteamGameServer011_HandleIncomingPacket, + ISteamGameServer_SteamGameServer011_GetNextOutgoingPacket, + ISteamGameServer_SteamGameServer011_EnableHeartbeats, + ISteamGameServer_SteamGameServer011_SetHeartbeatInterval, + ISteamGameServer_SteamGameServer011_ForceHeartbeat, + ISteamGameServer_SteamGameServer011_AssociateWithClan, + ISteamGameServer_SteamGameServer011_ComputeNewPlayerCompatibility, + ISteamGameServer_SteamGameServer012_InitGameServer, + ISteamGameServer_SteamGameServer012_SetProduct, + ISteamGameServer_SteamGameServer012_SetGameDescription, + ISteamGameServer_SteamGameServer012_SetModDir, + ISteamGameServer_SteamGameServer012_SetDedicatedServer, + ISteamGameServer_SteamGameServer012_LogOn, + ISteamGameServer_SteamGameServer012_LogOnAnonymous, + ISteamGameServer_SteamGameServer012_LogOff, + ISteamGameServer_SteamGameServer012_BLoggedOn, + ISteamGameServer_SteamGameServer012_BSecure, + ISteamGameServer_SteamGameServer012_GetSteamID, + ISteamGameServer_SteamGameServer012_WasRestartRequested, + ISteamGameServer_SteamGameServer012_SetMaxPlayerCount, + ISteamGameServer_SteamGameServer012_SetBotPlayerCount, + ISteamGameServer_SteamGameServer012_SetServerName, + ISteamGameServer_SteamGameServer012_SetMapName, + ISteamGameServer_SteamGameServer012_SetPasswordProtected, + ISteamGameServer_SteamGameServer012_SetSpectatorPort, + ISteamGameServer_SteamGameServer012_SetSpectatorServerName, + ISteamGameServer_SteamGameServer012_ClearAllKeyValues, + ISteamGameServer_SteamGameServer012_SetKeyValue, + ISteamGameServer_SteamGameServer012_SetGameTags, + ISteamGameServer_SteamGameServer012_SetGameData, + ISteamGameServer_SteamGameServer012_SetRegion, + ISteamGameServer_SteamGameServer012_SendUserConnectAndAuthenticate, + ISteamGameServer_SteamGameServer012_CreateUnauthenticatedUserConnection, + ISteamGameServer_SteamGameServer012_SendUserDisconnect, + ISteamGameServer_SteamGameServer012_BUpdateUserData, + ISteamGameServer_SteamGameServer012_GetAuthSessionTicket, + ISteamGameServer_SteamGameServer012_BeginAuthSession, + ISteamGameServer_SteamGameServer012_EndAuthSession, + ISteamGameServer_SteamGameServer012_CancelAuthTicket, + ISteamGameServer_SteamGameServer012_UserHasLicenseForApp, + ISteamGameServer_SteamGameServer012_RequestUserGroupStatus, + ISteamGameServer_SteamGameServer012_GetGameplayStats, + ISteamGameServer_SteamGameServer012_GetServerReputation, + ISteamGameServer_SteamGameServer012_GetPublicIP, + ISteamGameServer_SteamGameServer012_HandleIncomingPacket, + ISteamGameServer_SteamGameServer012_GetNextOutgoingPacket, + ISteamGameServer_SteamGameServer012_EnableHeartbeats, + ISteamGameServer_SteamGameServer012_SetHeartbeatInterval, + ISteamGameServer_SteamGameServer012_ForceHeartbeat, + ISteamGameServer_SteamGameServer012_AssociateWithClan, + ISteamGameServer_SteamGameServer012_ComputeNewPlayerCompatibility, + ISteamGameServer_SteamGameServer013_InitGameServer, + ISteamGameServer_SteamGameServer013_SetProduct, + ISteamGameServer_SteamGameServer013_SetGameDescription, + ISteamGameServer_SteamGameServer013_SetModDir, + ISteamGameServer_SteamGameServer013_SetDedicatedServer, + ISteamGameServer_SteamGameServer013_LogOn, + ISteamGameServer_SteamGameServer013_LogOnAnonymous, + ISteamGameServer_SteamGameServer013_LogOff, + ISteamGameServer_SteamGameServer013_BLoggedOn, + ISteamGameServer_SteamGameServer013_BSecure, + ISteamGameServer_SteamGameServer013_GetSteamID, + ISteamGameServer_SteamGameServer013_WasRestartRequested, + ISteamGameServer_SteamGameServer013_SetMaxPlayerCount, + ISteamGameServer_SteamGameServer013_SetBotPlayerCount, + ISteamGameServer_SteamGameServer013_SetServerName, + ISteamGameServer_SteamGameServer013_SetMapName, + ISteamGameServer_SteamGameServer013_SetPasswordProtected, + ISteamGameServer_SteamGameServer013_SetSpectatorPort, + ISteamGameServer_SteamGameServer013_SetSpectatorServerName, + ISteamGameServer_SteamGameServer013_ClearAllKeyValues, + ISteamGameServer_SteamGameServer013_SetKeyValue, + ISteamGameServer_SteamGameServer013_SetGameTags, + ISteamGameServer_SteamGameServer013_SetGameData, + ISteamGameServer_SteamGameServer013_SetRegion, + ISteamGameServer_SteamGameServer013_SendUserConnectAndAuthenticate, + ISteamGameServer_SteamGameServer013_CreateUnauthenticatedUserConnection, + ISteamGameServer_SteamGameServer013_SendUserDisconnect, + ISteamGameServer_SteamGameServer013_BUpdateUserData, + ISteamGameServer_SteamGameServer013_GetAuthSessionTicket, + ISteamGameServer_SteamGameServer013_BeginAuthSession, + ISteamGameServer_SteamGameServer013_EndAuthSession, + ISteamGameServer_SteamGameServer013_CancelAuthTicket, + ISteamGameServer_SteamGameServer013_UserHasLicenseForApp, + ISteamGameServer_SteamGameServer013_RequestUserGroupStatus, + ISteamGameServer_SteamGameServer013_GetGameplayStats, + ISteamGameServer_SteamGameServer013_GetServerReputation, + ISteamGameServer_SteamGameServer013_GetPublicIP, + ISteamGameServer_SteamGameServer013_HandleIncomingPacket, + ISteamGameServer_SteamGameServer013_GetNextOutgoingPacket, + ISteamGameServer_SteamGameServer013_EnableHeartbeats, + ISteamGameServer_SteamGameServer013_SetHeartbeatInterval, + ISteamGameServer_SteamGameServer013_ForceHeartbeat, + ISteamGameServer_SteamGameServer013_AssociateWithClan, + ISteamGameServer_SteamGameServer013_ComputeNewPlayerCompatibility, + ISteamGameServer_SteamGameServer014_InitGameServer, + ISteamGameServer_SteamGameServer014_SetProduct, + ISteamGameServer_SteamGameServer014_SetGameDescription, + ISteamGameServer_SteamGameServer014_SetModDir, + ISteamGameServer_SteamGameServer014_SetDedicatedServer, + ISteamGameServer_SteamGameServer014_LogOn, + ISteamGameServer_SteamGameServer014_LogOnAnonymous, + ISteamGameServer_SteamGameServer014_LogOff, + ISteamGameServer_SteamGameServer014_BLoggedOn, + ISteamGameServer_SteamGameServer014_BSecure, + ISteamGameServer_SteamGameServer014_GetSteamID, + ISteamGameServer_SteamGameServer014_WasRestartRequested, + ISteamGameServer_SteamGameServer014_SetMaxPlayerCount, + ISteamGameServer_SteamGameServer014_SetBotPlayerCount, + ISteamGameServer_SteamGameServer014_SetServerName, + ISteamGameServer_SteamGameServer014_SetMapName, + ISteamGameServer_SteamGameServer014_SetPasswordProtected, + ISteamGameServer_SteamGameServer014_SetSpectatorPort, + ISteamGameServer_SteamGameServer014_SetSpectatorServerName, + ISteamGameServer_SteamGameServer014_ClearAllKeyValues, + ISteamGameServer_SteamGameServer014_SetKeyValue, + ISteamGameServer_SteamGameServer014_SetGameTags, + ISteamGameServer_SteamGameServer014_SetGameData, + ISteamGameServer_SteamGameServer014_SetRegion, + ISteamGameServer_SteamGameServer014_SetAdvertiseServerActive, + ISteamGameServer_SteamGameServer014_GetAuthSessionTicket, + ISteamGameServer_SteamGameServer014_BeginAuthSession, + ISteamGameServer_SteamGameServer014_EndAuthSession, + ISteamGameServer_SteamGameServer014_CancelAuthTicket, + ISteamGameServer_SteamGameServer014_UserHasLicenseForApp, + ISteamGameServer_SteamGameServer014_RequestUserGroupStatus, + ISteamGameServer_SteamGameServer014_GetGameplayStats, + ISteamGameServer_SteamGameServer014_GetServerReputation, + ISteamGameServer_SteamGameServer014_GetPublicIP, + ISteamGameServer_SteamGameServer014_HandleIncomingPacket, + ISteamGameServer_SteamGameServer014_GetNextOutgoingPacket, + ISteamGameServer_SteamGameServer014_AssociateWithClan, + ISteamGameServer_SteamGameServer014_ComputeNewPlayerCompatibility, + ISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEPRECATED, + ISteamGameServer_SteamGameServer014_CreateUnauthenticatedUserConnection, + ISteamGameServer_SteamGameServer014_SendUserDisconnect_DEPRECATED, + ISteamGameServer_SteamGameServer014_BUpdateUserData, + ISteamGameServer_SteamGameServer014_SetMasterServerHeartbeatInterval_DEPRECATED, + ISteamGameServer_SteamGameServer014_ForceMasterServerHeartbeat_DEPRECATED, + ISteamGameServer_SteamGameServer015_InitGameServer, + ISteamGameServer_SteamGameServer015_SetProduct, + ISteamGameServer_SteamGameServer015_SetGameDescription, + ISteamGameServer_SteamGameServer015_SetModDir, + ISteamGameServer_SteamGameServer015_SetDedicatedServer, + ISteamGameServer_SteamGameServer015_LogOn, + ISteamGameServer_SteamGameServer015_LogOnAnonymous, + ISteamGameServer_SteamGameServer015_LogOff, + ISteamGameServer_SteamGameServer015_BLoggedOn, + ISteamGameServer_SteamGameServer015_BSecure, + ISteamGameServer_SteamGameServer015_GetSteamID, + ISteamGameServer_SteamGameServer015_WasRestartRequested, + ISteamGameServer_SteamGameServer015_SetMaxPlayerCount, + ISteamGameServer_SteamGameServer015_SetBotPlayerCount, + ISteamGameServer_SteamGameServer015_SetServerName, + ISteamGameServer_SteamGameServer015_SetMapName, + ISteamGameServer_SteamGameServer015_SetPasswordProtected, + ISteamGameServer_SteamGameServer015_SetSpectatorPort, + ISteamGameServer_SteamGameServer015_SetSpectatorServerName, + ISteamGameServer_SteamGameServer015_ClearAllKeyValues, + ISteamGameServer_SteamGameServer015_SetKeyValue, + ISteamGameServer_SteamGameServer015_SetGameTags, + ISteamGameServer_SteamGameServer015_SetGameData, + ISteamGameServer_SteamGameServer015_SetRegion, + ISteamGameServer_SteamGameServer015_SetAdvertiseServerActive, + ISteamGameServer_SteamGameServer015_GetAuthSessionTicket, + ISteamGameServer_SteamGameServer015_BeginAuthSession, + ISteamGameServer_SteamGameServer015_EndAuthSession, + ISteamGameServer_SteamGameServer015_CancelAuthTicket, + ISteamGameServer_SteamGameServer015_UserHasLicenseForApp, + ISteamGameServer_SteamGameServer015_RequestUserGroupStatus, + ISteamGameServer_SteamGameServer015_GetGameplayStats, + ISteamGameServer_SteamGameServer015_GetServerReputation, + ISteamGameServer_SteamGameServer015_GetPublicIP, + ISteamGameServer_SteamGameServer015_HandleIncomingPacket, + ISteamGameServer_SteamGameServer015_GetNextOutgoingPacket, + ISteamGameServer_SteamGameServer015_AssociateWithClan, + ISteamGameServer_SteamGameServer015_ComputeNewPlayerCompatibility, + ISteamGameServer_SteamGameServer015_SendUserConnectAndAuthenticate_DEPRECATED, + ISteamGameServer_SteamGameServer015_CreateUnauthenticatedUserConnection, + ISteamGameServer_SteamGameServer015_SendUserDisconnect_DEPRECATED, + ISteamGameServer_SteamGameServer015_BUpdateUserData, + ISteamGameServer_SteamGameServer015_SetMasterServerHeartbeatInterval_DEPRECATED, + ISteamGameServer_SteamGameServer015_ForceMasterServerHeartbeat_DEPRECATED, + ISteamGameServerStats_SteamGameServerStats001_RequestUserStats, + ISteamGameServerStats_SteamGameServerStats001_GetUserStat, + ISteamGameServerStats_SteamGameServerStats001_GetUserStat_2, + ISteamGameServerStats_SteamGameServerStats001_GetUserAchievement, + ISteamGameServerStats_SteamGameServerStats001_SetUserStat, + ISteamGameServerStats_SteamGameServerStats001_SetUserStat_2, + ISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRateStat, + ISteamGameServerStats_SteamGameServerStats001_SetUserAchievement, + ISteamGameServerStats_SteamGameServerStats001_ClearUserAchievement, + ISteamGameServerStats_SteamGameServerStats001_StoreUserStats, + ISteamGameStats_SteamGameStats001_GetNewSession, + ISteamGameStats_SteamGameStats001_EndSession, + ISteamGameStats_SteamGameStats001_AddSessionAttributeInt, + ISteamGameStats_SteamGameStats001_AddSessionAttributeString, + ISteamGameStats_SteamGameStats001_AddSessionAttributeFloat, + ISteamGameStats_SteamGameStats001_AddNewRow, + ISteamGameStats_SteamGameStats001_CommitRow, + ISteamGameStats_SteamGameStats001_CommitOutstandingRows, + ISteamGameStats_SteamGameStats001_AddRowAttributeInt, + ISteamGameStats_SteamGameStats001_AddRowAtributeString, + ISteamGameStats_SteamGameStats001_AddRowAttributeFloat, + ISteamGameStats_SteamGameStats001_AddSessionAttributeInt64, + ISteamGameStats_SteamGameStats001_AddRowAttributeInt64, + ISteamInput_SteamInput001_Init, + ISteamInput_SteamInput001_Shutdown, + ISteamInput_SteamInput001_RunFrame, + ISteamInput_SteamInput001_GetConnectedControllers, + ISteamInput_SteamInput001_GetActionSetHandle, + ISteamInput_SteamInput001_ActivateActionSet, + ISteamInput_SteamInput001_GetCurrentActionSet, + ISteamInput_SteamInput001_ActivateActionSetLayer, + ISteamInput_SteamInput001_DeactivateActionSetLayer, + ISteamInput_SteamInput001_DeactivateAllActionSetLayers, + ISteamInput_SteamInput001_GetActiveActionSetLayers, + ISteamInput_SteamInput001_GetDigitalActionHandle, + ISteamInput_SteamInput001_GetDigitalActionData, + ISteamInput_SteamInput001_GetDigitalActionOrigins, + ISteamInput_SteamInput001_GetAnalogActionHandle, + ISteamInput_SteamInput001_GetAnalogActionData, + ISteamInput_SteamInput001_GetAnalogActionOrigins, + ISteamInput_SteamInput001_GetGlyphForActionOrigin, + ISteamInput_SteamInput001_GetStringForActionOrigin, + ISteamInput_SteamInput001_StopAnalogActionMomentum, + ISteamInput_SteamInput001_GetMotionData, + ISteamInput_SteamInput001_TriggerVibration, + ISteamInput_SteamInput001_SetLEDColor, + ISteamInput_SteamInput001_TriggerHapticPulse, + ISteamInput_SteamInput001_TriggerRepeatedHapticPulse, + ISteamInput_SteamInput001_ShowBindingPanel, + ISteamInput_SteamInput001_GetInputTypeForHandle, + ISteamInput_SteamInput001_GetControllerForGamepadIndex, + ISteamInput_SteamInput001_GetGamepadIndexForController, + ISteamInput_SteamInput001_GetStringForXboxOrigin, + ISteamInput_SteamInput001_GetGlyphForXboxOrigin, + ISteamInput_SteamInput001_GetActionOriginFromXboxOrigin, + ISteamInput_SteamInput001_TranslateActionOrigin, + ISteamInput_SteamInput001_GetDeviceBindingRevision, + ISteamInput_SteamInput001_GetRemotePlaySessionID, + ISteamInput_SteamInput002_Init, + ISteamInput_SteamInput002_Shutdown, + ISteamInput_SteamInput002_RunFrame, + ISteamInput_SteamInput002_GetConnectedControllers, + ISteamInput_SteamInput002_GetActionSetHandle, + ISteamInput_SteamInput002_ActivateActionSet, + ISteamInput_SteamInput002_GetCurrentActionSet, + ISteamInput_SteamInput002_ActivateActionSetLayer, + ISteamInput_SteamInput002_DeactivateActionSetLayer, + ISteamInput_SteamInput002_DeactivateAllActionSetLayers, + ISteamInput_SteamInput002_GetActiveActionSetLayers, + ISteamInput_SteamInput002_GetDigitalActionHandle, + ISteamInput_SteamInput002_GetDigitalActionData, + ISteamInput_SteamInput002_GetDigitalActionOrigins, + ISteamInput_SteamInput002_GetAnalogActionHandle, + ISteamInput_SteamInput002_GetAnalogActionData, + ISteamInput_SteamInput002_GetAnalogActionOrigins, + ISteamInput_SteamInput002_GetGlyphForActionOrigin, + ISteamInput_SteamInput002_GetStringForActionOrigin, + ISteamInput_SteamInput002_StopAnalogActionMomentum, + ISteamInput_SteamInput002_GetMotionData, + ISteamInput_SteamInput002_TriggerVibration, + ISteamInput_SteamInput002_SetLEDColor, + ISteamInput_SteamInput002_TriggerHapticPulse, + ISteamInput_SteamInput002_TriggerRepeatedHapticPulse, + ISteamInput_SteamInput002_ShowBindingPanel, + ISteamInput_SteamInput002_GetInputTypeForHandle, + ISteamInput_SteamInput002_GetControllerForGamepadIndex, + ISteamInput_SteamInput002_GetGamepadIndexForController, + ISteamInput_SteamInput002_GetStringForXboxOrigin, + ISteamInput_SteamInput002_GetGlyphForXboxOrigin, + ISteamInput_SteamInput002_GetActionOriginFromXboxOrigin, + ISteamInput_SteamInput002_TranslateActionOrigin, + ISteamInput_SteamInput002_GetDeviceBindingRevision, + ISteamInput_SteamInput002_GetRemotePlaySessionID, + ISteamInput_SteamInput005_Init, + ISteamInput_SteamInput005_Shutdown, + ISteamInput_SteamInput005_SetInputActionManifestFilePath, + ISteamInput_SteamInput005_RunFrame, + ISteamInput_SteamInput005_BWaitForData, + ISteamInput_SteamInput005_BNewDataAvailable, + ISteamInput_SteamInput005_GetConnectedControllers, + ISteamInput_SteamInput005_EnableDeviceCallbacks, + ISteamInput_SteamInput005_EnableActionEventCallbacks, + ISteamInput_SteamInput005_GetActionSetHandle, + ISteamInput_SteamInput005_ActivateActionSet, + ISteamInput_SteamInput005_GetCurrentActionSet, + ISteamInput_SteamInput005_ActivateActionSetLayer, + ISteamInput_SteamInput005_DeactivateActionSetLayer, + ISteamInput_SteamInput005_DeactivateAllActionSetLayers, + ISteamInput_SteamInput005_GetActiveActionSetLayers, + ISteamInput_SteamInput005_GetDigitalActionHandle, + ISteamInput_SteamInput005_GetDigitalActionData, + ISteamInput_SteamInput005_GetDigitalActionOrigins, + ISteamInput_SteamInput005_GetStringForDigitalActionName, + ISteamInput_SteamInput005_GetAnalogActionHandle, + ISteamInput_SteamInput005_GetAnalogActionData, + ISteamInput_SteamInput005_GetAnalogActionOrigins, + ISteamInput_SteamInput005_GetGlyphPNGForActionOrigin, + ISteamInput_SteamInput005_GetGlyphSVGForActionOrigin, + ISteamInput_SteamInput005_GetGlyphForActionOrigin_Legacy, + ISteamInput_SteamInput005_GetStringForActionOrigin, + ISteamInput_SteamInput005_GetStringForAnalogActionName, + ISteamInput_SteamInput005_StopAnalogActionMomentum, + ISteamInput_SteamInput005_GetMotionData, + ISteamInput_SteamInput005_TriggerVibration, + ISteamInput_SteamInput005_TriggerVibrationExtended, + ISteamInput_SteamInput005_TriggerSimpleHapticEvent, + ISteamInput_SteamInput005_SetLEDColor, + ISteamInput_SteamInput005_Legacy_TriggerHapticPulse, + ISteamInput_SteamInput005_Legacy_TriggerRepeatedHapticPulse, + ISteamInput_SteamInput005_ShowBindingPanel, + ISteamInput_SteamInput005_GetInputTypeForHandle, + ISteamInput_SteamInput005_GetControllerForGamepadIndex, + ISteamInput_SteamInput005_GetGamepadIndexForController, + ISteamInput_SteamInput005_GetStringForXboxOrigin, + ISteamInput_SteamInput005_GetGlyphForXboxOrigin, + ISteamInput_SteamInput005_GetActionOriginFromXboxOrigin, + ISteamInput_SteamInput005_TranslateActionOrigin, + ISteamInput_SteamInput005_GetDeviceBindingRevision, + ISteamInput_SteamInput005_GetRemotePlaySessionID, + ISteamInput_SteamInput005_GetSessionInputConfigurationSettings, + ISteamInput_SteamInput006_Init, + ISteamInput_SteamInput006_Shutdown, + ISteamInput_SteamInput006_SetInputActionManifestFilePath, + ISteamInput_SteamInput006_RunFrame, + ISteamInput_SteamInput006_BWaitForData, + ISteamInput_SteamInput006_BNewDataAvailable, + ISteamInput_SteamInput006_GetConnectedControllers, + ISteamInput_SteamInput006_EnableDeviceCallbacks, + ISteamInput_SteamInput006_EnableActionEventCallbacks, + ISteamInput_SteamInput006_GetActionSetHandle, + ISteamInput_SteamInput006_ActivateActionSet, + ISteamInput_SteamInput006_GetCurrentActionSet, + ISteamInput_SteamInput006_ActivateActionSetLayer, + ISteamInput_SteamInput006_DeactivateActionSetLayer, + ISteamInput_SteamInput006_DeactivateAllActionSetLayers, + ISteamInput_SteamInput006_GetActiveActionSetLayers, + ISteamInput_SteamInput006_GetDigitalActionHandle, + ISteamInput_SteamInput006_GetDigitalActionData, + ISteamInput_SteamInput006_GetDigitalActionOrigins, + ISteamInput_SteamInput006_GetStringForDigitalActionName, + ISteamInput_SteamInput006_GetAnalogActionHandle, + ISteamInput_SteamInput006_GetAnalogActionData, + ISteamInput_SteamInput006_GetAnalogActionOrigins, + ISteamInput_SteamInput006_GetGlyphPNGForActionOrigin, + ISteamInput_SteamInput006_GetGlyphSVGForActionOrigin, + ISteamInput_SteamInput006_GetGlyphForActionOrigin_Legacy, + ISteamInput_SteamInput006_GetStringForActionOrigin, + ISteamInput_SteamInput006_GetStringForAnalogActionName, + ISteamInput_SteamInput006_StopAnalogActionMomentum, + ISteamInput_SteamInput006_GetMotionData, + ISteamInput_SteamInput006_TriggerVibration, + ISteamInput_SteamInput006_TriggerVibrationExtended, + ISteamInput_SteamInput006_TriggerSimpleHapticEvent, + ISteamInput_SteamInput006_SetLEDColor, + ISteamInput_SteamInput006_Legacy_TriggerHapticPulse, + ISteamInput_SteamInput006_Legacy_TriggerRepeatedHapticPulse, + ISteamInput_SteamInput006_ShowBindingPanel, + ISteamInput_SteamInput006_GetInputTypeForHandle, + ISteamInput_SteamInput006_GetControllerForGamepadIndex, + ISteamInput_SteamInput006_GetGamepadIndexForController, + ISteamInput_SteamInput006_GetStringForXboxOrigin, + ISteamInput_SteamInput006_GetGlyphForXboxOrigin, + ISteamInput_SteamInput006_GetActionOriginFromXboxOrigin, + ISteamInput_SteamInput006_TranslateActionOrigin, + ISteamInput_SteamInput006_GetDeviceBindingRevision, + ISteamInput_SteamInput006_GetRemotePlaySessionID, + ISteamInput_SteamInput006_GetSessionInputConfigurationSettings, + ISteamInput_SteamInput006_SetDualSenseTriggerEffect, + ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetActive, + ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetHeartbeatInterval, + ISteamMasterServerUpdater_SteamMasterServerUpdater001_HandleIncomingPacket, + ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNextOutgoingPacket, + ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasicServerData, + ISteamMasterServerUpdater_SteamMasterServerUpdater001_ClearAllKeyValues, + ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetKeyValue, + ISteamMasterServerUpdater_SteamMasterServerUpdater001_NotifyShutdown, + ISteamMasterServerUpdater_SteamMasterServerUpdater001_WasRestartRequested, + ISteamMasterServerUpdater_SteamMasterServerUpdater001_ForceHeartbeat, + ISteamMasterServerUpdater_SteamMasterServerUpdater001_AddMasterServer, + ISteamMasterServerUpdater_SteamMasterServerUpdater001_RemoveMasterServer, + ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNumMasterServers, + ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetMasterServerAddress, + ISteamGameSearch_SteamMatchGameSearch001_AddGameSearchParams, + ISteamGameSearch_SteamMatchGameSearch001_SearchForGameWithLobby, + ISteamGameSearch_SteamMatchGameSearch001_SearchForGameSolo, + ISteamGameSearch_SteamMatchGameSearch001_AcceptGame, + ISteamGameSearch_SteamMatchGameSearch001_DeclineGame, + ISteamGameSearch_SteamMatchGameSearch001_RetrieveConnectionDetails, + ISteamGameSearch_SteamMatchGameSearch001_EndGameSearch, + ISteamGameSearch_SteamMatchGameSearch001_SetGameHostParams, + ISteamGameSearch_SteamMatchGameSearch001_SetConnectionDetails, + ISteamGameSearch_SteamMatchGameSearch001_RequestPlayersForGame, + ISteamGameSearch_SteamMatchGameSearch001_HostConfirmGameStart, + ISteamGameSearch_SteamMatchGameSearch001_CancelRequestPlayersForGame, + ISteamGameSearch_SteamMatchGameSearch001_SubmitPlayerResult, + ISteamGameSearch_SteamMatchGameSearch001_EndGame, + ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGameCount, + ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame, + ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame, + ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame, + ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame2, + ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame2, + ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame2, + ISteamMatchmaking_SteamMatchMaking001_RequestLobbyList, + ISteamMatchmaking_SteamMatchMaking001_GetLobbyByIndex, + ISteamMatchmaking_SteamMatchMaking001_CreateLobby, + ISteamMatchmaking_SteamMatchMaking001_JoinLobby, + ISteamMatchmaking_SteamMatchMaking001_LeaveLobby, + ISteamMatchmaking_SteamMatchMaking001_InviteUserToLobby, + ISteamMatchmaking_SteamMatchMaking001_GetNumLobbyMembers, + ISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberByIndex, + ISteamMatchmaking_SteamMatchMaking001_GetLobbyData, + ISteamMatchmaking_SteamMatchMaking001_SetLobbyData, + ISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberData, + ISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData, + ISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMsg, + ISteamMatchmaking_SteamMatchMaking001_GetLobbyChatEntry, + ISteamMatchmaking_SteamMatchMaking001_RequestLobbyData, + ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGameCount, + ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame, + ISteamMatchmaking_SteamMatchMaking002_AddFavoriteGame, + ISteamMatchmaking_SteamMatchMaking002_RemoveFavoriteGame, + ISteamMatchmaking_SteamMatchMaking002_RequestLobbyList, + ISteamMatchmaking_SteamMatchMaking002_GetLobbyByIndex, + ISteamMatchmaking_SteamMatchMaking002_CreateLobby, + ISteamMatchmaking_SteamMatchMaking002_JoinLobby, + ISteamMatchmaking_SteamMatchMaking002_LeaveLobby, + ISteamMatchmaking_SteamMatchMaking002_InviteUserToLobby, + ISteamMatchmaking_SteamMatchMaking002_GetNumLobbyMembers, + ISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberByIndex, + ISteamMatchmaking_SteamMatchMaking002_GetLobbyData, + ISteamMatchmaking_SteamMatchMaking002_SetLobbyData, + ISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberData, + ISteamMatchmaking_SteamMatchMaking002_SetLobbyMemberData, + ISteamMatchmaking_SteamMatchMaking002_SendLobbyChatMsg, + ISteamMatchmaking_SteamMatchMaking002_GetLobbyChatEntry, + ISteamMatchmaking_SteamMatchMaking002_RequestLobbyData, + ISteamMatchmaking_SteamMatchMaking002_SetLobbyGameServer, + ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGameCount, + ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame, + ISteamMatchmaking_SteamMatchMaking003_AddFavoriteGame, + ISteamMatchmaking_SteamMatchMaking003_RemoveFavoriteGame, + ISteamMatchmaking_SteamMatchMaking003_RequestLobbyList, + ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListFilter, + ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListNumericalFilter, + ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListSlotsAvailableFilter, + ISteamMatchmaking_SteamMatchMaking003_GetLobbyByIndex, + ISteamMatchmaking_SteamMatchMaking003_CreateLobby, + ISteamMatchmaking_SteamMatchMaking003_JoinLobby, + ISteamMatchmaking_SteamMatchMaking003_LeaveLobby, + ISteamMatchmaking_SteamMatchMaking003_InviteUserToLobby, + ISteamMatchmaking_SteamMatchMaking003_GetNumLobbyMembers, + ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberByIndex, + ISteamMatchmaking_SteamMatchMaking003_GetLobbyData, + ISteamMatchmaking_SteamMatchMaking003_SetLobbyData, + ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberData, + ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberData, + ISteamMatchmaking_SteamMatchMaking003_SendLobbyChatMsg, + ISteamMatchmaking_SteamMatchMaking003_GetLobbyChatEntry, + ISteamMatchmaking_SteamMatchMaking003_RequestLobbyData, + ISteamMatchmaking_SteamMatchMaking003_SetLobbyGameServer, + ISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer, + ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberLimit, + ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberLimit, + ISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled, + ISteamMatchmaking_SteamMatchMaking003_RequestFriendsLobbies, + ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGameCount, + ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame, + ISteamMatchmaking_SteamMatchMaking004_AddFavoriteGame, + ISteamMatchmaking_SteamMatchMaking004_RemoveFavoriteGame, + ISteamMatchmaking_SteamMatchMaking004_RequestLobbyList, + ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListFilter, + ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListNumericalFilter, + ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListSlotsAvailableFilter, + ISteamMatchmaking_SteamMatchMaking004_GetLobbyByIndex, + ISteamMatchmaking_SteamMatchMaking004_CreateLobby, + ISteamMatchmaking_SteamMatchMaking004_JoinLobby, + ISteamMatchmaking_SteamMatchMaking004_LeaveLobby, + ISteamMatchmaking_SteamMatchMaking004_InviteUserToLobby, + ISteamMatchmaking_SteamMatchMaking004_GetNumLobbyMembers, + ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberByIndex, + ISteamMatchmaking_SteamMatchMaking004_GetLobbyData, + ISteamMatchmaking_SteamMatchMaking004_SetLobbyData, + ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberData, + ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberData, + ISteamMatchmaking_SteamMatchMaking004_SendLobbyChatMsg, + ISteamMatchmaking_SteamMatchMaking004_GetLobbyChatEntry, + ISteamMatchmaking_SteamMatchMaking004_RequestLobbyData, + ISteamMatchmaking_SteamMatchMaking004_SetLobbyGameServer, + ISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer, + ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberLimit, + ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberLimit, + ISteamMatchmaking_SteamMatchMaking004_RequestFriendsLobbies, + ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGameCount, + ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame, + ISteamMatchmaking_SteamMatchMaking005_AddFavoriteGame, + ISteamMatchmaking_SteamMatchMaking005_RemoveFavoriteGame, + ISteamMatchmaking_SteamMatchMaking005_RequestLobbyList, + ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListFilter, + ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNumericalFilter, + ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListSlotsAvailableFilter, + ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNearValueFilter, + ISteamMatchmaking_SteamMatchMaking005_GetLobbyByIndex, + ISteamMatchmaking_SteamMatchMaking005_CreateLobby, + ISteamMatchmaking_SteamMatchMaking005_JoinLobby, + ISteamMatchmaking_SteamMatchMaking005_LeaveLobby, + ISteamMatchmaking_SteamMatchMaking005_InviteUserToLobby, + ISteamMatchmaking_SteamMatchMaking005_GetNumLobbyMembers, + ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberByIndex, + ISteamMatchmaking_SteamMatchMaking005_GetLobbyData, + ISteamMatchmaking_SteamMatchMaking005_SetLobbyData, + ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberData, + ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberData, + ISteamMatchmaking_SteamMatchMaking005_SendLobbyChatMsg, + ISteamMatchmaking_SteamMatchMaking005_GetLobbyChatEntry, + ISteamMatchmaking_SteamMatchMaking005_RequestLobbyData, + ISteamMatchmaking_SteamMatchMaking005_SetLobbyGameServer, + ISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer, + ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberLimit, + ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberLimit, + ISteamMatchmaking_SteamMatchMaking005_RequestFriendsLobbies, + ISteamMatchmaking_SteamMatchMaking005_SetLobbyType, + ISteamMatchmaking_SteamMatchMaking005_GetLobbyOwner, + ISteamMatchmaking_SteamMatchMaking005_GetLobbyDistance, + ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGameCount, + ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame, + ISteamMatchmaking_SteamMatchMaking006_AddFavoriteGame, + ISteamMatchmaking_SteamMatchMaking006_RemoveFavoriteGame, + ISteamMatchmaking_SteamMatchMaking006_RequestLobbyList, + ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListFilter, + ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNumericalFilter, + ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNearValueFilter, + ISteamMatchmaking_SteamMatchMaking006_GetLobbyByIndex, + ISteamMatchmaking_SteamMatchMaking006_CreateLobby, + ISteamMatchmaking_SteamMatchMaking006_JoinLobby, + ISteamMatchmaking_SteamMatchMaking006_LeaveLobby, + ISteamMatchmaking_SteamMatchMaking006_InviteUserToLobby, + ISteamMatchmaking_SteamMatchMaking006_GetNumLobbyMembers, + ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberByIndex, + ISteamMatchmaking_SteamMatchMaking006_GetLobbyData, + ISteamMatchmaking_SteamMatchMaking006_SetLobbyData, + ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberData, + ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberData, + ISteamMatchmaking_SteamMatchMaking006_SendLobbyChatMsg, + ISteamMatchmaking_SteamMatchMaking006_GetLobbyChatEntry, + ISteamMatchmaking_SteamMatchMaking006_RequestLobbyData, + ISteamMatchmaking_SteamMatchMaking006_SetLobbyGameServer, + ISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer, + ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberLimit, + ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberLimit, + ISteamMatchmaking_SteamMatchMaking006_SetLobbyType, + ISteamMatchmaking_SteamMatchMaking006_GetLobbyOwner, + ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGameCount, + ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame, + ISteamMatchmaking_SteamMatchMaking007_AddFavoriteGame, + ISteamMatchmaking_SteamMatchMaking007_RemoveFavoriteGame, + ISteamMatchmaking_SteamMatchMaking007_RequestLobbyList, + ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListStringFilter, + ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNumericalFilter, + ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNearValueFilter, + ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListFilterSlotsAvailable, + ISteamMatchmaking_SteamMatchMaking007_GetLobbyByIndex, + ISteamMatchmaking_SteamMatchMaking007_CreateLobby, + ISteamMatchmaking_SteamMatchMaking007_JoinLobby, + ISteamMatchmaking_SteamMatchMaking007_LeaveLobby, + ISteamMatchmaking_SteamMatchMaking007_InviteUserToLobby, + ISteamMatchmaking_SteamMatchMaking007_GetNumLobbyMembers, + ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberByIndex, + ISteamMatchmaking_SteamMatchMaking007_GetLobbyData, + ISteamMatchmaking_SteamMatchMaking007_SetLobbyData, + ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataCount, + ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex, + ISteamMatchmaking_SteamMatchMaking007_DeleteLobbyData, + ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberData, + ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberData, + ISteamMatchmaking_SteamMatchMaking007_SendLobbyChatMsg, + ISteamMatchmaking_SteamMatchMaking007_GetLobbyChatEntry, + ISteamMatchmaking_SteamMatchMaking007_RequestLobbyData, + ISteamMatchmaking_SteamMatchMaking007_SetLobbyGameServer, + ISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer, + ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberLimit, + ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberLimit, + ISteamMatchmaking_SteamMatchMaking007_SetLobbyType, + ISteamMatchmaking_SteamMatchMaking007_SetLobbyJoinable, + ISteamMatchmaking_SteamMatchMaking007_GetLobbyOwner, + ISteamMatchmaking_SteamMatchMaking007_SetLobbyOwner, + ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGameCount, + ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame, + ISteamMatchmaking_SteamMatchMaking008_AddFavoriteGame, + ISteamMatchmaking_SteamMatchMaking008_RemoveFavoriteGame, + ISteamMatchmaking_SteamMatchMaking008_RequestLobbyList, + ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListStringFilter, + ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNumericalFilter, + ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNearValueFilter, + ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListFilterSlotsAvailable, + ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListDistanceFilter, + ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListResultCountFilter, + ISteamMatchmaking_SteamMatchMaking008_GetLobbyByIndex, + ISteamMatchmaking_SteamMatchMaking008_CreateLobby, + ISteamMatchmaking_SteamMatchMaking008_JoinLobby, + ISteamMatchmaking_SteamMatchMaking008_LeaveLobby, + ISteamMatchmaking_SteamMatchMaking008_InviteUserToLobby, + ISteamMatchmaking_SteamMatchMaking008_GetNumLobbyMembers, + ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberByIndex, + ISteamMatchmaking_SteamMatchMaking008_GetLobbyData, + ISteamMatchmaking_SteamMatchMaking008_SetLobbyData, + ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataCount, + ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex, + ISteamMatchmaking_SteamMatchMaking008_DeleteLobbyData, + ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberData, + ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberData, + ISteamMatchmaking_SteamMatchMaking008_SendLobbyChatMsg, + ISteamMatchmaking_SteamMatchMaking008_GetLobbyChatEntry, + ISteamMatchmaking_SteamMatchMaking008_RequestLobbyData, + ISteamMatchmaking_SteamMatchMaking008_SetLobbyGameServer, + ISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer, + ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberLimit, + ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberLimit, + ISteamMatchmaking_SteamMatchMaking008_SetLobbyType, + ISteamMatchmaking_SteamMatchMaking008_SetLobbyJoinable, + ISteamMatchmaking_SteamMatchMaking008_GetLobbyOwner, + ISteamMatchmaking_SteamMatchMaking008_SetLobbyOwner, + ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGameCount, + ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame, + ISteamMatchmaking_SteamMatchMaking009_AddFavoriteGame, + ISteamMatchmaking_SteamMatchMaking009_RemoveFavoriteGame, + ISteamMatchmaking_SteamMatchMaking009_RequestLobbyList, + ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListStringFilter, + ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNumericalFilter, + ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNearValueFilter, + ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListFilterSlotsAvailable, + ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListDistanceFilter, + ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListResultCountFilter, + ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListCompatibleMembersFilter, + ISteamMatchmaking_SteamMatchMaking009_GetLobbyByIndex, + ISteamMatchmaking_SteamMatchMaking009_CreateLobby, + ISteamMatchmaking_SteamMatchMaking009_JoinLobby, + ISteamMatchmaking_SteamMatchMaking009_LeaveLobby, + ISteamMatchmaking_SteamMatchMaking009_InviteUserToLobby, + ISteamMatchmaking_SteamMatchMaking009_GetNumLobbyMembers, + ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberByIndex, + ISteamMatchmaking_SteamMatchMaking009_GetLobbyData, + ISteamMatchmaking_SteamMatchMaking009_SetLobbyData, + ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataCount, + ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex, + ISteamMatchmaking_SteamMatchMaking009_DeleteLobbyData, + ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberData, + ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberData, + ISteamMatchmaking_SteamMatchMaking009_SendLobbyChatMsg, + ISteamMatchmaking_SteamMatchMaking009_GetLobbyChatEntry, + ISteamMatchmaking_SteamMatchMaking009_RequestLobbyData, + ISteamMatchmaking_SteamMatchMaking009_SetLobbyGameServer, + ISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer, + ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberLimit, + ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberLimit, + ISteamMatchmaking_SteamMatchMaking009_SetLobbyType, + ISteamMatchmaking_SteamMatchMaking009_SetLobbyJoinable, + ISteamMatchmaking_SteamMatchMaking009_GetLobbyOwner, + ISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner, + ISteamMatchmaking_SteamMatchMaking009_SetLinkedLobby, + ISteamMatchmakingServers_SteamMatchMakingServers001_RequestInternetServerList, + ISteamMatchmakingServers_SteamMatchMakingServers001_RequestLANServerList, + ISteamMatchmakingServers_SteamMatchMakingServers001_RequestFriendsServerList, + ISteamMatchmakingServers_SteamMatchMakingServers001_RequestFavoritesServerList, + ISteamMatchmakingServers_SteamMatchMakingServers001_RequestHistoryServerList, + ISteamMatchmakingServers_SteamMatchMakingServers001_RequestSpectatorServerList, + ISteamMatchmakingServers_SteamMatchMakingServers001_GetServerDetails, + ISteamMatchmakingServers_SteamMatchMakingServers001_CancelQuery, + ISteamMatchmakingServers_SteamMatchMakingServers001_RefreshQuery, + ISteamMatchmakingServers_SteamMatchMakingServers001_IsRefreshing, + ISteamMatchmakingServers_SteamMatchMakingServers001_GetServerCount, + ISteamMatchmakingServers_SteamMatchMakingServers001_RefreshServer, + ISteamMatchmakingServers_SteamMatchMakingServers001_PingServer, + ISteamMatchmakingServers_SteamMatchMakingServers001_PlayerDetails, + ISteamMatchmakingServers_SteamMatchMakingServers001_ServerRules, + ISteamMatchmakingServers_SteamMatchMakingServers001_CancelServerQuery, + ISteamMatchmakingServers_SteamMatchMakingServers002_RequestInternetServerList, + ISteamMatchmakingServers_SteamMatchMakingServers002_RequestLANServerList, + ISteamMatchmakingServers_SteamMatchMakingServers002_RequestFriendsServerList, + ISteamMatchmakingServers_SteamMatchMakingServers002_RequestFavoritesServerList, + ISteamMatchmakingServers_SteamMatchMakingServers002_RequestHistoryServerList, + ISteamMatchmakingServers_SteamMatchMakingServers002_RequestSpectatorServerList, + ISteamMatchmakingServers_SteamMatchMakingServers002_ReleaseRequest, + ISteamMatchmakingServers_SteamMatchMakingServers002_GetServerDetails, + ISteamMatchmakingServers_SteamMatchMakingServers002_CancelQuery, + ISteamMatchmakingServers_SteamMatchMakingServers002_RefreshQuery, + ISteamMatchmakingServers_SteamMatchMakingServers002_IsRefreshing, + ISteamMatchmakingServers_SteamMatchMakingServers002_GetServerCount, + ISteamMatchmakingServers_SteamMatchMakingServers002_RefreshServer, + ISteamMatchmakingServers_SteamMatchMakingServers002_PingServer, + ISteamMatchmakingServers_SteamMatchMakingServers002_PlayerDetails, + ISteamMatchmakingServers_SteamMatchMakingServers002_ServerRules, + ISteamMatchmakingServers_SteamMatchMakingServers002_CancelServerQuery, + ISteamNetworking_SteamNetworking001_CreateListenSocket, + ISteamNetworking_SteamNetworking001_CreateP2PConnectionSocket, + ISteamNetworking_SteamNetworking001_CreateConnectionSocket, + ISteamNetworking_SteamNetworking001_DestroySocket, + ISteamNetworking_SteamNetworking001_DestroyListenSocket, + ISteamNetworking_SteamNetworking001_SendDataOnSocket, + ISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket, + ISteamNetworking_SteamNetworking001_RetrieveDataFromSocket, + ISteamNetworking_SteamNetworking001_IsDataAvailable, + ISteamNetworking_SteamNetworking001_RetrieveData, + ISteamNetworking_SteamNetworking001_GetSocketInfo, + ISteamNetworking_SteamNetworking001_GetListenSocketInfo, + ISteamNetworking_SteamNetworking002_CreateListenSocket, + ISteamNetworking_SteamNetworking002_CreateP2PConnectionSocket, + ISteamNetworking_SteamNetworking002_CreateConnectionSocket, + ISteamNetworking_SteamNetworking002_DestroySocket, + ISteamNetworking_SteamNetworking002_DestroyListenSocket, + ISteamNetworking_SteamNetworking002_SendDataOnSocket, + ISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket, + ISteamNetworking_SteamNetworking002_RetrieveDataFromSocket, + ISteamNetworking_SteamNetworking002_IsDataAvailable, + ISteamNetworking_SteamNetworking002_RetrieveData, + ISteamNetworking_SteamNetworking002_GetSocketInfo, + ISteamNetworking_SteamNetworking002_GetListenSocketInfo, + ISteamNetworking_SteamNetworking002_GetSocketConnectionType, + ISteamNetworking_SteamNetworking002_GetMaxPacketSize, + ISteamNetworking_SteamNetworking003_SendP2PPacket, + ISteamNetworking_SteamNetworking003_IsP2PPacketAvailable, + ISteamNetworking_SteamNetworking003_ReadP2PPacket, + ISteamNetworking_SteamNetworking003_AcceptP2PSessionWithUser, + ISteamNetworking_SteamNetworking003_CloseP2PSessionWithUser, + ISteamNetworking_SteamNetworking003_GetP2PSessionState, + ISteamNetworking_SteamNetworking003_CreateListenSocket, + ISteamNetworking_SteamNetworking003_CreateP2PConnectionSocket, + ISteamNetworking_SteamNetworking003_CreateConnectionSocket, + ISteamNetworking_SteamNetworking003_DestroySocket, + ISteamNetworking_SteamNetworking003_DestroyListenSocket, + ISteamNetworking_SteamNetworking003_SendDataOnSocket, + ISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket, + ISteamNetworking_SteamNetworking003_RetrieveDataFromSocket, + ISteamNetworking_SteamNetworking003_IsDataAvailable, + ISteamNetworking_SteamNetworking003_RetrieveData, + ISteamNetworking_SteamNetworking003_GetSocketInfo, + ISteamNetworking_SteamNetworking003_GetListenSocketInfo, + ISteamNetworking_SteamNetworking003_GetSocketConnectionType, + ISteamNetworking_SteamNetworking003_GetMaxPacketSize, + ISteamNetworking_SteamNetworking004_SendP2PPacket, + ISteamNetworking_SteamNetworking004_IsP2PPacketAvailable, + ISteamNetworking_SteamNetworking004_ReadP2PPacket, + ISteamNetworking_SteamNetworking004_AcceptP2PSessionWithUser, + ISteamNetworking_SteamNetworking004_CloseP2PSessionWithUser, + ISteamNetworking_SteamNetworking004_GetP2PSessionState, + ISteamNetworking_SteamNetworking004_CreateListenSocket, + ISteamNetworking_SteamNetworking004_CreateP2PConnectionSocket, + ISteamNetworking_SteamNetworking004_CreateConnectionSocket, + ISteamNetworking_SteamNetworking004_DestroySocket, + ISteamNetworking_SteamNetworking004_DestroyListenSocket, + ISteamNetworking_SteamNetworking004_SendDataOnSocket, + ISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket, + ISteamNetworking_SteamNetworking004_RetrieveDataFromSocket, + ISteamNetworking_SteamNetworking004_IsDataAvailable, + ISteamNetworking_SteamNetworking004_RetrieveData, + ISteamNetworking_SteamNetworking004_GetSocketInfo, + ISteamNetworking_SteamNetworking004_GetListenSocketInfo, + ISteamNetworking_SteamNetworking004_GetSocketConnectionType, + ISteamNetworking_SteamNetworking004_GetMaxPacketSize, + ISteamNetworking_SteamNetworking005_SendP2PPacket, + ISteamNetworking_SteamNetworking005_IsP2PPacketAvailable, + ISteamNetworking_SteamNetworking005_ReadP2PPacket, + ISteamNetworking_SteamNetworking005_AcceptP2PSessionWithUser, + ISteamNetworking_SteamNetworking005_CloseP2PSessionWithUser, + ISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser, + ISteamNetworking_SteamNetworking005_GetP2PSessionState, + ISteamNetworking_SteamNetworking005_AllowP2PPacketRelay, + ISteamNetworking_SteamNetworking005_CreateListenSocket, + ISteamNetworking_SteamNetworking005_CreateP2PConnectionSocket, + ISteamNetworking_SteamNetworking005_CreateConnectionSocket, + ISteamNetworking_SteamNetworking005_DestroySocket, + ISteamNetworking_SteamNetworking005_DestroyListenSocket, + ISteamNetworking_SteamNetworking005_SendDataOnSocket, + ISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket, + ISteamNetworking_SteamNetworking005_RetrieveDataFromSocket, + ISteamNetworking_SteamNetworking005_IsDataAvailable, + ISteamNetworking_SteamNetworking005_RetrieveData, + ISteamNetworking_SteamNetworking005_GetSocketInfo, + ISteamNetworking_SteamNetworking005_GetListenSocketInfo, + ISteamNetworking_SteamNetworking005_GetSocketConnectionType, + ISteamNetworking_SteamNetworking005_GetMaxPacketSize, + ISteamNetworking_SteamNetworking006_SendP2PPacket, + ISteamNetworking_SteamNetworking006_IsP2PPacketAvailable, + ISteamNetworking_SteamNetworking006_ReadP2PPacket, + ISteamNetworking_SteamNetworking006_AcceptP2PSessionWithUser, + ISteamNetworking_SteamNetworking006_CloseP2PSessionWithUser, + ISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser, + ISteamNetworking_SteamNetworking006_GetP2PSessionState, + ISteamNetworking_SteamNetworking006_AllowP2PPacketRelay, + ISteamNetworking_SteamNetworking006_CreateListenSocket, + ISteamNetworking_SteamNetworking006_CreateP2PConnectionSocket, + ISteamNetworking_SteamNetworking006_CreateConnectionSocket, + ISteamNetworking_SteamNetworking006_DestroySocket, + ISteamNetworking_SteamNetworking006_DestroyListenSocket, + ISteamNetworking_SteamNetworking006_SendDataOnSocket, + ISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket, + ISteamNetworking_SteamNetworking006_RetrieveDataFromSocket, + ISteamNetworking_SteamNetworking006_IsDataAvailable, + ISteamNetworking_SteamNetworking006_RetrieveData, + ISteamNetworking_SteamNetworking006_GetSocketInfo, + ISteamNetworking_SteamNetworking006_GetListenSocketInfo, + ISteamNetworking_SteamNetworking006_GetSocketConnectionType, + ISteamNetworking_SteamNetworking006_GetMaxPacketSize, + ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_DestroyFakeUDPPort, + ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_SendMessageToFakeIP, + ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ReceiveMessages, + ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ScheduleCleanup, + ISteamNetworkingMessages_SteamNetworkingMessages002_SendMessageToUser, + ISteamNetworkingMessages_SteamNetworkingMessages002_ReceiveMessagesOnChannel, + ISteamNetworkingMessages_SteamNetworkingMessages002_AcceptSessionWithUser, + ISteamNetworkingMessages_SteamNetworkingMessages002_CloseSessionWithUser, + ISteamNetworkingMessages_SteamNetworkingMessages002_CloseChannelWithUser, + ISteamNetworkingMessages_SteamNetworkingMessages002_GetSessionConnectionInfo, + ISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketIP, + ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectByIPAddress, + ISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketP2P, + ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectP2P, + ISteamNetworkingSockets_SteamNetworkingSockets002_AcceptConnection, + ISteamNetworkingSockets_SteamNetworkingSockets002_CloseConnection, + ISteamNetworkingSockets_SteamNetworkingSockets002_CloseListenSocket, + ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionUserData, + ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionUserData, + ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionName, + ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionName, + ISteamNetworkingSockets_SteamNetworkingSockets002_SendMessageToConnection, + ISteamNetworkingSockets_SteamNetworkingSockets002_FlushMessagesOnConnection, + ISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnConnection, + ISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnListenSocket, + ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionInfo, + ISteamNetworkingSockets_SteamNetworkingSockets002_GetQuickConnectionStatus, + ISteamNetworkingSockets_SteamNetworkingSockets002_GetDetailedConnectionStatus, + ISteamNetworkingSockets_SteamNetworkingSockets002_GetListenSocketAddress, + ISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocketPair, + ISteamNetworkingSockets_SteamNetworkingSockets002_GetIdentity, + ISteamNetworkingSockets_SteamNetworkingSockets002_ReceivedRelayAuthTicket, + ISteamNetworkingSockets_SteamNetworkingSockets002_FindRelayAuthTicketForServer, + ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectToHostedDedicatedServer, + ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPort, + ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPOPID, + ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerAddress, + ISteamNetworkingSockets_SteamNetworkingSockets002_CreateHostedDedicatedServerListenSocket, + ISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketIP, + ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectByIPAddress, + ISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketP2P, + ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectP2P, + ISteamNetworkingSockets_SteamNetworkingSockets004_AcceptConnection, + ISteamNetworkingSockets_SteamNetworkingSockets004_CloseConnection, + ISteamNetworkingSockets_SteamNetworkingSockets004_CloseListenSocket, + ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionUserData, + ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionUserData, + ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionName, + ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionName, + ISteamNetworkingSockets_SteamNetworkingSockets004_SendMessageToConnection, + ISteamNetworkingSockets_SteamNetworkingSockets004_FlushMessagesOnConnection, + ISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnConnection, + ISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnListenSocket, + ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionInfo, + ISteamNetworkingSockets_SteamNetworkingSockets004_GetQuickConnectionStatus, + ISteamNetworkingSockets_SteamNetworkingSockets004_GetDetailedConnectionStatus, + ISteamNetworkingSockets_SteamNetworkingSockets004_GetListenSocketAddress, + ISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocketPair, + ISteamNetworkingSockets_SteamNetworkingSockets004_GetIdentity, + ISteamNetworkingSockets_SteamNetworkingSockets004_InitAuthentication, + ISteamNetworkingSockets_SteamNetworkingSockets004_GetAuthenticationStatus, + ISteamNetworkingSockets_SteamNetworkingSockets004_ReceivedRelayAuthTicket, + ISteamNetworkingSockets_SteamNetworkingSockets004_FindRelayAuthTicketForServer, + ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectToHostedDedicatedServer, + ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPort, + ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPOPID, + ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerAddress, + ISteamNetworkingSockets_SteamNetworkingSockets004_CreateHostedDedicatedServerListenSocket, + ISteamNetworkingSockets_SteamNetworkingSockets004_GetGameCoordinatorServerLogin, + ISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketIP, + ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectByIPAddress, + ISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketP2P, + ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2P, + ISteamNetworkingSockets_SteamNetworkingSockets006_AcceptConnection, + ISteamNetworkingSockets_SteamNetworkingSockets006_CloseConnection, + ISteamNetworkingSockets_SteamNetworkingSockets006_CloseListenSocket, + ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionUserData, + ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionUserData, + ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionName, + ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionName, + ISteamNetworkingSockets_SteamNetworkingSockets006_SendMessageToConnection, + ISteamNetworkingSockets_SteamNetworkingSockets006_SendMessages, + ISteamNetworkingSockets_SteamNetworkingSockets006_FlushMessagesOnConnection, + ISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnConnection, + ISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnListenSocket, + ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionInfo, + ISteamNetworkingSockets_SteamNetworkingSockets006_GetQuickConnectionStatus, + ISteamNetworkingSockets_SteamNetworkingSockets006_GetDetailedConnectionStatus, + ISteamNetworkingSockets_SteamNetworkingSockets006_GetListenSocketAddress, + ISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocketPair, + ISteamNetworkingSockets_SteamNetworkingSockets006_GetIdentity, + ISteamNetworkingSockets_SteamNetworkingSockets006_InitAuthentication, + ISteamNetworkingSockets_SteamNetworkingSockets006_GetAuthenticationStatus, + ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedRelayAuthTicket, + ISteamNetworkingSockets_SteamNetworkingSockets006_FindRelayAuthTicketForServer, + ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectToHostedDedicatedServer, + ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPort, + ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPOPID, + ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerAddress, + ISteamNetworkingSockets_SteamNetworkingSockets006_CreateHostedDedicatedServerListenSocket, + ISteamNetworkingSockets_SteamNetworkingSockets006_GetGameCoordinatorServerLogin, + ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2PCustomSignaling, + ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP2PCustomSignal, + ISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketIP, + ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectByIPAddress, + ISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketP2P, + ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2P, + ISteamNetworkingSockets_SteamNetworkingSockets008_AcceptConnection, + ISteamNetworkingSockets_SteamNetworkingSockets008_CloseConnection, + ISteamNetworkingSockets_SteamNetworkingSockets008_CloseListenSocket, + ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionUserData, + ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionUserData, + ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionName, + ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionName, + ISteamNetworkingSockets_SteamNetworkingSockets008_SendMessageToConnection, + ISteamNetworkingSockets_SteamNetworkingSockets008_SendMessages, + ISteamNetworkingSockets_SteamNetworkingSockets008_FlushMessagesOnConnection, + ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnConnection, + ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionInfo, + ISteamNetworkingSockets_SteamNetworkingSockets008_GetQuickConnectionStatus, + ISteamNetworkingSockets_SteamNetworkingSockets008_GetDetailedConnectionStatus, + ISteamNetworkingSockets_SteamNetworkingSockets008_GetListenSocketAddress, + ISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocketPair, + ISteamNetworkingSockets_SteamNetworkingSockets008_GetIdentity, + ISteamNetworkingSockets_SteamNetworkingSockets008_InitAuthentication, + ISteamNetworkingSockets_SteamNetworkingSockets008_GetAuthenticationStatus, + ISteamNetworkingSockets_SteamNetworkingSockets008_CreatePollGroup, + ISteamNetworkingSockets_SteamNetworkingSockets008_DestroyPollGroup, + ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionPollGroup, + ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnPollGroup, + ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedRelayAuthTicket, + ISteamNetworkingSockets_SteamNetworkingSockets008_FindRelayAuthTicketForServer, + ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectToHostedDedicatedServer, + ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPort, + ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPOPID, + ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerAddress, + ISteamNetworkingSockets_SteamNetworkingSockets008_CreateHostedDedicatedServerListenSocket, + ISteamNetworkingSockets_SteamNetworkingSockets008_GetGameCoordinatorServerLogin, + ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2PCustomSignaling, + ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP2PCustomSignal, + ISteamNetworkingSockets_SteamNetworkingSockets008_GetCertificateRequest, + ISteamNetworkingSockets_SteamNetworkingSockets008_SetCertificate, + ISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketIP, + ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectByIPAddress, + ISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketP2P, + ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2P, + ISteamNetworkingSockets_SteamNetworkingSockets009_AcceptConnection, + ISteamNetworkingSockets_SteamNetworkingSockets009_CloseConnection, + ISteamNetworkingSockets_SteamNetworkingSockets009_CloseListenSocket, + ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionUserData, + ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionUserData, + ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionName, + ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionName, + ISteamNetworkingSockets_SteamNetworkingSockets009_SendMessageToConnection, + ISteamNetworkingSockets_SteamNetworkingSockets009_SendMessages, + ISteamNetworkingSockets_SteamNetworkingSockets009_FlushMessagesOnConnection, + ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnConnection, + ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionInfo, + ISteamNetworkingSockets_SteamNetworkingSockets009_GetQuickConnectionStatus, + ISteamNetworkingSockets_SteamNetworkingSockets009_GetDetailedConnectionStatus, + ISteamNetworkingSockets_SteamNetworkingSockets009_GetListenSocketAddress, + ISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocketPair, + ISteamNetworkingSockets_SteamNetworkingSockets009_GetIdentity, + ISteamNetworkingSockets_SteamNetworkingSockets009_InitAuthentication, + ISteamNetworkingSockets_SteamNetworkingSockets009_GetAuthenticationStatus, + ISteamNetworkingSockets_SteamNetworkingSockets009_CreatePollGroup, + ISteamNetworkingSockets_SteamNetworkingSockets009_DestroyPollGroup, + ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionPollGroup, + ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnPollGroup, + ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedRelayAuthTicket, + ISteamNetworkingSockets_SteamNetworkingSockets009_FindRelayAuthTicketForServer, + ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectToHostedDedicatedServer, + ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPort, + ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPOPID, + ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerAddress, + ISteamNetworkingSockets_SteamNetworkingSockets009_CreateHostedDedicatedServerListenSocket, + ISteamNetworkingSockets_SteamNetworkingSockets009_GetGameCoordinatorServerLogin, + ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2PCustomSignaling, + ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2PCustomSignal, + ISteamNetworkingSockets_SteamNetworkingSockets009_GetCertificateRequest, + ISteamNetworkingSockets_SteamNetworkingSockets009_SetCertificate, + ISteamNetworkingSockets_SteamNetworkingSockets009_RunCallbacks, + ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketIP, + ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectByIPAddress, + ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2P, + ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2P, + ISteamNetworkingSockets_SteamNetworkingSockets012_AcceptConnection, + ISteamNetworkingSockets_SteamNetworkingSockets012_CloseConnection, + ISteamNetworkingSockets_SteamNetworkingSockets012_CloseListenSocket, + ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionUserData, + ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionUserData, + ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionName, + ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionName, + ISteamNetworkingSockets_SteamNetworkingSockets012_SendMessageToConnection, + ISteamNetworkingSockets_SteamNetworkingSockets012_SendMessages, + ISteamNetworkingSockets_SteamNetworkingSockets012_FlushMessagesOnConnection, + ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnConnection, + ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionInfo, + ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionRealTimeStatus, + ISteamNetworkingSockets_SteamNetworkingSockets012_GetDetailedConnectionStatus, + ISteamNetworkingSockets_SteamNetworkingSockets012_GetListenSocketAddress, + ISteamNetworkingSockets_SteamNetworkingSockets012_CreateSocketPair, + ISteamNetworkingSockets_SteamNetworkingSockets012_ConfigureConnectionLanes, + ISteamNetworkingSockets_SteamNetworkingSockets012_GetIdentity, + ISteamNetworkingSockets_SteamNetworkingSockets012_InitAuthentication, + ISteamNetworkingSockets_SteamNetworkingSockets012_GetAuthenticationStatus, + ISteamNetworkingSockets_SteamNetworkingSockets012_CreatePollGroup, + ISteamNetworkingSockets_SteamNetworkingSockets012_DestroyPollGroup, + ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionPollGroup, + ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnPollGroup, + ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedRelayAuthTicket, + ISteamNetworkingSockets_SteamNetworkingSockets012_FindRelayAuthTicketForServer, + ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectToHostedDedicatedServer, + ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPort, + ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPOPID, + ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerAddress, + ISteamNetworkingSockets_SteamNetworkingSockets012_CreateHostedDedicatedServerListenSocket, + ISteamNetworkingSockets_SteamNetworkingSockets012_GetGameCoordinatorServerLogin, + ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2PCustomSignaling, + ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2PCustomSignal, + ISteamNetworkingSockets_SteamNetworkingSockets012_GetCertificateRequest, + ISteamNetworkingSockets_SteamNetworkingSockets012_SetCertificate, + ISteamNetworkingSockets_SteamNetworkingSockets012_ResetIdentity, + ISteamNetworkingSockets_SteamNetworkingSockets012_RunCallbacks, + ISteamNetworkingSockets_SteamNetworkingSockets012_BeginAsyncRequestFakeIP, + ISteamNetworkingSockets_SteamNetworkingSockets012_GetFakeIP, + ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2PFakeIP, + ISteamNetworkingSockets_SteamNetworkingSockets012_GetRemoteFakeIPForConnection, + ISteamNetworkingSockets_SteamNetworkingSockets012_CreateFakeUDPPort, + ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PRendezvous, + ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PConnectionFailure, + ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCertAsync, + ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetNetworkConfigJSON, + ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_CacheRelayTicket, + ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicketCount, + ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicket, + ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_PostConnectionStateMsg, + ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PRendezvous, + ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PConnectionFailure, + ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCertAsync, + ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetNetworkConfigJSON, + ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_CacheRelayTicket, + ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicketCount, + ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicket, + ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_PostConnectionStateMsg, + ISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalPingLocation, + ISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeBetweenTwoLocations, + ISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeFromLocalHost, + ISteamNetworkingUtils_SteamNetworkingUtils001_ConvertPingLocationToString, + ISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLocationString, + ISteamNetworkingUtils_SteamNetworkingUtils001_CheckPingDataUpToDate, + ISteamNetworkingUtils_SteamNetworkingUtils001_IsPingMeasurementInProgress, + ISteamNetworkingUtils_SteamNetworkingUtils001_GetPingToDataCenter, + ISteamNetworkingUtils_SteamNetworkingUtils001_GetDirectPingToPOP, + ISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPCount, + ISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPList, + ISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalTimestamp, + ISteamNetworkingUtils_SteamNetworkingUtils001_SetDebugOutputFunction, + ISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue, + ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValue, + ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo, + ISteamNetworkingUtils_SteamNetworkingUtils001_GetFirstConfigValue, + ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ToString, + ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ParseString, + ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ToString, + ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ParseString, + ISteamNetworkingUtils_SteamNetworkingUtils002_GetRelayNetworkStatus, + ISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalPingLocation, + ISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeBetweenTwoLocations, + ISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeFromLocalHost, + ISteamNetworkingUtils_SteamNetworkingUtils002_ConvertPingLocationToString, + ISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLocationString, + ISteamNetworkingUtils_SteamNetworkingUtils002_CheckPingDataUpToDate, + ISteamNetworkingUtils_SteamNetworkingUtils002_GetPingToDataCenter, + ISteamNetworkingUtils_SteamNetworkingUtils002_GetDirectPingToPOP, + ISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPCount, + ISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPList, + ISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalTimestamp, + ISteamNetworkingUtils_SteamNetworkingUtils002_SetDebugOutputFunction, + ISteamNetworkingUtils_SteamNetworkingUtils002_SetConfigValue, + ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValue, + ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValueInfo, + ISteamNetworkingUtils_SteamNetworkingUtils002_GetFirstConfigValue, + ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ToString, + ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ParseString, + ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ToString, + ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ParseString, + ISteamNetworkingUtils_SteamNetworkingUtils003_AllocateMessage, + ISteamNetworkingUtils_SteamNetworkingUtils003_GetRelayNetworkStatus, + ISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalPingLocation, + ISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeBetweenTwoLocations, + ISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeFromLocalHost, + ISteamNetworkingUtils_SteamNetworkingUtils003_ConvertPingLocationToString, + ISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLocationString, + ISteamNetworkingUtils_SteamNetworkingUtils003_CheckPingDataUpToDate, + ISteamNetworkingUtils_SteamNetworkingUtils003_GetPingToDataCenter, + ISteamNetworkingUtils_SteamNetworkingUtils003_GetDirectPingToPOP, + ISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPCount, + ISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPList, + ISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalTimestamp, + ISteamNetworkingUtils_SteamNetworkingUtils003_SetDebugOutputFunction, + ISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue, + ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValue, + ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValueInfo, + ISteamNetworkingUtils_SteamNetworkingUtils003_GetFirstConfigValue, + ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ToString, + ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ParseString, + ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ToString, + ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ParseString, + ISteamNetworkingUtils_SteamNetworkingUtils004_AllocateMessage, + ISteamNetworkingUtils_SteamNetworkingUtils004_GetRelayNetworkStatus, + ISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalPingLocation, + ISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeBetweenTwoLocations, + ISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeFromLocalHost, + ISteamNetworkingUtils_SteamNetworkingUtils004_ConvertPingLocationToString, + ISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLocationString, + ISteamNetworkingUtils_SteamNetworkingUtils004_CheckPingDataUpToDate, + ISteamNetworkingUtils_SteamNetworkingUtils004_GetPingToDataCenter, + ISteamNetworkingUtils_SteamNetworkingUtils004_GetDirectPingToPOP, + ISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPCount, + ISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPList, + ISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalTimestamp, + ISteamNetworkingUtils_SteamNetworkingUtils004_SetDebugOutputFunction, + ISteamNetworkingUtils_SteamNetworkingUtils004_GetIPv4FakeIPType, + ISteamNetworkingUtils_SteamNetworkingUtils004_GetRealIdentityForFakeIP, + ISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue, + ISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValue, + ISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValueInfo, + ISteamNetworkingUtils_SteamNetworkingUtils004_IterateGenericEditableConfigValues, + ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToString, + ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ParseString, + ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_GetFakeIPType, + ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ToString, + ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ParseString, + ISteamParties_SteamParties002_GetNumActiveBeacons, + ISteamParties_SteamParties002_GetBeaconByIndex, + ISteamParties_SteamParties002_GetBeaconDetails, + ISteamParties_SteamParties002_JoinParty, + ISteamParties_SteamParties002_GetNumAvailableBeaconLocations, + ISteamParties_SteamParties002_GetAvailableBeaconLocations, + ISteamParties_SteamParties002_CreateBeacon, + ISteamParties_SteamParties002_OnReservationCompleted, + ISteamParties_SteamParties002_CancelReservation, + ISteamParties_SteamParties002_ChangeNumOpenSlots, + ISteamParties_SteamParties002_DestroyBeacon, + ISteamParties_SteamParties002_GetBeaconLocationData, + ISteamUser_SteamUser004_GetHSteamUser, + ISteamUser_SteamUser004_LogOn, + ISteamUser_SteamUser004_LogOff, + ISteamUser_SteamUser004_BLoggedOn, + ISteamUser_SteamUser004_GetLogonState, + ISteamUser_SteamUser004_BConnected, + ISteamUser_SteamUser004_GetSteamID, + ISteamUser_SteamUser004_IsVACBanned, + ISteamUser_SteamUser004_RequireShowVACBannedMessage, + ISteamUser_SteamUser004_AcknowledgeVACBanning, + ISteamUser_SteamUser004_NClientGameIDAdd, + ISteamUser_SteamUser004_RemoveClientGame, + ISteamUser_SteamUser004_SetClientGameServer, + ISteamUser_SteamUser004_SetSteam2Ticket, + ISteamUser_SteamUser004_AddServerNetAddress, + ISteamUser_SteamUser004_SetEmail, + ISteamUser_SteamUser004_GetSteamGameConnectToken, + ISteamUser_SteamUser004_SetRegistryString, + ISteamUser_SteamUser004_GetRegistryString, + ISteamUser_SteamUser004_SetRegistryInt, + ISteamUser_SteamUser004_GetRegistryInt, + ISteamUser_SteamUser004_InitiateGameConnection, + ISteamUser_SteamUser004_TerminateGameConnection, + ISteamUser_SteamUser004_SetSelfAsPrimaryChatDestination, + ISteamUser_SteamUser004_IsPrimaryChatDestination, + ISteamUser_SteamUser004_RequestLegacyCDKey, + ISteamUser_SteamUser005_GetHSteamUser, + ISteamUser_SteamUser005_LogOn, + ISteamUser_SteamUser005_LogOff, + ISteamUser_SteamUser005_BLoggedOn, + ISteamUser_SteamUser005_GetLogonState, + ISteamUser_SteamUser005_BConnected, + ISteamUser_SteamUser005_GetSteamID, + ISteamUser_SteamUser005_IsVACBanned, + ISteamUser_SteamUser005_RequireShowVACBannedMessage, + ISteamUser_SteamUser005_AcknowledgeVACBanning, + ISteamUser_SteamUser005_SetSteam2Ticket, + ISteamUser_SteamUser005_AddServerNetAddress, + ISteamUser_SteamUser005_SetEmail, + ISteamUser_SteamUser005_SetRegistryString, + ISteamUser_SteamUser005_GetRegistryString, + ISteamUser_SteamUser005_SetRegistryInt, + ISteamUser_SteamUser005_GetRegistryInt, + ISteamUser_SteamUser005_InitiateGameConnection, + ISteamUser_SteamUser005_TerminateGameConnection, + ISteamUser_SteamUser005_SetSelfAsPrimaryChatDestination, + ISteamUser_SteamUser005_IsPrimaryChatDestination, + ISteamUser_SteamUser005_RequestLegacyCDKey, + ISteamUser_SteamUser005_SendGuestPassByEmail, + ISteamUser_SteamUser005_SendGuestPassByAccountID, + ISteamUser_SteamUser005_AckGuestPass, + ISteamUser_SteamUser005_RedeemGuestPass, + ISteamUser_SteamUser005_GetGuestPassToGiveCount, + ISteamUser_SteamUser005_GetGuestPassToRedeemCount, + ISteamUser_SteamUser005_GetGuestPassLastUpdateTime, + ISteamUser_SteamUser005_GetGuestPassToGiveInfo, + ISteamUser_SteamUser005_GetGuestPassToRedeemInfo, + ISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress, + ISteamUser_SteamUser005_GetGuestPassToRedeemSenderName, + ISteamUser_SteamUser005_AcknowledgeMessageByGID, + ISteamUser_SteamUser005_SetLanguage, + ISteamUser_SteamUser005_TrackAppUsageEvent, + ISteamUser_SteamUser005_SetAccountName, + ISteamUser_SteamUser005_SetPassword, + ISteamUser_SteamUser005_SetAccountCreationTime, + ISteamUser_SteamUser006_GetHSteamUser, + ISteamUser_SteamUser006_LogOn, + ISteamUser_SteamUser006_LogOff, + ISteamUser_SteamUser006_BLoggedOn, + ISteamUser_SteamUser006_GetSteamID, + ISteamUser_SteamUser006_SetRegistryString, + ISteamUser_SteamUser006_GetRegistryString, + ISteamUser_SteamUser006_SetRegistryInt, + ISteamUser_SteamUser006_GetRegistryInt, + ISteamUser_SteamUser006_InitiateGameConnection, + ISteamUser_SteamUser006_TerminateGameConnection, + ISteamUser_SteamUser006_TrackAppUsageEvent, + ISteamUser_SteamUser007_GetHSteamUser, + ISteamUser_SteamUser007_LogOn, + ISteamUser_SteamUser007_LogOff, + ISteamUser_SteamUser007_BLoggedOn, + ISteamUser_SteamUser007_GetSteamID, + ISteamUser_SteamUser007_SetRegistryString, + ISteamUser_SteamUser007_GetRegistryString, + ISteamUser_SteamUser007_SetRegistryInt, + ISteamUser_SteamUser007_GetRegistryInt, + ISteamUser_SteamUser007_InitiateGameConnection, + ISteamUser_SteamUser007_TerminateGameConnection, + ISteamUser_SteamUser007_TrackAppUsageEvent, + ISteamUser_SteamUser007_RefreshSteam2Login, + ISteamUser_SteamUser008_GetHSteamUser, + ISteamUser_SteamUser008_BLoggedOn, + ISteamUser_SteamUser008_GetSteamID, + ISteamUser_SteamUser008_InitiateGameConnection, + ISteamUser_SteamUser008_TerminateGameConnection, + ISteamUser_SteamUser008_TrackAppUsageEvent, + ISteamUser_SteamUser008_RefreshSteam2Login, + ISteamUser_SteamUser009_GetHSteamUser, + ISteamUser_SteamUser009_BLoggedOn, + ISteamUser_SteamUser009_GetSteamID, + ISteamUser_SteamUser009_InitiateGameConnection, + ISteamUser_SteamUser009_TerminateGameConnection, + ISteamUser_SteamUser009_TrackAppUsageEvent, + ISteamUser_SteamUser009_RefreshSteam2Login, + ISteamUser_SteamUser010_GetHSteamUser, + ISteamUser_SteamUser010_BLoggedOn, + ISteamUser_SteamUser010_GetSteamID, + ISteamUser_SteamUser010_InitiateGameConnection, + ISteamUser_SteamUser010_TerminateGameConnection, + ISteamUser_SteamUser010_TrackAppUsageEvent, + ISteamUser_SteamUser011_GetHSteamUser, + ISteamUser_SteamUser011_BLoggedOn, + ISteamUser_SteamUser011_GetSteamID, + ISteamUser_SteamUser011_InitiateGameConnection, + ISteamUser_SteamUser011_TerminateGameConnection, + ISteamUser_SteamUser011_TrackAppUsageEvent, + ISteamUser_SteamUser011_GetUserDataFolder, + ISteamUser_SteamUser011_StartVoiceRecording, + ISteamUser_SteamUser011_StopVoiceRecording, + ISteamUser_SteamUser011_GetCompressedVoice, + ISteamUser_SteamUser011_DecompressVoice, + ISteamUser_SteamUser012_GetHSteamUser, + ISteamUser_SteamUser012_BLoggedOn, + ISteamUser_SteamUser012_GetSteamID, + ISteamUser_SteamUser012_InitiateGameConnection, + ISteamUser_SteamUser012_TerminateGameConnection, + ISteamUser_SteamUser012_TrackAppUsageEvent, + ISteamUser_SteamUser012_GetUserDataFolder, + ISteamUser_SteamUser012_StartVoiceRecording, + ISteamUser_SteamUser012_StopVoiceRecording, + ISteamUser_SteamUser012_GetCompressedVoice, + ISteamUser_SteamUser012_DecompressVoice, + ISteamUser_SteamUser012_GetAuthSessionTicket, + ISteamUser_SteamUser012_BeginAuthSession, + ISteamUser_SteamUser012_EndAuthSession, + ISteamUser_SteamUser012_CancelAuthTicket, + ISteamUser_SteamUser012_UserHasLicenseForApp, + ISteamUser_SteamUser013_GetHSteamUser, + ISteamUser_SteamUser013_BLoggedOn, + ISteamUser_SteamUser013_GetSteamID, + ISteamUser_SteamUser013_InitiateGameConnection, + ISteamUser_SteamUser013_TerminateGameConnection, + ISteamUser_SteamUser013_TrackAppUsageEvent, + ISteamUser_SteamUser013_GetUserDataFolder, + ISteamUser_SteamUser013_StartVoiceRecording, + ISteamUser_SteamUser013_StopVoiceRecording, + ISteamUser_SteamUser013_GetAvailableVoice, + ISteamUser_SteamUser013_GetVoice, + ISteamUser_SteamUser013_DecompressVoice, + ISteamUser_SteamUser013_GetAuthSessionTicket, + ISteamUser_SteamUser013_BeginAuthSession, + ISteamUser_SteamUser013_EndAuthSession, + ISteamUser_SteamUser013_CancelAuthTicket, + ISteamUser_SteamUser013_UserHasLicenseForApp, + ISteamUser_SteamUser014_GetHSteamUser, + ISteamUser_SteamUser014_BLoggedOn, + ISteamUser_SteamUser014_GetSteamID, + ISteamUser_SteamUser014_InitiateGameConnection, + ISteamUser_SteamUser014_TerminateGameConnection, + ISteamUser_SteamUser014_TrackAppUsageEvent, + ISteamUser_SteamUser014_GetUserDataFolder, + ISteamUser_SteamUser014_StartVoiceRecording, + ISteamUser_SteamUser014_StopVoiceRecording, + ISteamUser_SteamUser014_GetAvailableVoice, + ISteamUser_SteamUser014_GetVoice, + ISteamUser_SteamUser014_DecompressVoice, + ISteamUser_SteamUser014_GetAuthSessionTicket, + ISteamUser_SteamUser014_BeginAuthSession, + ISteamUser_SteamUser014_EndAuthSession, + ISteamUser_SteamUser014_CancelAuthTicket, + ISteamUser_SteamUser014_UserHasLicenseForApp, + ISteamUser_SteamUser014_BIsBehindNAT, + ISteamUser_SteamUser014_AdvertiseGame, + ISteamUser_SteamUser014_RequestEncryptedAppTicket, + ISteamUser_SteamUser014_GetEncryptedAppTicket, + ISteamUser_SteamUser015_GetHSteamUser, + ISteamUser_SteamUser015_BLoggedOn, + ISteamUser_SteamUser015_GetSteamID, + ISteamUser_SteamUser015_InitiateGameConnection, + ISteamUser_SteamUser015_TerminateGameConnection, + ISteamUser_SteamUser015_TrackAppUsageEvent, + ISteamUser_SteamUser015_GetUserDataFolder, + ISteamUser_SteamUser015_StartVoiceRecording, + ISteamUser_SteamUser015_StopVoiceRecording, + ISteamUser_SteamUser015_GetAvailableVoice, + ISteamUser_SteamUser015_GetVoice, + ISteamUser_SteamUser015_DecompressVoice, + ISteamUser_SteamUser015_GetVoiceOptimalSampleRate, + ISteamUser_SteamUser015_GetAuthSessionTicket, + ISteamUser_SteamUser015_BeginAuthSession, + ISteamUser_SteamUser015_EndAuthSession, + ISteamUser_SteamUser015_CancelAuthTicket, + ISteamUser_SteamUser015_UserHasLicenseForApp, + ISteamUser_SteamUser015_BIsBehindNAT, + ISteamUser_SteamUser015_AdvertiseGame, + ISteamUser_SteamUser015_RequestEncryptedAppTicket, + ISteamUser_SteamUser015_GetEncryptedAppTicket, + ISteamUser_SteamUser016_GetHSteamUser, + ISteamUser_SteamUser016_BLoggedOn, + ISteamUser_SteamUser016_GetSteamID, + ISteamUser_SteamUser016_InitiateGameConnection, + ISteamUser_SteamUser016_TerminateGameConnection, + ISteamUser_SteamUser016_TrackAppUsageEvent, + ISteamUser_SteamUser016_GetUserDataFolder, + ISteamUser_SteamUser016_StartVoiceRecording, + ISteamUser_SteamUser016_StopVoiceRecording, + ISteamUser_SteamUser016_GetAvailableVoice, + ISteamUser_SteamUser016_GetVoice, + ISteamUser_SteamUser016_DecompressVoice, + ISteamUser_SteamUser016_GetVoiceOptimalSampleRate, + ISteamUser_SteamUser016_GetAuthSessionTicket, + ISteamUser_SteamUser016_BeginAuthSession, + ISteamUser_SteamUser016_EndAuthSession, + ISteamUser_SteamUser016_CancelAuthTicket, + ISteamUser_SteamUser016_UserHasLicenseForApp, + ISteamUser_SteamUser016_BIsBehindNAT, + ISteamUser_SteamUser016_AdvertiseGame, + ISteamUser_SteamUser016_RequestEncryptedAppTicket, + ISteamUser_SteamUser016_GetEncryptedAppTicket, + ISteamUser_SteamUser017_GetHSteamUser, + ISteamUser_SteamUser017_BLoggedOn, + ISteamUser_SteamUser017_GetSteamID, + ISteamUser_SteamUser017_InitiateGameConnection, + ISteamUser_SteamUser017_TerminateGameConnection, + ISteamUser_SteamUser017_TrackAppUsageEvent, + ISteamUser_SteamUser017_GetUserDataFolder, + ISteamUser_SteamUser017_StartVoiceRecording, + ISteamUser_SteamUser017_StopVoiceRecording, + ISteamUser_SteamUser017_GetAvailableVoice, + ISteamUser_SteamUser017_GetVoice, + ISteamUser_SteamUser017_DecompressVoice, + ISteamUser_SteamUser017_GetVoiceOptimalSampleRate, + ISteamUser_SteamUser017_GetAuthSessionTicket, + ISteamUser_SteamUser017_BeginAuthSession, + ISteamUser_SteamUser017_EndAuthSession, + ISteamUser_SteamUser017_CancelAuthTicket, + ISteamUser_SteamUser017_UserHasLicenseForApp, + ISteamUser_SteamUser017_BIsBehindNAT, + ISteamUser_SteamUser017_AdvertiseGame, + ISteamUser_SteamUser017_RequestEncryptedAppTicket, + ISteamUser_SteamUser017_GetEncryptedAppTicket, + ISteamUser_SteamUser017_GetGameBadgeLevel, + ISteamUser_SteamUser017_GetPlayerSteamLevel, + ISteamUser_SteamUser018_GetHSteamUser, + ISteamUser_SteamUser018_BLoggedOn, + ISteamUser_SteamUser018_GetSteamID, + ISteamUser_SteamUser018_InitiateGameConnection, + ISteamUser_SteamUser018_TerminateGameConnection, + ISteamUser_SteamUser018_TrackAppUsageEvent, + ISteamUser_SteamUser018_GetUserDataFolder, + ISteamUser_SteamUser018_StartVoiceRecording, + ISteamUser_SteamUser018_StopVoiceRecording, + ISteamUser_SteamUser018_GetAvailableVoice, + ISteamUser_SteamUser018_GetVoice, + ISteamUser_SteamUser018_DecompressVoice, + ISteamUser_SteamUser018_GetVoiceOptimalSampleRate, + ISteamUser_SteamUser018_GetAuthSessionTicket, + ISteamUser_SteamUser018_BeginAuthSession, + ISteamUser_SteamUser018_EndAuthSession, + ISteamUser_SteamUser018_CancelAuthTicket, + ISteamUser_SteamUser018_UserHasLicenseForApp, + ISteamUser_SteamUser018_BIsBehindNAT, + ISteamUser_SteamUser018_AdvertiseGame, + ISteamUser_SteamUser018_RequestEncryptedAppTicket, + ISteamUser_SteamUser018_GetEncryptedAppTicket, + ISteamUser_SteamUser018_GetGameBadgeLevel, + ISteamUser_SteamUser018_GetPlayerSteamLevel, + ISteamUser_SteamUser018_RequestStoreAuthURL, + ISteamUser_SteamUser019_GetHSteamUser, + ISteamUser_SteamUser019_BLoggedOn, + ISteamUser_SteamUser019_GetSteamID, + ISteamUser_SteamUser019_InitiateGameConnection, + ISteamUser_SteamUser019_TerminateGameConnection, + ISteamUser_SteamUser019_TrackAppUsageEvent, + ISteamUser_SteamUser019_GetUserDataFolder, + ISteamUser_SteamUser019_StartVoiceRecording, + ISteamUser_SteamUser019_StopVoiceRecording, + ISteamUser_SteamUser019_GetAvailableVoice, + ISteamUser_SteamUser019_GetVoice, + ISteamUser_SteamUser019_DecompressVoice, + ISteamUser_SteamUser019_GetVoiceOptimalSampleRate, + ISteamUser_SteamUser019_GetAuthSessionTicket, + ISteamUser_SteamUser019_BeginAuthSession, + ISteamUser_SteamUser019_EndAuthSession, + ISteamUser_SteamUser019_CancelAuthTicket, + ISteamUser_SteamUser019_UserHasLicenseForApp, + ISteamUser_SteamUser019_BIsBehindNAT, + ISteamUser_SteamUser019_AdvertiseGame, + ISteamUser_SteamUser019_RequestEncryptedAppTicket, + ISteamUser_SteamUser019_GetEncryptedAppTicket, + ISteamUser_SteamUser019_GetGameBadgeLevel, + ISteamUser_SteamUser019_GetPlayerSteamLevel, + ISteamUser_SteamUser019_RequestStoreAuthURL, + ISteamUser_SteamUser019_BIsPhoneVerified, + ISteamUser_SteamUser019_BIsTwoFactorEnabled, + ISteamUser_SteamUser019_BIsPhoneIdentifying, + ISteamUser_SteamUser019_BIsPhoneRequiringVerification, + ISteamUser_SteamUser020_GetHSteamUser, + ISteamUser_SteamUser020_BLoggedOn, + ISteamUser_SteamUser020_GetSteamID, + ISteamUser_SteamUser020_InitiateGameConnection, + ISteamUser_SteamUser020_TerminateGameConnection, + ISteamUser_SteamUser020_TrackAppUsageEvent, + ISteamUser_SteamUser020_GetUserDataFolder, + ISteamUser_SteamUser020_StartVoiceRecording, + ISteamUser_SteamUser020_StopVoiceRecording, + ISteamUser_SteamUser020_GetAvailableVoice, + ISteamUser_SteamUser020_GetVoice, + ISteamUser_SteamUser020_DecompressVoice, + ISteamUser_SteamUser020_GetVoiceOptimalSampleRate, + ISteamUser_SteamUser020_GetAuthSessionTicket, + ISteamUser_SteamUser020_BeginAuthSession, + ISteamUser_SteamUser020_EndAuthSession, + ISteamUser_SteamUser020_CancelAuthTicket, + ISteamUser_SteamUser020_UserHasLicenseForApp, + ISteamUser_SteamUser020_BIsBehindNAT, + ISteamUser_SteamUser020_AdvertiseGame, + ISteamUser_SteamUser020_RequestEncryptedAppTicket, + ISteamUser_SteamUser020_GetEncryptedAppTicket, + ISteamUser_SteamUser020_GetGameBadgeLevel, + ISteamUser_SteamUser020_GetPlayerSteamLevel, + ISteamUser_SteamUser020_RequestStoreAuthURL, + ISteamUser_SteamUser020_BIsPhoneVerified, + ISteamUser_SteamUser020_BIsTwoFactorEnabled, + ISteamUser_SteamUser020_BIsPhoneIdentifying, + ISteamUser_SteamUser020_BIsPhoneRequiringVerification, + ISteamUser_SteamUser020_GetMarketEligibility, + ISteamUser_SteamUser020_GetDurationControl, + ISteamUser_SteamUser021_GetHSteamUser, + ISteamUser_SteamUser021_BLoggedOn, + ISteamUser_SteamUser021_GetSteamID, + ISteamUser_SteamUser021_InitiateGameConnection_DEPRECATED, + ISteamUser_SteamUser021_TerminateGameConnection_DEPRECATED, + ISteamUser_SteamUser021_TrackAppUsageEvent, + ISteamUser_SteamUser021_GetUserDataFolder, + ISteamUser_SteamUser021_StartVoiceRecording, + ISteamUser_SteamUser021_StopVoiceRecording, + ISteamUser_SteamUser021_GetAvailableVoice, + ISteamUser_SteamUser021_GetVoice, + ISteamUser_SteamUser021_DecompressVoice, + ISteamUser_SteamUser021_GetVoiceOptimalSampleRate, + ISteamUser_SteamUser021_GetAuthSessionTicket, + ISteamUser_SteamUser021_BeginAuthSession, + ISteamUser_SteamUser021_EndAuthSession, + ISteamUser_SteamUser021_CancelAuthTicket, + ISteamUser_SteamUser021_UserHasLicenseForApp, + ISteamUser_SteamUser021_BIsBehindNAT, + ISteamUser_SteamUser021_AdvertiseGame, + ISteamUser_SteamUser021_RequestEncryptedAppTicket, + ISteamUser_SteamUser021_GetEncryptedAppTicket, + ISteamUser_SteamUser021_GetGameBadgeLevel, + ISteamUser_SteamUser021_GetPlayerSteamLevel, + ISteamUser_SteamUser021_RequestStoreAuthURL, + ISteamUser_SteamUser021_BIsPhoneVerified, + ISteamUser_SteamUser021_BIsTwoFactorEnabled, + ISteamUser_SteamUser021_BIsPhoneIdentifying, + ISteamUser_SteamUser021_BIsPhoneRequiringVerification, + ISteamUser_SteamUser021_GetMarketEligibility, + ISteamUser_SteamUser021_GetDurationControl, + ISteamUser_SteamUser021_BSetDurationControlOnlineState, + ISteamUser_SteamUser022_GetHSteamUser, + ISteamUser_SteamUser022_BLoggedOn, + ISteamUser_SteamUser022_GetSteamID, + ISteamUser_SteamUser022_InitiateGameConnection_DEPRECATED, + ISteamUser_SteamUser022_TerminateGameConnection_DEPRECATED, + ISteamUser_SteamUser022_TrackAppUsageEvent, + ISteamUser_SteamUser022_GetUserDataFolder, + ISteamUser_SteamUser022_StartVoiceRecording, + ISteamUser_SteamUser022_StopVoiceRecording, + ISteamUser_SteamUser022_GetAvailableVoice, + ISteamUser_SteamUser022_GetVoice, + ISteamUser_SteamUser022_DecompressVoice, + ISteamUser_SteamUser022_GetVoiceOptimalSampleRate, + ISteamUser_SteamUser022_GetAuthSessionTicket, + ISteamUser_SteamUser022_BeginAuthSession, + ISteamUser_SteamUser022_EndAuthSession, + ISteamUser_SteamUser022_CancelAuthTicket, + ISteamUser_SteamUser022_UserHasLicenseForApp, + ISteamUser_SteamUser022_BIsBehindNAT, + ISteamUser_SteamUser022_AdvertiseGame, + ISteamUser_SteamUser022_RequestEncryptedAppTicket, + ISteamUser_SteamUser022_GetEncryptedAppTicket, + ISteamUser_SteamUser022_GetGameBadgeLevel, + ISteamUser_SteamUser022_GetPlayerSteamLevel, + ISteamUser_SteamUser022_RequestStoreAuthURL, + ISteamUser_SteamUser022_BIsPhoneVerified, + ISteamUser_SteamUser022_BIsTwoFactorEnabled, + ISteamUser_SteamUser022_BIsPhoneIdentifying, + ISteamUser_SteamUser022_BIsPhoneRequiringVerification, + ISteamUser_SteamUser022_GetMarketEligibility, + ISteamUser_SteamUser022_GetDurationControl, + ISteamUser_SteamUser022_BSetDurationControlOnlineState, + ISteamUser_SteamUser023_GetHSteamUser, + ISteamUser_SteamUser023_BLoggedOn, + ISteamUser_SteamUser023_GetSteamID, + ISteamUser_SteamUser023_InitiateGameConnection_DEPRECATED, + ISteamUser_SteamUser023_TerminateGameConnection_DEPRECATED, + ISteamUser_SteamUser023_TrackAppUsageEvent, + ISteamUser_SteamUser023_GetUserDataFolder, + ISteamUser_SteamUser023_StartVoiceRecording, + ISteamUser_SteamUser023_StopVoiceRecording, + ISteamUser_SteamUser023_GetAvailableVoice, + ISteamUser_SteamUser023_GetVoice, + ISteamUser_SteamUser023_DecompressVoice, + ISteamUser_SteamUser023_GetVoiceOptimalSampleRate, + ISteamUser_SteamUser023_GetAuthSessionTicket, + ISteamUser_SteamUser023_GetAuthTicketForWebApi, + ISteamUser_SteamUser023_BeginAuthSession, + ISteamUser_SteamUser023_EndAuthSession, + ISteamUser_SteamUser023_CancelAuthTicket, + ISteamUser_SteamUser023_UserHasLicenseForApp, + ISteamUser_SteamUser023_BIsBehindNAT, + ISteamUser_SteamUser023_AdvertiseGame, + ISteamUser_SteamUser023_RequestEncryptedAppTicket, + ISteamUser_SteamUser023_GetEncryptedAppTicket, + ISteamUser_SteamUser023_GetGameBadgeLevel, + ISteamUser_SteamUser023_GetPlayerSteamLevel, + ISteamUser_SteamUser023_RequestStoreAuthURL, + ISteamUser_SteamUser023_BIsPhoneVerified, + ISteamUser_SteamUser023_BIsTwoFactorEnabled, + ISteamUser_SteamUser023_BIsPhoneIdentifying, + ISteamUser_SteamUser023_BIsPhoneRequiringVerification, + ISteamUser_SteamUser023_GetMarketEligibility, + ISteamUser_SteamUser023_GetDurationControl, + ISteamUser_SteamUser023_BSetDurationControlOnlineState, + ISteamUtils_SteamUtils002_GetSecondsSinceAppActive, + ISteamUtils_SteamUtils002_GetSecondsSinceComputerActive, + ISteamUtils_SteamUtils002_GetConnectedUniverse, + ISteamUtils_SteamUtils002_GetServerRealTime, + ISteamUtils_SteamUtils002_GetIPCountry, + ISteamUtils_SteamUtils002_GetImageSize, + ISteamUtils_SteamUtils002_GetImageRGBA, + ISteamUtils_SteamUtils002_GetCSERIPPort, + ISteamUtils_SteamUtils002_GetCurrentBatteryPower, + ISteamUtils_SteamUtils002_GetAppID, + ISteamUtils_SteamUtils002_SetOverlayNotificationPosition, + ISteamUtils_SteamUtils002_IsAPICallCompleted, + ISteamUtils_SteamUtils002_GetAPICallFailureReason, + ISteamUtils_SteamUtils002_GetAPICallResult, + ISteamUtils_SteamUtils004_GetSecondsSinceAppActive, + ISteamUtils_SteamUtils004_GetSecondsSinceComputerActive, + ISteamUtils_SteamUtils004_GetConnectedUniverse, + ISteamUtils_SteamUtils004_GetServerRealTime, + ISteamUtils_SteamUtils004_GetIPCountry, + ISteamUtils_SteamUtils004_GetImageSize, + ISteamUtils_SteamUtils004_GetImageRGBA, + ISteamUtils_SteamUtils004_GetCSERIPPort, + ISteamUtils_SteamUtils004_GetCurrentBatteryPower, + ISteamUtils_SteamUtils004_GetAppID, + ISteamUtils_SteamUtils004_SetOverlayNotificationPosition, + ISteamUtils_SteamUtils004_IsAPICallCompleted, + ISteamUtils_SteamUtils004_GetAPICallFailureReason, + ISteamUtils_SteamUtils004_GetAPICallResult, + ISteamUtils_SteamUtils004_RunFrame, + ISteamUtils_SteamUtils004_GetIPCCallCount, + ISteamUtils_SteamUtils004_SetWarningMessageHook, + ISteamUtils_SteamUtils004_IsOverlayEnabled, + ISteamUtils_SteamUtils005_GetSecondsSinceAppActive, + ISteamUtils_SteamUtils005_GetSecondsSinceComputerActive, + ISteamUtils_SteamUtils005_GetConnectedUniverse, + ISteamUtils_SteamUtils005_GetServerRealTime, + ISteamUtils_SteamUtils005_GetIPCountry, + ISteamUtils_SteamUtils005_GetImageSize, + ISteamUtils_SteamUtils005_GetImageRGBA, + ISteamUtils_SteamUtils005_GetCSERIPPort, + ISteamUtils_SteamUtils005_GetCurrentBatteryPower, + ISteamUtils_SteamUtils005_GetAppID, + ISteamUtils_SteamUtils005_SetOverlayNotificationPosition, + ISteamUtils_SteamUtils005_IsAPICallCompleted, + ISteamUtils_SteamUtils005_GetAPICallFailureReason, + ISteamUtils_SteamUtils005_GetAPICallResult, + ISteamUtils_SteamUtils005_RunFrame, + ISteamUtils_SteamUtils005_GetIPCCallCount, + ISteamUtils_SteamUtils005_SetWarningMessageHook, + ISteamUtils_SteamUtils005_IsOverlayEnabled, + ISteamUtils_SteamUtils005_BOverlayNeedsPresent, + ISteamUtils_SteamUtils005_CheckFileSignature, + ISteamUtils_SteamUtils005_ShowGamepadTextInput, + ISteamUtils_SteamUtils005_GetEnteredGamepadTextLength, + ISteamUtils_SteamUtils005_GetEnteredGamepadTextInput, + ISteamUtils_SteamUtils006_GetSecondsSinceAppActive, + ISteamUtils_SteamUtils006_GetSecondsSinceComputerActive, + ISteamUtils_SteamUtils006_GetConnectedUniverse, + ISteamUtils_SteamUtils006_GetServerRealTime, + ISteamUtils_SteamUtils006_GetIPCountry, + ISteamUtils_SteamUtils006_GetImageSize, + ISteamUtils_SteamUtils006_GetImageRGBA, + ISteamUtils_SteamUtils006_GetCSERIPPort, + ISteamUtils_SteamUtils006_GetCurrentBatteryPower, + ISteamUtils_SteamUtils006_GetAppID, + ISteamUtils_SteamUtils006_SetOverlayNotificationPosition, + ISteamUtils_SteamUtils006_IsAPICallCompleted, + ISteamUtils_SteamUtils006_GetAPICallFailureReason, + ISteamUtils_SteamUtils006_GetAPICallResult, + ISteamUtils_SteamUtils006_RunFrame, + ISteamUtils_SteamUtils006_GetIPCCallCount, + ISteamUtils_SteamUtils006_SetWarningMessageHook, + ISteamUtils_SteamUtils006_IsOverlayEnabled, + ISteamUtils_SteamUtils006_BOverlayNeedsPresent, + ISteamUtils_SteamUtils006_CheckFileSignature, + ISteamUtils_SteamUtils006_ShowGamepadTextInput, + ISteamUtils_SteamUtils006_GetEnteredGamepadTextLength, + ISteamUtils_SteamUtils006_GetEnteredGamepadTextInput, + ISteamUtils_SteamUtils006_GetSteamUILanguage, + ISteamUtils_SteamUtils006_IsSteamRunningInVR, + ISteamUtils_SteamUtils007_GetSecondsSinceAppActive, + ISteamUtils_SteamUtils007_GetSecondsSinceComputerActive, + ISteamUtils_SteamUtils007_GetConnectedUniverse, + ISteamUtils_SteamUtils007_GetServerRealTime, + ISteamUtils_SteamUtils007_GetIPCountry, + ISteamUtils_SteamUtils007_GetImageSize, + ISteamUtils_SteamUtils007_GetImageRGBA, + ISteamUtils_SteamUtils007_GetCSERIPPort, + ISteamUtils_SteamUtils007_GetCurrentBatteryPower, + ISteamUtils_SteamUtils007_GetAppID, + ISteamUtils_SteamUtils007_SetOverlayNotificationPosition, + ISteamUtils_SteamUtils007_IsAPICallCompleted, + ISteamUtils_SteamUtils007_GetAPICallFailureReason, + ISteamUtils_SteamUtils007_GetAPICallResult, + ISteamUtils_SteamUtils007_RunFrame, + ISteamUtils_SteamUtils007_GetIPCCallCount, + ISteamUtils_SteamUtils007_SetWarningMessageHook, + ISteamUtils_SteamUtils007_IsOverlayEnabled, + ISteamUtils_SteamUtils007_BOverlayNeedsPresent, + ISteamUtils_SteamUtils007_CheckFileSignature, + ISteamUtils_SteamUtils007_ShowGamepadTextInput, + ISteamUtils_SteamUtils007_GetEnteredGamepadTextLength, + ISteamUtils_SteamUtils007_GetEnteredGamepadTextInput, + ISteamUtils_SteamUtils007_GetSteamUILanguage, + ISteamUtils_SteamUtils007_IsSteamRunningInVR, + ISteamUtils_SteamUtils007_SetOverlayNotificationInset, + ISteamUtils_SteamUtils008_GetSecondsSinceAppActive, + ISteamUtils_SteamUtils008_GetSecondsSinceComputerActive, + ISteamUtils_SteamUtils008_GetConnectedUniverse, + ISteamUtils_SteamUtils008_GetServerRealTime, + ISteamUtils_SteamUtils008_GetIPCountry, + ISteamUtils_SteamUtils008_GetImageSize, + ISteamUtils_SteamUtils008_GetImageRGBA, + ISteamUtils_SteamUtils008_GetCSERIPPort, + ISteamUtils_SteamUtils008_GetCurrentBatteryPower, + ISteamUtils_SteamUtils008_GetAppID, + ISteamUtils_SteamUtils008_SetOverlayNotificationPosition, + ISteamUtils_SteamUtils008_IsAPICallCompleted, + ISteamUtils_SteamUtils008_GetAPICallFailureReason, + ISteamUtils_SteamUtils008_GetAPICallResult, + ISteamUtils_SteamUtils008_RunFrame, + ISteamUtils_SteamUtils008_GetIPCCallCount, + ISteamUtils_SteamUtils008_SetWarningMessageHook, + ISteamUtils_SteamUtils008_IsOverlayEnabled, + ISteamUtils_SteamUtils008_BOverlayNeedsPresent, + ISteamUtils_SteamUtils008_CheckFileSignature, + ISteamUtils_SteamUtils008_ShowGamepadTextInput, + ISteamUtils_SteamUtils008_GetEnteredGamepadTextLength, + ISteamUtils_SteamUtils008_GetEnteredGamepadTextInput, + ISteamUtils_SteamUtils008_GetSteamUILanguage, + ISteamUtils_SteamUtils008_IsSteamRunningInVR, + ISteamUtils_SteamUtils008_SetOverlayNotificationInset, + ISteamUtils_SteamUtils008_IsSteamInBigPictureMode, + ISteamUtils_SteamUtils008_StartVRDashboard, + ISteamUtils_SteamUtils009_GetSecondsSinceAppActive, + ISteamUtils_SteamUtils009_GetSecondsSinceComputerActive, + ISteamUtils_SteamUtils009_GetConnectedUniverse, + ISteamUtils_SteamUtils009_GetServerRealTime, + ISteamUtils_SteamUtils009_GetIPCountry, + ISteamUtils_SteamUtils009_GetImageSize, + ISteamUtils_SteamUtils009_GetImageRGBA, + ISteamUtils_SteamUtils009_GetCSERIPPort, + ISteamUtils_SteamUtils009_GetCurrentBatteryPower, + ISteamUtils_SteamUtils009_GetAppID, + ISteamUtils_SteamUtils009_SetOverlayNotificationPosition, + ISteamUtils_SteamUtils009_IsAPICallCompleted, + ISteamUtils_SteamUtils009_GetAPICallFailureReason, + ISteamUtils_SteamUtils009_GetAPICallResult, + ISteamUtils_SteamUtils009_RunFrame, + ISteamUtils_SteamUtils009_GetIPCCallCount, + ISteamUtils_SteamUtils009_SetWarningMessageHook, + ISteamUtils_SteamUtils009_IsOverlayEnabled, + ISteamUtils_SteamUtils009_BOverlayNeedsPresent, + ISteamUtils_SteamUtils009_CheckFileSignature, + ISteamUtils_SteamUtils009_ShowGamepadTextInput, + ISteamUtils_SteamUtils009_GetEnteredGamepadTextLength, + ISteamUtils_SteamUtils009_GetEnteredGamepadTextInput, + ISteamUtils_SteamUtils009_GetSteamUILanguage, + ISteamUtils_SteamUtils009_IsSteamRunningInVR, + ISteamUtils_SteamUtils009_SetOverlayNotificationInset, + ISteamUtils_SteamUtils009_IsSteamInBigPictureMode, + ISteamUtils_SteamUtils009_StartVRDashboard, + ISteamUtils_SteamUtils009_IsVRHeadsetStreamingEnabled, + ISteamUtils_SteamUtils009_SetVRHeadsetStreamingEnabled, + ISteamUtils_SteamUtils009_IsSteamChinaLauncher, + ISteamUtils_SteamUtils009_InitFilterText, + ISteamUtils_SteamUtils009_FilterText, + ISteamUtils_SteamUtils009_GetIPv6ConnectivityState, + ISteamUtils_SteamUtils010_GetSecondsSinceAppActive, + ISteamUtils_SteamUtils010_GetSecondsSinceComputerActive, + ISteamUtils_SteamUtils010_GetConnectedUniverse, + ISteamUtils_SteamUtils010_GetServerRealTime, + ISteamUtils_SteamUtils010_GetIPCountry, + ISteamUtils_SteamUtils010_GetImageSize, + ISteamUtils_SteamUtils010_GetImageRGBA, + ISteamUtils_SteamUtils010_GetCSERIPPort, + ISteamUtils_SteamUtils010_GetCurrentBatteryPower, + ISteamUtils_SteamUtils010_GetAppID, + ISteamUtils_SteamUtils010_SetOverlayNotificationPosition, + ISteamUtils_SteamUtils010_IsAPICallCompleted, + ISteamUtils_SteamUtils010_GetAPICallFailureReason, + ISteamUtils_SteamUtils010_GetAPICallResult, + ISteamUtils_SteamUtils010_RunFrame, + ISteamUtils_SteamUtils010_GetIPCCallCount, + ISteamUtils_SteamUtils010_SetWarningMessageHook, + ISteamUtils_SteamUtils010_IsOverlayEnabled, + ISteamUtils_SteamUtils010_BOverlayNeedsPresent, + ISteamUtils_SteamUtils010_CheckFileSignature, + ISteamUtils_SteamUtils010_ShowGamepadTextInput, + ISteamUtils_SteamUtils010_GetEnteredGamepadTextLength, + ISteamUtils_SteamUtils010_GetEnteredGamepadTextInput, + ISteamUtils_SteamUtils010_GetSteamUILanguage, + ISteamUtils_SteamUtils010_IsSteamRunningInVR, + ISteamUtils_SteamUtils010_SetOverlayNotificationInset, + ISteamUtils_SteamUtils010_IsSteamInBigPictureMode, + ISteamUtils_SteamUtils010_StartVRDashboard, + ISteamUtils_SteamUtils010_IsVRHeadsetStreamingEnabled, + ISteamUtils_SteamUtils010_SetVRHeadsetStreamingEnabled, + ISteamUtils_SteamUtils010_IsSteamChinaLauncher, + ISteamUtils_SteamUtils010_InitFilterText, + ISteamUtils_SteamUtils010_FilterText, + ISteamUtils_SteamUtils010_GetIPv6ConnectivityState, + ISteamUtils_SteamUtils010_IsSteamRunningOnSteamDeck, + ISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput, + ISteamUtils_SteamUtils010_SetGameLauncherMode, + ISteamUtils_SteamUtils010_DismissFloatingGamepadTextInput, +}; + C_ASSERT( sizeof(SteamNetworkingIPAddr) >= 18 ); C_ASSERT( offsetof(SteamNetworkingIPAddr, data) == 0 ); C_ASSERT( sizeof(SteamNetworkingIPAddr().data) >= 16 ); diff --git a/lsteamclient/unixlib_generated.h b/lsteamclient/unixlib_generated.h new file mode 100644 index 00000000..0efa43e1 --- /dev/null +++ b/lsteamclient/unixlib_generated.h @@ -0,0 +1,51417 @@ +/* This file is auto-generated, do not edit. */ +#include +#include +#include +#include + +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetNumInstalledApps_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetInstalledApps_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t *pvecAppID; + uint32_t unMaxAppIDs; +}; + +struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t nAppID; + char *pchName; + int32_t cchNameMax; +}; + +struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInstallDir_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t nAppID; + char *pchDirectory; + int32_t cchNameMax; +}; + +struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppBuildId_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t nAppID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION001_GetAppData_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t nAppID; + const char *pchKey; + char *pchValue; + int32_t cchValueMax; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentGameLanguage_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t appID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribed_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsLowViolence_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsCybercafe_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsVACBanned_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetCurrentGameLanguage_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetAvailableGameLanguages_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t appID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsDlcInstalled_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t appID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribed_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsLowViolence_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsCybercafe_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsVACBanned_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetCurrentGameLanguage_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetAvailableGameLanguages_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedApp_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t appID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsDlcInstalled_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t appID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetEarliestPurchaseUnixTime_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t nAppID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedFromFreeWeekend_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetDLCCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByIndex_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iDLC; + uint32_t *pAppID; + bool *pbAvailable; + char *pchName; + int32_t cchNameBufferSize; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_InstallDLC_params +{ + struct u_steam_iface *linux_side; + uint32_t nAppID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_UninstallDLC_params +{ + struct u_steam_iface *linux_side; + uint32_t nAppID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribed_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsLowViolence_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsCybercafe_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsVACBanned_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentGameLanguage_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAvailableGameLanguages_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedApp_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t appID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsDlcInstalled_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t appID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetEarliestPurchaseUnixTime_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t nAppID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedFromFreeWeekend_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetDLCCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BGetDLCDataByIndex_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iDLC; + uint32_t *pAppID; + bool *pbAvailable; + char *pchName; + int32_t cchNameBufferSize; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_InstallDLC_params +{ + struct u_steam_iface *linux_side; + uint32_t nAppID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_UninstallDLC_params +{ + struct u_steam_iface *linux_side; + uint32_t nAppID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_RequestAppProofOfPurchaseKey_params +{ + struct u_steam_iface *linux_side; + uint32_t nAppID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaName_params +{ + struct u_steam_iface *linux_side; + bool _ret; + char *pchName; + int32_t cchNameBufferSize; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_MarkContentCorrupt_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bMissingFilesOnly; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetInstalledDepots_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t *pvecDepots; + uint32_t cMaxDepots; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAppInstallDir_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t appID; + char *pchFolder; + uint32_t cchFolderBufferSize; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsAppInstalled_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t appID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribed_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsLowViolence_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsCybercafe_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsVACBanned_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentGameLanguage_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAvailableGameLanguages_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedApp_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t appID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsDlcInstalled_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t appID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetEarliestPurchaseUnixTime_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t nAppID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedFromFreeWeekend_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetDLCCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BGetDLCDataByIndex_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iDLC; + uint32_t *pAppID; + bool *pbAvailable; + char *pchName; + int32_t cchNameBufferSize; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_InstallDLC_params +{ + struct u_steam_iface *linux_side; + uint32_t nAppID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_UninstallDLC_params +{ + struct u_steam_iface *linux_side; + uint32_t nAppID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_RequestAppProofOfPurchaseKey_params +{ + struct u_steam_iface *linux_side; + uint32_t nAppID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaName_params +{ + struct u_steam_iface *linux_side; + bool _ret; + char *pchName; + int32_t cchNameBufferSize; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_MarkContentCorrupt_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bMissingFilesOnly; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetInstalledDepots_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t appID; + uint32_t *pvecDepots; + uint32_t cMaxDepots; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppInstallDir_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t appID; + char *pchFolder; + uint32_t cchFolderBufferSize; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsAppInstalled_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t appID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppOwner_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetLaunchQueryParam_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + const char *pchKey; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribed_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsLowViolence_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsCybercafe_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsVACBanned_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentGameLanguage_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAvailableGameLanguages_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedApp_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t appID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsDlcInstalled_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t appID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetEarliestPurchaseUnixTime_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t nAppID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedFromFreeWeekend_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDLCCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BGetDLCDataByIndex_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iDLC; + uint32_t *pAppID; + bool *pbAvailable; + char *pchName; + int32_t cchNameBufferSize; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_InstallDLC_params +{ + struct u_steam_iface *linux_side; + uint32_t nAppID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_UninstallDLC_params +{ + struct u_steam_iface *linux_side; + uint32_t nAppID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_RequestAppProofOfPurchaseKey_params +{ + struct u_steam_iface *linux_side; + uint32_t nAppID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName_params +{ + struct u_steam_iface *linux_side; + bool _ret; + char *pchName; + int32_t cchNameBufferSize; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_MarkContentCorrupt_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bMissingFilesOnly; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetInstalledDepots_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t appID; + uint32_t *pvecDepots; + uint32_t cMaxDepots; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppInstallDir_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t appID; + char *pchFolder; + uint32_t cchFolderBufferSize; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsAppInstalled_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t appID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppOwner_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetLaunchQueryParam_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + const char *pchKey; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t nAppID; + uint64_t *punBytesDownloaded; + uint64_t *punBytesTotal; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppBuildId_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribed_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsLowViolence_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsCybercafe_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsVACBanned_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentGameLanguage_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAvailableGameLanguages_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedApp_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t appID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsDlcInstalled_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t appID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetEarliestPurchaseUnixTime_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t nAppID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFreeWeekend_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDLCCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BGetDLCDataByIndex_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iDLC; + uint32_t *pAppID; + bool *pbAvailable; + char *pchName; + int32_t cchNameBufferSize; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_InstallDLC_params +{ + struct u_steam_iface *linux_side; + uint32_t nAppID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_UninstallDLC_params +{ + struct u_steam_iface *linux_side; + uint32_t nAppID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAppProofOfPurchaseKey_params +{ + struct u_steam_iface *linux_side; + uint32_t nAppID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaName_params +{ + struct u_steam_iface *linux_side; + bool _ret; + char *pchName; + int32_t cchNameBufferSize; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_MarkContentCorrupt_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bMissingFilesOnly; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetInstalledDepots_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t appID; + uint32_t *pvecDepots; + uint32_t cMaxDepots; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppInstallDir_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t appID; + char *pchFolder; + uint32_t cchFolderBufferSize; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsAppInstalled_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t appID; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppOwner_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchQueryParam_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + const char *pchKey; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDlcDownloadProgress_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t nAppID; + uint64_t *punBytesDownloaded; + uint64_t *punBytesTotal; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppBuildId_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAllProofOfPurchaseKeys_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetFileDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pszFileName; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchCommandLine_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + char *pszCommandLine; + int32_t cubCommandLine; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFamilySharing_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t *punSecondsAllowed; + uint32_t *punSecondsPlayed; +}; + +struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetDlcContext_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t nAppID; +}; + +struct ISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001_GetAppOwnershipTicketData_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t nAppID; + void *pvBuffer; + uint32_t cbBufferLength; + uint32_t *piAppId; + uint32_t *piSteamId; + uint32_t *piSignature; + uint32_t *pcbSignature; +}; + +struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Init_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchAbsolutePathToControllerConfigVDF; +}; + +struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Shutdown_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_RunFrame_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_GetControllerState_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unControllerIndex; + SteamControllerState001_t *pState; +}; + +struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_TriggerHapticPulse_params +{ + struct u_steam_iface *linux_side; + uint32_t unControllerIndex; + uint32_t eTargetPad; + uint16_t usDurationMicroSec; +}; + +struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_SetOverrideMode_params +{ + struct u_steam_iface *linux_side; + const char *pchMode; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Init_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Shutdown_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CreateBrowser_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchUserAgent; + const char *pchUserCSS; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_RemoveBrowser_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_LoadURL_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + const char *pchURL; + const char *pchPostData; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetSize_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t unWidth; + uint32_t unHeight; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopLoad_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Reload_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoBack_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoForward_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AddHeader_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ExecuteJavascript_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + const char *pchScript; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseUp_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t eMouseButton; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDown_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t eMouseButton; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDoubleClick_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t eMouseButton; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseMove_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + int32_t x; + int32_t y; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseWheel_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + int32_t nDelta; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyDown_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t nNativeKeyCode; + uint32_t eHTMLKeyModifiers; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyUp_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t nNativeKeyCode; + uint32_t eHTMLKeyModifiers; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyChar_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t cUnicodeChar; + uint32_t eHTMLKeyModifiers; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetHorizontalScroll_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t nAbsolutePixelScroll; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetVerticalScroll_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t nAbsolutePixelScroll; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetKeyFocus_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + bool bHasKeyFocus; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ViewSource_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CopyToClipboard_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_PasteFromClipboard_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Find_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + const char *pchSearchStr; + bool bCurrentlyInFind; + bool bReverse; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopFind_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GetLinkAtPosition_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + int32_t x; + int32_t y; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AllowStartRequest_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + bool bAllowed; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_JSDialogResponse_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + bool bResult; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_FileLoadDialogResponse_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + const char **pchSelectedFiles; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Init_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Shutdown_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CreateBrowser_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchUserAgent; + const char *pchUserCSS; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_RemoveBrowser_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_LoadURL_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + const char *pchURL; + const char *pchPostData; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetSize_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t unWidth; + uint32_t unHeight; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopLoad_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Reload_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoBack_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoForward_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AddHeader_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ExecuteJavascript_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + const char *pchScript; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseUp_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t eMouseButton; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDown_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t eMouseButton; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDoubleClick_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t eMouseButton; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseMove_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + int32_t x; + int32_t y; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseWheel_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + int32_t nDelta; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyDown_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t nNativeKeyCode; + uint32_t eHTMLKeyModifiers; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyUp_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t nNativeKeyCode; + uint32_t eHTMLKeyModifiers; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyChar_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t cUnicodeChar; + uint32_t eHTMLKeyModifiers; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetHorizontalScroll_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t nAbsolutePixelScroll; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetVerticalScroll_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t nAbsolutePixelScroll; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetKeyFocus_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + bool bHasKeyFocus; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ViewSource_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CopyToClipboard_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_PasteFromClipboard_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Find_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + const char *pchSearchStr; + bool bCurrentlyInFind; + bool bReverse; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopFind_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GetLinkAtPosition_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + int32_t x; + int32_t y; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetCookie_params +{ + struct u_steam_iface *linux_side; + const char *pchHostname; + const char *pchKey; + const char *pchValue; + const char *pchPath; + uint32_t nExpires; + bool bSecure; + bool bHTTPOnly; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetPageScaleFactor_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + float flZoom; + int32_t nPointX; + int32_t nPointY; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AllowStartRequest_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + bool bAllowed; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_JSDialogResponse_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + bool bResult; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_FileLoadDialogResponse_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + const char **pchSelectedFiles; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Init_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Shutdown_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CreateBrowser_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchUserAgent; + const char *pchUserCSS; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_RemoveBrowser_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_LoadURL_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + const char *pchURL; + const char *pchPostData; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetSize_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t unWidth; + uint32_t unHeight; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopLoad_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Reload_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoBack_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoForward_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AddHeader_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ExecuteJavascript_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + const char *pchScript; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseUp_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t eMouseButton; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDown_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t eMouseButton; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDoubleClick_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t eMouseButton; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseMove_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + int32_t x; + int32_t y; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseWheel_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + int32_t nDelta; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyDown_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t nNativeKeyCode; + uint32_t eHTMLKeyModifiers; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyUp_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t nNativeKeyCode; + uint32_t eHTMLKeyModifiers; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyChar_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t cUnicodeChar; + uint32_t eHTMLKeyModifiers; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetHorizontalScroll_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t nAbsolutePixelScroll; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetVerticalScroll_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t nAbsolutePixelScroll; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetKeyFocus_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + bool bHasKeyFocus; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ViewSource_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CopyToClipboard_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_PasteFromClipboard_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Find_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + const char *pchSearchStr; + bool bCurrentlyInFind; + bool bReverse; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopFind_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GetLinkAtPosition_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + int32_t x; + int32_t y; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetCookie_params +{ + struct u_steam_iface *linux_side; + const char *pchHostname; + const char *pchKey; + const char *pchValue; + const char *pchPath; + uint32_t nExpires; + bool bSecure; + bool bHTTPOnly; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetPageScaleFactor_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + float flZoom; + int32_t nPointX; + int32_t nPointY; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetBackgroundMode_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + bool bBackgroundMode; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AllowStartRequest_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + bool bAllowed; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_JSDialogResponse_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + bool bResult; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_FileLoadDialogResponse_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + const char **pchSelectedFiles; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Init_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Shutdown_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CreateBrowser_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchUserAgent; + const char *pchUserCSS; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_RemoveBrowser_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_LoadURL_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + const char *pchURL; + const char *pchPostData; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetSize_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t unWidth; + uint32_t unHeight; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopLoad_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Reload_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoBack_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoForward_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AddHeader_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ExecuteJavascript_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + const char *pchScript; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseUp_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t eMouseButton; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDown_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t eMouseButton; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDoubleClick_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t eMouseButton; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseMove_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + int32_t x; + int32_t y; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseWheel_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + int32_t nDelta; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyDown_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t nNativeKeyCode; + uint32_t eHTMLKeyModifiers; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyUp_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t nNativeKeyCode; + uint32_t eHTMLKeyModifiers; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyChar_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t cUnicodeChar; + uint32_t eHTMLKeyModifiers; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetHorizontalScroll_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t nAbsolutePixelScroll; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetVerticalScroll_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t nAbsolutePixelScroll; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetKeyFocus_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + bool bHasKeyFocus; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ViewSource_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CopyToClipboard_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_PasteFromClipboard_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Find_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + const char *pchSearchStr; + bool bCurrentlyInFind; + bool bReverse; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopFind_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GetLinkAtPosition_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + int32_t x; + int32_t y; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetCookie_params +{ + struct u_steam_iface *linux_side; + const char *pchHostname; + const char *pchKey; + const char *pchValue; + const char *pchPath; + uint32_t nExpires; + bool bSecure; + bool bHTTPOnly; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetPageScaleFactor_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + float flZoom; + int32_t nPointX; + int32_t nPointY; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetBackgroundMode_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + bool bBackgroundMode; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetDPIScalingFactor_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + float flDPIScaling; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AllowStartRequest_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + bool bAllowed; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_JSDialogResponse_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + bool bResult; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_FileLoadDialogResponse_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + const char **pchSelectedFiles; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Init_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Shutdown_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CreateBrowser_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchUserAgent; + const char *pchUserCSS; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_RemoveBrowser_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_LoadURL_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + const char *pchURL; + const char *pchPostData; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetSize_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t unWidth; + uint32_t unHeight; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopLoad_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Reload_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoBack_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoForward_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AddHeader_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ExecuteJavascript_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + const char *pchScript; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseUp_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t eMouseButton; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDown_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t eMouseButton; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDoubleClick_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t eMouseButton; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseMove_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + int32_t x; + int32_t y; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseWheel_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + int32_t nDelta; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyDown_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t nNativeKeyCode; + uint32_t eHTMLKeyModifiers; + bool bIsSystemKey; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyUp_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t nNativeKeyCode; + uint32_t eHTMLKeyModifiers; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyChar_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t cUnicodeChar; + uint32_t eHTMLKeyModifiers; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetHorizontalScroll_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t nAbsolutePixelScroll; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetVerticalScroll_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + uint32_t nAbsolutePixelScroll; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetKeyFocus_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + bool bHasKeyFocus; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ViewSource_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CopyToClipboard_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_PasteFromClipboard_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Find_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + const char *pchSearchStr; + bool bCurrentlyInFind; + bool bReverse; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopFind_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GetLinkAtPosition_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + int32_t x; + int32_t y; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetCookie_params +{ + struct u_steam_iface *linux_side; + const char *pchHostname; + const char *pchKey; + const char *pchValue; + const char *pchPath; + uint32_t nExpires; + bool bSecure; + bool bHTTPOnly; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetPageScaleFactor_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + float flZoom; + int32_t nPointX; + int32_t nPointY; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetBackgroundMode_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + bool bBackgroundMode; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetDPIScalingFactor_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + float flDPIScaling; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_OpenDeveloperTools_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AllowStartRequest_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + bool bAllowed; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_JSDialogResponse_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + bool bResult; +}; + +struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_FileLoadDialogResponse_params +{ + struct u_steam_iface *linux_side; + uint32_t unBrowserHandle; + const char **pchSelectedFiles; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_CreateHTTPRequest_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t eHTTPRequestMethod; + const char *pchAbsoluteURL; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestContextValue_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + uint64_t ulContextValue; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetworkActivityTimeout_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + uint32_t unTimeoutSeconds; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeaderValue_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + const char *pchHeaderName; + const char *pchHeaderValue; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOrPostParameter_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + const char *pchParamName; + const char *pchParamValue; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + uint64_t *pCallHandle; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_DeferHTTPRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_PrioritizeHTTPRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderSize_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + const char *pchHeaderName; + uint32_t *unResponseHeaderSize; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderValue_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + const char *pchHeaderName; + uint8_t *pHeaderValueBuffer; + uint32_t unBufferSize; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodySize_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + uint32_t *unBodySize; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodyData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + uint8_t *pBodyDataBuffer; + uint32_t unBufferSize; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_ReleaseHTTPRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProgressPct_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + float *pflPercentOut; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestRawPostBody_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + const char *pchContentType; + uint8_t *pubBody; + uint32_t unBodyLen; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateHTTPRequest_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t eHTTPRequestMethod; + const char *pchAbsoluteURL; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestContextValue_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + uint64_t ulContextValue; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetworkActivityTimeout_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + uint32_t unTimeoutSeconds; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeaderValue_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + const char *pchHeaderName; + const char *pchHeaderValue; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOrPostParameter_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + const char *pchParamName; + const char *pchParamValue; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + uint64_t *pCallHandle; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAndStreamResponse_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + uint64_t *pCallHandle; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_DeferHTTPRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_PrioritizeHTTPRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderSize_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + const char *pchHeaderName; + uint32_t *unResponseHeaderSize; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderValue_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + const char *pchHeaderName; + uint8_t *pHeaderValueBuffer; + uint32_t unBufferSize; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodySize_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + uint32_t *unBodySize; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodyData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + uint8_t *pBodyDataBuffer; + uint32_t unBufferSize; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingResponseBodyData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + uint32_t cOffset; + uint8_t *pBodyDataBuffer; + uint32_t unBufferSize; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseHTTPRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadProgressPct_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + float *pflPercentOut; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRawPostBody_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + const char *pchContentType; + uint8_t *pubBody; + uint32_t unBodyLen; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateCookieContainer_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + bool bAllowResponsesToModify; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseCookieContainer_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hCookieContainer; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hCookieContainer; + const char *pchHost; + const char *pchUrl; + const char *pchCookie; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCookieContainer_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + uint32_t hCookieContainer; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUserAgentInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + const char *pchUserAgentInfo; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRequiresVerifiedCertificate_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + bool bRequireVerifiedCertificate; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsoluteTimeoutMS_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + uint32_t unMilliseconds; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPRequestWasTimedOut_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + bool *pbWasTimedOut; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateHTTPRequest_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t eHTTPRequestMethod; + const char *pchAbsoluteURL; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestContextValue_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + uint64_t ulContextValue; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetworkActivityTimeout_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + uint32_t unTimeoutSeconds; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeaderValue_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + const char *pchHeaderName; + const char *pchHeaderValue; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOrPostParameter_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + const char *pchParamName; + const char *pchParamValue; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + uint64_t *pCallHandle; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAndStreamResponse_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + uint64_t *pCallHandle; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_DeferHTTPRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_PrioritizeHTTPRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderSize_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + const char *pchHeaderName; + uint32_t *unResponseHeaderSize; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderValue_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + const char *pchHeaderName; + uint8_t *pHeaderValueBuffer; + uint32_t unBufferSize; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodySize_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + uint32_t *unBodySize; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodyData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + uint8_t *pBodyDataBuffer; + uint32_t unBufferSize; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingResponseBodyData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + uint32_t cOffset; + uint8_t *pBodyDataBuffer; + uint32_t unBufferSize; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseHTTPRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadProgressPct_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + float *pflPercentOut; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRawPostBody_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + const char *pchContentType; + uint8_t *pubBody; + uint32_t unBodyLen; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateCookieContainer_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + bool bAllowResponsesToModify; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseCookieContainer_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hCookieContainer; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hCookieContainer; + const char *pchHost; + const char *pchUrl; + const char *pchCookie; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCookieContainer_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + uint32_t hCookieContainer; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUserAgentInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + const char *pchUserAgentInfo; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRequiresVerifiedCertificate_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + bool bRequireVerifiedCertificate; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsoluteTimeoutMS_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + uint32_t unMilliseconds; +}; + +struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPRequestWasTimedOut_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hRequest; + bool *pbWasTimedOut; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultStatus_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + int32_t resultHandle; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItems_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t resultHandle; + SteamItemDetails_t *pOutItemsArray; + uint32_t *punOutItemsArraySize; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultTimestamp_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + int32_t resultHandle; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_CheckResultSteamID_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t resultHandle; + CSteamID steamIDExpected; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DestroyResult_params +{ + struct u_steam_iface *linux_side; + int32_t resultHandle; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetAllItems_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pResultHandle; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pResultHandle; + const uint64_t *pInstanceIDs; + uint32_t unCountInstanceIDs; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t resultHandle; + void *pOutBuffer; + uint32_t *punOutBufferSize; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeResult_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pOutResultHandle; + const void *pBuffer; + uint32_t unBufferSize; + bool bRESERVED_MUST_BE_FALSE; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pResultHandle; + const int32_t *pArrayItemDefs; + const uint32_t *punArrayQuantity; + uint32_t unArrayLength; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GrantPromoItems_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pResultHandle; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pResultHandle; + int32_t itemDef; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pResultHandle; + const int32_t *pArrayItemDefs; + uint32_t unArrayLength; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pResultHandle; + uint64_t itemConsume; + uint32_t unQuantity; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems_params +{ + struct u_steam_iface *linux_side; + bool _ret; + 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_TransferItemQuantity_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pResultHandle; + uint64_t itemIdSource; + uint32_t unQuantity; + uint64_t itemIdDest; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SendItemDropHeartbeat_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDrop_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pResultHandle; + int32_t dropListDefinition; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems_params +{ + struct u_steam_iface *linux_side; + bool _ret; + 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_LoadItemDefinitions_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionIDs_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pItemDefIDs; + uint32_t *punItemDefIDsArraySize; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionProperty_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iDefinition; + const char *pchPropertyName; + char *pchValueBuffer; + uint32_t *punValueBufferSizeOut; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_RequestEligiblePromoItemDefinitionsIDs_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamID; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetEligiblePromoItemDefinitionIDs_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamID; + int32_t *pItemDefIDs; + uint32_t *punItemDefIDsArraySize; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultStatus_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + int32_t resultHandle; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t resultHandle; + SteamItemDetails_t *pOutItemsArray; + uint32_t *punOutItemsArraySize; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItemProperty_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t resultHandle; + uint32_t unItemIndex; + const char *pchPropertyName; + char *pchValueBuffer; + uint32_t *punValueBufferSizeOut; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultTimestamp_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + int32_t resultHandle; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_CheckResultSteamID_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t resultHandle; + CSteamID steamIDExpected; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DestroyResult_params +{ + struct u_steam_iface *linux_side; + int32_t resultHandle; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetAllItems_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pResultHandle; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pResultHandle; + const uint64_t *pInstanceIDs; + uint32_t unCountInstanceIDs; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t resultHandle; + void *pOutBuffer; + uint32_t *punOutBufferSize; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeResult_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pOutResultHandle; + const void *pBuffer; + uint32_t unBufferSize; + bool bRESERVED_MUST_BE_FALSE; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pResultHandle; + const int32_t *pArrayItemDefs; + const uint32_t *punArrayQuantity; + uint32_t unArrayLength; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GrantPromoItems_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pResultHandle; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pResultHandle; + int32_t itemDef; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pResultHandle; + const int32_t *pArrayItemDefs; + uint32_t unArrayLength; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pResultHandle; + uint64_t itemConsume; + uint32_t unQuantity; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems_params +{ + struct u_steam_iface *linux_side; + bool _ret; + 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_TransferItemQuantity_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pResultHandle; + uint64_t itemIdSource; + uint32_t unQuantity; + uint64_t itemIdDest; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SendItemDropHeartbeat_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDrop_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pResultHandle; + int32_t dropListDefinition; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems_params +{ + struct u_steam_iface *linux_side; + bool _ret; + 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_LoadItemDefinitions_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionIDs_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pItemDefIDs; + uint32_t *punItemDefIDsArraySize; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionProperty_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iDefinition; + const char *pchPropertyName; + char *pchValueBuffer; + uint32_t *punValueBufferSizeOut; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestEligiblePromoItemDefinitionsIDs_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamID; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetEligiblePromoItemDefinitionIDs_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamID; + int32_t *pItemDefIDs; + uint32_t *punItemDefIDsArraySize; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartPurchase_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const int32_t *pArrayItemDefs; + const uint32_t *punArrayQuantity; + uint32_t unArrayLength; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestPrices_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetNumItemsWithPrices_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPrices_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pArrayItemDefs; + uint64_t *pPrices; + uint32_t unArrayLength; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemPrice_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iDefinition; + uint64_t *pPrice; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartUpdateProperties_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint64_t nItemID; + const char *pchPropertyName; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint64_t nItemID; + const char *pchPropertyName; + const char *pchPropertyValue; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint64_t nItemID; + const char *pchPropertyName; + bool bValue; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint64_t nItemID; + const char *pchPropertyName; + int64_t nValue; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint64_t nItemID; + const char *pchPropertyName; + float flValue; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SubmitUpdateProperties_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + int32_t *pResultHandle; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultStatus_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + int32_t resultHandle; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t resultHandle; + SteamItemDetails_t *pOutItemsArray; + uint32_t *punOutItemsArraySize; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItemProperty_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t resultHandle; + uint32_t unItemIndex; + const char *pchPropertyName; + char *pchValueBuffer; + uint32_t *punValueBufferSizeOut; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultTimestamp_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + int32_t resultHandle; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_CheckResultSteamID_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t resultHandle; + CSteamID steamIDExpected; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DestroyResult_params +{ + struct u_steam_iface *linux_side; + int32_t resultHandle; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetAllItems_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pResultHandle; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pResultHandle; + const uint64_t *pInstanceIDs; + uint32_t unCountInstanceIDs; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t resultHandle; + void *pOutBuffer; + uint32_t *punOutBufferSize; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeResult_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pOutResultHandle; + const void *pBuffer; + uint32_t unBufferSize; + bool bRESERVED_MUST_BE_FALSE; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pResultHandle; + const int32_t *pArrayItemDefs; + const uint32_t *punArrayQuantity; + uint32_t unArrayLength; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GrantPromoItems_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pResultHandle; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pResultHandle; + int32_t itemDef; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pResultHandle; + const int32_t *pArrayItemDefs; + uint32_t unArrayLength; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pResultHandle; + uint64_t itemConsume; + uint32_t unQuantity; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems_params +{ + struct u_steam_iface *linux_side; + bool _ret; + 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_TransferItemQuantity_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pResultHandle; + uint64_t itemIdSource; + uint32_t unQuantity; + uint64_t itemIdDest; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SendItemDropHeartbeat_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDrop_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pResultHandle; + int32_t dropListDefinition; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems_params +{ + struct u_steam_iface *linux_side; + bool _ret; + 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_LoadItemDefinitions_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionIDs_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pItemDefIDs; + uint32_t *punItemDefIDsArraySize; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionProperty_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iDefinition; + const char *pchPropertyName; + char *pchValueBuffer; + uint32_t *punValueBufferSizeOut; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestEligiblePromoItemDefinitionsIDs_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamID; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetEligiblePromoItemDefinitionIDs_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamID; + int32_t *pItemDefIDs; + uint32_t *punItemDefIDsArraySize; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartPurchase_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const int32_t *pArrayItemDefs; + const uint32_t *punArrayQuantity; + uint32_t unArrayLength; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestPrices_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetNumItemsWithPrices_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPrices_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pArrayItemDefs; + uint64_t *pCurrentPrices; + uint64_t *pBasePrices; + uint32_t unArrayLength; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemPrice_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iDefinition; + uint64_t *pCurrentPrice; + uint64_t *pBasePrice; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartUpdateProperties_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint64_t nItemID; + const char *pchPropertyName; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint64_t nItemID; + const char *pchPropertyName; + const char *pchPropertyValue; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint64_t nItemID; + const char *pchPropertyName; + bool bValue; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint64_t nItemID; + const char *pchPropertyName; + int64_t nValue; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint64_t nItemID; + const char *pchPropertyName; + float flValue; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateProperties_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + int32_t *pResultHandle; +}; + +struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_InspectItem_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pResultHandle; + const char *pchItemToken; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_RegisterSteamMusicRemote_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_DeregisterSteamMusicRemote_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BIsCurrentMusicRemote_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BActivationSuccess_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bValue; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetDisplayName_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchDisplayName; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPNGIcon_64x64_params +{ + struct u_steam_iface *linux_side; + bool _ret; + void *pvBuffer; + uint32_t cbBufferLength; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayPrevious_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bValue; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayNext_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bValue; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableShuffled_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bValue; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableLooped_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bValue; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableQueue_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bValue; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlaylists_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bValue; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdatePlaybackStatus_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t nStatus; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateShuffled_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bValue; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateLooped_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bValue; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateVolume_params +{ + struct u_steam_iface *linux_side; + bool _ret; + float flValue; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryWillChange_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryIsAvailable_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bAvailable; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryText_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchText; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryElapsedSeconds_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t nValue; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryCoverArt_params +{ + struct u_steam_iface *linux_side; + bool _ret; + void *pvBuffer; + uint32_t cbBufferLength; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryDidChange_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueWillChange_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetQueueEntries_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQueueEntry_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t nID; + int32_t nPosition; + const char *pchEntryText; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentQueueEntry_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t nID; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueDidChange_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistWillChange_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetPlaylistEntries_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPlaylistEntry_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t nID; + int32_t nPosition; + const char *pchEntryText; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentPlaylistEntry_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t nID; +}; + +struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistDidChange_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsEnabled_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsPlaying_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetPlaybackStatus_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Play_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Pause_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayPrevious_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayNext_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_SetVolume_params +{ + struct u_steam_iface *linux_side; + float flVolume; +}; + +struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetVolume_params +{ + struct u_steam_iface *linux_side; + float _ret; +}; + +struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockEnabled_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockLocked_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppBlocked_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t nAppID; +}; + +struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppInBlockList_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t nAppID; +}; + +struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureBlocked_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eFeature; +}; + +struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureInBlockList_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eFeature; +}; + +struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionCount_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionID_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + int32_t iSessionIndex; +}; + +struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + uint32_t unSessionID; +}; + +struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t unSessionID; +}; + +struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientFormFactor_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t unSessionID; +}; + +struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSessionClientResolution_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unSessionID; + int32_t *pnResolutionX; + int32_t *pnResolutionY; +}; + +struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BSendRemotePlayTogetherInvite_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; +}; + +struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionCount_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionID_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + int32_t iSessionIndex; +}; + +struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + uint32_t unSessionID; +}; + +struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t unSessionID; +}; + +struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientFormFactor_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t unSessionID; +}; + +struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSessionClientResolution_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unSessionID; + int32_t *pnResolutionX; + int32_t *pnResolutionY; +}; + +struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BStartRemotePlayTogether_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bShowOverlay; +}; + +struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BSendRemotePlayTogetherInvite_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileWrite_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; + const void *pvData; + int32_t cubData; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileSize_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileRead_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchFile; + void *pvData; + int32_t cubDataToRead; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileExists_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileDelete_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileNameAndSize_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + int32_t iFile; + int32_t *pnFileSizeInBytes; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetQuota_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pnTotalBytes; + int32_t *puAvailableBytes; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileWrite_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; + const void *pvData; + int32_t cubData; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileSize_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileRead_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchFile; + void *pvData; + int32_t cubDataToRead; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileExists_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileNameAndSize_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + int32_t iFile; + int32_t *pnFileSizeInBytes; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetQuota_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pnTotalBytes; + int32_t *puAvailableBytes; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileWrite_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; + const void *pvData; + int32_t cubData; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileRead_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchFile; + void *pvData; + int32_t cubDataToRead; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileForget_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileDelete_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileShare_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileExists_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FilePersisted_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileSize_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileTimestamp_params +{ + struct u_steam_iface *linux_side; + int64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileNameAndSize_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + int32_t iFile; + int32_t *pnFileSizeInBytes; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetQuota_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pnTotalBytes; + int32_t *puAvailableBytes; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForAccount_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForApp_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_SetCloudEnabledForApp_params +{ + struct u_steam_iface *linux_side; + bool bEnabled; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCDownload_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hContent; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetUGCDetails_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hContent; + uint32_t *pnAppID; + char **ppchName; + int32_t *pnFileSizeInBytes; + CSteamID *pSteamIDOwner; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCRead_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t hContent; + void *pvData; + int32_t cubDataToRead; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + int32_t iCachedContent; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileWrite_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; + const void *pvData; + int32_t cubData; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileRead_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchFile; + void *pvData; + int32_t cubDataToRead; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileForget_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileDelete_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileShare_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetSyncPlatforms_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; + uint32_t eRemoteStoragePlatform; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileExists_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FilePersisted_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileSize_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileTimestamp_params +{ + struct u_steam_iface *linux_side; + int64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetSyncPlatforms_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileNameAndSize_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + int32_t iFile; + int32_t *pnFileSizeInBytes; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetQuota_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pnTotalBytes; + int32_t *puAvailableBytes; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForAccount_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForApp_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetCloudEnabledForApp_params +{ + struct u_steam_iface *linux_side; + bool bEnabled; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCDownload_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hContent; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetUGCDetails_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hContent; + uint32_t *pnAppID; + char **ppchName; + int32_t *pnFileSizeInBytes; + CSteamID *pSteamIDOwner; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCRead_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t hContent; + void *pvData; + int32_t cubDataToRead; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + int32_t iCachedContent; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileWrite_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; + const void *pvData; + int32_t cubData; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileRead_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchFile; + void *pvData; + int32_t cubDataToRead; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileForget_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileDelete_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileShare_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetSyncPlatforms_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; + uint32_t eRemoteStoragePlatform; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileExists_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FilePersisted_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileSize_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileTimestamp_params +{ + struct u_steam_iface *linux_side; + int64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetSyncPlatforms_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileNameAndSize_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + int32_t iFile; + int32_t *pnFileSizeInBytes; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetQuota_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pnTotalBytes; + int32_t *puAvailableBytes; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForAccount_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForApp_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetCloudEnabledForApp_params +{ + struct u_steam_iface *linux_side; + bool bEnabled; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCDownload_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hContent; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetUGCDetails_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hContent; + uint32_t *pnAppID; + char **ppchName; + int32_t *pnFileSizeInBytes; + CSteamID *pSteamIDOwner; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCRead_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t hContent; + void *pvData; + int32_t cubDataToRead; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + int32_t iCachedContent; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_PublishWorkshopFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchFile; + const char *pchPreviewFile; + uint32_t nConsumerAppId; + const char *pchTitle; + const char *pchDescription; + w_SteamParamStringArray_t *pTags; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UpdatePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + w_RemoteStorageUpdatePublishedFileRequest_t updatePublishedFileRequest; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetPublishedFileDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_DeletePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserPublishedFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SubscribePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserSubscribedFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UnsubscribePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileWrite_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; + const void *pvData; + int32_t cubData; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileRead_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchFile; + void *pvData; + int32_t cubDataToRead; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileForget_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileDelete_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileShare_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetSyncPlatforms_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; + uint32_t eRemoteStoragePlatform; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileExists_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FilePersisted_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileSize_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileTimestamp_params +{ + struct u_steam_iface *linux_side; + int64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetSyncPlatforms_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileNameAndSize_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + int32_t iFile; + int32_t *pnFileSizeInBytes; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetQuota_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pnTotalBytes; + int32_t *puAvailableBytes; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForAccount_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForApp_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetCloudEnabledForApp_params +{ + struct u_steam_iface *linux_side; + bool bEnabled; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCDownload_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hContent; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDownloadProgress_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hContent; + int32_t *pnBytesDownloaded; + int32_t *pnBytesExpected; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDetails_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hContent; + uint32_t *pnAppID; + char **ppchName; + int32_t *pnFileSizeInBytes; + CSteamID *pSteamIDOwner; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCRead_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t hContent; + void *pvData; + int32_t cubDataToRead; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + int32_t iCachedContent; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishWorkshopFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_CreatePublishedFileUpdateRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFilePreviewFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchPreviewFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTitle_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchTitle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchDescription; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileVisibility_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + uint32_t eVisibility; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + w_SteamParamStringArray_t *pTags; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CommitPublishedFileUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t updateHandle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedFileDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_DeletePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserPublishedFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SubscribePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSubscribedFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UnsubscribePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileSetChangeDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchChangeDescription; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedItemVoteDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdateUserPublishedItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; + bool bVoteUp; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUserPublishedItemVoteDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSharedWorkshopFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamId; + uint32_t unStartIndex; + w_SteamParamStringArray_t *pRequiredTags; + w_SteamParamStringArray_t *pExcludedTags; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishVideo_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_SetUserPublishedFileAction_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; + uint32_t eAction; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedFilesByUserAction_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eAction; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedWorkshopFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_FileWrite_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; + const void *pvData; + int32_t cubData; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileRead_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchFile; + void *pvData; + int32_t cubDataToRead; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileForget_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileDelete_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileShare_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetSyncPlatforms_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; + uint32_t eRemoteStoragePlatform; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileExists_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FilePersisted_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileSize_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileTimestamp_params +{ + struct u_steam_iface *linux_side; + int64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetSyncPlatforms_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileNameAndSize_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + int32_t iFile; + int32_t *pnFileSizeInBytes; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetQuota_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pnTotalBytes; + int32_t *puAvailableBytes; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForAccount_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForApp_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetCloudEnabledForApp_params +{ + struct u_steam_iface *linux_side; + bool bEnabled; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCDownload_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hContent; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDownloadProgress_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hContent; + int32_t *pnBytesDownloaded; + int32_t *pnBytesExpected; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDetails_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hContent; + uint32_t *pnAppID; + char **ppchName; + int32_t *pnFileSizeInBytes; + CSteamID *pSteamIDOwner; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCRead_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t hContent; + void *pvData; + int32_t cubDataToRead; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + int32_t iCachedContent; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishWorkshopFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_CreatePublishedFileUpdateRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFilePreviewFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchPreviewFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTitle_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchTitle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchDescription; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileVisibility_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + uint32_t eVisibility; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + w_SteamParamStringArray_t *pTags; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CommitPublishedFileUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t updateHandle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedFileDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_DeletePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserPublishedFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SubscribePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSubscribedFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UnsubscribePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileSetChangeDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchChangeDescription; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedItemVoteDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdateUserPublishedItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; + bool bVoteUp; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUserPublishedItemVoteDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSharedWorkshopFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamId; + uint32_t unStartIndex; + w_SteamParamStringArray_t *pRequiredTags; + w_SteamParamStringArray_t *pExcludedTags; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishVideo_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_SetUserPublishedFileAction_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; + uint32_t eAction; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedFilesByUserAction_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eAction; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedWorkshopFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_FileWrite_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; + const void *pvData; + int32_t cubData; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileRead_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchFile; + void *pvData; + int32_t cubDataToRead; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileForget_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileDelete_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileShare_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetSyncPlatforms_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; + uint32_t eRemoteStoragePlatform; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamOpen_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamWriteChunk_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t writeHandle; + const void *pvData; + int32_t cubData; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamClose_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t writeHandle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamCancel_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t writeHandle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileExists_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FilePersisted_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileSize_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileTimestamp_params +{ + struct u_steam_iface *linux_side; + int64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetSyncPlatforms_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileNameAndSize_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + int32_t iFile; + int32_t *pnFileSizeInBytes; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetQuota_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pnTotalBytes; + int32_t *puAvailableBytes; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForAccount_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForApp_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetCloudEnabledForApp_params +{ + struct u_steam_iface *linux_side; + bool bEnabled; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCDownload_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hContent; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDownloadProgress_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hContent; + int32_t *pnBytesDownloaded; + int32_t *pnBytesExpected; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDetails_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hContent; + uint32_t *pnAppID; + char **ppchName; + int32_t *pnFileSizeInBytes; + CSteamID *pSteamIDOwner; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCRead_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t hContent; + void *pvData; + int32_t cubDataToRead; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + int32_t iCachedContent; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishWorkshopFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_CreatePublishedFileUpdateRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFilePreviewFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchPreviewFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTitle_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchTitle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchDescription; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileVisibility_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + uint32_t eVisibility; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + w_SteamParamStringArray_t *pTags; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CommitPublishedFileUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t updateHandle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedFileDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_DeletePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserPublishedFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SubscribePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSubscribedFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UnsubscribePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileSetChangeDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchChangeDescription; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedItemVoteDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdateUserPublishedItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; + bool bVoteUp; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUserPublishedItemVoteDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSharedWorkshopFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamId; + uint32_t unStartIndex; + w_SteamParamStringArray_t *pRequiredTags; + w_SteamParamStringArray_t *pExcludedTags; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishVideo_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_SetUserPublishedFileAction_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; + uint32_t eAction; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedFilesByUserAction_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eAction; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedWorkshopFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_FileWrite_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; + const void *pvData; + int32_t cubData; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileRead_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchFile; + void *pvData; + int32_t cubDataToRead; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileForget_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileDelete_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileShare_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetSyncPlatforms_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; + uint32_t eRemoteStoragePlatform; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamOpen_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamWriteChunk_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t writeHandle; + const void *pvData; + int32_t cubData; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamClose_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t writeHandle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamCancel_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t writeHandle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileExists_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FilePersisted_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileSize_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileTimestamp_params +{ + struct u_steam_iface *linux_side; + int64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetSyncPlatforms_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileNameAndSize_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + int32_t iFile; + int32_t *pnFileSizeInBytes; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetQuota_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pnTotalBytes; + int32_t *puAvailableBytes; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForAccount_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForApp_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetCloudEnabledForApp_params +{ + struct u_steam_iface *linux_side; + bool bEnabled; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCDownload_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hContent; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDownloadProgress_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hContent; + int32_t *pnBytesDownloaded; + int32_t *pnBytesExpected; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDetails_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hContent; + uint32_t *pnAppID; + char **ppchName; + int32_t *pnFileSizeInBytes; + CSteamID *pSteamIDOwner; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCRead_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t hContent; + void *pvData; + int32_t cubDataToRead; + uint32_t cOffset; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + int32_t iCachedContent; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishWorkshopFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_CreatePublishedFileUpdateRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFilePreviewFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchPreviewFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTitle_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchTitle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchDescription; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileVisibility_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + uint32_t eVisibility; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + w_SteamParamStringArray_t *pTags; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CommitPublishedFileUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t updateHandle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedFileDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_DeletePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserPublishedFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SubscribePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSubscribedFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UnsubscribePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileSetChangeDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchChangeDescription; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedItemVoteDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdateUserPublishedItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; + bool bVoteUp; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUserPublishedItemVoteDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSharedWorkshopFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamId; + uint32_t unStartIndex; + w_SteamParamStringArray_t *pRequiredTags; + w_SteamParamStringArray_t *pExcludedTags; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishVideo_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_SetUserPublishedFileAction_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; + uint32_t eAction; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedFilesByUserAction_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eAction; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedWorkshopFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_FileWrite_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; + const void *pvData; + int32_t cubData; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileRead_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchFile; + void *pvData; + int32_t cubDataToRead; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileForget_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileDelete_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileShare_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetSyncPlatforms_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; + uint32_t eRemoteStoragePlatform; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamOpen_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamWriteChunk_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t writeHandle; + const void *pvData; + int32_t cubData; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamClose_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t writeHandle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamCancel_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t writeHandle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileExists_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FilePersisted_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileSize_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileTimestamp_params +{ + struct u_steam_iface *linux_side; + int64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetSyncPlatforms_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileNameAndSize_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + int32_t iFile; + int32_t *pnFileSizeInBytes; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetQuota_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pnTotalBytes; + int32_t *puAvailableBytes; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForAccount_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForApp_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetCloudEnabledForApp_params +{ + struct u_steam_iface *linux_side; + bool bEnabled; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownload_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hContent; + uint32_t unPriority; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDownloadProgress_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hContent; + int32_t *pnBytesDownloaded; + int32_t *pnBytesExpected; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDetails_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hContent; + uint32_t *pnAppID; + char **ppchName; + int32_t *pnFileSizeInBytes; + CSteamID *pSteamIDOwner; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCRead_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t hContent; + void *pvData; + int32_t cubDataToRead; + uint32_t cOffset; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + int32_t iCachedContent; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishWorkshopFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_CreatePublishedFileUpdateRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFilePreviewFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchPreviewFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTitle_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchTitle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchDescription; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileVisibility_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + uint32_t eVisibility; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + w_SteamParamStringArray_t *pTags; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CommitPublishedFileUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t updateHandle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedFileDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_DeletePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserPublishedFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SubscribePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSubscribedFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UnsubscribePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileSetChangeDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchChangeDescription; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedItemVoteDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdateUserPublishedItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; + bool bVoteUp; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUserPublishedItemVoteDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSharedWorkshopFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamId; + uint32_t unStartIndex; + w_SteamParamStringArray_t *pRequiredTags; + w_SteamParamStringArray_t *pExcludedTags; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishVideo_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_SetUserPublishedFileAction_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; + uint32_t eAction; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedFilesByUserAction_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eAction; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedWorkshopFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_UGCDownloadToLocation_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hContent; + const char *pchLocation; + uint32_t unPriority; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWrite_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; + const void *pvData; + int32_t cubData; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileRead_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchFile; + void *pvData; + int32_t cubDataToRead; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileForget_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileDelete_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileShare_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetSyncPlatforms_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; + uint32_t eRemoteStoragePlatform; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamOpen_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamWriteChunk_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t writeHandle; + const void *pvData; + int32_t cubData; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamClose_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t writeHandle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamCancel_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t writeHandle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileExists_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FilePersisted_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileSize_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileTimestamp_params +{ + struct u_steam_iface *linux_side; + int64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetSyncPlatforms_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileNameAndSize_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + int32_t iFile; + int32_t *pnFileSizeInBytes; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetQuota_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pnTotalBytes; + int32_t *puAvailableBytes; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForAccount_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForApp_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetCloudEnabledForApp_params +{ + struct u_steam_iface *linux_side; + bool bEnabled; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownload_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hContent; + uint32_t unPriority; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDownloadProgress_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hContent; + int32_t *pnBytesDownloaded; + int32_t *pnBytesExpected; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDetails_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hContent; + uint32_t *pnAppID; + char **ppchName; + int32_t *pnFileSizeInBytes; + CSteamID *pSteamIDOwner; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCRead_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t hContent; + void *pvData; + int32_t cubDataToRead; + uint32_t cOffset; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + int32_t iCachedContent; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishWorkshopFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_CreatePublishedFileUpdateRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFilePreviewFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchPreviewFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTitle_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchTitle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchDescription; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileVisibility_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + uint32_t eVisibility; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + w_SteamParamStringArray_t *pTags; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CommitPublishedFileUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t updateHandle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedFileDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; + uint32_t unMaxSecondsOld; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_DeletePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserPublishedFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SubscribePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSubscribedFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UnsubscribePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileSetChangeDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchChangeDescription; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedItemVoteDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdateUserPublishedItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; + bool bVoteUp; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUserPublishedItemVoteDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSharedWorkshopFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamId; + uint32_t unStartIndex; + w_SteamParamStringArray_t *pRequiredTags; + w_SteamParamStringArray_t *pExcludedTags; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishVideo_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_SetUserPublishedFileAction_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; + uint32_t eAction; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedFilesByUserAction_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eAction; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedWorkshopFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_UGCDownloadToLocation_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hContent; + const char *pchLocation; + uint32_t unPriority; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWrite_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; + const void *pvData; + int32_t cubData; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileRead_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchFile; + void *pvData; + int32_t cubDataToRead; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileForget_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileDelete_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileShare_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetSyncPlatforms_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; + uint32_t eRemoteStoragePlatform; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamOpen_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamWriteChunk_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t writeHandle; + const void *pvData; + int32_t cubData; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamClose_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t writeHandle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamCancel_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t writeHandle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileExists_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FilePersisted_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileSize_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileTimestamp_params +{ + struct u_steam_iface *linux_side; + int64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetSyncPlatforms_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileNameAndSize_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + int32_t iFile; + int32_t *pnFileSizeInBytes; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetQuota_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pnTotalBytes; + int32_t *puAvailableBytes; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForAccount_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForApp_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetCloudEnabledForApp_params +{ + struct u_steam_iface *linux_side; + bool bEnabled; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownload_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hContent; + uint32_t unPriority; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDownloadProgress_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hContent; + int32_t *pnBytesDownloaded; + int32_t *pnBytesExpected; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDetails_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hContent; + uint32_t *pnAppID; + char **ppchName; + int32_t *pnFileSizeInBytes; + CSteamID *pSteamIDOwner; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCRead_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t hContent; + void *pvData; + int32_t cubDataToRead; + uint32_t cOffset; + uint32_t eAction; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + int32_t iCachedContent; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishWorkshopFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_CreatePublishedFileUpdateRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFilePreviewFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchPreviewFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTitle_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchTitle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchDescription; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileVisibility_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + uint32_t eVisibility; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + w_SteamParamStringArray_t *pTags; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CommitPublishedFileUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t updateHandle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedFileDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; + uint32_t unMaxSecondsOld; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_DeletePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserPublishedFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SubscribePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSubscribedFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UnsubscribePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileSetChangeDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchChangeDescription; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedItemVoteDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdateUserPublishedItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; + bool bVoteUp; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUserPublishedItemVoteDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSharedWorkshopFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamId; + uint32_t unStartIndex; + w_SteamParamStringArray_t *pRequiredTags; + w_SteamParamStringArray_t *pExcludedTags; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishVideo_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_SetUserPublishedFileAction_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; + uint32_t eAction; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedFilesByUserAction_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eAction; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedWorkshopFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_UGCDownloadToLocation_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hContent; + const char *pchLocation; + uint32_t unPriority; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWrite_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; + const void *pvData; + int32_t cubData; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileRead_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchFile; + void *pvData; + int32_t cubDataToRead; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteAsync_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchFile; + const void *pvData; + uint32_t cubData; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsync_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchFile; + uint32_t nOffset; + uint32_t cubToRead; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsyncComplete_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hReadCall; + void *pvBuffer; + uint32_t cubToRead; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileForget_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileDelete_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileShare_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetSyncPlatforms_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; + uint32_t eRemoteStoragePlatform; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamOpen_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamWriteChunk_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t writeHandle; + const void *pvData; + int32_t cubData; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamClose_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t writeHandle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamCancel_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t writeHandle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileExists_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FilePersisted_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileSize_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileTimestamp_params +{ + struct u_steam_iface *linux_side; + int64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetSyncPlatforms_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileNameAndSize_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + int32_t iFile; + int32_t *pnFileSizeInBytes; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetQuota_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pnTotalBytes; + int32_t *puAvailableBytes; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForAccount_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForApp_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetCloudEnabledForApp_params +{ + struct u_steam_iface *linux_side; + bool bEnabled; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownload_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hContent; + uint32_t unPriority; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDownloadProgress_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hContent; + int32_t *pnBytesDownloaded; + int32_t *pnBytesExpected; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDetails_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hContent; + uint32_t *pnAppID; + char **ppchName; + int32_t *pnFileSizeInBytes; + CSteamID *pSteamIDOwner; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCRead_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t hContent; + void *pvData; + int32_t cubDataToRead; + uint32_t cOffset; + uint32_t eAction; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + int32_t iCachedContent; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishWorkshopFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_CreatePublishedFileUpdateRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFilePreviewFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchPreviewFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTitle_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchTitle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchDescription; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileVisibility_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + uint32_t eVisibility; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + w_SteamParamStringArray_t *pTags; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CommitPublishedFileUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t updateHandle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedFileDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; + uint32_t unMaxSecondsOld; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_DeletePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserPublishedFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SubscribePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSubscribedFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UnsubscribePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileSetChangeDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchChangeDescription; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedItemVoteDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdateUserPublishedItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; + bool bVoteUp; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUserPublishedItemVoteDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSharedWorkshopFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamId; + uint32_t unStartIndex; + w_SteamParamStringArray_t *pRequiredTags; + w_SteamParamStringArray_t *pExcludedTags; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishVideo_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_SetUserPublishedFileAction_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; + uint32_t eAction; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedFilesByUserAction_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eAction; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedWorkshopFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_UGCDownloadToLocation_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hContent; + const char *pchLocation; + uint32_t unPriority; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWrite_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; + const void *pvData; + int32_t cubData; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileRead_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchFile; + void *pvData; + int32_t cubDataToRead; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteAsync_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchFile; + const void *pvData; + uint32_t cubData; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsync_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchFile; + uint32_t nOffset; + uint32_t cubToRead; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsyncComplete_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hReadCall; + void *pvBuffer; + uint32_t cubToRead; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileForget_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileDelete_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileShare_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetSyncPlatforms_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; + uint32_t eRemoteStoragePlatform; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamOpen_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamWriteChunk_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t writeHandle; + const void *pvData; + int32_t cubData; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamClose_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t writeHandle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamCancel_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t writeHandle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileExists_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FilePersisted_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileSize_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileTimestamp_params +{ + struct u_steam_iface *linux_side; + int64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetSyncPlatforms_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileNameAndSize_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + int32_t iFile; + int32_t *pnFileSizeInBytes; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetQuota_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t *pnTotalBytes; + uint64_t *puAvailableBytes; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForAccount_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForApp_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetCloudEnabledForApp_params +{ + struct u_steam_iface *linux_side; + bool bEnabled; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownload_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hContent; + uint32_t unPriority; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDownloadProgress_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hContent; + int32_t *pnBytesDownloaded; + int32_t *pnBytesExpected; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDetails_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hContent; + uint32_t *pnAppID; + char **ppchName; + int32_t *pnFileSizeInBytes; + CSteamID *pSteamIDOwner; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCRead_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t hContent; + void *pvData; + int32_t cubDataToRead; + uint32_t cOffset; + uint32_t eAction; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + int32_t iCachedContent; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishWorkshopFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_CreatePublishedFileUpdateRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFilePreviewFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchPreviewFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTitle_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchTitle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchDescription; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileVisibility_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + uint32_t eVisibility; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + w_SteamParamStringArray_t *pTags; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CommitPublishedFileUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t updateHandle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedFileDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; + uint32_t unMaxSecondsOld; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_DeletePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserPublishedFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SubscribePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSubscribedFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UnsubscribePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileSetChangeDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchChangeDescription; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedItemVoteDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdateUserPublishedItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; + bool bVoteUp; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUserPublishedItemVoteDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSharedWorkshopFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamId; + uint32_t unStartIndex; + w_SteamParamStringArray_t *pRequiredTags; + w_SteamParamStringArray_t *pExcludedTags; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishVideo_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_SetUserPublishedFileAction_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; + uint32_t eAction; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedFilesByUserAction_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eAction; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedWorkshopFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_UGCDownloadToLocation_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hContent; + const char *pchLocation; + uint32_t unPriority; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWrite_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; + const void *pvData; + int32_t cubData; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileRead_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchFile; + void *pvData; + int32_t cubDataToRead; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteAsync_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchFile; + const void *pvData; + uint32_t cubData; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsync_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchFile; + uint32_t nOffset; + uint32_t cubToRead; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsyncComplete_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hReadCall; + void *pvBuffer; + uint32_t cubToRead; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileForget_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileDelete_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileShare_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetSyncPlatforms_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; + uint32_t eRemoteStoragePlatform; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamOpen_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamWriteChunk_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t writeHandle; + const void *pvData; + int32_t cubData; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamClose_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t writeHandle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamCancel_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t writeHandle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileExists_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FilePersisted_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileSize_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileTimestamp_params +{ + struct u_steam_iface *linux_side; + int64_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetSyncPlatforms_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileNameAndSize_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + int32_t iFile; + int32_t *pnFileSizeInBytes; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetQuota_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t *pnTotalBytes; + uint64_t *puAvailableBytes; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForAccount_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForApp_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetCloudEnabledForApp_params +{ + struct u_steam_iface *linux_side; + bool bEnabled; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownload_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hContent; + uint32_t unPriority; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDownloadProgress_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hContent; + int32_t *pnBytesDownloaded; + int32_t *pnBytesExpected; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDetails_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hContent; + uint32_t *pnAppID; + char **ppchName; + int32_t *pnFileSizeInBytes; + CSteamID *pSteamIDOwner; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCRead_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t hContent; + void *pvData; + int32_t cubDataToRead; + uint32_t cOffset; + uint32_t eAction; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + int32_t iCachedContent; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishWorkshopFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_CreatePublishedFileUpdateRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFilePreviewFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchPreviewFile; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTitle_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchTitle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchDescription; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileVisibility_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + uint32_t eVisibility; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + w_SteamParamStringArray_t *pTags; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CommitPublishedFileUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t updateHandle; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedFileDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; + uint32_t unMaxSecondsOld; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_DeletePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserPublishedFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SubscribePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSubscribedFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UnsubscribePublishedFile_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileSetChangeDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const char *pchChangeDescription; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedItemVoteDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdateUserPublishedItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; + bool bVoteUp; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUserPublishedItemVoteDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSharedWorkshopFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamId; + uint32_t unStartIndex; + w_SteamParamStringArray_t *pRequiredTags; + w_SteamParamStringArray_t *pExcludedTags; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishVideo_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_SetUserPublishedFileAction_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t unPublishedFileId; + uint32_t eAction; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedFilesByUserAction_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eAction; + uint32_t unStartIndex; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedWorkshopFiles_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_UGCDownloadToLocation_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hContent; + const char *pchLocation; + uint32_t unPriority; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChangeCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChange_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + int32_t iFile; + uint32_t *pEChangeType; + uint32_t *pEFilePathType; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_BeginFileWriteBatch_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EndFileWriteBatch_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_WriteScreenshot_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + void *pubRGB; + uint32_t cubRGB; + int32_t nWidth; + int32_t nHeight; +}; + +struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_AddScreenshotToLibrary_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const char *pchFilename; + const char *pchThumbnailFilename; + int32_t nWidth; + int32_t nHeight; +}; + +struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TriggerScreenshot_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_HookScreenshots_params +{ + struct u_steam_iface *linux_side; + bool bHook; +}; + +struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLocation_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hScreenshot; + const char *pchLocation; +}; + +struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TagUser_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hScreenshot; + CSteamID steamID; +}; + +struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_WriteScreenshot_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + void *pubRGB; + uint32_t cubRGB; + int32_t nWidth; + int32_t nHeight; +}; + +struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_AddScreenshotToLibrary_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const char *pchFilename; + const char *pchThumbnailFilename; + int32_t nWidth; + int32_t nHeight; +}; + +struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TriggerScreenshot_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_HookScreenshots_params +{ + struct u_steam_iface *linux_side; + bool bHook; +}; + +struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_SetLocation_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hScreenshot; + const char *pchLocation; +}; + +struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUser_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hScreenshot; + CSteamID steamID; +}; + +struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagPublishedFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hScreenshot; + uint64_t unPublishedFileID; +}; + +struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_WriteScreenshot_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + void *pubRGB; + uint32_t cubRGB; + int32_t nWidth; + int32_t nHeight; +}; + +struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddScreenshotToLibrary_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const char *pchFilename; + const char *pchThumbnailFilename; + int32_t nWidth; + int32_t nHeight; +}; + +struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TriggerScreenshot_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_HookScreenshots_params +{ + struct u_steam_iface *linux_side; + bool bHook; +}; + +struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_SetLocation_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hScreenshot; + const char *pchLocation; +}; + +struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagUser_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hScreenshot; + CSteamID steamID; +}; + +struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagPublishedFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hScreenshot; + uint64_t unPublishedFileID; +}; + +struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_IsScreenshotsHooked_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddVRScreenshotToLibrary_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t eType; + const char *pchFilename; + const char *pchVRFilename; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryUserUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_CreateQueryAllUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eQueryType; + uint32_t eMatchingeMatchingUGCTypeFileType; + uint32_t nCreatorAppID; + uint32_t nConsumerAppID; + uint32_t unPage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SendQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + w_SteamUGCDetails_t_126 *pDetails; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_ReleaseQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnLongDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnLongDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnTotalOnly_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnTotalOnly; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFilter_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pMatchCloudFileName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetMatchAnyTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bMatchAnyTag; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pSearchText; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetRankedByTrendDays_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unDays; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_RequestUGCDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryUserUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_CreateQueryAllUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eQueryType; + uint32_t eMatchingeMatchingUGCTypeFileType; + uint32_t nCreatorAppID; + uint32_t nConsumerAppID; + uint32_t unPage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SendQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + w_SteamUGCDetails_t_128x *pDetails; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_ReleaseQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnLongDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnLongDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnTotalOnly_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnTotalOnly; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedResponse_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFilter_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pMatchCloudFileName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetMatchAnyTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bMatchAnyTag; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pSearchText; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetRankedByTrendDays_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unDays; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_RequestUGCDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint32_t eFileType; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_StartItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchTitle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t eVisibility; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const w_SteamParamStringArray_t *pTags; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszContentFolder; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszPreviewFile; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubmitItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; + const char *pchChangeNote; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateProgress_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint64_t *punBytesProcessed; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_UnsubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetNumSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t cMaxEntries; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + uint64_t *punSizeOnDisk; + char *pchFolder; + uint32_t cchFolderSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + bool *pbNeedsUpdate; + bool *pbIsDownloading; + uint64_t *punBytesDownloaded; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryUserUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_CreateQueryAllUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eQueryType; + uint32_t eMatchingeMatchingUGCTypeFileType; + uint32_t nCreatorAppID; + uint32_t nConsumerAppID; + uint32_t unPage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SendQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + w_SteamUGCDetails_t_128x *pDetails; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_ReleaseQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnLongDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnTotalOnly; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pMatchCloudFileName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bMatchAnyTag; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pSearchText; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDays_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unDays; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_RequestUGCDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint32_t eFileType; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_StartItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchTitle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t eVisibility; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const w_SteamParamStringArray_t *pTags; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszContentFolder; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszPreviewFile; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubmitItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; + const char *pchChangeNote; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateProgress_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint64_t *punBytesProcessed; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_UnsubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetNumSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t cMaxEntries; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + uint64_t *punSizeOnDisk; + char *pchFolder; + uint32_t cchFolderSize; + bool *pbLegacyItem; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + bool *pbNeedsUpdate; + bool *pbIsDownloading; + uint64_t *punBytesDownloaded; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryUserUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_CreateQueryAllUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eQueryType; + uint32_t eMatchingeMatchingUGCTypeFileType; + uint32_t nCreatorAppID; + uint32_t nConsumerAppID; + uint32_t unPage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SendQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + w_SteamUGCDetails_t_128x *pDetails; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_ReleaseQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnLongDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnLongDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnTotalOnly_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnTotalOnly; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedResponse_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFilter_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pMatchCloudFileName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetMatchAnyTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bMatchAnyTag; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pSearchText; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetRankedByTrendDays_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unDays; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_RequestUGCDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint32_t eFileType; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_StartItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchTitle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t eVisibility; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const w_SteamParamStringArray_t *pTags; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszContentFolder; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszPreviewFile; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubmitItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; + const char *pchChangeNote; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemUpdateProgress_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint64_t *punBytesProcessed; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_UnsubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetNumSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t cMaxEntries; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + uint64_t *punSizeOnDisk; + char *pchFolder; + uint32_t cchFolderSize; + uint32_t *punTimeStamp; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + uint64_t *punBytesDownloaded; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_DownloadItem_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + bool bHighPriority; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUserUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_CreateQueryAllUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eQueryType; + uint32_t eMatchingeMatchingUGCTypeFileType; + uint32_t nCreatorAppID; + uint32_t nConsumerAppID; + uint32_t unPage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUGCDetailsRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t unNumPublishedFileIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SendQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + w_SteamUGCDetails_t_128x *pDetails; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + char *pchURL; + uint32_t cchURLSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + char *pchMetadata; + uint32_t cchMetadatasize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint64_t *pvecPublishedFileID; + uint32_t cMaxEntries; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCStatistic_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint32_t eStatType; + uint32_t *pStatValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCNumAdditionalPreviews_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAdditionalPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint32_t previewIndex; + char *pchURLOrVideoID; + uint32_t cchURLSize; + bool *pbIsImage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_ReleaseQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnLongDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnLongDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnMetadata; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnChildren_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnChildren; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnAdditionalPreviews_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnAdditionalPreviews; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnTotalOnly_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnTotalOnly; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedResponse_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFilter_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pMatchCloudFileName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetMatchAnyTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bMatchAnyTag; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pSearchText; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetRankedByTrendDays_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unDays; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_RequestUGCDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint32_t eFileType; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_StartItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchTitle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchMetaData; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t eVisibility; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const w_SteamParamStringArray_t *pTags; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszContentFolder; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszPreviewFile; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubmitItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; + const char *pchChangeNote; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemUpdateProgress_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint64_t *punBytesProcessed; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddItemToFavorites_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_RemoveItemFromFavorites_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_UnsubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetNumSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t cMaxEntries; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + uint64_t *punSizeOnDisk; + char *pchFolder; + uint32_t cchFolderSize; + uint32_t *punTimeStamp; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + uint64_t *punBytesDownloaded; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_DownloadItem_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + bool bHighPriority; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUserUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_CreateQueryAllUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eQueryType; + uint32_t eMatchingeMatchingUGCTypeFileType; + uint32_t nCreatorAppID; + uint32_t nConsumerAppID; + uint32_t unPage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUGCDetailsRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t unNumPublishedFileIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SendQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + w_SteamUGCDetails_t_128x *pDetails; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + char *pchURL; + uint32_t cchURLSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + char *pchMetadata; + uint32_t cchMetadatasize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint64_t *pvecPublishedFileID; + uint32_t cMaxEntries; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCStatistic_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint32_t eStatType; + uint32_t *pStatValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCNumAdditionalPreviews_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAdditionalPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint32_t previewIndex; + char *pchURLOrVideoID; + uint32_t cchURLSize; + bool *pbIsImage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_ReleaseQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnLongDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnLongDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnMetadata; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnChildren_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnChildren; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnAdditionalPreviews_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnAdditionalPreviews; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnTotalOnly_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnTotalOnly; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchLanguage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedResponse_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFilter_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pMatchCloudFileName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetMatchAnyTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bMatchAnyTag; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pSearchText; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetRankedByTrendDays_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unDays; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_RequestUGCDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint32_t eFileType; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_StartItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchTitle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLanguage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchLanguage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchMetaData; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t eVisibility; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const w_SteamParamStringArray_t *pTags; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszContentFolder; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszPreviewFile; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubmitItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; + const char *pchChangeNote; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemUpdateProgress_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint64_t *punBytesProcessed; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetUserItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + bool bVoteUp; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetUserItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddItemToFavorites_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_RemoveItemFromFavorites_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_UnsubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetNumSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t cMaxEntries; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + uint64_t *punSizeOnDisk; + char *pchFolder; + uint32_t cchFolderSize; + uint32_t *punTimeStamp; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + uint64_t *punBytesDownloaded; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_DownloadItem_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + bool bHighPriority; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUserUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_CreateQueryAllUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eQueryType; + uint32_t eMatchingeMatchingUGCTypeFileType; + uint32_t nCreatorAppID; + uint32_t nConsumerAppID; + uint32_t unPage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUGCDetailsRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t unNumPublishedFileIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SendQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + w_SteamUGCDetails_t_128x *pDetails; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + char *pchURL; + uint32_t cchURLSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + char *pchMetadata; + uint32_t cchMetadatasize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint64_t *pvecPublishedFileID; + uint32_t cMaxEntries; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCStatistic_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint32_t eStatType; + uint32_t *pStatValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumAdditionalPreviews_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCAdditionalPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint32_t previewIndex; + char *pchURLOrVideoID; + uint32_t cchURLSize; + bool *pbIsImage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumKeyValueTags_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint32_t keyValueTagIndex; + char *pchKey; + uint32_t cchKeySize; + char *pchValue; + uint32_t cchValueSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_ReleaseQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnKeyValueTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnKeyValueTags; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnLongDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnLongDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnMetadata; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnChildren_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnChildren; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnAdditionalPreviews_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnAdditionalPreviews; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnTotalOnly_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnTotalOnly; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchLanguage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedResponse_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFilter_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pMatchCloudFileName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetMatchAnyTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bMatchAnyTag; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pSearchText; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDays_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unDays; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pKey; + const char *pValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RequestUGCDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint32_t eFileType; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_StartItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchTitle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLanguage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchLanguage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchMetaData; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t eVisibility; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const w_SteamParamStringArray_t *pTags; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszContentFolder; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszPreviewFile; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchKey; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubmitItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; + const char *pchChangeNote; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemUpdateProgress_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint64_t *punBytesProcessed; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetUserItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + bool bVoteUp; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetUserItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemToFavorites_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemFromFavorites_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_UnsubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetNumSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t cMaxEntries; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + uint64_t *punSizeOnDisk; + char *pchFolder; + uint32_t cchFolderSize; + uint32_t *punTimeStamp; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + uint64_t *punBytesDownloaded; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + bool bHighPriority; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameServer_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unWorkshopDepotID; + const char *pszFolder; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SuspendDownloads_params +{ + struct u_steam_iface *linux_side; + bool bSuspend; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUserUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_CreateQueryAllUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eQueryType; + uint32_t eMatchingeMatchingUGCTypeFileType; + uint32_t nCreatorAppID; + uint32_t nConsumerAppID; + uint32_t unPage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUGCDetailsRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t unNumPublishedFileIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SendQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + w_SteamUGCDetails_t_128x *pDetails; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + char *pchURL; + uint32_t cchURLSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + char *pchMetadata; + uint32_t cchMetadatasize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint64_t *pvecPublishedFileID; + uint32_t cMaxEntries; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCStatistic_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint32_t eStatType; + uint32_t *pStatValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumAdditionalPreviews_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCAdditionalPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + 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_GetQueryUGCNumKeyValueTags_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint32_t keyValueTagIndex; + char *pchKey; + uint32_t cchKeySize; + char *pchValue; + uint32_t cchValueSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_ReleaseQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnKeyValueTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnKeyValueTags; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnLongDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnLongDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnMetadata; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnChildren_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnChildren; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnAdditionalPreviews_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnAdditionalPreviews; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnTotalOnly_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnTotalOnly; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchLanguage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedResponse_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFilter_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pMatchCloudFileName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetMatchAnyTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bMatchAnyTag; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pSearchText; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDays_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unDays; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pKey; + const char *pValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RequestUGCDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint32_t eFileType; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_StartItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchTitle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLanguage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchLanguage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchMetaData; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t eVisibility; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const w_SteamParamStringArray_t *pTags; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszContentFolder; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszPreviewFile; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchKey; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszPreviewFile; + uint32_t type; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszVideoID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + const char *pszPreviewFile; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVideo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + const char *pszVideoID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubmitItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; + const char *pchChangeNote; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemUpdateProgress_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint64_t *punBytesProcessed; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetUserItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + bool bVoteUp; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetUserItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemToFavorites_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemFromFavorites_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UnsubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetNumSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t cMaxEntries; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + uint64_t *punSizeOnDisk; + char *pchFolder; + uint32_t cchFolderSize; + uint32_t *punTimeStamp; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + uint64_t *punBytesDownloaded; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + bool bHighPriority; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameServer_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unWorkshopDepotID; + const char *pszFolder; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SuspendDownloads_params +{ + struct u_steam_iface *linux_side; + bool bSuspend; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUserUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_CreateQueryAllUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eQueryType; + uint32_t eMatchingeMatchingUGCTypeFileType; + uint32_t nCreatorAppID; + uint32_t nConsumerAppID; + uint32_t unPage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUGCDetailsRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t unNumPublishedFileIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SendQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + w_SteamUGCDetails_t_128x *pDetails; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + char *pchURL; + uint32_t cchURLSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + char *pchMetadata; + uint32_t cchMetadatasize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint64_t *pvecPublishedFileID; + uint32_t cMaxEntries; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCStatistic_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint32_t eStatType; + uint64_t *pStatValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumAdditionalPreviews_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCAdditionalPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + 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_GetQueryUGCNumKeyValueTags_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint32_t keyValueTagIndex; + char *pchKey; + uint32_t cchKeySize; + char *pchValue; + uint32_t cchValueSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_ReleaseQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnOnlyIDs_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnOnlyIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnKeyValueTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnKeyValueTags; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnLongDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnLongDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnMetadata; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnChildren_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnChildren; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnAdditionalPreviews_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnAdditionalPreviews; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnTotalOnly_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnTotalOnly; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchLanguage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedResponse_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFilter_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pMatchCloudFileName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetMatchAnyTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bMatchAnyTag; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pSearchText; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDays_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unDays; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pKey; + const char *pValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RequestUGCDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint32_t eFileType; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchTitle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLanguage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchLanguage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchMetaData; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t eVisibility; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const w_SteamParamStringArray_t *pTags; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszContentFolder; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszPreviewFile; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchKey; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszPreviewFile; + uint32_t type; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszVideoID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + const char *pszPreviewFile; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVideo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + const char *pszVideoID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubmitItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; + const char *pchChangeNote; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemUpdateProgress_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint64_t *punBytesProcessed; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetUserItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + bool bVoteUp; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetUserItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemToFavorites_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemFromFavorites_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UnsubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetNumSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t cMaxEntries; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + uint64_t *punSizeOnDisk; + char *pchFolder; + uint32_t cchFolderSize; + uint32_t *punTimeStamp; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + uint64_t *punBytesDownloaded; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_DownloadItem_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + bool bHighPriority; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameServer_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unWorkshopDepotID; + const char *pszFolder; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SuspendDownloads_params +{ + struct u_steam_iface *linux_side; + bool bSuspend; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartPlaytimeTracking_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t unNumPublishedFileIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTracking_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t unNumPublishedFileIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTrackingForAllItems_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUserUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_CreateQueryAllUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eQueryType; + uint32_t eMatchingeMatchingUGCTypeFileType; + uint32_t nCreatorAppID; + uint32_t nConsumerAppID; + uint32_t unPage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUGCDetailsRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t unNumPublishedFileIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SendQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + w_SteamUGCDetails_t_128x *pDetails; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + char *pchURL; + uint32_t cchURLSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + char *pchMetadata; + uint32_t cchMetadatasize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint64_t *pvecPublishedFileID; + uint32_t cMaxEntries; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCStatistic_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint32_t eStatType; + uint64_t *pStatValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumAdditionalPreviews_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCAdditionalPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + 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_GetQueryUGCNumKeyValueTags_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint32_t keyValueTagIndex; + char *pchKey; + uint32_t cchKeySize; + char *pchValue; + uint32_t cchValueSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_ReleaseQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnOnlyIDs_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnOnlyIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnKeyValueTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnKeyValueTags; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnLongDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnLongDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnMetadata; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnChildren_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnChildren; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnAdditionalPreviews_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnAdditionalPreviews; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnTotalOnly_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnTotalOnly; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unDays; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchLanguage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedResponse_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFilter_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pMatchCloudFileName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetMatchAnyTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bMatchAnyTag; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pSearchText; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDays_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unDays; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pKey; + const char *pValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RequestUGCDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint32_t eFileType; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchTitle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLanguage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchLanguage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchMetaData; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t eVisibility; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const w_SteamParamStringArray_t *pTags; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszContentFolder; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszPreviewFile; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchKey; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszPreviewFile; + uint32_t type; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszVideoID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + const char *pszPreviewFile; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVideo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + const char *pszVideoID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubmitItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; + const char *pchChangeNote; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemUpdateProgress_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint64_t *punBytesProcessed; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetUserItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + bool bVoteUp; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetUserItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemToFavorites_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemFromFavorites_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UnsubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetNumSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t cMaxEntries; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + uint64_t *punSizeOnDisk; + char *pchFolder; + uint32_t cchFolderSize; + uint32_t *punTimeStamp; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + uint64_t *punBytesDownloaded; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_DownloadItem_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + bool bHighPriority; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameServer_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unWorkshopDepotID; + const char *pszFolder; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SuspendDownloads_params +{ + struct u_steam_iface *linux_side; + bool bSuspend; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartPlaytimeTracking_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t unNumPublishedFileIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTracking_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t unNumPublishedFileIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTrackingForAllItems_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nParentPublishedFileID; + uint64_t nChildPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nParentPublishedFileID; + uint64_t nChildPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddAppDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t nAppID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveAppDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t nAppID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetAppDependencies_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_DeleteItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUserUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_CreateQueryAllUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eQueryType; + uint32_t eMatchingeMatchingUGCTypeFileType; + uint32_t nCreatorAppID; + uint32_t nConsumerAppID; + uint32_t unPage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_2_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eQueryType; + uint32_t eMatchingeMatchingUGCTypeFileType; + uint32_t nCreatorAppID; + uint32_t nConsumerAppID; + const char *pchCursor; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUGCDetailsRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t unNumPublishedFileIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SendQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + w_SteamUGCDetails_t_128x *pDetails; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + char *pchURL; + uint32_t cchURLSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + char *pchMetadata; + uint32_t cchMetadatasize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint64_t *pvecPublishedFileID; + uint32_t cMaxEntries; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCStatistic_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint32_t eStatType; + uint64_t *pStatValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumAdditionalPreviews_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCAdditionalPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + 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_GetQueryUGCNumKeyValueTags_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint32_t keyValueTagIndex; + char *pchKey; + uint32_t cchKeySize; + char *pchValue; + uint32_t cchValueSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_ReleaseQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnOnlyIDs_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnOnlyIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnKeyValueTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnKeyValueTags; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnLongDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnLongDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnMetadata; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnChildren_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnChildren; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnAdditionalPreviews_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnAdditionalPreviews; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnTotalOnly_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnTotalOnly; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unDays; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchLanguage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedResponse_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFilter_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pMatchCloudFileName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetMatchAnyTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bMatchAnyTag; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pSearchText; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDays_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unDays; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pKey; + const char *pValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RequestUGCDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint32_t eFileType; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchTitle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLanguage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchLanguage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchMetaData; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t eVisibility; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const w_SteamParamStringArray_t *pTags; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszContentFolder; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszPreviewFile; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowLegacyUpload_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bAllowLegacyUpload; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchKey; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszPreviewFile; + uint32_t type; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszVideoID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + const char *pszPreviewFile; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVideo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + const char *pszVideoID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubmitItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; + const char *pchChangeNote; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemUpdateProgress_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint64_t *punBytesProcessed; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetUserItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + bool bVoteUp; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetUserItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemToFavorites_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemFromFavorites_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UnsubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetNumSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t cMaxEntries; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + uint64_t *punSizeOnDisk; + char *pchFolder; + uint32_t cchFolderSize; + uint32_t *punTimeStamp; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + uint64_t *punBytesDownloaded; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_DownloadItem_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + bool bHighPriority; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameServer_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unWorkshopDepotID; + const char *pszFolder; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SuspendDownloads_params +{ + struct u_steam_iface *linux_side; + bool bSuspend; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartPlaytimeTracking_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t unNumPublishedFileIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTracking_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t unNumPublishedFileIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTrackingForAllItems_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nParentPublishedFileID; + uint64_t nChildPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nParentPublishedFileID; + uint64_t nChildPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddAppDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t nAppID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveAppDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t nAppID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetAppDependencies_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_DeleteItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUserUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_CreateQueryAllUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eQueryType; + uint32_t eMatchingeMatchingUGCTypeFileType; + uint32_t nCreatorAppID; + uint32_t nConsumerAppID; + uint32_t unPage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_2_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eQueryType; + uint32_t eMatchingeMatchingUGCTypeFileType; + uint32_t nCreatorAppID; + uint32_t nConsumerAppID; + const char *pchCursor; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUGCDetailsRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t unNumPublishedFileIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SendQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + w_SteamUGCDetails_t_128x *pDetails; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + char *pchURL; + uint32_t cchURLSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + char *pchMetadata; + uint32_t cchMetadatasize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint64_t *pvecPublishedFileID; + uint32_t cMaxEntries; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCStatistic_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint32_t eStatType; + uint64_t *pStatValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumAdditionalPreviews_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCAdditionalPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + 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_GetQueryUGCNumKeyValueTags_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + 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_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + const char *pchKey; + char *pchValue; + uint32_t cchValueSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_ReleaseQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnOnlyIDs_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnOnlyIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnKeyValueTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnKeyValueTags; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnLongDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnLongDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnMetadata; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnChildren_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnChildren; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnAdditionalPreviews_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnAdditionalPreviews; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnTotalOnly_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnTotalOnly; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unDays; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchLanguage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedResponse_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFilter_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pMatchCloudFileName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetMatchAnyTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bMatchAnyTag; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pSearchText; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDays_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unDays; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pKey; + const char *pValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RequestUGCDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint32_t eFileType; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchTitle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLanguage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchLanguage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchMetaData; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t eVisibility; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const w_SteamParamStringArray_t *pTags; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszContentFolder; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszPreviewFile; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowLegacyUpload_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bAllowLegacyUpload; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAllItemKeyValueTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchKey; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszPreviewFile; + uint32_t type; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszVideoID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + const char *pszPreviewFile; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVideo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + const char *pszVideoID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubmitItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; + const char *pchChangeNote; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemUpdateProgress_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint64_t *punBytesProcessed; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetUserItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + bool bVoteUp; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetUserItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemToFavorites_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemFromFavorites_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UnsubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetNumSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t cMaxEntries; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + uint64_t *punSizeOnDisk; + char *pchFolder; + uint32_t cchFolderSize; + uint32_t *punTimeStamp; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + uint64_t *punBytesDownloaded; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_DownloadItem_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + bool bHighPriority; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameServer_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unWorkshopDepotID; + const char *pszFolder; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SuspendDownloads_params +{ + struct u_steam_iface *linux_side; + bool bSuspend; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartPlaytimeTracking_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t unNumPublishedFileIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTracking_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t unNumPublishedFileIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTrackingForAllItems_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nParentPublishedFileID; + uint64_t nChildPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nParentPublishedFileID; + uint64_t nChildPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddAppDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t nAppID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAppDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t nAppID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetAppDependencies_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_DeleteItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUserUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_CreateQueryAllUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eQueryType; + uint32_t eMatchingeMatchingUGCTypeFileType; + uint32_t nCreatorAppID; + uint32_t nConsumerAppID; + uint32_t unPage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_2_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eQueryType; + uint32_t eMatchingeMatchingUGCTypeFileType; + uint32_t nCreatorAppID; + uint32_t nConsumerAppID; + const char *pchCursor; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUGCDetailsRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t unNumPublishedFileIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SendQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + w_SteamUGCDetails_t_128x *pDetails; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + char *pchURL; + uint32_t cchURLSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + char *pchMetadata; + uint32_t cchMetadatasize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint64_t *pvecPublishedFileID; + uint32_t cMaxEntries; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCStatistic_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint32_t eStatType; + uint64_t *pStatValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumAdditionalPreviews_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCAdditionalPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + 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_GetQueryUGCNumKeyValueTags_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + 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_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + const char *pchKey; + char *pchValue; + uint32_t cchValueSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_ReleaseQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const w_SteamParamStringArray_t *pTagGroups; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnOnlyIDs_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnOnlyIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnKeyValueTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnKeyValueTags; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnLongDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnLongDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnMetadata; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnChildren_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnChildren; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnAdditionalPreviews_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnAdditionalPreviews; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnTotalOnly_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnTotalOnly; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unDays; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchLanguage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedResponse_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFilter_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pMatchCloudFileName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetMatchAnyTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bMatchAnyTag; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pSearchText; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDays_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unDays; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pKey; + const char *pValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RequestUGCDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint32_t eFileType; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchTitle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLanguage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchLanguage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchMetaData; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t eVisibility; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const w_SteamParamStringArray_t *pTags; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszContentFolder; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszPreviewFile; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowLegacyUpload_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bAllowLegacyUpload; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAllItemKeyValueTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchKey; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszPreviewFile; + uint32_t type; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszVideoID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + const char *pszPreviewFile; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVideo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + const char *pszVideoID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubmitItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; + const char *pchChangeNote; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemUpdateProgress_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint64_t *punBytesProcessed; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetUserItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + bool bVoteUp; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetUserItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemToFavorites_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemFromFavorites_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UnsubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetNumSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t cMaxEntries; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + uint64_t *punSizeOnDisk; + char *pchFolder; + uint32_t cchFolderSize; + uint32_t *punTimeStamp; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + uint64_t *punBytesDownloaded; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_DownloadItem_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + bool bHighPriority; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameServer_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unWorkshopDepotID; + const char *pszFolder; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SuspendDownloads_params +{ + struct u_steam_iface *linux_side; + bool bSuspend; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartPlaytimeTracking_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t unNumPublishedFileIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTracking_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t unNumPublishedFileIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTrackingForAllItems_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nParentPublishedFileID; + uint64_t nChildPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nParentPublishedFileID; + uint64_t nChildPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddAppDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t nAppID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAppDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t nAppID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetAppDependencies_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_DeleteItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUserUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_CreateQueryAllUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eQueryType; + uint32_t eMatchingeMatchingUGCTypeFileType; + uint32_t nCreatorAppID; + uint32_t nConsumerAppID; + uint32_t unPage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_2_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eQueryType; + uint32_t eMatchingeMatchingUGCTypeFileType; + uint32_t nCreatorAppID; + uint32_t nConsumerAppID; + const char *pchCursor; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUGCDetailsRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t unNumPublishedFileIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SendQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCResult_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + w_SteamUGCDetails_t_128x *pDetails; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumTags_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint32_t indexTag; + char *pchValue; + uint32_t cchValueSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplayName_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint32_t indexTag; + char *pchValue; + uint32_t cchValueSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + char *pchURL; + uint32_t cchURLSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + char *pchMetadata; + uint32_t cchMetadatasize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint64_t *pvecPublishedFileID; + uint32_t cMaxEntries; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCStatistic_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint32_t eStatType; + uint64_t *pStatValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumAdditionalPreviews_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCAdditionalPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + 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_GetQueryUGCNumKeyValueTags_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + 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_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + const char *pchKey; + char *pchValue; + uint32_t cchValueSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_ReleaseQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const w_SteamParamStringArray_t *pTagGroups; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnOnlyIDs_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnOnlyIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnKeyValueTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnKeyValueTags; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnLongDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnLongDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnMetadata; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnChildren_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnChildren; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnAdditionalPreviews_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnAdditionalPreviews; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnTotalOnly_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnTotalOnly; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unDays; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchLanguage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedResponse_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFilter_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pMatchCloudFileName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetMatchAnyTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bMatchAnyTag; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pSearchText; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDays_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unDays; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pKey; + const char *pValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RequestUGCDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint32_t eFileType; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchTitle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLanguage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchLanguage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchMetaData; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t eVisibility; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const w_SteamParamStringArray_t *pTags; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszContentFolder; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszPreviewFile; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowLegacyUpload_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bAllowLegacyUpload; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAllItemKeyValueTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchKey; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszPreviewFile; + uint32_t type; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszVideoID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + const char *pszPreviewFile; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVideo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + const char *pszVideoID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubmitItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; + const char *pchChangeNote; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemUpdateProgress_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint64_t *punBytesProcessed; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetUserItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + bool bVoteUp; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetUserItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemToFavorites_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemFromFavorites_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UnsubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetNumSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t cMaxEntries; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + uint64_t *punSizeOnDisk; + char *pchFolder; + uint32_t cchFolderSize; + uint32_t *punTimeStamp; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + uint64_t *punBytesDownloaded; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_DownloadItem_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + bool bHighPriority; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameServer_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unWorkshopDepotID; + const char *pszFolder; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SuspendDownloads_params +{ + struct u_steam_iface *linux_side; + bool bSuspend; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartPlaytimeTracking_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t unNumPublishedFileIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTracking_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t unNumPublishedFileIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTrackingForAllItems_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nParentPublishedFileID; + uint64_t nChildPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nParentPublishedFileID; + uint64_t nChildPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddAppDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t nAppID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAppDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t nAppID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetAppDependencies_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_DeleteItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_ShowWorkshopEULA_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetWorkshopEULAStatus_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUserUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_CreateQueryAllUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eQueryType; + uint32_t eMatchingeMatchingUGCTypeFileType; + uint32_t nCreatorAppID; + uint32_t nConsumerAppID; + uint32_t unPage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_2_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eQueryType; + uint32_t eMatchingeMatchingUGCTypeFileType; + uint32_t nCreatorAppID; + uint32_t nConsumerAppID; + const char *pchCursor; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUGCDetailsRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t unNumPublishedFileIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SendQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCResult_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + w_SteamUGCDetails_t_128x *pDetails; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumTags_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint32_t indexTag; + char *pchValue; + uint32_t cchValueSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplayName_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint32_t indexTag; + char *pchValue; + uint32_t cchValueSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + char *pchURL; + uint32_t cchURLSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + char *pchMetadata; + uint32_t cchMetadatasize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint64_t *pvecPublishedFileID; + uint32_t cMaxEntries; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint32_t eStatType; + uint64_t *pStatValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumAdditionalPreviews_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + 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_GetQueryUGCNumKeyValueTags_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + 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_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + const char *pchKey; + char *pchValue; + uint32_t cchValueSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_ReleaseQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const w_SteamParamStringArray_t *pTagGroups; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnOnlyIDs_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnOnlyIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnKeyValueTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnKeyValueTags; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnLongDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnLongDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnMetadata; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnChildren_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnChildren; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnAdditionalPreviews_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnAdditionalPreviews; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnTotalOnly_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnTotalOnly; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unDays; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchLanguage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedResponse_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFilter_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pMatchCloudFileName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetMatchAnyTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bMatchAnyTag; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pSearchText; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDays_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unDays; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRange_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t rtStart; + uint32_t rtEnd; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRange_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t rtStart; + uint32_t rtEnd; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pKey; + const char *pValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RequestUGCDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint32_t eFileType; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchTitle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLanguage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchLanguage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchMetaData; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t eVisibility; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const w_SteamParamStringArray_t *pTags; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszContentFolder; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszPreviewFile; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowLegacyUpload_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bAllowLegacyUpload; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAllItemKeyValueTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchKey; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszPreviewFile; + uint32_t type; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszVideoID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + const char *pszPreviewFile; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVideo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + const char *pszVideoID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubmitItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; + const char *pchChangeNote; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemUpdateProgress_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint64_t *punBytesProcessed; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetUserItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + bool bVoteUp; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetUserItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemToFavorites_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemFromFavorites_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UnsubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetNumSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t cMaxEntries; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + uint64_t *punSizeOnDisk; + char *pchFolder; + uint32_t cchFolderSize; + uint32_t *punTimeStamp; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + uint64_t *punBytesDownloaded; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_DownloadItem_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + bool bHighPriority; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameServer_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unWorkshopDepotID; + const char *pszFolder; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SuspendDownloads_params +{ + struct u_steam_iface *linux_side; + bool bSuspend; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartPlaytimeTracking_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t unNumPublishedFileIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTracking_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t unNumPublishedFileIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTrackingForAllItems_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nParentPublishedFileID; + uint64_t nChildPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nParentPublishedFileID; + uint64_t nChildPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddAppDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t nAppID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAppDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t nAppID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetAppDependencies_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_DeleteItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_ShowWorkshopEULA_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetWorkshopEULAStatus_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUserUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_CreateQueryAllUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eQueryType; + uint32_t eMatchingeMatchingUGCTypeFileType; + uint32_t nCreatorAppID; + uint32_t nConsumerAppID; + uint32_t unPage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_2_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eQueryType; + uint32_t eMatchingeMatchingUGCTypeFileType; + uint32_t nCreatorAppID; + uint32_t nConsumerAppID; + const char *pchCursor; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUGCDetailsRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t unNumPublishedFileIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SendQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCResult_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + w_SteamUGCDetails_t_128x *pDetails; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumTags_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint32_t indexTag; + char *pchValue; + uint32_t cchValueSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplayName_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint32_t indexTag; + char *pchValue; + uint32_t cchValueSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + char *pchURL; + uint32_t cchURLSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + char *pchMetadata; + uint32_t cchMetadatasize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint64_t *pvecPublishedFileID; + uint32_t cMaxEntries; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCStatistic_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint32_t eStatType; + uint64_t *pStatValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumAdditionalPreviews_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCAdditionalPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + 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_GetQueryUGCNumKeyValueTags_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + 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_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + const char *pchKey; + char *pchValue; + uint32_t cchValueSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCContentDescriptors_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint32_t index; + uint32_t *pvecDescriptors; + uint32_t cMaxEntries; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_ReleaseQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const w_SteamParamStringArray_t *pTagGroups; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnOnlyIDs_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnOnlyIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnKeyValueTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnKeyValueTags; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnLongDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnLongDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnMetadata; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnChildren_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnChildren; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnAdditionalPreviews_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnAdditionalPreviews; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnTotalOnly_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnTotalOnly; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unDays; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchLanguage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedResponse_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFilter_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pMatchCloudFileName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetMatchAnyTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bMatchAnyTag; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pSearchText; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDays_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unDays; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRange_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t rtStart; + uint32_t rtEnd; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRange_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t rtStart; + uint32_t rtEnd; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pKey; + const char *pValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RequestUGCDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint32_t eFileType; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchTitle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLanguage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchLanguage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchMetaData; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t eVisibility; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const w_SteamParamStringArray_t *pTags; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszContentFolder; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszPreviewFile; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowLegacyUpload_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bAllowLegacyUpload; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAllItemKeyValueTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchKey; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszPreviewFile; + uint32_t type; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszVideoID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + const char *pszPreviewFile; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVideo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + const char *pszVideoID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescriptor_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t descid; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveContentDescriptor_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t descid; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubmitItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; + const char *pchChangeNote; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemUpdateProgress_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint64_t *punBytesProcessed; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetUserItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + bool bVoteUp; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetUserItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemToFavorites_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemFromFavorites_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UnsubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetNumSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t cMaxEntries; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + uint64_t *punSizeOnDisk; + char *pchFolder; + uint32_t cchFolderSize; + uint32_t *punTimeStamp; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + uint64_t *punBytesDownloaded; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_DownloadItem_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + bool bHighPriority; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameServer_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unWorkshopDepotID; + const char *pszFolder; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SuspendDownloads_params +{ + struct u_steam_iface *linux_side; + bool bSuspend; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartPlaytimeTracking_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t unNumPublishedFileIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTracking_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t unNumPublishedFileIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTrackingForAllItems_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nParentPublishedFileID; + uint64_t nChildPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nParentPublishedFileID; + uint64_t nChildPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddAppDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t nAppID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAppDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t nAppID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetAppDependencies_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_DeleteItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_ShowWorkshopEULA_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetWorkshopEULAStatus_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUserUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + 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_CreateQueryAllUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eQueryType; + uint32_t eMatchingeMatchingUGCTypeFileType; + uint32_t nCreatorAppID; + uint32_t nConsumerAppID; + uint32_t unPage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_2_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eQueryType; + uint32_t eMatchingeMatchingUGCTypeFileType; + uint32_t nCreatorAppID; + uint32_t nConsumerAppID; + const char *pchCursor; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUGCDetailsRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t unNumPublishedFileIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SendQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCResult_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + w_SteamUGCDetails_t_128x *pDetails; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumTags_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint32_t indexTag; + char *pchValue; + uint32_t cchValueSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplayName_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint32_t indexTag; + char *pchValue; + uint32_t cchValueSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + char *pchURL; + uint32_t cchURLSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + char *pchMetadata; + uint32_t cchMetadatasize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint64_t *pvecPublishedFileID; + uint32_t cMaxEntries; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCStatistic_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + uint32_t eStatType; + uint64_t *pStatValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumAdditionalPreviews_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCAdditionalPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + 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_GetQueryUGCNumKeyValueTags_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + 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_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + const char *pchKey; + char *pchValue; + uint32_t cchValueSize; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCContentDescriptors_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint32_t index; + uint32_t *pvecDescriptors; + uint32_t cMaxEntries; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_ReleaseQueryUGCRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const w_SteamParamStringArray_t *pTagGroups; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pTagName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnOnlyIDs_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnOnlyIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnKeyValueTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnKeyValueTags; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnLongDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnLongDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnMetadata; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnChildren_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnChildren; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnAdditionalPreviews_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnAdditionalPreviews; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnTotalOnly_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bReturnTotalOnly; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unDays; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchLanguage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedResponse_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFilter_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pMatchCloudFileName; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetMatchAnyTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bMatchAnyTag; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pSearchText; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDays_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t unDays; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRange_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t rtStart; + uint32_t rtEnd; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRange_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t rtStart; + uint32_t rtEnd; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pKey; + const char *pValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RequestUGCDetails_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t unMaxAgeSeconds; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint32_t eFileType; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nConsumerAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchTitle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchDescription; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLanguage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchLanguage; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchMetaData; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t eVisibility; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t updateHandle; + const w_SteamParamStringArray_t *pTags; + bool bAllowAdminTags; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszContentFolder; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszPreviewFile; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowLegacyUpload_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + bool bAllowLegacyUpload; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAllItemKeyValueTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueTags_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchKey; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszPreviewFile; + uint32_t type; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + const char *pszVideoID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + const char *pszPreviewFile; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVideo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; + const char *pszVideoID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t index; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescriptor_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t descid; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveContentDescriptor_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t handle; + uint32_t descid; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubmitItemUpdate_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t handle; + const char *pchChangeNote; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemUpdateProgress_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t handle; + uint64_t *punBytesProcessed; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetUserItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + bool bVoteUp; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserItemVote_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemToFavorites_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemFromFavorites_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t nAppId; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UnsubscribeItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetNumSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetSubscribedItems_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t cMaxEntries; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + uint64_t *punSizeOnDisk; + char *pchFolder; + uint32_t cchFolderSize; + uint32_t *punTimeStamp; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + uint64_t *punBytesDownloaded; + uint64_t *punBytesTotal; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_DownloadItem_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t nPublishedFileID; + bool bHighPriority; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameServer_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unWorkshopDepotID; + const char *pszFolder; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SuspendDownloads_params +{ + struct u_steam_iface *linux_side; + bool bSuspend; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartPlaytimeTracking_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t unNumPublishedFileIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTracking_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t *pvecPublishedFileID; + uint32_t unNumPublishedFileIDs; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTrackingForAllItems_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nParentPublishedFileID; + uint64_t nChildPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nParentPublishedFileID; + uint64_t nChildPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddAppDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t nAppID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAppDependency_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; + uint32_t nAppID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetAppDependencies_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_DeleteItem_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t nPublishedFileID; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_ShowWorkshopEULA_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetWorkshopEULAStatus_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserContentDescriptorPreferences_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t *pvecDescriptors; + uint32_t cMaxEntries; +}; + +struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendMethod_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchServiceMethod; + const void *pRequestBuffer; + uint32_t unRequestBufferSize; + uint64_t unContext; +}; + +struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hHandle; + uint32_t *punResponseSize; + uint32_t *peResult; +}; + +struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hHandle; + void *pResponseBuffer; + uint32_t unResponseBufferSize; + bool bAutoRelease; +}; + +struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_ReleaseMethod_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hHandle; +}; + +struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNotification_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchServiceNotification; + const void *pNotificationBuffer; + uint32_t unNotificationBufferSize; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumStats_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CGameID nGameID; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CGameID nGameID; + uint32_t iStat; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatType_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CGameID nGameID; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumAchievements_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CGameID nGameID; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CGameID nGameID; + uint32_t iAchievement; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumGroupAchievements_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CGameID nGameID; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievementName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CGameID nGameID; + uint32_t iAchievement; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_RequestCurrentStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CGameID nGameID; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CGameID nGameID; + const char *pchName; + int32_t *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CGameID nGameID; + const char *pchName; + float *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CGameID nGameID; + const char *pchName; + int32_t nData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CGameID nGameID; + const char *pchName; + float fData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvgRateStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CGameID nGameID; + const char *pchName; + float flCountThisSession; + double dSessionLength; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CGameID nGameID; + const char *pchName; + bool *pbAchieved; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CGameID nGameID; + const char *pchName; + bool *pbAchieved; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CGameID nGameID; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGroupAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CGameID nGameID; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_StoreStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CGameID nGameID; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CGameID nGameID; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearGroupAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CGameID nGameID; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementIcon_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CGameID nGameID; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementDisplayAttribute_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CGameID nGameID; + const char *pchName; + const char *pchKey; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumStats_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CGameID nGameID; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CGameID nGameID; + uint32_t iStat; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatType_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CGameID nGameID; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumAchievements_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CGameID nGameID; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CGameID nGameID; + uint32_t iAchievement; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_RequestCurrentStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CGameID nGameID; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CGameID nGameID; + const char *pchName; + int32_t *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CGameID nGameID; + const char *pchName; + float *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CGameID nGameID; + const char *pchName; + int32_t nData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CGameID nGameID; + const char *pchName; + float fData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvgRateStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CGameID nGameID; + const char *pchName; + float flCountThisSession; + double dSessionLength; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CGameID nGameID; + const char *pchName; + bool *pbAchieved; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CGameID nGameID; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CGameID nGameID; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_StoreStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CGameID nGameID; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementIcon_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CGameID nGameID; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementDisplayAttribute_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CGameID nGameID; + const char *pchName; + const char *pchKey; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_IndicateAchievementProgress_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CGameID nGameID; + const char *pchName; + uint32_t nCurProgress; + uint32_t nMaxProgress; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_RequestCurrentStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + int32_t *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + int32_t nData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float fData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvgRateStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float flCountThisSession; + double dSessionLength; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + bool *pbAchieved; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_ClearAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_StoreStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementIcon_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementDisplayAttribute_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + const char *pchName; + const char *pchKey; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementProgress_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + uint32_t nCurProgress; + uint32_t nMaxProgress; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestCurrentStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + int32_t *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + int32_t nData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float fData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvgRateStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float flCountThisSession; + double dSessionLength; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + bool *pbAchieved; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_ClearAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_StoreStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementIcon_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementDisplayAttribute_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + const char *pchName; + const char *pchKey; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_IndicateAchievementProgress_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + uint32_t nCurProgress; + uint32_t nMaxProgress; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestUserStats_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDUser; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + int32_t *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + float *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + bool *pbAchieved; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestCurrentStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + int32_t *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + int32_t nData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float fData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvgRateStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float flCountThisSession; + double dSessionLength; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + bool *pbAchieved; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ClearAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_StoreStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementIcon_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementDisplayAttribute_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + const char *pchName; + const char *pchKey; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_IndicateAchievementProgress_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + uint32_t nCurProgress; + uint32_t nMaxProgress; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestUserStats_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDUser; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + int32_t *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + float *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + bool *pbAchieved; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ResetAllStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bAchievementsToo; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindOrCreateLeaderboard_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchLeaderboardName; + uint32_t eLeaderboardSortMethod; + uint32_t eLeaderboardDisplayType; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindLeaderboard_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchLeaderboardName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardEntryCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardSortMethod_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardDisplayType_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_DownloadLeaderboardEntries_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hSteamLeaderboard; + uint32_t eLeaderboardDataRequest; + int32_t nRangeStart; + int32_t nRangeEnd; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownloadedLeaderboardEntry_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hSteamLeaderboardEntries; + int32_t index; + w_LeaderboardEntry_t_104 *pLeaderboardEntry; + int32_t *pDetails; + int32_t cDetailsMax; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UploadLeaderboardScore_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hSteamLeaderboard; + int32_t nScore; + int32_t *pScoreDetails; + int32_t cScoreDetailsCount; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestCurrentStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + int32_t *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + int32_t nData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float fData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvgRateStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float flCountThisSession; + double dSessionLength; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + bool *pbAchieved; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ClearAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_StoreStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementIcon_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementDisplayAttribute_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + const char *pchName; + const char *pchKey; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_IndicateAchievementProgress_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + uint32_t nCurProgress; + uint32_t nMaxProgress; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestUserStats_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDUser; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + int32_t *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + float *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + bool *pbAchieved; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ResetAllStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bAchievementsToo; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindOrCreateLeaderboard_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchLeaderboardName; + uint32_t eLeaderboardSortMethod; + uint32_t eLeaderboardDisplayType; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindLeaderboard_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchLeaderboardName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardEntryCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardSortMethod_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardDisplayType_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_DownloadLeaderboardEntries_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hSteamLeaderboard; + uint32_t eLeaderboardDataRequest; + int32_t nRangeStart; + int32_t nRangeEnd; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetDownloadedLeaderboardEntry_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hSteamLeaderboardEntries; + int32_t index; + w_LeaderboardEntry_t_104 *pLeaderboardEntry; + int32_t *pDetails; + int32_t cDetailsMax; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UploadLeaderboardScore_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hSteamLeaderboard; + uint32_t eLeaderboardUploadScoreMethod; + int32_t nScore; + const int32_t *pScoreDetails; + int32_t cScoreDetailsCount; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetNumberOfCurrentPlayers_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestCurrentStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + int32_t *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + int32_t nData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float fData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvgRateStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float flCountThisSession; + double dSessionLength; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + bool *pbAchieved; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ClearAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementAndUnlockTime_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + bool *pbAchieved; + uint32_t *punUnlockTime; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_StoreStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementIcon_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementDisplayAttribute_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + const char *pchName; + const char *pchKey; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_IndicateAchievementProgress_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + uint32_t nCurProgress; + uint32_t nMaxProgress; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestUserStats_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDUser; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + int32_t *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + float *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + bool *pbAchieved; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievementAndUnlockTime_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + bool *pbAchieved; + uint32_t *punUnlockTime; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ResetAllStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bAchievementsToo; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindOrCreateLeaderboard_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchLeaderboardName; + uint32_t eLeaderboardSortMethod; + uint32_t eLeaderboardDisplayType; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindLeaderboard_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchLeaderboardName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardEntryCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardSortMethod_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardDisplayType_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_DownloadLeaderboardEntries_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hSteamLeaderboard; + uint32_t eLeaderboardDataRequest; + int32_t nRangeStart; + int32_t nRangeEnd; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetDownloadedLeaderboardEntry_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hSteamLeaderboardEntries; + int32_t index; + w_LeaderboardEntry_t_104 *pLeaderboardEntry; + int32_t *pDetails; + int32_t cDetailsMax; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UploadLeaderboardScore_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hSteamLeaderboard; + uint32_t eLeaderboardUploadScoreMethod; + int32_t nScore; + const int32_t *pScoreDetails; + int32_t cScoreDetailsCount; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetNumberOfCurrentPlayers_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestCurrentStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + int32_t *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + int32_t nData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float fData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvgRateStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float flCountThisSession; + double dSessionLength; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + bool *pbAchieved; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ClearAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementAndUnlockTime_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + bool *pbAchieved; + uint32_t *punUnlockTime; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_StoreStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementIcon_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementDisplayAttribute_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + const char *pchName; + const char *pchKey; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_IndicateAchievementProgress_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + uint32_t nCurProgress; + uint32_t nMaxProgress; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestUserStats_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDUser; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + int32_t *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + float *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + bool *pbAchieved; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievementAndUnlockTime_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + bool *pbAchieved; + uint32_t *punUnlockTime; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ResetAllStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bAchievementsToo; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindOrCreateLeaderboard_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchLeaderboardName; + uint32_t eLeaderboardSortMethod; + uint32_t eLeaderboardDisplayType; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindLeaderboard_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchLeaderboardName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardEntryCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardSortMethod_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardDisplayType_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_DownloadLeaderboardEntries_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hSteamLeaderboard; + uint32_t eLeaderboardDataRequest; + int32_t nRangeStart; + int32_t nRangeEnd; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetDownloadedLeaderboardEntry_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hSteamLeaderboardEntries; + int32_t index; + w_LeaderboardEntry_t_111x *pLeaderboardEntry; + int32_t *pDetails; + int32_t cDetailsMax; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UploadLeaderboardScore_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hSteamLeaderboard; + uint32_t eLeaderboardUploadScoreMethod; + int32_t nScore; + const int32_t *pScoreDetails; + int32_t cScoreDetailsCount; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_AttachLeaderboardUGC_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hSteamLeaderboard; + uint64_t hUGC; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetNumberOfCurrentPlayers_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestCurrentStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + int32_t *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + int32_t nData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float fData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvgRateStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float flCountThisSession; + double dSessionLength; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + bool *pbAchieved; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ClearAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementAndUnlockTime_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + bool *pbAchieved; + uint32_t *punUnlockTime; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_StoreStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementIcon_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementDisplayAttribute_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + const char *pchName; + const char *pchKey; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_IndicateAchievementProgress_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + uint32_t nCurProgress; + uint32_t nMaxProgress; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestUserStats_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDUser; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + int32_t *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + float *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + bool *pbAchieved; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievementAndUnlockTime_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + bool *pbAchieved; + uint32_t *punUnlockTime; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ResetAllStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bAchievementsToo; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindOrCreateLeaderboard_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchLeaderboardName; + uint32_t eLeaderboardSortMethod; + uint32_t eLeaderboardDisplayType; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindLeaderboard_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchLeaderboardName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardEntryCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardSortMethod_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardDisplayType_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntries_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hSteamLeaderboard; + uint32_t eLeaderboardDataRequest; + int32_t nRangeStart; + int32_t nRangeEnd; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntriesForUsers_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hSteamLeaderboard; + CSteamID *prgUsers; + int32_t cUsers; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetDownloadedLeaderboardEntry_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hSteamLeaderboardEntries; + int32_t index; + w_LeaderboardEntry_t_111x *pLeaderboardEntry; + int32_t *pDetails; + int32_t cDetailsMax; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UploadLeaderboardScore_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hSteamLeaderboard; + uint32_t eLeaderboardUploadScoreMethod; + int32_t nScore; + const int32_t *pScoreDetails; + int32_t cScoreDetailsCount; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_AttachLeaderboardUGC_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hSteamLeaderboard; + uint64_t hUGC; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetNumberOfCurrentPlayers_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCurrentStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + int32_t *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + int32_t nData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float fData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float flCountThisSession; + double dSessionLength; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + bool *pbAchieved; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ClearAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAndUnlockTime_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + bool *pbAchieved; + uint32_t *punUnlockTime; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_StoreStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementIcon_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementDisplayAttribute_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + const char *pchName; + const char *pchKey; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateAchievementProgress_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + uint32_t nCurProgress; + uint32_t nMaxProgress; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestUserStats_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDUser; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + int32_t *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + float *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + bool *pbAchieved; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievementAndUnlockTime_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + bool *pbAchieved; + uint32_t *punUnlockTime; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ResetAllStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bAchievementsToo; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindOrCreateLeaderboard_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchLeaderboardName; + uint32_t eLeaderboardSortMethod; + uint32_t eLeaderboardDisplayType; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindLeaderboard_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchLeaderboardName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardEntryCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardSortMethod_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardDisplayType_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntries_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hSteamLeaderboard; + uint32_t eLeaderboardDataRequest; + int32_t nRangeStart; + int32_t nRangeEnd; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntriesForUsers_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hSteamLeaderboard; + CSteamID *prgUsers; + int32_t cUsers; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownloadedLeaderboardEntry_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hSteamLeaderboardEntries; + int32_t index; + w_LeaderboardEntry_t_111x *pLeaderboardEntry; + int32_t *pDetails; + int32_t cDetailsMax; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UploadLeaderboardScore_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hSteamLeaderboard; + uint32_t eLeaderboardUploadScoreMethod; + int32_t nScore; + const int32_t *pScoreDetails; + int32_t cScoreDetailsCount; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_AttachLeaderboardUGC_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hSteamLeaderboard; + uint64_t hUGC; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNumberOfCurrentPlayers_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalAchievementPercentages_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMostAchievedAchievementInfo_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + char *pchName; + uint32_t unNameBufLen; + float *pflPercent; + bool *pbAchieved; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchievedAchievementInfo_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t iIteratorPrevious; + char *pchName; + uint32_t unNameBufLen; + float *pflPercent; + bool *pbAchieved; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAchievedPercent_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float *pflPercent; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalStats_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + int32_t nHistoryDays; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchStatName; + int64_t *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchStatName; + double *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchStatName; + int64_t *pData; + uint32_t cubData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_2_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchStatName; + double *pData; + uint32_t cubData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestCurrentStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + int32_t *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + int32_t nData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float fData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvgRateStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float flCountThisSession; + double dSessionLength; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + bool *pbAchieved; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ClearAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAndUnlockTime_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + bool *pbAchieved; + uint32_t *punUnlockTime; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_StoreStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementIcon_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementDisplayAttribute_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + const char *pchName; + const char *pchKey; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_IndicateAchievementProgress_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + uint32_t nCurProgress; + uint32_t nMaxProgress; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumAchievements_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t iAchievement; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestUserStats_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDUser; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + int32_t *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + float *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + bool *pbAchieved; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievementAndUnlockTime_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + bool *pbAchieved; + uint32_t *punUnlockTime; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ResetAllStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bAchievementsToo; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindOrCreateLeaderboard_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchLeaderboardName; + uint32_t eLeaderboardSortMethod; + uint32_t eLeaderboardDisplayType; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindLeaderboard_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchLeaderboardName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardEntryCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardSortMethod_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardDisplayType_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntries_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hSteamLeaderboard; + uint32_t eLeaderboardDataRequest; + int32_t nRangeStart; + int32_t nRangeEnd; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntriesForUsers_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hSteamLeaderboard; + CSteamID *prgUsers; + int32_t cUsers; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetDownloadedLeaderboardEntry_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hSteamLeaderboardEntries; + int32_t index; + w_LeaderboardEntry_t_123 *pLeaderboardEntry; + int32_t *pDetails; + int32_t cDetailsMax; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UploadLeaderboardScore_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hSteamLeaderboard; + uint32_t eLeaderboardUploadScoreMethod; + int32_t nScore; + const int32_t *pScoreDetails; + int32_t cScoreDetailsCount; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_AttachLeaderboardUGC_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hSteamLeaderboard; + uint64_t hUGC; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumberOfCurrentPlayers_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalAchievementPercentages_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetMostAchievedAchievementInfo_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + char *pchName; + uint32_t unNameBufLen; + float *pflPercent; + bool *pbAchieved; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNextMostAchievedAchievementInfo_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t iIteratorPrevious; + char *pchName; + uint32_t unNameBufLen; + float *pflPercent; + bool *pbAchieved; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAchievedPercent_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float *pflPercent; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalStats_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + int32_t nHistoryDays; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchStatName; + int64_t *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchStatName; + double *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchStatName; + int64_t *pData; + uint32_t cubData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_2_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchStatName; + double *pData; + uint32_t cubData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestCurrentStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + int32_t *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + int32_t nData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float fData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvgRateStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float flCountThisSession; + double dSessionLength; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + bool *pbAchieved; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ClearAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAndUnlockTime_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + bool *pbAchieved; + uint32_t *punUnlockTime; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_StoreStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementIcon_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementDisplayAttribute_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + const char *pchName; + const char *pchKey; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_IndicateAchievementProgress_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + uint32_t nCurProgress; + uint32_t nMaxProgress; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumAchievements_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t iAchievement; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestUserStats_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDUser; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + int32_t *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + float *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + bool *pbAchieved; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievementAndUnlockTime_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + bool *pbAchieved; + uint32_t *punUnlockTime; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ResetAllStats_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bAchievementsToo; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindOrCreateLeaderboard_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchLeaderboardName; + uint32_t eLeaderboardSortMethod; + uint32_t eLeaderboardDisplayType; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindLeaderboard_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchLeaderboardName; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardEntryCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardSortMethod_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardDisplayType_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t hSteamLeaderboard; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntries_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hSteamLeaderboard; + uint32_t eLeaderboardDataRequest; + int32_t nRangeStart; + int32_t nRangeEnd; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntriesForUsers_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hSteamLeaderboard; + CSteamID *prgUsers; + int32_t cUsers; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetDownloadedLeaderboardEntry_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hSteamLeaderboardEntries; + int32_t index; + w_LeaderboardEntry_t_123 *pLeaderboardEntry; + int32_t *pDetails; + int32_t cDetailsMax; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UploadLeaderboardScore_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hSteamLeaderboard; + uint32_t eLeaderboardUploadScoreMethod; + int32_t nScore; + const int32_t *pScoreDetails; + int32_t cScoreDetailsCount; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_AttachLeaderboardUGC_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t hSteamLeaderboard; + uint64_t hUGC; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumberOfCurrentPlayers_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalAchievementPercentages_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetMostAchievedAchievementInfo_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + char *pchName; + uint32_t unNameBufLen; + float *pflPercent; + bool *pbAchieved; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNextMostAchievedAchievementInfo_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t iIteratorPrevious; + char *pchName; + uint32_t unNameBufLen; + float *pflPercent; + bool *pbAchieved; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAchievedPercent_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float *pflPercent; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalStats_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + int32_t nHistoryDays; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchStatName; + int64_t *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchStatName; + double *pData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchStatName; + int64_t *pData; + uint32_t cubData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_2_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchStatName; + double *pData; + uint32_t cubData; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + int32_t *pnMinProgress; + int32_t *pnMaxProgress; +}; + +struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchName; + float *pfMinProgress; + float *pfMaxProgress; +}; + +struct ISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL_params +{ + struct u_steam_iface *linux_side; + uint32_t unVideoAppID; +}; + +struct ISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pnNumViewers; +}; + +struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetVideoURL_params +{ + struct u_steam_iface *linux_side; + uint32_t unVideoAppID; +}; + +struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_IsBroadcasting_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pnNumViewers; +}; + +struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFSettings_params +{ + struct u_steam_iface *linux_side; + uint32_t unVideoAppID; +}; + +struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringForApp_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unVideoAppID; + char *pchBuffer; + int32_t *pnBufferSize; +}; + +struct ISteamClient_SteamClient006_CreateSteamPipe_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamClient_SteamClient006_BReleaseSteamPipe_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t hSteamPipe; +}; + +struct ISteamClient_SteamClient006_CreateGlobalUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t *phSteamPipe; +}; + +struct ISteamClient_SteamClient006_ConnectToGlobalUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t hSteamPipe; +}; + +struct ISteamClient_SteamClient006_CreateLocalUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t *phSteamPipe; +}; + +struct ISteamClient_SteamClient006_ReleaseUser_params +{ + struct u_steam_iface *linux_side; + int32_t hSteamPipe; + int32_t hUser; +}; + +struct ISteamClient_SteamClient006_GetISteamUser_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUser*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient006_GetIVAC_params +{ + struct u_steam_iface *linux_side; + void *_ret; + int32_t hSteamUser; +}; + +struct ISteamClient_SteamClient006_GetISteamGameServer_params +{ + struct u_steam_iface *linux_side; + void /*ISteamGameServer*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient006_SetLocalIPBinding_params +{ + struct u_steam_iface *linux_side; + uint32_t unIP; + uint16_t usPort; +}; + +struct ISteamClient_SteamClient006_GetUniverseName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eUniverse; +}; + +struct ISteamClient_SteamClient006_GetISteamFriends_params +{ + struct u_steam_iface *linux_side; + void /*ISteamFriends*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient006_GetISteamUtils_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUtils*/ *_ret; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient006_GetISteamBilling_params +{ + struct u_steam_iface *linux_side; + void *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient006_GetISteamMatchmaking_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMatchmaking*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient006_GetISteamApps_params +{ + struct u_steam_iface *linux_side; + void /*ISteamApps*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient006_GetISteamContentServer_params +{ + struct u_steam_iface *linux_side; + void /*ISteamContentServer*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient006_GetISteamMasterServerUpdater_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMasterServerUpdater*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient006_GetISteamMatchmakingServers_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMatchmakingServers*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient006_RunFrame_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamClient_SteamClient006_GetIPCCallCount_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamClient_SteamClient007_CreateSteamPipe_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamClient_SteamClient007_BReleaseSteamPipe_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t hSteamPipe; +}; + +struct ISteamClient_SteamClient007_ConnectToGlobalUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t hSteamPipe; +}; + +struct ISteamClient_SteamClient007_CreateLocalUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t *phSteamPipe; +}; + +struct ISteamClient_SteamClient007_ReleaseUser_params +{ + struct u_steam_iface *linux_side; + int32_t hSteamPipe; + int32_t hUser; +}; + +struct ISteamClient_SteamClient007_GetISteamUser_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUser*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient007_GetISteamGameServer_params +{ + struct u_steam_iface *linux_side; + void /*ISteamGameServer*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient007_SetLocalIPBinding_params +{ + struct u_steam_iface *linux_side; + uint32_t unIP; + uint16_t usPort; +}; + +struct ISteamClient_SteamClient007_GetISteamFriends_params +{ + struct u_steam_iface *linux_side; + void /*ISteamFriends*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient007_GetISteamUtils_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUtils*/ *_ret; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient007_GetISteamMatchmaking_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMatchmaking*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient007_GetISteamContentServer_params +{ + struct u_steam_iface *linux_side; + void /*ISteamContentServer*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient007_GetISteamMasterServerUpdater_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMasterServerUpdater*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient007_GetISteamMatchmakingServers_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMatchmakingServers*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient007_GetISteamGenericInterface_params +{ + struct u_steam_iface *linux_side; + void *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient007_RunFrame_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamClient_SteamClient007_GetIPCCallCount_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamClient_SteamClient007_GetISteamUserStats_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUserStats*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient007_GetISteamApps_params +{ + struct u_steam_iface *linux_side; + void /*ISteamApps*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient007_GetISteamNetworking_params +{ + struct u_steam_iface *linux_side; + void /*ISteamNetworking*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient007_SetWarningMessageHook_params +{ + struct u_steam_iface *linux_side; + void (*W_CDECL pFunction)(int32_t, const char *); +}; + +struct ISteamClient_SteamClient007_GetISteamRemoteStorage_params +{ + struct u_steam_iface *linux_side; + void /*ISteamRemoteStorage*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient008_CreateSteamPipe_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamClient_SteamClient008_BReleaseSteamPipe_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t hSteamPipe; +}; + +struct ISteamClient_SteamClient008_ConnectToGlobalUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t hSteamPipe; +}; + +struct ISteamClient_SteamClient008_CreateLocalUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t *phSteamPipe; + uint32_t eAccountType; +}; + +struct ISteamClient_SteamClient008_ReleaseUser_params +{ + struct u_steam_iface *linux_side; + int32_t hSteamPipe; + int32_t hUser; +}; + +struct ISteamClient_SteamClient008_GetISteamUser_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUser*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient008_GetISteamGameServer_params +{ + struct u_steam_iface *linux_side; + void /*ISteamGameServer*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient008_SetLocalIPBinding_params +{ + struct u_steam_iface *linux_side; + uint32_t unIP; + uint16_t usPort; +}; + +struct ISteamClient_SteamClient008_GetISteamFriends_params +{ + struct u_steam_iface *linux_side; + void /*ISteamFriends*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient008_GetISteamUtils_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUtils*/ *_ret; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient008_GetISteamMatchmaking_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMatchmaking*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient008_GetISteamMasterServerUpdater_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMasterServerUpdater*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient008_GetISteamMatchmakingServers_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMatchmakingServers*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient008_GetISteamGenericInterface_params +{ + struct u_steam_iface *linux_side; + void *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient008_GetISteamUserStats_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUserStats*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient008_GetISteamApps_params +{ + struct u_steam_iface *linux_side; + void /*ISteamApps*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient008_GetISteamNetworking_params +{ + struct u_steam_iface *linux_side; + void /*ISteamNetworking*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient008_GetISteamRemoteStorage_params +{ + struct u_steam_iface *linux_side; + void /*ISteamRemoteStorage*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient008_RunFrame_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamClient_SteamClient008_GetIPCCallCount_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamClient_SteamClient008_SetWarningMessageHook_params +{ + struct u_steam_iface *linux_side; + void (*W_CDECL pFunction)(int32_t, const char *); +}; + +struct ISteamClient_SteamClient009_CreateSteamPipe_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamClient_SteamClient009_BReleaseSteamPipe_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t hSteamPipe; +}; + +struct ISteamClient_SteamClient009_ConnectToGlobalUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t hSteamPipe; +}; + +struct ISteamClient_SteamClient009_CreateLocalUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t *phSteamPipe; + uint32_t eAccountType; +}; + +struct ISteamClient_SteamClient009_ReleaseUser_params +{ + struct u_steam_iface *linux_side; + int32_t hSteamPipe; + int32_t hUser; +}; + +struct ISteamClient_SteamClient009_GetISteamUser_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUser*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient009_GetISteamGameServer_params +{ + struct u_steam_iface *linux_side; + void /*ISteamGameServer*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient009_SetLocalIPBinding_params +{ + struct u_steam_iface *linux_side; + uint32_t unIP; + uint16_t usPort; +}; + +struct ISteamClient_SteamClient009_GetISteamFriends_params +{ + struct u_steam_iface *linux_side; + void /*ISteamFriends*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient009_GetISteamUtils_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUtils*/ *_ret; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient009_GetISteamMatchmaking_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMatchmaking*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient009_GetISteamMasterServerUpdater_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMasterServerUpdater*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient009_GetISteamMatchmakingServers_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMatchmakingServers*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient009_GetISteamGenericInterface_params +{ + struct u_steam_iface *linux_side; + void *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient009_GetISteamUserStats_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUserStats*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient009_GetISteamGameServerStats_params +{ + struct u_steam_iface *linux_side; + void /*ISteamGameServerStats*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient009_GetISteamApps_params +{ + struct u_steam_iface *linux_side; + void /*ISteamApps*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient009_GetISteamNetworking_params +{ + struct u_steam_iface *linux_side; + void /*ISteamNetworking*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient009_GetISteamRemoteStorage_params +{ + struct u_steam_iface *linux_side; + void /*ISteamRemoteStorage*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient009_RunFrame_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamClient_SteamClient009_GetIPCCallCount_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamClient_SteamClient009_SetWarningMessageHook_params +{ + struct u_steam_iface *linux_side; + void (*W_CDECL pFunction)(int32_t, const char *); +}; + +struct ISteamClient_SteamClient010_CreateSteamPipe_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamClient_SteamClient010_BReleaseSteamPipe_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t hSteamPipe; +}; + +struct ISteamClient_SteamClient010_ConnectToGlobalUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t hSteamPipe; +}; + +struct ISteamClient_SteamClient010_CreateLocalUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t *phSteamPipe; + uint32_t eAccountType; +}; + +struct ISteamClient_SteamClient010_ReleaseUser_params +{ + struct u_steam_iface *linux_side; + int32_t hSteamPipe; + int32_t hUser; +}; + +struct ISteamClient_SteamClient010_GetISteamUser_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUser*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient010_GetISteamGameServer_params +{ + struct u_steam_iface *linux_side; + void /*ISteamGameServer*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient010_SetLocalIPBinding_params +{ + struct u_steam_iface *linux_side; + uint32_t unIP; + uint16_t usPort; +}; + +struct ISteamClient_SteamClient010_GetISteamFriends_params +{ + struct u_steam_iface *linux_side; + void /*ISteamFriends*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient010_GetISteamUtils_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUtils*/ *_ret; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient010_GetISteamMatchmaking_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMatchmaking*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient010_GetISteamMasterServerUpdater_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMasterServerUpdater*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient010_GetISteamMatchmakingServers_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMatchmakingServers*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient010_GetISteamGenericInterface_params +{ + struct u_steam_iface *linux_side; + void *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient010_GetISteamUserStats_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUserStats*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient010_GetISteamGameServerStats_params +{ + struct u_steam_iface *linux_side; + void /*ISteamGameServerStats*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient010_GetISteamApps_params +{ + struct u_steam_iface *linux_side; + void /*ISteamApps*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient010_GetISteamNetworking_params +{ + struct u_steam_iface *linux_side; + void /*ISteamNetworking*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient010_GetISteamRemoteStorage_params +{ + struct u_steam_iface *linux_side; + void /*ISteamRemoteStorage*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient010_RunFrame_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamClient_SteamClient010_GetIPCCallCount_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamClient_SteamClient010_SetWarningMessageHook_params +{ + struct u_steam_iface *linux_side; + void (*W_CDECL pFunction)(int32_t, const char *); +}; + +struct ISteamClient_SteamClient010_BShutdownIfAllPipesClosed_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamClient_SteamClient010_GetISteamHTTP_params +{ + struct u_steam_iface *linux_side; + void /*ISteamHTTP*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient011_CreateSteamPipe_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamClient_SteamClient011_BReleaseSteamPipe_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t hSteamPipe; +}; + +struct ISteamClient_SteamClient011_ConnectToGlobalUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t hSteamPipe; +}; + +struct ISteamClient_SteamClient011_CreateLocalUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t *phSteamPipe; + uint32_t eAccountType; +}; + +struct ISteamClient_SteamClient011_ReleaseUser_params +{ + struct u_steam_iface *linux_side; + int32_t hSteamPipe; + int32_t hUser; +}; + +struct ISteamClient_SteamClient011_GetISteamUser_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUser*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient011_GetISteamGameServer_params +{ + struct u_steam_iface *linux_side; + void /*ISteamGameServer*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient011_SetLocalIPBinding_params +{ + struct u_steam_iface *linux_side; + uint32_t unIP; + uint16_t usPort; +}; + +struct ISteamClient_SteamClient011_GetISteamFriends_params +{ + struct u_steam_iface *linux_side; + void /*ISteamFriends*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient011_GetISteamUtils_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUtils*/ *_ret; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient011_GetISteamMatchmaking_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMatchmaking*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient011_GetISteamMasterServerUpdater_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMasterServerUpdater*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient011_GetISteamMatchmakingServers_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMatchmakingServers*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient011_GetISteamGenericInterface_params +{ + struct u_steam_iface *linux_side; + void *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient011_GetISteamUserStats_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUserStats*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient011_GetISteamGameServerStats_params +{ + struct u_steam_iface *linux_side; + void /*ISteamGameServerStats*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient011_GetISteamApps_params +{ + struct u_steam_iface *linux_side; + void /*ISteamApps*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient011_GetISteamNetworking_params +{ + struct u_steam_iface *linux_side; + void /*ISteamNetworking*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient011_GetISteamRemoteStorage_params +{ + struct u_steam_iface *linux_side; + void /*ISteamRemoteStorage*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient011_GetISteamScreenshots_params +{ + struct u_steam_iface *linux_side; + void /*ISteamScreenshots*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient011_RunFrame_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamClient_SteamClient011_GetIPCCallCount_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamClient_SteamClient011_SetWarningMessageHook_params +{ + struct u_steam_iface *linux_side; + void (*W_CDECL pFunction)(int32_t, const char *); +}; + +struct ISteamClient_SteamClient011_BShutdownIfAllPipesClosed_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamClient_SteamClient011_GetISteamHTTP_params +{ + struct u_steam_iface *linux_side; + void /*ISteamHTTP*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient012_CreateSteamPipe_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamClient_SteamClient012_BReleaseSteamPipe_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t hSteamPipe; +}; + +struct ISteamClient_SteamClient012_ConnectToGlobalUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t hSteamPipe; +}; + +struct ISteamClient_SteamClient012_CreateLocalUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t *phSteamPipe; + uint32_t eAccountType; +}; + +struct ISteamClient_SteamClient012_ReleaseUser_params +{ + struct u_steam_iface *linux_side; + int32_t hSteamPipe; + int32_t hUser; +}; + +struct ISteamClient_SteamClient012_GetISteamUser_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUser*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient012_GetISteamGameServer_params +{ + struct u_steam_iface *linux_side; + void /*ISteamGameServer*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient012_SetLocalIPBinding_params +{ + struct u_steam_iface *linux_side; + uint32_t unIP; + uint16_t usPort; +}; + +struct ISteamClient_SteamClient012_GetISteamFriends_params +{ + struct u_steam_iface *linux_side; + void /*ISteamFriends*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient012_GetISteamUtils_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUtils*/ *_ret; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient012_GetISteamMatchmaking_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMatchmaking*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient012_GetISteamMatchmakingServers_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMatchmakingServers*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient012_GetISteamGenericInterface_params +{ + struct u_steam_iface *linux_side; + void *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient012_GetISteamUserStats_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUserStats*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient012_GetISteamGameServerStats_params +{ + struct u_steam_iface *linux_side; + void /*ISteamGameServerStats*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient012_GetISteamApps_params +{ + struct u_steam_iface *linux_side; + void /*ISteamApps*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient012_GetISteamNetworking_params +{ + struct u_steam_iface *linux_side; + void /*ISteamNetworking*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient012_GetISteamRemoteStorage_params +{ + struct u_steam_iface *linux_side; + void /*ISteamRemoteStorage*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient012_GetISteamScreenshots_params +{ + struct u_steam_iface *linux_side; + void /*ISteamScreenshots*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient012_RunFrame_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamClient_SteamClient012_GetIPCCallCount_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamClient_SteamClient012_SetWarningMessageHook_params +{ + struct u_steam_iface *linux_side; + void (*W_CDECL pFunction)(int32_t, const char *); +}; + +struct ISteamClient_SteamClient012_BShutdownIfAllPipesClosed_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamClient_SteamClient012_GetISteamHTTP_params +{ + struct u_steam_iface *linux_side; + void /*ISteamHTTP*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient012_GetISteamUnifiedMessages_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUnifiedMessages*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient012_GetISteamController_params +{ + struct u_steam_iface *linux_side; + void /*ISteamController*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient012_GetISteamUGC_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUGC*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient013_CreateSteamPipe_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamClient_SteamClient013_BReleaseSteamPipe_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t hSteamPipe; +}; + +struct ISteamClient_SteamClient013_ConnectToGlobalUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t hSteamPipe; +}; + +struct ISteamClient_SteamClient013_CreateLocalUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t *phSteamPipe; + uint32_t eAccountType; +}; + +struct ISteamClient_SteamClient013_ReleaseUser_params +{ + struct u_steam_iface *linux_side; + int32_t hSteamPipe; + int32_t hUser; +}; + +struct ISteamClient_SteamClient013_GetISteamUser_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUser*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient013_GetISteamGameServer_params +{ + struct u_steam_iface *linux_side; + void /*ISteamGameServer*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient013_SetLocalIPBinding_params +{ + struct u_steam_iface *linux_side; + uint32_t unIP; + uint16_t usPort; +}; + +struct ISteamClient_SteamClient013_GetISteamFriends_params +{ + struct u_steam_iface *linux_side; + void /*ISteamFriends*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient013_GetISteamUtils_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUtils*/ *_ret; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient013_GetISteamMatchmaking_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMatchmaking*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient013_GetISteamMatchmakingServers_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMatchmakingServers*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient013_GetISteamGenericInterface_params +{ + struct u_steam_iface *linux_side; + void *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient013_GetISteamUserStats_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUserStats*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient013_GetISteamGameServerStats_params +{ + struct u_steam_iface *linux_side; + void /*ISteamGameServerStats*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient013_GetISteamApps_params +{ + struct u_steam_iface *linux_side; + void /*ISteamApps*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient013_GetISteamNetworking_params +{ + struct u_steam_iface *linux_side; + void /*ISteamNetworking*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient013_GetISteamRemoteStorage_params +{ + struct u_steam_iface *linux_side; + void /*ISteamRemoteStorage*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient013_GetISteamScreenshots_params +{ + struct u_steam_iface *linux_side; + void /*ISteamScreenshots*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient013_RunFrame_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamClient_SteamClient013_GetIPCCallCount_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamClient_SteamClient013_SetWarningMessageHook_params +{ + struct u_steam_iface *linux_side; + void (*W_CDECL pFunction)(int32_t, const char *); +}; + +struct ISteamClient_SteamClient013_BShutdownIfAllPipesClosed_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamClient_SteamClient013_GetISteamHTTP_params +{ + struct u_steam_iface *linux_side; + void /*ISteamHTTP*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient013_GetISteamUnifiedMessages_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUnifiedMessages*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient013_GetISteamController_params +{ + struct u_steam_iface *linux_side; + void /*ISteamController*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient013_GetISteamUGC_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUGC*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient013_GetISteamInventory_params +{ + struct u_steam_iface *linux_side; + void *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient013_GetISteamVideo_params +{ + struct u_steam_iface *linux_side; + void *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient013_GetISteamAppList_params +{ + struct u_steam_iface *linux_side; + void /*ISteamAppList*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient014_CreateSteamPipe_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamClient_SteamClient014_BReleaseSteamPipe_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t hSteamPipe; +}; + +struct ISteamClient_SteamClient014_ConnectToGlobalUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t hSteamPipe; +}; + +struct ISteamClient_SteamClient014_CreateLocalUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t *phSteamPipe; + uint32_t eAccountType; +}; + +struct ISteamClient_SteamClient014_ReleaseUser_params +{ + struct u_steam_iface *linux_side; + int32_t hSteamPipe; + int32_t hUser; +}; + +struct ISteamClient_SteamClient014_GetISteamUser_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUser*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient014_GetISteamGameServer_params +{ + struct u_steam_iface *linux_side; + void /*ISteamGameServer*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient014_SetLocalIPBinding_params +{ + struct u_steam_iface *linux_side; + uint32_t unIP; + uint16_t usPort; +}; + +struct ISteamClient_SteamClient014_GetISteamFriends_params +{ + struct u_steam_iface *linux_side; + void /*ISteamFriends*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient014_GetISteamUtils_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUtils*/ *_ret; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient014_GetISteamMatchmaking_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMatchmaking*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient014_GetISteamMatchmakingServers_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMatchmakingServers*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient014_GetISteamGenericInterface_params +{ + struct u_steam_iface *linux_side; + void *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient014_GetISteamUserStats_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUserStats*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient014_GetISteamGameServerStats_params +{ + struct u_steam_iface *linux_side; + void /*ISteamGameServerStats*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient014_GetISteamApps_params +{ + struct u_steam_iface *linux_side; + void /*ISteamApps*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient014_GetISteamNetworking_params +{ + struct u_steam_iface *linux_side; + void /*ISteamNetworking*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient014_GetISteamRemoteStorage_params +{ + struct u_steam_iface *linux_side; + void /*ISteamRemoteStorage*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient014_GetISteamScreenshots_params +{ + struct u_steam_iface *linux_side; + void /*ISteamScreenshots*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient014_RunFrame_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamClient_SteamClient014_GetIPCCallCount_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamClient_SteamClient014_SetWarningMessageHook_params +{ + struct u_steam_iface *linux_side; + void (*W_CDECL pFunction)(int32_t, const char *); +}; + +struct ISteamClient_SteamClient014_BShutdownIfAllPipesClosed_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamClient_SteamClient014_GetISteamHTTP_params +{ + struct u_steam_iface *linux_side; + void /*ISteamHTTP*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient014_GetISteamUnifiedMessages_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUnifiedMessages*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient014_GetISteamController_params +{ + struct u_steam_iface *linux_side; + void /*ISteamController*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient014_GetISteamUGC_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUGC*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient014_GetISteamAppList_params +{ + struct u_steam_iface *linux_side; + void /*ISteamAppList*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient014_GetISteamMusic_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMusic*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient015_CreateSteamPipe_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamClient_SteamClient015_BReleaseSteamPipe_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t hSteamPipe; +}; + +struct ISteamClient_SteamClient015_ConnectToGlobalUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t hSteamPipe; +}; + +struct ISteamClient_SteamClient015_CreateLocalUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t *phSteamPipe; + uint32_t eAccountType; +}; + +struct ISteamClient_SteamClient015_ReleaseUser_params +{ + struct u_steam_iface *linux_side; + int32_t hSteamPipe; + int32_t hUser; +}; + +struct ISteamClient_SteamClient015_GetISteamUser_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUser*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient015_GetISteamGameServer_params +{ + struct u_steam_iface *linux_side; + void /*ISteamGameServer*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient015_SetLocalIPBinding_params +{ + struct u_steam_iface *linux_side; + uint32_t unIP; + uint16_t usPort; +}; + +struct ISteamClient_SteamClient015_GetISteamFriends_params +{ + struct u_steam_iface *linux_side; + void /*ISteamFriends*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient015_GetISteamUtils_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUtils*/ *_ret; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient015_GetISteamMatchmaking_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMatchmaking*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient015_GetISteamMatchmakingServers_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMatchmakingServers*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient015_GetISteamGenericInterface_params +{ + struct u_steam_iface *linux_side; + void *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient015_GetISteamUserStats_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUserStats*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient015_GetISteamGameServerStats_params +{ + struct u_steam_iface *linux_side; + void /*ISteamGameServerStats*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient015_GetISteamApps_params +{ + struct u_steam_iface *linux_side; + void /*ISteamApps*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient015_GetISteamNetworking_params +{ + struct u_steam_iface *linux_side; + void /*ISteamNetworking*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient015_GetISteamRemoteStorage_params +{ + struct u_steam_iface *linux_side; + void /*ISteamRemoteStorage*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient015_GetISteamScreenshots_params +{ + struct u_steam_iface *linux_side; + void /*ISteamScreenshots*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient015_RunFrame_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamClient_SteamClient015_GetIPCCallCount_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamClient_SteamClient015_SetWarningMessageHook_params +{ + struct u_steam_iface *linux_side; + void (*W_CDECL pFunction)(int32_t, const char *); +}; + +struct ISteamClient_SteamClient015_BShutdownIfAllPipesClosed_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamClient_SteamClient015_GetISteamHTTP_params +{ + struct u_steam_iface *linux_side; + void /*ISteamHTTP*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient015_GetISteamUnifiedMessages_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUnifiedMessages*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient015_GetISteamController_params +{ + struct u_steam_iface *linux_side; + void /*ISteamController*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient015_GetISteamUGC_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUGC*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient015_GetISteamAppList_params +{ + struct u_steam_iface *linux_side; + void /*ISteamAppList*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient015_GetISteamMusic_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMusic*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient015_GetISteamMusicRemote_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMusicRemote*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient016_CreateSteamPipe_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamClient_SteamClient016_BReleaseSteamPipe_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t hSteamPipe; +}; + +struct ISteamClient_SteamClient016_ConnectToGlobalUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t hSteamPipe; +}; + +struct ISteamClient_SteamClient016_CreateLocalUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t *phSteamPipe; + uint32_t eAccountType; +}; + +struct ISteamClient_SteamClient016_ReleaseUser_params +{ + struct u_steam_iface *linux_side; + int32_t hSteamPipe; + int32_t hUser; +}; + +struct ISteamClient_SteamClient016_GetISteamUser_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUser*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient016_GetISteamGameServer_params +{ + struct u_steam_iface *linux_side; + void /*ISteamGameServer*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient016_SetLocalIPBinding_params +{ + struct u_steam_iface *linux_side; + uint32_t unIP; + uint16_t usPort; +}; + +struct ISteamClient_SteamClient016_GetISteamFriends_params +{ + struct u_steam_iface *linux_side; + void /*ISteamFriends*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient016_GetISteamUtils_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUtils*/ *_ret; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient016_GetISteamMatchmaking_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMatchmaking*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient016_GetISteamMatchmakingServers_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMatchmakingServers*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient016_GetISteamGenericInterface_params +{ + struct u_steam_iface *linux_side; + void *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient016_GetISteamUserStats_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUserStats*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient016_GetISteamGameServerStats_params +{ + struct u_steam_iface *linux_side; + void /*ISteamGameServerStats*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient016_GetISteamApps_params +{ + struct u_steam_iface *linux_side; + void /*ISteamApps*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient016_GetISteamNetworking_params +{ + struct u_steam_iface *linux_side; + void /*ISteamNetworking*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient016_GetISteamRemoteStorage_params +{ + struct u_steam_iface *linux_side; + void /*ISteamRemoteStorage*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient016_GetISteamScreenshots_params +{ + struct u_steam_iface *linux_side; + void /*ISteamScreenshots*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient016_RunFrame_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamClient_SteamClient016_GetIPCCallCount_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamClient_SteamClient016_SetWarningMessageHook_params +{ + struct u_steam_iface *linux_side; + void (*W_CDECL pFunction)(int32_t, const char *); +}; + +struct ISteamClient_SteamClient016_BShutdownIfAllPipesClosed_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamClient_SteamClient016_GetISteamHTTP_params +{ + struct u_steam_iface *linux_side; + void /*ISteamHTTP*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient016_GetISteamUnifiedMessages_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUnifiedMessages*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient016_GetISteamController_params +{ + struct u_steam_iface *linux_side; + void /*ISteamController*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient016_GetISteamUGC_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUGC*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient016_GetISteamAppList_params +{ + struct u_steam_iface *linux_side; + void /*ISteamAppList*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient016_GetISteamMusic_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMusic*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient016_GetISteamMusicRemote_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMusicRemote*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient016_GetISteamHTMLSurface_params +{ + struct u_steam_iface *linux_side; + void /*ISteamHTMLSurface*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient016_Set_SteamAPI_CPostAPIResultInProcess_params +{ + struct u_steam_iface *linux_side; + void (*W_STDCALL func)(uint64_t, void *, uint32_t, int32_t); +}; + +struct ISteamClient_SteamClient016_Remove_SteamAPI_CPostAPIResultInProcess_params +{ + struct u_steam_iface *linux_side; + void (*W_STDCALL func)(uint64_t, void *, uint32_t, int32_t); +}; + +struct ISteamClient_SteamClient016_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params +{ + struct u_steam_iface *linux_side; + uint32_t (*W_STDCALL func)(int32_t); +}; + +struct ISteamClient_SteamClient017_CreateSteamPipe_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamClient_SteamClient017_BReleaseSteamPipe_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t hSteamPipe; +}; + +struct ISteamClient_SteamClient017_ConnectToGlobalUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t hSteamPipe; +}; + +struct ISteamClient_SteamClient017_CreateLocalUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t *phSteamPipe; + uint32_t eAccountType; +}; + +struct ISteamClient_SteamClient017_ReleaseUser_params +{ + struct u_steam_iface *linux_side; + int32_t hSteamPipe; + int32_t hUser; +}; + +struct ISteamClient_SteamClient017_GetISteamUser_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUser*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient017_GetISteamGameServer_params +{ + struct u_steam_iface *linux_side; + void /*ISteamGameServer*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient017_SetLocalIPBinding_params +{ + struct u_steam_iface *linux_side; + uint32_t unIP; + uint16_t usPort; +}; + +struct ISteamClient_SteamClient017_GetISteamFriends_params +{ + struct u_steam_iface *linux_side; + void /*ISteamFriends*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient017_GetISteamUtils_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUtils*/ *_ret; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient017_GetISteamMatchmaking_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMatchmaking*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient017_GetISteamMatchmakingServers_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMatchmakingServers*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient017_GetISteamGenericInterface_params +{ + struct u_steam_iface *linux_side; + void *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient017_GetISteamUserStats_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUserStats*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient017_GetISteamGameServerStats_params +{ + struct u_steam_iface *linux_side; + void /*ISteamGameServerStats*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient017_GetISteamApps_params +{ + struct u_steam_iface *linux_side; + void /*ISteamApps*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient017_GetISteamNetworking_params +{ + struct u_steam_iface *linux_side; + void /*ISteamNetworking*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient017_GetISteamRemoteStorage_params +{ + struct u_steam_iface *linux_side; + void /*ISteamRemoteStorage*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient017_GetISteamScreenshots_params +{ + struct u_steam_iface *linux_side; + void /*ISteamScreenshots*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient017_RunFrame_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamClient_SteamClient017_GetIPCCallCount_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamClient_SteamClient017_SetWarningMessageHook_params +{ + struct u_steam_iface *linux_side; + void (*W_CDECL pFunction)(int32_t, const char *); +}; + +struct ISteamClient_SteamClient017_BShutdownIfAllPipesClosed_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamClient_SteamClient017_GetISteamHTTP_params +{ + struct u_steam_iface *linux_side; + void /*ISteamHTTP*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient017_DEPRECATED_GetISteamUnifiedMessages_params +{ + struct u_steam_iface *linux_side; + void *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient017_GetISteamController_params +{ + struct u_steam_iface *linux_side; + void /*ISteamController*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient017_GetISteamUGC_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUGC*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient017_GetISteamAppList_params +{ + struct u_steam_iface *linux_side; + void /*ISteamAppList*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient017_GetISteamMusic_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMusic*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient017_GetISteamMusicRemote_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMusicRemote*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient017_GetISteamHTMLSurface_params +{ + struct u_steam_iface *linux_side; + void /*ISteamHTMLSurface*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient017_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params +{ + struct u_steam_iface *linux_side; + void (*W_STDCALL _a)(void); +}; + +struct ISteamClient_SteamClient017_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params +{ + struct u_steam_iface *linux_side; + void (*W_STDCALL _a)(void); +}; + +struct ISteamClient_SteamClient017_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params +{ + struct u_steam_iface *linux_side; + uint32_t (*W_STDCALL func)(int32_t); +}; + +struct ISteamClient_SteamClient017_GetISteamInventory_params +{ + struct u_steam_iface *linux_side; + void /*ISteamInventory*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient017_GetISteamVideo_params +{ + struct u_steam_iface *linux_side; + void /*ISteamVideo*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient017_GetISteamParentalSettings_params +{ + struct u_steam_iface *linux_side; + void /*ISteamParentalSettings*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient018_CreateSteamPipe_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamClient_SteamClient018_BReleaseSteamPipe_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t hSteamPipe; +}; + +struct ISteamClient_SteamClient018_ConnectToGlobalUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t hSteamPipe; +}; + +struct ISteamClient_SteamClient018_CreateLocalUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t *phSteamPipe; + uint32_t eAccountType; +}; + +struct ISteamClient_SteamClient018_ReleaseUser_params +{ + struct u_steam_iface *linux_side; + int32_t hSteamPipe; + int32_t hUser; +}; + +struct ISteamClient_SteamClient018_GetISteamUser_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUser*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient018_GetISteamGameServer_params +{ + struct u_steam_iface *linux_side; + void /*ISteamGameServer*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient018_SetLocalIPBinding_params +{ + struct u_steam_iface *linux_side; + uint32_t unIP; + uint16_t usPort; +}; + +struct ISteamClient_SteamClient018_GetISteamFriends_params +{ + struct u_steam_iface *linux_side; + void /*ISteamFriends*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient018_GetISteamUtils_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUtils*/ *_ret; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient018_GetISteamMatchmaking_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMatchmaking*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient018_GetISteamMatchmakingServers_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMatchmakingServers*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient018_GetISteamGenericInterface_params +{ + struct u_steam_iface *linux_side; + void *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient018_GetISteamUserStats_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUserStats*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient018_GetISteamGameServerStats_params +{ + struct u_steam_iface *linux_side; + void /*ISteamGameServerStats*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient018_GetISteamApps_params +{ + struct u_steam_iface *linux_side; + void /*ISteamApps*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient018_GetISteamNetworking_params +{ + struct u_steam_iface *linux_side; + void /*ISteamNetworking*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient018_GetISteamRemoteStorage_params +{ + struct u_steam_iface *linux_side; + void /*ISteamRemoteStorage*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient018_GetISteamScreenshots_params +{ + struct u_steam_iface *linux_side; + void /*ISteamScreenshots*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient018_GetISteamGameSearch_params +{ + struct u_steam_iface *linux_side; + void /*ISteamGameSearch*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient018_RunFrame_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamClient_SteamClient018_GetIPCCallCount_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamClient_SteamClient018_SetWarningMessageHook_params +{ + struct u_steam_iface *linux_side; + void (*W_CDECL pFunction)(int32_t, const char *); +}; + +struct ISteamClient_SteamClient018_BShutdownIfAllPipesClosed_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamClient_SteamClient018_GetISteamHTTP_params +{ + struct u_steam_iface *linux_side; + void /*ISteamHTTP*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient018_DEPRECATED_GetISteamUnifiedMessages_params +{ + struct u_steam_iface *linux_side; + void *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient018_GetISteamController_params +{ + struct u_steam_iface *linux_side; + void /*ISteamController*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient018_GetISteamUGC_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUGC*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient018_GetISteamAppList_params +{ + struct u_steam_iface *linux_side; + void /*ISteamAppList*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient018_GetISteamMusic_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMusic*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient018_GetISteamMusicRemote_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMusicRemote*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient018_GetISteamHTMLSurface_params +{ + struct u_steam_iface *linux_side; + void /*ISteamHTMLSurface*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient018_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params +{ + struct u_steam_iface *linux_side; + void (*W_STDCALL _a)(void); +}; + +struct ISteamClient_SteamClient018_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params +{ + struct u_steam_iface *linux_side; + void (*W_STDCALL _a)(void); +}; + +struct ISteamClient_SteamClient018_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params +{ + struct u_steam_iface *linux_side; + uint32_t (*W_STDCALL func)(int32_t); +}; + +struct ISteamClient_SteamClient018_GetISteamInventory_params +{ + struct u_steam_iface *linux_side; + void /*ISteamInventory*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient018_GetISteamVideo_params +{ + struct u_steam_iface *linux_side; + void /*ISteamVideo*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient018_GetISteamParentalSettings_params +{ + struct u_steam_iface *linux_side; + void /*ISteamParentalSettings*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient018_GetISteamInput_params +{ + struct u_steam_iface *linux_side; + void /*ISteamInput*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient018_GetISteamParties_params +{ + struct u_steam_iface *linux_side; + void /*ISteamParties*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient019_CreateSteamPipe_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamClient_SteamClient019_BReleaseSteamPipe_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t hSteamPipe; +}; + +struct ISteamClient_SteamClient019_ConnectToGlobalUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t hSteamPipe; +}; + +struct ISteamClient_SteamClient019_CreateLocalUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t *phSteamPipe; + uint32_t eAccountType; +}; + +struct ISteamClient_SteamClient019_ReleaseUser_params +{ + struct u_steam_iface *linux_side; + int32_t hSteamPipe; + int32_t hUser; +}; + +struct ISteamClient_SteamClient019_GetISteamUser_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUser*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient019_GetISteamGameServer_params +{ + struct u_steam_iface *linux_side; + void /*ISteamGameServer*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient019_SetLocalIPBinding_params +{ + struct u_steam_iface *linux_side; + uint32_t unIP; + uint16_t usPort; +}; + +struct ISteamClient_SteamClient019_GetISteamFriends_params +{ + struct u_steam_iface *linux_side; + void /*ISteamFriends*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient019_GetISteamUtils_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUtils*/ *_ret; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient019_GetISteamMatchmaking_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMatchmaking*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient019_GetISteamMatchmakingServers_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMatchmakingServers*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient019_GetISteamGenericInterface_params +{ + struct u_steam_iface *linux_side; + void *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient019_GetISteamUserStats_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUserStats*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient019_GetISteamGameServerStats_params +{ + struct u_steam_iface *linux_side; + void /*ISteamGameServerStats*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient019_GetISteamApps_params +{ + struct u_steam_iface *linux_side; + void /*ISteamApps*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient019_GetISteamNetworking_params +{ + struct u_steam_iface *linux_side; + void /*ISteamNetworking*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient019_GetISteamRemoteStorage_params +{ + struct u_steam_iface *linux_side; + void /*ISteamRemoteStorage*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient019_GetISteamScreenshots_params +{ + struct u_steam_iface *linux_side; + void /*ISteamScreenshots*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient019_GetISteamGameSearch_params +{ + struct u_steam_iface *linux_side; + void /*ISteamGameSearch*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient019_RunFrame_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamClient_SteamClient019_GetIPCCallCount_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamClient_SteamClient019_SetWarningMessageHook_params +{ + struct u_steam_iface *linux_side; + void (*W_CDECL pFunction)(int32_t, const char *); +}; + +struct ISteamClient_SteamClient019_BShutdownIfAllPipesClosed_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamClient_SteamClient019_GetISteamHTTP_params +{ + struct u_steam_iface *linux_side; + void /*ISteamHTTP*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient019_DEPRECATED_GetISteamUnifiedMessages_params +{ + struct u_steam_iface *linux_side; + void *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient019_GetISteamController_params +{ + struct u_steam_iface *linux_side; + void /*ISteamController*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient019_GetISteamUGC_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUGC*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient019_GetISteamAppList_params +{ + struct u_steam_iface *linux_side; + void /*ISteamAppList*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient019_GetISteamMusic_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMusic*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient019_GetISteamMusicRemote_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMusicRemote*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient019_GetISteamHTMLSurface_params +{ + struct u_steam_iface *linux_side; + void /*ISteamHTMLSurface*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient019_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params +{ + struct u_steam_iface *linux_side; + void (*W_STDCALL _a)(void); +}; + +struct ISteamClient_SteamClient019_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params +{ + struct u_steam_iface *linux_side; + void (*W_STDCALL _a)(void); +}; + +struct ISteamClient_SteamClient019_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params +{ + struct u_steam_iface *linux_side; + uint32_t (*W_STDCALL func)(int32_t); +}; + +struct ISteamClient_SteamClient019_GetISteamInventory_params +{ + struct u_steam_iface *linux_side; + void /*ISteamInventory*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient019_GetISteamVideo_params +{ + struct u_steam_iface *linux_side; + void /*ISteamVideo*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient019_GetISteamParentalSettings_params +{ + struct u_steam_iface *linux_side; + void /*ISteamParentalSettings*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient019_GetISteamInput_params +{ + struct u_steam_iface *linux_side; + void /*ISteamInput*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient019_GetISteamParties_params +{ + struct u_steam_iface *linux_side; + void /*ISteamParties*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient019_GetISteamRemotePlay_params +{ + struct u_steam_iface *linux_side; + void /*ISteamRemotePlay*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient020_CreateSteamPipe_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamClient_SteamClient020_BReleaseSteamPipe_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t hSteamPipe; +}; + +struct ISteamClient_SteamClient020_ConnectToGlobalUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t hSteamPipe; +}; + +struct ISteamClient_SteamClient020_CreateLocalUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t *phSteamPipe; + uint32_t eAccountType; +}; + +struct ISteamClient_SteamClient020_ReleaseUser_params +{ + struct u_steam_iface *linux_side; + int32_t hSteamPipe; + int32_t hUser; +}; + +struct ISteamClient_SteamClient020_GetISteamUser_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUser*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient020_GetISteamGameServer_params +{ + struct u_steam_iface *linux_side; + void /*ISteamGameServer*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient020_SetLocalIPBinding_params +{ + struct u_steam_iface *linux_side; + const SteamIPAddress_t *unIP; + uint16_t usPort; +}; + +struct ISteamClient_SteamClient020_GetISteamFriends_params +{ + struct u_steam_iface *linux_side; + void /*ISteamFriends*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient020_GetISteamUtils_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUtils*/ *_ret; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient020_GetISteamMatchmaking_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMatchmaking*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient020_GetISteamMatchmakingServers_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMatchmakingServers*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient020_GetISteamGenericInterface_params +{ + struct u_steam_iface *linux_side; + void *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient020_GetISteamUserStats_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUserStats*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient020_GetISteamGameServerStats_params +{ + struct u_steam_iface *linux_side; + void /*ISteamGameServerStats*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient020_GetISteamApps_params +{ + struct u_steam_iface *linux_side; + void /*ISteamApps*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient020_GetISteamNetworking_params +{ + struct u_steam_iface *linux_side; + void /*ISteamNetworking*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient020_GetISteamRemoteStorage_params +{ + struct u_steam_iface *linux_side; + void /*ISteamRemoteStorage*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient020_GetISteamScreenshots_params +{ + struct u_steam_iface *linux_side; + void /*ISteamScreenshots*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient020_GetISteamGameSearch_params +{ + struct u_steam_iface *linux_side; + void /*ISteamGameSearch*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient020_RunFrame_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamClient_SteamClient020_GetIPCCallCount_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamClient_SteamClient020_SetWarningMessageHook_params +{ + struct u_steam_iface *linux_side; + void (*W_CDECL pFunction)(int32_t, const char *); +}; + +struct ISteamClient_SteamClient020_BShutdownIfAllPipesClosed_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamClient_SteamClient020_GetISteamHTTP_params +{ + struct u_steam_iface *linux_side; + void /*ISteamHTTP*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient020_DEPRECATED_GetISteamUnifiedMessages_params +{ + struct u_steam_iface *linux_side; + void *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient020_GetISteamController_params +{ + struct u_steam_iface *linux_side; + void /*ISteamController*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient020_GetISteamUGC_params +{ + struct u_steam_iface *linux_side; + void /*ISteamUGC*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient020_GetISteamAppList_params +{ + struct u_steam_iface *linux_side; + void /*ISteamAppList*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient020_GetISteamMusic_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMusic*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient020_GetISteamMusicRemote_params +{ + struct u_steam_iface *linux_side; + void /*ISteamMusicRemote*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient020_GetISteamHTMLSurface_params +{ + struct u_steam_iface *linux_side; + void /*ISteamHTMLSurface*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient020_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params +{ + struct u_steam_iface *linux_side; + void (*W_STDCALL _a)(void); +}; + +struct ISteamClient_SteamClient020_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params +{ + struct u_steam_iface *linux_side; + void (*W_STDCALL _a)(void); +}; + +struct ISteamClient_SteamClient020_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params +{ + struct u_steam_iface *linux_side; + uint32_t (*W_CDECL func)(int32_t); +}; + +struct ISteamClient_SteamClient020_GetISteamInventory_params +{ + struct u_steam_iface *linux_side; + void /*ISteamInventory*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient020_GetISteamVideo_params +{ + struct u_steam_iface *linux_side; + void /*ISteamVideo*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient020_GetISteamParentalSettings_params +{ + struct u_steam_iface *linux_side; + void /*ISteamParentalSettings*/ *_ret; + int32_t hSteamuser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient020_GetISteamInput_params +{ + struct u_steam_iface *linux_side; + void /*ISteamInput*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient020_GetISteamParties_params +{ + struct u_steam_iface *linux_side; + void /*ISteamParties*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient020_GetISteamRemotePlay_params +{ + struct u_steam_iface *linux_side; + void /*ISteamRemotePlay*/ *_ret; + int32_t hSteamUser; + int32_t hSteamPipe; + const char *pchVersion; +}; + +struct ISteamClient_SteamClient020_DestroyAllInterfaces_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamController_SteamController003_Init_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamController_SteamController003_Shutdown_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamController_SteamController003_RunFrame_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamController_SteamController003_GetConnectedControllers_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t *handlesOut; +}; + +struct ISteamController_SteamController003_ShowBindingPanel_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t controllerHandle; +}; + +struct ISteamController_SteamController003_GetActionSetHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pszActionSetName; +}; + +struct ISteamController_SteamController003_ActivateActionSet_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint64_t actionSetHandle; +}; + +struct ISteamController_SteamController003_GetCurrentActionSet_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t controllerHandle; +}; + +struct ISteamController_SteamController003_GetDigitalActionHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pszActionName; +}; + +struct ISteamController_SteamController003_GetDigitalActionData_params +{ + struct u_steam_iface *linux_side; + ControllerDigitalActionData_t *_ret; + uint64_t controllerHandle; + uint64_t digitalActionHandle; +}; + +struct ISteamController_SteamController003_GetDigitalActionOrigins_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t controllerHandle; + uint64_t actionSetHandle; + uint64_t digitalActionHandle; + uint32_t *originsOut; +}; + +struct ISteamController_SteamController003_GetAnalogActionHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pszActionName; +}; + +struct ISteamController_SteamController003_GetAnalogActionData_params +{ + struct u_steam_iface *linux_side; + ControllerAnalogActionData_t *_ret; + uint64_t controllerHandle; + uint64_t analogActionHandle; +}; + +struct ISteamController_SteamController003_GetAnalogActionOrigins_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t controllerHandle; + uint64_t actionSetHandle; + uint64_t analogActionHandle; + uint32_t *originsOut; +}; + +struct ISteamController_SteamController003_StopAnalogActionMomentum_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint64_t eAction; +}; + +struct ISteamController_SteamController003_TriggerHapticPulse_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint32_t eTargetPad; + uint16_t usDurationMicroSec; +}; + +struct ISteamController_SteamController003_TriggerRepeatedHapticPulse_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint32_t eTargetPad; + uint16_t usDurationMicroSec; + uint16_t usOffMicroSec; + uint16_t unRepeat; + uint32_t nFlags; +}; + +struct ISteamController_SteamController004_Init_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamController_SteamController004_Shutdown_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamController_SteamController004_RunFrame_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamController_SteamController004_GetConnectedControllers_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t *handlesOut; +}; + +struct ISteamController_SteamController004_ShowBindingPanel_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t controllerHandle; +}; + +struct ISteamController_SteamController004_GetActionSetHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pszActionSetName; +}; + +struct ISteamController_SteamController004_ActivateActionSet_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint64_t actionSetHandle; +}; + +struct ISteamController_SteamController004_GetCurrentActionSet_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t controllerHandle; +}; + +struct ISteamController_SteamController004_GetDigitalActionHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pszActionName; +}; + +struct ISteamController_SteamController004_GetDigitalActionData_params +{ + struct u_steam_iface *linux_side; + ControllerDigitalActionData_t *_ret; + uint64_t controllerHandle; + uint64_t digitalActionHandle; +}; + +struct ISteamController_SteamController004_GetDigitalActionOrigins_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t controllerHandle; + uint64_t actionSetHandle; + uint64_t digitalActionHandle; + uint32_t *originsOut; +}; + +struct ISteamController_SteamController004_GetAnalogActionHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pszActionName; +}; + +struct ISteamController_SteamController004_GetAnalogActionData_params +{ + struct u_steam_iface *linux_side; + ControllerAnalogActionData_t *_ret; + uint64_t controllerHandle; + uint64_t analogActionHandle; +}; + +struct ISteamController_SteamController004_GetAnalogActionOrigins_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t controllerHandle; + uint64_t actionSetHandle; + uint64_t analogActionHandle; + uint32_t *originsOut; +}; + +struct ISteamController_SteamController004_StopAnalogActionMomentum_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint64_t eAction; +}; + +struct ISteamController_SteamController004_TriggerHapticPulse_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint32_t eTargetPad; + uint16_t usDurationMicroSec; +}; + +struct ISteamController_SteamController004_TriggerRepeatedHapticPulse_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint32_t eTargetPad; + uint16_t usDurationMicroSec; + uint16_t usOffMicroSec; + uint16_t unRepeat; + uint32_t nFlags; +}; + +struct ISteamController_SteamController004_GetGamepadIndexForController_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t ulControllerHandle; +}; + +struct ISteamController_SteamController004_GetControllerForGamepadIndex_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + int32_t nIndex; +}; + +struct ISteamController_SteamController004_GetMotionData_params +{ + struct u_steam_iface *linux_side; + ControllerMotionData_t *_ret; + uint64_t controllerHandle; +}; + +struct ISteamController_SteamController004_ShowDigitalActionOrigins_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t controllerHandle; + uint64_t digitalActionHandle; + float flScale; + float flXPosition; + float flYPosition; +}; + +struct ISteamController_SteamController004_ShowAnalogActionOrigins_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t controllerHandle; + uint64_t analogActionHandle; + float flScale; + float flXPosition; + float flYPosition; +}; + +struct ISteamController_SteamController005_Init_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamController_SteamController005_Shutdown_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamController_SteamController005_RunFrame_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamController_SteamController005_GetConnectedControllers_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t *handlesOut; +}; + +struct ISteamController_SteamController005_ShowBindingPanel_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t controllerHandle; +}; + +struct ISteamController_SteamController005_GetActionSetHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pszActionSetName; +}; + +struct ISteamController_SteamController005_ActivateActionSet_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint64_t actionSetHandle; +}; + +struct ISteamController_SteamController005_GetCurrentActionSet_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t controllerHandle; +}; + +struct ISteamController_SteamController005_GetDigitalActionHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pszActionName; +}; + +struct ISteamController_SteamController005_GetDigitalActionData_params +{ + struct u_steam_iface *linux_side; + ControllerDigitalActionData_t *_ret; + uint64_t controllerHandle; + uint64_t digitalActionHandle; +}; + +struct ISteamController_SteamController005_GetDigitalActionOrigins_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t controllerHandle; + uint64_t actionSetHandle; + uint64_t digitalActionHandle; + uint32_t *originsOut; +}; + +struct ISteamController_SteamController005_GetAnalogActionHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pszActionName; +}; + +struct ISteamController_SteamController005_GetAnalogActionData_params +{ + struct u_steam_iface *linux_side; + ControllerAnalogActionData_t *_ret; + uint64_t controllerHandle; + uint64_t analogActionHandle; +}; + +struct ISteamController_SteamController005_GetAnalogActionOrigins_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t controllerHandle; + uint64_t actionSetHandle; + uint64_t analogActionHandle; + uint32_t *originsOut; +}; + +struct ISteamController_SteamController005_StopAnalogActionMomentum_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint64_t eAction; +}; + +struct ISteamController_SteamController005_TriggerHapticPulse_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint32_t eTargetPad; + uint16_t usDurationMicroSec; +}; + +struct ISteamController_SteamController005_TriggerRepeatedHapticPulse_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint32_t eTargetPad; + uint16_t usDurationMicroSec; + uint16_t usOffMicroSec; + uint16_t unRepeat; + uint32_t nFlags; +}; + +struct ISteamController_SteamController005_TriggerVibration_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint16_t usLeftSpeed; + uint16_t usRightSpeed; +}; + +struct ISteamController_SteamController005_SetLEDColor_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint8_t nColorR; + uint8_t nColorG; + uint8_t nColorB; + uint32_t nFlags; +}; + +struct ISteamController_SteamController005_GetGamepadIndexForController_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t ulControllerHandle; +}; + +struct ISteamController_SteamController005_GetControllerForGamepadIndex_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + int32_t nIndex; +}; + +struct ISteamController_SteamController005_GetMotionData_params +{ + struct u_steam_iface *linux_side; + ControllerMotionData_t *_ret; + uint64_t controllerHandle; +}; + +struct ISteamController_SteamController005_ShowDigitalActionOrigins_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t controllerHandle; + uint64_t digitalActionHandle; + float flScale; + float flXPosition; + float flYPosition; +}; + +struct ISteamController_SteamController005_ShowAnalogActionOrigins_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t controllerHandle; + uint64_t analogActionHandle; + float flScale; + float flXPosition; + float flYPosition; +}; + +struct ISteamController_SteamController005_GetStringForActionOrigin_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; +}; + +struct ISteamController_SteamController005_GetGlyphForActionOrigin_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; +}; + +struct ISteamController_SteamController006_Init_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamController_SteamController006_Shutdown_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamController_SteamController006_RunFrame_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamController_SteamController006_GetConnectedControllers_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t *handlesOut; +}; + +struct ISteamController_SteamController006_ShowBindingPanel_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t controllerHandle; +}; + +struct ISteamController_SteamController006_GetActionSetHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pszActionSetName; +}; + +struct ISteamController_SteamController006_ActivateActionSet_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint64_t actionSetHandle; +}; + +struct ISteamController_SteamController006_GetCurrentActionSet_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t controllerHandle; +}; + +struct ISteamController_SteamController006_ActivateActionSetLayer_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint64_t actionSetLayerHandle; +}; + +struct ISteamController_SteamController006_DeactivateActionSetLayer_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint64_t actionSetLayerHandle; +}; + +struct ISteamController_SteamController006_DeactivateAllActionSetLayers_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; +}; + +struct ISteamController_SteamController006_GetActiveActionSetLayers_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t controllerHandle; + uint64_t *handlesOut; +}; + +struct ISteamController_SteamController006_GetDigitalActionHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pszActionName; +}; + +struct ISteamController_SteamController006_GetDigitalActionData_params +{ + struct u_steam_iface *linux_side; + ControllerDigitalActionData_t *_ret; + uint64_t controllerHandle; + uint64_t digitalActionHandle; +}; + +struct ISteamController_SteamController006_GetDigitalActionOrigins_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t controllerHandle; + uint64_t actionSetHandle; + uint64_t digitalActionHandle; + uint32_t *originsOut; +}; + +struct ISteamController_SteamController006_GetAnalogActionHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pszActionName; +}; + +struct ISteamController_SteamController006_GetAnalogActionData_params +{ + struct u_steam_iface *linux_side; + ControllerAnalogActionData_t *_ret; + uint64_t controllerHandle; + uint64_t analogActionHandle; +}; + +struct ISteamController_SteamController006_GetAnalogActionOrigins_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t controllerHandle; + uint64_t actionSetHandle; + uint64_t analogActionHandle; + uint32_t *originsOut; +}; + +struct ISteamController_SteamController006_StopAnalogActionMomentum_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint64_t eAction; +}; + +struct ISteamController_SteamController006_TriggerHapticPulse_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint32_t eTargetPad; + uint16_t usDurationMicroSec; +}; + +struct ISteamController_SteamController006_TriggerRepeatedHapticPulse_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint32_t eTargetPad; + uint16_t usDurationMicroSec; + uint16_t usOffMicroSec; + uint16_t unRepeat; + uint32_t nFlags; +}; + +struct ISteamController_SteamController006_TriggerVibration_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint16_t usLeftSpeed; + uint16_t usRightSpeed; +}; + +struct ISteamController_SteamController006_SetLEDColor_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint8_t nColorR; + uint8_t nColorG; + uint8_t nColorB; + uint32_t nFlags; +}; + +struct ISteamController_SteamController006_GetGamepadIndexForController_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t ulControllerHandle; +}; + +struct ISteamController_SteamController006_GetControllerForGamepadIndex_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + int32_t nIndex; +}; + +struct ISteamController_SteamController006_GetMotionData_params +{ + struct u_steam_iface *linux_side; + ControllerMotionData_t *_ret; + uint64_t controllerHandle; +}; + +struct ISteamController_SteamController006_ShowDigitalActionOrigins_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t controllerHandle; + uint64_t digitalActionHandle; + float flScale; + float flXPosition; + float flYPosition; +}; + +struct ISteamController_SteamController006_ShowAnalogActionOrigins_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t controllerHandle; + uint64_t analogActionHandle; + float flScale; + float flXPosition; + float flYPosition; +}; + +struct ISteamController_SteamController006_GetStringForActionOrigin_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; +}; + +struct ISteamController_SteamController006_GetGlyphForActionOrigin_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; +}; + +struct ISteamController_SteamController006_GetInputTypeForHandle_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t controllerHandle; +}; + +struct ISteamController_SteamController007_Init_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamController_SteamController007_Shutdown_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamController_SteamController007_RunFrame_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamController_SteamController007_GetConnectedControllers_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t *handlesOut; +}; + +struct ISteamController_SteamController007_GetActionSetHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pszActionSetName; +}; + +struct ISteamController_SteamController007_ActivateActionSet_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint64_t actionSetHandle; +}; + +struct ISteamController_SteamController007_GetCurrentActionSet_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t controllerHandle; +}; + +struct ISteamController_SteamController007_ActivateActionSetLayer_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint64_t actionSetLayerHandle; +}; + +struct ISteamController_SteamController007_DeactivateActionSetLayer_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint64_t actionSetLayerHandle; +}; + +struct ISteamController_SteamController007_DeactivateAllActionSetLayers_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; +}; + +struct ISteamController_SteamController007_GetActiveActionSetLayers_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t controllerHandle; + uint64_t *handlesOut; +}; + +struct ISteamController_SteamController007_GetDigitalActionHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pszActionName; +}; + +struct ISteamController_SteamController007_GetDigitalActionData_params +{ + struct u_steam_iface *linux_side; + InputDigitalActionData_t *_ret; + uint64_t controllerHandle; + uint64_t digitalActionHandle; +}; + +struct ISteamController_SteamController007_GetDigitalActionOrigins_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t controllerHandle; + uint64_t actionSetHandle; + uint64_t digitalActionHandle; + uint32_t *originsOut; +}; + +struct ISteamController_SteamController007_GetAnalogActionHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pszActionName; +}; + +struct ISteamController_SteamController007_GetAnalogActionData_params +{ + struct u_steam_iface *linux_side; + InputAnalogActionData_t *_ret; + uint64_t controllerHandle; + uint64_t analogActionHandle; +}; + +struct ISteamController_SteamController007_GetAnalogActionOrigins_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t controllerHandle; + uint64_t actionSetHandle; + uint64_t analogActionHandle; + uint32_t *originsOut; +}; + +struct ISteamController_SteamController007_GetGlyphForActionOrigin_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; +}; + +struct ISteamController_SteamController007_GetStringForActionOrigin_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; +}; + +struct ISteamController_SteamController007_StopAnalogActionMomentum_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint64_t eAction; +}; + +struct ISteamController_SteamController007_GetMotionData_params +{ + struct u_steam_iface *linux_side; + InputMotionData_t *_ret; + uint64_t controllerHandle; +}; + +struct ISteamController_SteamController007_TriggerHapticPulse_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint32_t eTargetPad; + uint16_t usDurationMicroSec; +}; + +struct ISteamController_SteamController007_TriggerRepeatedHapticPulse_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint32_t eTargetPad; + uint16_t usDurationMicroSec; + uint16_t usOffMicroSec; + uint16_t unRepeat; + uint32_t nFlags; +}; + +struct ISteamController_SteamController007_TriggerVibration_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint16_t usLeftSpeed; + uint16_t usRightSpeed; +}; + +struct ISteamController_SteamController007_SetLEDColor_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint8_t nColorR; + uint8_t nColorG; + uint8_t nColorB; + uint32_t nFlags; +}; + +struct ISteamController_SteamController007_ShowBindingPanel_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t controllerHandle; +}; + +struct ISteamController_SteamController007_GetInputTypeForHandle_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t controllerHandle; +}; + +struct ISteamController_SteamController007_GetControllerForGamepadIndex_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + int32_t nIndex; +}; + +struct ISteamController_SteamController007_GetGamepadIndexForController_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t ulControllerHandle; +}; + +struct ISteamController_SteamController007_GetStringForXboxOrigin_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; +}; + +struct ISteamController_SteamController007_GetGlyphForXboxOrigin_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; +}; + +struct ISteamController_SteamController007_GetActionOriginFromXboxOrigin_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t controllerHandle; + uint32_t eOrigin; +}; + +struct ISteamController_SteamController007_TranslateActionOrigin_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t eDestinationInputType; + uint32_t eSourceOrigin; +}; + +struct ISteamController_SteamController007_GetControllerBindingRevision_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t controllerHandle; + int32_t *pMajor; + int32_t *pMinor; +}; + +struct ISteamController_SteamController008_Init_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamController_SteamController008_Shutdown_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamController_SteamController008_RunFrame_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamController_SteamController008_GetConnectedControllers_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t *handlesOut; +}; + +struct ISteamController_SteamController008_GetActionSetHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pszActionSetName; +}; + +struct ISteamController_SteamController008_ActivateActionSet_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint64_t actionSetHandle; +}; + +struct ISteamController_SteamController008_GetCurrentActionSet_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t controllerHandle; +}; + +struct ISteamController_SteamController008_ActivateActionSetLayer_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint64_t actionSetLayerHandle; +}; + +struct ISteamController_SteamController008_DeactivateActionSetLayer_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint64_t actionSetLayerHandle; +}; + +struct ISteamController_SteamController008_DeactivateAllActionSetLayers_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; +}; + +struct ISteamController_SteamController008_GetActiveActionSetLayers_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t controllerHandle; + uint64_t *handlesOut; +}; + +struct ISteamController_SteamController008_GetDigitalActionHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pszActionName; +}; + +struct ISteamController_SteamController008_GetDigitalActionData_params +{ + struct u_steam_iface *linux_side; + InputDigitalActionData_t *_ret; + uint64_t controllerHandle; + uint64_t digitalActionHandle; +}; + +struct ISteamController_SteamController008_GetDigitalActionOrigins_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t controllerHandle; + uint64_t actionSetHandle; + uint64_t digitalActionHandle; + uint32_t *originsOut; +}; + +struct ISteamController_SteamController008_GetAnalogActionHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pszActionName; +}; + +struct ISteamController_SteamController008_GetAnalogActionData_params +{ + struct u_steam_iface *linux_side; + InputAnalogActionData_t *_ret; + uint64_t controllerHandle; + uint64_t analogActionHandle; +}; + +struct ISteamController_SteamController008_GetAnalogActionOrigins_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t controllerHandle; + uint64_t actionSetHandle; + uint64_t analogActionHandle; + uint32_t *originsOut; +}; + +struct ISteamController_SteamController008_GetGlyphForActionOrigin_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; +}; + +struct ISteamController_SteamController008_GetStringForActionOrigin_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; +}; + +struct ISteamController_SteamController008_StopAnalogActionMomentum_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint64_t eAction; +}; + +struct ISteamController_SteamController008_GetMotionData_params +{ + struct u_steam_iface *linux_side; + InputMotionData_t *_ret; + uint64_t controllerHandle; +}; + +struct ISteamController_SteamController008_TriggerHapticPulse_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint32_t eTargetPad; + uint16_t usDurationMicroSec; +}; + +struct ISteamController_SteamController008_TriggerRepeatedHapticPulse_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint32_t eTargetPad; + uint16_t usDurationMicroSec; + uint16_t usOffMicroSec; + uint16_t unRepeat; + uint32_t nFlags; +}; + +struct ISteamController_SteamController008_TriggerVibration_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint16_t usLeftSpeed; + uint16_t usRightSpeed; +}; + +struct ISteamController_SteamController008_SetLEDColor_params +{ + struct u_steam_iface *linux_side; + uint64_t controllerHandle; + uint8_t nColorR; + uint8_t nColorG; + uint8_t nColorB; + uint32_t nFlags; +}; + +struct ISteamController_SteamController008_ShowBindingPanel_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t controllerHandle; +}; + +struct ISteamController_SteamController008_GetInputTypeForHandle_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t controllerHandle; +}; + +struct ISteamController_SteamController008_GetControllerForGamepadIndex_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + int32_t nIndex; +}; + +struct ISteamController_SteamController008_GetGamepadIndexForController_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t ulControllerHandle; +}; + +struct ISteamController_SteamController008_GetStringForXboxOrigin_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; +}; + +struct ISteamController_SteamController008_GetGlyphForXboxOrigin_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; +}; + +struct ISteamController_SteamController008_GetActionOriginFromXboxOrigin_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t controllerHandle; + uint32_t eOrigin; +}; + +struct ISteamController_SteamController008_TranslateActionOrigin_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t eDestinationInputType; + uint32_t eSourceOrigin; +}; + +struct ISteamController_SteamController008_GetControllerBindingRevision_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t controllerHandle; + int32_t *pMajor; + int32_t *pMinor; +}; + +struct ISteamFriends_SteamFriends001_GetPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamFriends_SteamFriends001_SetPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *pchPersonaName; +}; + +struct ISteamFriends_SteamFriends001_GetPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamFriends_SteamFriends001_SetPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t ePersonaState; +}; + +struct ISteamFriends_SteamFriends001_AddFriend_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends001_RemoveFriend_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends001_HasFriend_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends001_GetFriendRelationship_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends001_GetFriendPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlayed_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + int32_t *pnGameID; + uint32_t *punGameIP; + uint16_t *pusGamePort; +}; + +struct ISteamFriends_SteamFriends001_GetFriendPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends001_AddFriendByName_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchEmailOrAccountName; +}; + +struct ISteamFriends_SteamFriends001_GetFriendCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamFriends_SteamFriends001_GetFriendByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iFriend; +}; + +struct ISteamFriends_SteamFriends001_SendMsgToFriend_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDFriend; + uint32_t eChatEntryType; + const char *pchMsgBody; +}; + +struct ISteamFriends_SteamFriends001_SetFriendRegValue_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDFriend; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamFriends_SteamFriends001_GetFriendRegValue_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + const char *pchKey; +}; + +struct ISteamFriends_SteamFriends001_GetFriendPersonaNameHistory_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + int32_t iPersonaName; +}; + +struct ISteamFriends_SteamFriends001_GetChatMessage_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; + int32_t iChatID; + void *pvData; + int32_t cubData; + uint32_t *peChatEntryType; +}; + +struct ISteamFriends_SteamFriends001_SendMsgToFriend_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + uint32_t eChatEntryType; + const void *pvMsgBody; + int32_t cubMsgBody; +}; + +struct ISteamFriends_SteamFriends001_GetChatIDOfChatHistoryStart_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends001_SetChatHistoryStart_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDFriend; + int32_t iChatID; +}; + +struct ISteamFriends_SteamFriends001_ClearChatHistory_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends001_InviteFriendByEmail_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchEmailAccount; +}; + +struct ISteamFriends_SteamFriends001_GetBlockedFriendCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamFriends_SteamFriends001_GetFriendGamePlayed_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + uint64_t *pulGameID; + uint32_t *punGameIP; + uint16_t *pusGamePort; +}; + +struct ISteamFriends_SteamFriends001_GetFriendGamePlayed2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + uint64_t *pulGameID; + uint32_t *punGameIP; + uint16_t *pusGamePort; + uint16_t *pusQueryPort; +}; + +struct ISteamFriends_SteamFriends002_GetPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamFriends_SteamFriends002_SetPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *pchPersonaName; +}; + +struct ISteamFriends_SteamFriends002_GetPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamFriends_SteamFriends002_SetPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t ePersonaState; +}; + +struct ISteamFriends_SteamFriends002_GetFriendCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends002_GetFriendByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iFriend; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends002_GetFriendRelationship_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends002_GetFriendPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends002_GetFriendPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends002_SetFriendRegValue_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDFriend; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamFriends_SteamFriends002_GetFriendRegValue_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + const char *pchKey; +}; + +struct ISteamFriends_SteamFriends002_GetFriendGamePlayed_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + uint64_t *pulGameID; + uint32_t *punGameIP; + uint16_t *pusGamePort; + uint16_t *pusQueryPort; +}; + +struct ISteamFriends_SteamFriends002_GetFriendPersonaNameHistory_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + int32_t iPersonaName; +}; + +struct ISteamFriends_SteamFriends002_AddFriend_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends002_RemoveFriend_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends002_HasFriend_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends002_AddFriendByName_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const char *pchEmailOrAccountName; +}; + +struct ISteamFriends_SteamFriends002_InviteFriendByEmail_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchEmailAccount; +}; + +struct ISteamFriends_SteamFriends002_GetChatMessage_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; + int32_t iChatID; + void *pvData; + int32_t cubData; + uint32_t *peChatEntryType; +}; + +struct ISteamFriends_SteamFriends002_SendMsgToFriend_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + uint32_t eChatEntryType; + const void *pvMsgBody; + int32_t cubMsgBody; +}; + +struct ISteamFriends_SteamFriends002_GetChatIDOfChatHistoryStart_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends002_SetChatHistoryStart_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDFriend; + int32_t iChatID; +}; + +struct ISteamFriends_SteamFriends002_ClearChatHistory_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends002_GetClanCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamFriends_SteamFriends002_GetClanByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iClan; +}; + +struct ISteamFriends_SteamFriends002_GetClanName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends002_InviteFriendToClan_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends002_AcknowledgeInviteToClan_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClan; + bool bAcceptOrDenyClanInvite; +}; + +struct ISteamFriends_SteamFriends002_GetFriendCountFromSource_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDSource; +}; + +struct ISteamFriends_SteamFriends002_GetFriendFromSourceByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDSource; + int32_t iFriend; +}; + +struct ISteamFriends_SteamFriends003_GetPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamFriends_SteamFriends003_SetPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *pchPersonaName; +}; + +struct ISteamFriends_SteamFriends003_GetPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamFriends_SteamFriends003_GetFriendCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends003_GetFriendByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iFriend; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends003_GetFriendRelationship_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends003_GetFriendPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends003_GetFriendPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends003_GetFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends003_GetFriendGamePlayed_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + uint64_t *pulGameID; + uint32_t *punGameIP; + uint16_t *pusGamePort; + uint16_t *pusQueryPort; +}; + +struct ISteamFriends_SteamFriends003_GetFriendPersonaNameHistory_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + int32_t iPersonaName; +}; + +struct ISteamFriends_SteamFriends003_HasFriend_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends003_GetClanCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamFriends_SteamFriends003_GetClanByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iClan; +}; + +struct ISteamFriends_SteamFriends003_GetClanName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends003_GetFriendCountFromSource_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDSource; +}; + +struct ISteamFriends_SteamFriends003_GetFriendFromSourceByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDSource; + int32_t iFriend; +}; + +struct ISteamFriends_SteamFriends003_IsUserInSource_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + CSteamID steamIDSource; +}; + +struct ISteamFriends_SteamFriends003_SetInGameVoiceSpeaking_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUser; + bool bSpeaking; +}; + +struct ISteamFriends_SteamFriends003_ActivateGameOverlay_params +{ + struct u_steam_iface *linux_side; + const char *pchDialog; +}; + +struct ISteamFriends_SteamFriends004_GetPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamFriends_SteamFriends004_SetPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *pchPersonaName; +}; + +struct ISteamFriends_SteamFriends004_GetPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamFriends_SteamFriends004_GetFriendCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends004_GetFriendByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iFriend; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends004_GetFriendRelationship_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends004_GetFriendPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends004_GetFriendPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends004_GetFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; + int32_t eAvatarSize; +}; + +struct ISteamFriends_SteamFriends004_GetFriendGamePlayed_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + uint64_t *pulGameID; + uint32_t *punGameIP; + uint16_t *pusGamePort; + uint16_t *pusQueryPort; +}; + +struct ISteamFriends_SteamFriends004_GetFriendPersonaNameHistory_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + int32_t iPersonaName; +}; + +struct ISteamFriends_SteamFriends004_HasFriend_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends004_GetClanCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamFriends_SteamFriends004_GetClanByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iClan; +}; + +struct ISteamFriends_SteamFriends004_GetClanName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends004_GetFriendCountFromSource_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDSource; +}; + +struct ISteamFriends_SteamFriends004_GetFriendFromSourceByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDSource; + int32_t iFriend; +}; + +struct ISteamFriends_SteamFriends004_IsUserInSource_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + CSteamID steamIDSource; +}; + +struct ISteamFriends_SteamFriends004_SetInGameVoiceSpeaking_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUser; + bool bSpeaking; +}; + +struct ISteamFriends_SteamFriends004_ActivateGameOverlay_params +{ + struct u_steam_iface *linux_side; + const char *pchDialog; +}; + +struct ISteamFriends_SteamFriends005_GetPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamFriends_SteamFriends005_SetPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *pchPersonaName; +}; + +struct ISteamFriends_SteamFriends005_GetPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamFriends_SteamFriends005_GetFriendCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends005_GetFriendByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iFriend; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends005_GetFriendRelationship_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends005_GetFriendPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends005_GetFriendPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends005_GetFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; + int32_t eAvatarSize; +}; + +struct ISteamFriends_SteamFriends005_GetFriendGamePlayed_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + FriendGameInfo_t *pFriendGameInfo; +}; + +struct ISteamFriends_SteamFriends005_GetFriendPersonaNameHistory_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + int32_t iPersonaName; +}; + +struct ISteamFriends_SteamFriends005_HasFriend_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends005_GetClanCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamFriends_SteamFriends005_GetClanByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iClan; +}; + +struct ISteamFriends_SteamFriends005_GetClanName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends005_GetFriendCountFromSource_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDSource; +}; + +struct ISteamFriends_SteamFriends005_GetFriendFromSourceByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDSource; + int32_t iFriend; +}; + +struct ISteamFriends_SteamFriends005_IsUserInSource_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + CSteamID steamIDSource; +}; + +struct ISteamFriends_SteamFriends005_SetInGameVoiceSpeaking_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUser; + bool bSpeaking; +}; + +struct ISteamFriends_SteamFriends005_ActivateGameOverlay_params +{ + struct u_steam_iface *linux_side; + const char *pchDialog; +}; + +struct ISteamFriends_SteamFriends005_ActivateGameOverlayToUser_params +{ + struct u_steam_iface *linux_side; + const char *pchDialog; + CSteamID steamID; +}; + +struct ISteamFriends_SteamFriends005_ActivateGameOverlayToWebPage_params +{ + struct u_steam_iface *linux_side; + const char *pchURL; +}; + +struct ISteamFriends_SteamFriends005_ActivateGameOverlayToStore_params +{ + struct u_steam_iface *linux_side; + uint32_t nAppID; +}; + +struct ISteamFriends_SteamFriends005_SetPlayedWith_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUserPlayedWith; +}; + +struct ISteamFriends_SteamFriends006_GetPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamFriends_SteamFriends006_SetPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *pchPersonaName; +}; + +struct ISteamFriends_SteamFriends006_GetPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamFriends_SteamFriends006_GetFriendCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends006_GetFriendByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iFriend; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends006_GetFriendRelationship_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends006_GetFriendPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends006_GetFriendPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends006_GetFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; + int32_t eAvatarSize; +}; + +struct ISteamFriends_SteamFriends006_GetFriendGamePlayed_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + FriendGameInfo_t *pFriendGameInfo; +}; + +struct ISteamFriends_SteamFriends006_GetFriendPersonaNameHistory_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + int32_t iPersonaName; +}; + +struct ISteamFriends_SteamFriends006_HasFriend_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends006_GetClanCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamFriends_SteamFriends006_GetClanByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iClan; +}; + +struct ISteamFriends_SteamFriends006_GetClanName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends006_GetClanTag_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends006_GetFriendCountFromSource_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDSource; +}; + +struct ISteamFriends_SteamFriends006_GetFriendFromSourceByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDSource; + int32_t iFriend; +}; + +struct ISteamFriends_SteamFriends006_IsUserInSource_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + CSteamID steamIDSource; +}; + +struct ISteamFriends_SteamFriends006_SetInGameVoiceSpeaking_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUser; + bool bSpeaking; +}; + +struct ISteamFriends_SteamFriends006_ActivateGameOverlay_params +{ + struct u_steam_iface *linux_side; + const char *pchDialog; +}; + +struct ISteamFriends_SteamFriends006_ActivateGameOverlayToUser_params +{ + struct u_steam_iface *linux_side; + const char *pchDialog; + CSteamID steamID; +}; + +struct ISteamFriends_SteamFriends006_ActivateGameOverlayToWebPage_params +{ + struct u_steam_iface *linux_side; + const char *pchURL; +}; + +struct ISteamFriends_SteamFriends006_ActivateGameOverlayToStore_params +{ + struct u_steam_iface *linux_side; + uint32_t nAppID; +}; + +struct ISteamFriends_SteamFriends006_SetPlayedWith_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUserPlayedWith; +}; + +struct ISteamFriends_SteamFriends006_ActivateGameOverlayInviteDialog_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; +}; + +struct ISteamFriends_SteamFriends007_GetPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamFriends_SteamFriends007_SetPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *pchPersonaName; +}; + +struct ISteamFriends_SteamFriends007_GetPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamFriends_SteamFriends007_GetFriendCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends007_GetFriendByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iFriend; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends007_GetFriendRelationship_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends007_GetFriendPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends007_GetFriendPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends007_GetFriendGamePlayed_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + FriendGameInfo_t *pFriendGameInfo; +}; + +struct ISteamFriends_SteamFriends007_GetFriendPersonaNameHistory_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + int32_t iPersonaName; +}; + +struct ISteamFriends_SteamFriends007_HasFriend_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends007_GetClanCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamFriends_SteamFriends007_GetClanByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iClan; +}; + +struct ISteamFriends_SteamFriends007_GetClanName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends007_GetClanTag_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends007_GetFriendCountFromSource_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDSource; +}; + +struct ISteamFriends_SteamFriends007_GetFriendFromSourceByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDSource; + int32_t iFriend; +}; + +struct ISteamFriends_SteamFriends007_IsUserInSource_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + CSteamID steamIDSource; +}; + +struct ISteamFriends_SteamFriends007_SetInGameVoiceSpeaking_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUser; + bool bSpeaking; +}; + +struct ISteamFriends_SteamFriends007_ActivateGameOverlay_params +{ + struct u_steam_iface *linux_side; + const char *pchDialog; +}; + +struct ISteamFriends_SteamFriends007_ActivateGameOverlayToUser_params +{ + struct u_steam_iface *linux_side; + const char *pchDialog; + CSteamID steamID; +}; + +struct ISteamFriends_SteamFriends007_ActivateGameOverlayToWebPage_params +{ + struct u_steam_iface *linux_side; + const char *pchURL; +}; + +struct ISteamFriends_SteamFriends007_ActivateGameOverlayToStore_params +{ + struct u_steam_iface *linux_side; + uint32_t nAppID; +}; + +struct ISteamFriends_SteamFriends007_SetPlayedWith_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUserPlayedWith; +}; + +struct ISteamFriends_SteamFriends007_ActivateGameOverlayInviteDialog_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; +}; + +struct ISteamFriends_SteamFriends007_GetSmallFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends007_GetMediumFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends007_GetLargeFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends008_GetPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamFriends_SteamFriends008_SetPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *pchPersonaName; +}; + +struct ISteamFriends_SteamFriends008_GetPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamFriends_SteamFriends008_GetFriendCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends008_GetFriendByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iFriend; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends008_GetFriendRelationship_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends008_GetFriendPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends008_GetFriendPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends008_GetFriendGamePlayed_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + FriendGameInfo_t *pFriendGameInfo; +}; + +struct ISteamFriends_SteamFriends008_GetFriendPersonaNameHistory_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + int32_t iPersonaName; +}; + +struct ISteamFriends_SteamFriends008_HasFriend_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends008_GetClanCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamFriends_SteamFriends008_GetClanByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iClan; +}; + +struct ISteamFriends_SteamFriends008_GetClanName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends008_GetClanTag_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends008_GetFriendCountFromSource_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDSource; +}; + +struct ISteamFriends_SteamFriends008_GetFriendFromSourceByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDSource; + int32_t iFriend; +}; + +struct ISteamFriends_SteamFriends008_IsUserInSource_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + CSteamID steamIDSource; +}; + +struct ISteamFriends_SteamFriends008_SetInGameVoiceSpeaking_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUser; + bool bSpeaking; +}; + +struct ISteamFriends_SteamFriends008_ActivateGameOverlay_params +{ + struct u_steam_iface *linux_side; + const char *pchDialog; +}; + +struct ISteamFriends_SteamFriends008_ActivateGameOverlayToUser_params +{ + struct u_steam_iface *linux_side; + const char *pchDialog; + CSteamID steamID; +}; + +struct ISteamFriends_SteamFriends008_ActivateGameOverlayToWebPage_params +{ + struct u_steam_iface *linux_side; + const char *pchURL; +}; + +struct ISteamFriends_SteamFriends008_ActivateGameOverlayToStore_params +{ + struct u_steam_iface *linux_side; + uint32_t nAppID; +}; + +struct ISteamFriends_SteamFriends008_SetPlayedWith_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUserPlayedWith; +}; + +struct ISteamFriends_SteamFriends008_ActivateGameOverlayInviteDialog_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; +}; + +struct ISteamFriends_SteamFriends008_GetSmallFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends008_GetMediumFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends008_GetLargeFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends008_RequestUserInformation_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + bool bRequireNameOnly; +}; + +struct ISteamFriends_SteamFriends008_RequestClanOfficerList_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends008_GetClanOwner_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends008_GetClanOfficerCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends008_GetClanOfficerByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDClan; + int32_t iOfficer; +}; + +struct ISteamFriends_SteamFriends008_GetUserRestrictions_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamFriends_SteamFriends009_GetPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamFriends_SteamFriends009_SetPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *pchPersonaName; +}; + +struct ISteamFriends_SteamFriends009_GetPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamFriends_SteamFriends009_GetFriendCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends009_GetFriendByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iFriend; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends009_GetFriendRelationship_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends009_GetFriendPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends009_GetFriendPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends009_GetFriendGamePlayed_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + FriendGameInfo_t *pFriendGameInfo; +}; + +struct ISteamFriends_SteamFriends009_GetFriendPersonaNameHistory_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + int32_t iPersonaName; +}; + +struct ISteamFriends_SteamFriends009_HasFriend_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends009_GetClanCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamFriends_SteamFriends009_GetClanByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iClan; +}; + +struct ISteamFriends_SteamFriends009_GetClanName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends009_GetClanTag_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends009_GetFriendCountFromSource_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDSource; +}; + +struct ISteamFriends_SteamFriends009_GetFriendFromSourceByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDSource; + int32_t iFriend; +}; + +struct ISteamFriends_SteamFriends009_IsUserInSource_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + CSteamID steamIDSource; +}; + +struct ISteamFriends_SteamFriends009_SetInGameVoiceSpeaking_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUser; + bool bSpeaking; +}; + +struct ISteamFriends_SteamFriends009_ActivateGameOverlay_params +{ + struct u_steam_iface *linux_side; + const char *pchDialog; +}; + +struct ISteamFriends_SteamFriends009_ActivateGameOverlayToUser_params +{ + struct u_steam_iface *linux_side; + const char *pchDialog; + CSteamID steamID; +}; + +struct ISteamFriends_SteamFriends009_ActivateGameOverlayToWebPage_params +{ + struct u_steam_iface *linux_side; + const char *pchURL; +}; + +struct ISteamFriends_SteamFriends009_ActivateGameOverlayToStore_params +{ + struct u_steam_iface *linux_side; + uint32_t nAppID; +}; + +struct ISteamFriends_SteamFriends009_SetPlayedWith_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUserPlayedWith; +}; + +struct ISteamFriends_SteamFriends009_ActivateGameOverlayInviteDialog_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; +}; + +struct ISteamFriends_SteamFriends009_GetSmallFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends009_GetMediumFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends009_GetLargeFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends009_RequestUserInformation_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + bool bRequireNameOnly; +}; + +struct ISteamFriends_SteamFriends009_RequestClanOfficerList_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends009_GetClanOwner_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends009_GetClanOfficerCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends009_GetClanOfficerByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDClan; + int32_t iOfficer; +}; + +struct ISteamFriends_SteamFriends009_GetUserRestrictions_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamFriends_SteamFriends009_SetRichPresence_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamFriends_SteamFriends009_ClearRichPresence_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamFriends_SteamFriends009_GetFriendRichPresence_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + const char *pchKey; +}; + +struct ISteamFriends_SteamFriends009_GetFriendRichPresenceKeyCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends009_GetFriendRichPresenceKeyByIndex_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + int32_t iKey; +}; + +struct ISteamFriends_SteamFriends009_InviteUserToGame_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + const char *pchConnectString; +}; + +struct ISteamFriends_SteamFriends009_GetCoplayFriendCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamFriends_SteamFriends009_GetCoplayFriend_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iCoplayFriend; +}; + +struct ISteamFriends_SteamFriends009_GetFriendCoplayTime_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends009_GetFriendCoplayGame_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends010_GetPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamFriends_SteamFriends010_SetPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *pchPersonaName; +}; + +struct ISteamFriends_SteamFriends010_GetPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamFriends_SteamFriends010_GetFriendCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends010_GetFriendByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iFriend; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends010_GetFriendRelationship_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends010_GetFriendPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends010_GetFriendPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends010_GetFriendGamePlayed_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + FriendGameInfo_t *pFriendGameInfo; +}; + +struct ISteamFriends_SteamFriends010_GetFriendPersonaNameHistory_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + int32_t iPersonaName; +}; + +struct ISteamFriends_SteamFriends010_HasFriend_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends010_GetClanCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamFriends_SteamFriends010_GetClanByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iClan; +}; + +struct ISteamFriends_SteamFriends010_GetClanName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends010_GetClanTag_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends010_GetClanActivityCounts_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClan; + int32_t *pnOnline; + int32_t *pnInGame; + int32_t *pnChatting; +}; + +struct ISteamFriends_SteamFriends010_DownloadClanActivityCounts_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID *psteamIDClans; + int32_t cClansToRequest; +}; + +struct ISteamFriends_SteamFriends010_GetFriendCountFromSource_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDSource; +}; + +struct ISteamFriends_SteamFriends010_GetFriendFromSourceByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDSource; + int32_t iFriend; +}; + +struct ISteamFriends_SteamFriends010_IsUserInSource_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + CSteamID steamIDSource; +}; + +struct ISteamFriends_SteamFriends010_SetInGameVoiceSpeaking_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUser; + bool bSpeaking; +}; + +struct ISteamFriends_SteamFriends010_ActivateGameOverlay_params +{ + struct u_steam_iface *linux_side; + const char *pchDialog; +}; + +struct ISteamFriends_SteamFriends010_ActivateGameOverlayToUser_params +{ + struct u_steam_iface *linux_side; + const char *pchDialog; + CSteamID steamID; +}; + +struct ISteamFriends_SteamFriends010_ActivateGameOverlayToWebPage_params +{ + struct u_steam_iface *linux_side; + const char *pchURL; +}; + +struct ISteamFriends_SteamFriends010_ActivateGameOverlayToStore_params +{ + struct u_steam_iface *linux_side; + uint32_t nAppID; +}; + +struct ISteamFriends_SteamFriends010_SetPlayedWith_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUserPlayedWith; +}; + +struct ISteamFriends_SteamFriends010_ActivateGameOverlayInviteDialog_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; +}; + +struct ISteamFriends_SteamFriends010_GetSmallFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends010_GetMediumFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends010_GetLargeFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends010_RequestUserInformation_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + bool bRequireNameOnly; +}; + +struct ISteamFriends_SteamFriends010_RequestClanOfficerList_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends010_GetClanOwner_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends010_GetClanOfficerCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends010_GetClanOfficerByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDClan; + int32_t iOfficer; +}; + +struct ISteamFriends_SteamFriends010_GetUserRestrictions_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamFriends_SteamFriends010_SetRichPresence_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamFriends_SteamFriends010_ClearRichPresence_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamFriends_SteamFriends010_GetFriendRichPresence_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + const char *pchKey; +}; + +struct ISteamFriends_SteamFriends010_GetFriendRichPresenceKeyCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends010_GetFriendRichPresenceKeyByIndex_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + int32_t iKey; +}; + +struct ISteamFriends_SteamFriends010_InviteUserToGame_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + const char *pchConnectString; +}; + +struct ISteamFriends_SteamFriends010_GetCoplayFriendCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamFriends_SteamFriends010_GetCoplayFriend_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iCoplayFriend; +}; + +struct ISteamFriends_SteamFriends010_GetFriendCoplayTime_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends010_GetFriendCoplayGame_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends010_JoinClanChatRoom_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends010_LeaveClanChatRoom_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends010_GetClanChatMemberCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends010_GetChatMemberByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDClan; + int32_t iUser; +}; + +struct ISteamFriends_SteamFriends010_SendClanChatMessage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; + const char *pchText; +}; + +struct ISteamFriends_SteamFriends010_GetClanChatMessage_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDClanChat; + int32_t iMessage; + void *prgchText; + int32_t cchTextMax; + uint32_t *_e; + CSteamID *_f; +}; + +struct ISteamFriends_SteamFriends010_IsClanChatAdmin_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; + CSteamID steamIDUser; +}; + +struct ISteamFriends_SteamFriends010_IsClanChatWindowOpenInSteam_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; +}; + +struct ISteamFriends_SteamFriends010_OpenClanChatWindowInSteam_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; +}; + +struct ISteamFriends_SteamFriends010_CloseClanChatWindowInSteam_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; +}; + +struct ISteamFriends_SteamFriends010_SetListenForFriendsMessages_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bInterceptEnabled; +}; + +struct ISteamFriends_SteamFriends010_ReplyToFriendMessage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + const char *pchMsgToSend; +}; + +struct ISteamFriends_SteamFriends010_GetFriendMessage_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; + int32_t iMessageID; + void *pvData; + int32_t cubData; + uint32_t *peChatEntryType; +}; + +struct ISteamFriends_SteamFriends011_GetPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamFriends_SteamFriends011_SetPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *pchPersonaName; +}; + +struct ISteamFriends_SteamFriends011_GetPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamFriends_SteamFriends011_GetFriendCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends011_GetFriendByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iFriend; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends011_GetFriendRelationship_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends011_GetFriendPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends011_GetFriendPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends011_GetFriendGamePlayed_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + FriendGameInfo_t *pFriendGameInfo; +}; + +struct ISteamFriends_SteamFriends011_GetFriendPersonaNameHistory_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + int32_t iPersonaName; +}; + +struct ISteamFriends_SteamFriends011_HasFriend_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends011_GetClanCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamFriends_SteamFriends011_GetClanByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iClan; +}; + +struct ISteamFriends_SteamFriends011_GetClanName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends011_GetClanTag_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends011_GetClanActivityCounts_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClan; + int32_t *pnOnline; + int32_t *pnInGame; + int32_t *pnChatting; +}; + +struct ISteamFriends_SteamFriends011_DownloadClanActivityCounts_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID *psteamIDClans; + int32_t cClansToRequest; +}; + +struct ISteamFriends_SteamFriends011_GetFriendCountFromSource_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDSource; +}; + +struct ISteamFriends_SteamFriends011_GetFriendFromSourceByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDSource; + int32_t iFriend; +}; + +struct ISteamFriends_SteamFriends011_IsUserInSource_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + CSteamID steamIDSource; +}; + +struct ISteamFriends_SteamFriends011_SetInGameVoiceSpeaking_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUser; + bool bSpeaking; +}; + +struct ISteamFriends_SteamFriends011_ActivateGameOverlay_params +{ + struct u_steam_iface *linux_side; + const char *pchDialog; +}; + +struct ISteamFriends_SteamFriends011_ActivateGameOverlayToUser_params +{ + struct u_steam_iface *linux_side; + const char *pchDialog; + CSteamID steamID; +}; + +struct ISteamFriends_SteamFriends011_ActivateGameOverlayToWebPage_params +{ + struct u_steam_iface *linux_side; + const char *pchURL; +}; + +struct ISteamFriends_SteamFriends011_ActivateGameOverlayToStore_params +{ + struct u_steam_iface *linux_side; + uint32_t nAppID; +}; + +struct ISteamFriends_SteamFriends011_SetPlayedWith_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUserPlayedWith; +}; + +struct ISteamFriends_SteamFriends011_ActivateGameOverlayInviteDialog_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; +}; + +struct ISteamFriends_SteamFriends011_GetSmallFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends011_GetMediumFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends011_GetLargeFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends011_RequestUserInformation_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + bool bRequireNameOnly; +}; + +struct ISteamFriends_SteamFriends011_RequestClanOfficerList_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends011_GetClanOwner_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends011_GetClanOfficerCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends011_GetClanOfficerByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDClan; + int32_t iOfficer; +}; + +struct ISteamFriends_SteamFriends011_GetUserRestrictions_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamFriends_SteamFriends011_SetRichPresence_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamFriends_SteamFriends011_ClearRichPresence_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamFriends_SteamFriends011_GetFriendRichPresence_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + const char *pchKey; +}; + +struct ISteamFriends_SteamFriends011_GetFriendRichPresenceKeyCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends011_GetFriendRichPresenceKeyByIndex_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + int32_t iKey; +}; + +struct ISteamFriends_SteamFriends011_RequestFriendRichPresence_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends011_InviteUserToGame_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + const char *pchConnectString; +}; + +struct ISteamFriends_SteamFriends011_GetCoplayFriendCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamFriends_SteamFriends011_GetCoplayFriend_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iCoplayFriend; +}; + +struct ISteamFriends_SteamFriends011_GetFriendCoplayTime_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends011_GetFriendCoplayGame_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends011_JoinClanChatRoom_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends011_LeaveClanChatRoom_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends011_GetClanChatMemberCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends011_GetChatMemberByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDClan; + int32_t iUser; +}; + +struct ISteamFriends_SteamFriends011_SendClanChatMessage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; + const char *pchText; +}; + +struct ISteamFriends_SteamFriends011_GetClanChatMessage_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDClanChat; + int32_t iMessage; + void *prgchText; + int32_t cchTextMax; + uint32_t *_e; + CSteamID *_f; +}; + +struct ISteamFriends_SteamFriends011_IsClanChatAdmin_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; + CSteamID steamIDUser; +}; + +struct ISteamFriends_SteamFriends011_IsClanChatWindowOpenInSteam_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; +}; + +struct ISteamFriends_SteamFriends011_OpenClanChatWindowInSteam_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; +}; + +struct ISteamFriends_SteamFriends011_CloseClanChatWindowInSteam_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; +}; + +struct ISteamFriends_SteamFriends011_SetListenForFriendsMessages_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bInterceptEnabled; +}; + +struct ISteamFriends_SteamFriends011_ReplyToFriendMessage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + const char *pchMsgToSend; +}; + +struct ISteamFriends_SteamFriends011_GetFriendMessage_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; + int32_t iMessageID; + void *pvData; + int32_t cubData; + uint32_t *peChatEntryType; +}; + +struct ISteamFriends_SteamFriends011_GetFollowerCount_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamID; +}; + +struct ISteamFriends_SteamFriends011_IsFollowing_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamID; +}; + +struct ISteamFriends_SteamFriends011_EnumerateFollowingList_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t unStartIndex; +}; + +struct ISteamFriends_SteamFriends012_GetPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamFriends_SteamFriends012_SetPersonaName_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchPersonaName; +}; + +struct ISteamFriends_SteamFriends012_GetPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamFriends_SteamFriends012_GetFriendCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends012_GetFriendByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iFriend; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends012_GetFriendRelationship_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends012_GetFriendPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends012_GetFriendPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends012_GetFriendGamePlayed_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + FriendGameInfo_t *pFriendGameInfo; +}; + +struct ISteamFriends_SteamFriends012_GetFriendPersonaNameHistory_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + int32_t iPersonaName; +}; + +struct ISteamFriends_SteamFriends012_HasFriend_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends012_GetClanCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamFriends_SteamFriends012_GetClanByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iClan; +}; + +struct ISteamFriends_SteamFriends012_GetClanName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends012_GetClanTag_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends012_GetClanActivityCounts_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClan; + int32_t *pnOnline; + int32_t *pnInGame; + int32_t *pnChatting; +}; + +struct ISteamFriends_SteamFriends012_DownloadClanActivityCounts_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID *psteamIDClans; + int32_t cClansToRequest; +}; + +struct ISteamFriends_SteamFriends012_GetFriendCountFromSource_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDSource; +}; + +struct ISteamFriends_SteamFriends012_GetFriendFromSourceByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDSource; + int32_t iFriend; +}; + +struct ISteamFriends_SteamFriends012_IsUserInSource_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + CSteamID steamIDSource; +}; + +struct ISteamFriends_SteamFriends012_SetInGameVoiceSpeaking_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUser; + bool bSpeaking; +}; + +struct ISteamFriends_SteamFriends012_ActivateGameOverlay_params +{ + struct u_steam_iface *linux_side; + const char *pchDialog; +}; + +struct ISteamFriends_SteamFriends012_ActivateGameOverlayToUser_params +{ + struct u_steam_iface *linux_side; + const char *pchDialog; + CSteamID steamID; +}; + +struct ISteamFriends_SteamFriends012_ActivateGameOverlayToWebPage_params +{ + struct u_steam_iface *linux_side; + const char *pchURL; +}; + +struct ISteamFriends_SteamFriends012_ActivateGameOverlayToStore_params +{ + struct u_steam_iface *linux_side; + uint32_t nAppID; +}; + +struct ISteamFriends_SteamFriends012_SetPlayedWith_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUserPlayedWith; +}; + +struct ISteamFriends_SteamFriends012_ActivateGameOverlayInviteDialog_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; +}; + +struct ISteamFriends_SteamFriends012_GetSmallFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends012_GetMediumFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends012_GetLargeFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends012_RequestUserInformation_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + bool bRequireNameOnly; +}; + +struct ISteamFriends_SteamFriends012_RequestClanOfficerList_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends012_GetClanOwner_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends012_GetClanOfficerCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends012_GetClanOfficerByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDClan; + int32_t iOfficer; +}; + +struct ISteamFriends_SteamFriends012_GetUserRestrictions_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamFriends_SteamFriends012_SetRichPresence_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamFriends_SteamFriends012_ClearRichPresence_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamFriends_SteamFriends012_GetFriendRichPresence_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + const char *pchKey; +}; + +struct ISteamFriends_SteamFriends012_GetFriendRichPresenceKeyCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends012_GetFriendRichPresenceKeyByIndex_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + int32_t iKey; +}; + +struct ISteamFriends_SteamFriends012_RequestFriendRichPresence_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends012_InviteUserToGame_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + const char *pchConnectString; +}; + +struct ISteamFriends_SteamFriends012_GetCoplayFriendCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamFriends_SteamFriends012_GetCoplayFriend_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iCoplayFriend; +}; + +struct ISteamFriends_SteamFriends012_GetFriendCoplayTime_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends012_GetFriendCoplayGame_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends012_JoinClanChatRoom_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends012_LeaveClanChatRoom_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends012_GetClanChatMemberCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends012_GetChatMemberByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDClan; + int32_t iUser; +}; + +struct ISteamFriends_SteamFriends012_SendClanChatMessage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; + const char *pchText; +}; + +struct ISteamFriends_SteamFriends012_GetClanChatMessage_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDClanChat; + int32_t iMessage; + void *prgchText; + int32_t cchTextMax; + uint32_t *_e; + CSteamID *_f; +}; + +struct ISteamFriends_SteamFriends012_IsClanChatAdmin_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; + CSteamID steamIDUser; +}; + +struct ISteamFriends_SteamFriends012_IsClanChatWindowOpenInSteam_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; +}; + +struct ISteamFriends_SteamFriends012_OpenClanChatWindowInSteam_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; +}; + +struct ISteamFriends_SteamFriends012_CloseClanChatWindowInSteam_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; +}; + +struct ISteamFriends_SteamFriends012_SetListenForFriendsMessages_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bInterceptEnabled; +}; + +struct ISteamFriends_SteamFriends012_ReplyToFriendMessage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + const char *pchMsgToSend; +}; + +struct ISteamFriends_SteamFriends012_GetFriendMessage_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; + int32_t iMessageID; + void *pvData; + int32_t cubData; + uint32_t *peChatEntryType; +}; + +struct ISteamFriends_SteamFriends012_GetFollowerCount_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamID; +}; + +struct ISteamFriends_SteamFriends012_IsFollowing_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamID; +}; + +struct ISteamFriends_SteamFriends012_EnumerateFollowingList_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t unStartIndex; +}; + +struct ISteamFriends_SteamFriends013_GetPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamFriends_SteamFriends013_SetPersonaName_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchPersonaName; +}; + +struct ISteamFriends_SteamFriends013_GetPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamFriends_SteamFriends013_GetFriendCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends013_GetFriendByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iFriend; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends013_GetFriendRelationship_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends013_GetFriendPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends013_GetFriendPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends013_GetFriendGamePlayed_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + FriendGameInfo_t *pFriendGameInfo; +}; + +struct ISteamFriends_SteamFriends013_GetFriendPersonaNameHistory_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + int32_t iPersonaName; +}; + +struct ISteamFriends_SteamFriends013_HasFriend_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends013_GetClanCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamFriends_SteamFriends013_GetClanByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iClan; +}; + +struct ISteamFriends_SteamFriends013_GetClanName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends013_GetClanTag_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends013_GetClanActivityCounts_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClan; + int32_t *pnOnline; + int32_t *pnInGame; + int32_t *pnChatting; +}; + +struct ISteamFriends_SteamFriends013_DownloadClanActivityCounts_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID *psteamIDClans; + int32_t cClansToRequest; +}; + +struct ISteamFriends_SteamFriends013_GetFriendCountFromSource_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDSource; +}; + +struct ISteamFriends_SteamFriends013_GetFriendFromSourceByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDSource; + int32_t iFriend; +}; + +struct ISteamFriends_SteamFriends013_IsUserInSource_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + CSteamID steamIDSource; +}; + +struct ISteamFriends_SteamFriends013_SetInGameVoiceSpeaking_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUser; + bool bSpeaking; +}; + +struct ISteamFriends_SteamFriends013_ActivateGameOverlay_params +{ + struct u_steam_iface *linux_side; + const char *pchDialog; +}; + +struct ISteamFriends_SteamFriends013_ActivateGameOverlayToUser_params +{ + struct u_steam_iface *linux_side; + const char *pchDialog; + CSteamID steamID; +}; + +struct ISteamFriends_SteamFriends013_ActivateGameOverlayToWebPage_params +{ + struct u_steam_iface *linux_side; + const char *pchURL; +}; + +struct ISteamFriends_SteamFriends013_ActivateGameOverlayToStore_params +{ + struct u_steam_iface *linux_side; + uint32_t nAppID; + uint32_t eFlag; +}; + +struct ISteamFriends_SteamFriends013_SetPlayedWith_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUserPlayedWith; +}; + +struct ISteamFriends_SteamFriends013_ActivateGameOverlayInviteDialog_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; +}; + +struct ISteamFriends_SteamFriends013_GetSmallFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends013_GetMediumFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends013_GetLargeFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends013_RequestUserInformation_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + bool bRequireNameOnly; +}; + +struct ISteamFriends_SteamFriends013_RequestClanOfficerList_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends013_GetClanOwner_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends013_GetClanOfficerCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends013_GetClanOfficerByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDClan; + int32_t iOfficer; +}; + +struct ISteamFriends_SteamFriends013_GetUserRestrictions_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamFriends_SteamFriends013_SetRichPresence_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamFriends_SteamFriends013_ClearRichPresence_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamFriends_SteamFriends013_GetFriendRichPresence_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + const char *pchKey; +}; + +struct ISteamFriends_SteamFriends013_GetFriendRichPresenceKeyCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends013_GetFriendRichPresenceKeyByIndex_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + int32_t iKey; +}; + +struct ISteamFriends_SteamFriends013_RequestFriendRichPresence_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends013_InviteUserToGame_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + const char *pchConnectString; +}; + +struct ISteamFriends_SteamFriends013_GetCoplayFriendCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamFriends_SteamFriends013_GetCoplayFriend_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iCoplayFriend; +}; + +struct ISteamFriends_SteamFriends013_GetFriendCoplayTime_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends013_GetFriendCoplayGame_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends013_JoinClanChatRoom_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends013_LeaveClanChatRoom_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends013_GetClanChatMemberCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends013_GetChatMemberByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDClan; + int32_t iUser; +}; + +struct ISteamFriends_SteamFriends013_SendClanChatMessage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; + const char *pchText; +}; + +struct ISteamFriends_SteamFriends013_GetClanChatMessage_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDClanChat; + int32_t iMessage; + void *prgchText; + int32_t cchTextMax; + uint32_t *_e; + CSteamID *_f; +}; + +struct ISteamFriends_SteamFriends013_IsClanChatAdmin_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; + CSteamID steamIDUser; +}; + +struct ISteamFriends_SteamFriends013_IsClanChatWindowOpenInSteam_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; +}; + +struct ISteamFriends_SteamFriends013_OpenClanChatWindowInSteam_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; +}; + +struct ISteamFriends_SteamFriends013_CloseClanChatWindowInSteam_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; +}; + +struct ISteamFriends_SteamFriends013_SetListenForFriendsMessages_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bInterceptEnabled; +}; + +struct ISteamFriends_SteamFriends013_ReplyToFriendMessage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + const char *pchMsgToSend; +}; + +struct ISteamFriends_SteamFriends013_GetFriendMessage_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; + int32_t iMessageID; + void *pvData; + int32_t cubData; + uint32_t *peChatEntryType; +}; + +struct ISteamFriends_SteamFriends013_GetFollowerCount_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamID; +}; + +struct ISteamFriends_SteamFriends013_IsFollowing_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamID; +}; + +struct ISteamFriends_SteamFriends013_EnumerateFollowingList_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t unStartIndex; +}; + +struct ISteamFriends_SteamFriends014_GetPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamFriends_SteamFriends014_SetPersonaName_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchPersonaName; +}; + +struct ISteamFriends_SteamFriends014_GetPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamFriends_SteamFriends014_GetFriendCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends014_GetFriendByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iFriend; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends014_GetFriendRelationship_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends014_GetFriendPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends014_GetFriendPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends014_GetFriendGamePlayed_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + FriendGameInfo_t *pFriendGameInfo; +}; + +struct ISteamFriends_SteamFriends014_GetFriendPersonaNameHistory_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + int32_t iPersonaName; +}; + +struct ISteamFriends_SteamFriends014_GetPlayerNickname_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDPlayer; +}; + +struct ISteamFriends_SteamFriends014_HasFriend_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends014_GetClanCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamFriends_SteamFriends014_GetClanByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iClan; +}; + +struct ISteamFriends_SteamFriends014_GetClanName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends014_GetClanTag_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends014_GetClanActivityCounts_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClan; + int32_t *pnOnline; + int32_t *pnInGame; + int32_t *pnChatting; +}; + +struct ISteamFriends_SteamFriends014_DownloadClanActivityCounts_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID *psteamIDClans; + int32_t cClansToRequest; +}; + +struct ISteamFriends_SteamFriends014_GetFriendCountFromSource_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDSource; +}; + +struct ISteamFriends_SteamFriends014_GetFriendFromSourceByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDSource; + int32_t iFriend; +}; + +struct ISteamFriends_SteamFriends014_IsUserInSource_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + CSteamID steamIDSource; +}; + +struct ISteamFriends_SteamFriends014_SetInGameVoiceSpeaking_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUser; + bool bSpeaking; +}; + +struct ISteamFriends_SteamFriends014_ActivateGameOverlay_params +{ + struct u_steam_iface *linux_side; + const char *pchDialog; +}; + +struct ISteamFriends_SteamFriends014_ActivateGameOverlayToUser_params +{ + struct u_steam_iface *linux_side; + const char *pchDialog; + CSteamID steamID; +}; + +struct ISteamFriends_SteamFriends014_ActivateGameOverlayToWebPage_params +{ + struct u_steam_iface *linux_side; + const char *pchURL; +}; + +struct ISteamFriends_SteamFriends014_ActivateGameOverlayToStore_params +{ + struct u_steam_iface *linux_side; + uint32_t nAppID; + uint32_t eFlag; +}; + +struct ISteamFriends_SteamFriends014_SetPlayedWith_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUserPlayedWith; +}; + +struct ISteamFriends_SteamFriends014_ActivateGameOverlayInviteDialog_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; +}; + +struct ISteamFriends_SteamFriends014_GetSmallFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends014_GetMediumFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends014_GetLargeFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends014_RequestUserInformation_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + bool bRequireNameOnly; +}; + +struct ISteamFriends_SteamFriends014_RequestClanOfficerList_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends014_GetClanOwner_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends014_GetClanOfficerCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends014_GetClanOfficerByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDClan; + int32_t iOfficer; +}; + +struct ISteamFriends_SteamFriends014_GetUserRestrictions_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamFriends_SteamFriends014_SetRichPresence_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamFriends_SteamFriends014_ClearRichPresence_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamFriends_SteamFriends014_GetFriendRichPresence_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + const char *pchKey; +}; + +struct ISteamFriends_SteamFriends014_GetFriendRichPresenceKeyCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends014_GetFriendRichPresenceKeyByIndex_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + int32_t iKey; +}; + +struct ISteamFriends_SteamFriends014_RequestFriendRichPresence_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends014_InviteUserToGame_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + const char *pchConnectString; +}; + +struct ISteamFriends_SteamFriends014_GetCoplayFriendCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamFriends_SteamFriends014_GetCoplayFriend_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iCoplayFriend; +}; + +struct ISteamFriends_SteamFriends014_GetFriendCoplayTime_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends014_GetFriendCoplayGame_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends014_JoinClanChatRoom_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends014_LeaveClanChatRoom_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends014_GetClanChatMemberCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends014_GetChatMemberByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDClan; + int32_t iUser; +}; + +struct ISteamFriends_SteamFriends014_SendClanChatMessage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; + const char *pchText; +}; + +struct ISteamFriends_SteamFriends014_GetClanChatMessage_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDClanChat; + int32_t iMessage; + void *prgchText; + int32_t cchTextMax; + uint32_t *peChatEntryType; + CSteamID *psteamidChatter; +}; + +struct ISteamFriends_SteamFriends014_IsClanChatAdmin_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; + CSteamID steamIDUser; +}; + +struct ISteamFriends_SteamFriends014_IsClanChatWindowOpenInSteam_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; +}; + +struct ISteamFriends_SteamFriends014_OpenClanChatWindowInSteam_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; +}; + +struct ISteamFriends_SteamFriends014_CloseClanChatWindowInSteam_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; +}; + +struct ISteamFriends_SteamFriends014_SetListenForFriendsMessages_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bInterceptEnabled; +}; + +struct ISteamFriends_SteamFriends014_ReplyToFriendMessage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + const char *pchMsgToSend; +}; + +struct ISteamFriends_SteamFriends014_GetFriendMessage_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; + int32_t iMessageID; + void *pvData; + int32_t cubData; + uint32_t *peChatEntryType; +}; + +struct ISteamFriends_SteamFriends014_GetFollowerCount_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamID; +}; + +struct ISteamFriends_SteamFriends014_IsFollowing_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamID; +}; + +struct ISteamFriends_SteamFriends014_EnumerateFollowingList_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t unStartIndex; +}; + +struct ISteamFriends_SteamFriends015_GetPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamFriends_SteamFriends015_SetPersonaName_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchPersonaName; +}; + +struct ISteamFriends_SteamFriends015_GetPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamFriends_SteamFriends015_GetFriendCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends015_GetFriendByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iFriend; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends015_GetFriendRelationship_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends015_GetFriendPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends015_GetFriendPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends015_GetFriendGamePlayed_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + FriendGameInfo_t *pFriendGameInfo; +}; + +struct ISteamFriends_SteamFriends015_GetFriendPersonaNameHistory_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + int32_t iPersonaName; +}; + +struct ISteamFriends_SteamFriends015_GetFriendSteamLevel_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends015_GetPlayerNickname_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDPlayer; +}; + +struct ISteamFriends_SteamFriends015_GetFriendsGroupCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamFriends_SteamFriends015_GetFriendsGroupIDByIndex_params +{ + struct u_steam_iface *linux_side; + int16_t _ret; + int32_t iFG; +}; + +struct ISteamFriends_SteamFriends015_GetFriendsGroupName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + int16_t friendsGroupID; +}; + +struct ISteamFriends_SteamFriends015_GetFriendsGroupMembersCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int16_t friendsGroupID; +}; + +struct ISteamFriends_SteamFriends015_GetFriendsGroupMembersList_params +{ + struct u_steam_iface *linux_side; + int16_t friendsGroupID; + CSteamID *pOutSteamIDMembers; + int32_t nMembersCount; +}; + +struct ISteamFriends_SteamFriends015_HasFriend_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends015_GetClanCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamFriends_SteamFriends015_GetClanByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iClan; +}; + +struct ISteamFriends_SteamFriends015_GetClanName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends015_GetClanTag_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends015_GetClanActivityCounts_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClan; + int32_t *pnOnline; + int32_t *pnInGame; + int32_t *pnChatting; +}; + +struct ISteamFriends_SteamFriends015_DownloadClanActivityCounts_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID *psteamIDClans; + int32_t cClansToRequest; +}; + +struct ISteamFriends_SteamFriends015_GetFriendCountFromSource_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDSource; +}; + +struct ISteamFriends_SteamFriends015_GetFriendFromSourceByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDSource; + int32_t iFriend; +}; + +struct ISteamFriends_SteamFriends015_IsUserInSource_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + CSteamID steamIDSource; +}; + +struct ISteamFriends_SteamFriends015_SetInGameVoiceSpeaking_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUser; + bool bSpeaking; +}; + +struct ISteamFriends_SteamFriends015_ActivateGameOverlay_params +{ + struct u_steam_iface *linux_side; + const char *pchDialog; +}; + +struct ISteamFriends_SteamFriends015_ActivateGameOverlayToUser_params +{ + struct u_steam_iface *linux_side; + const char *pchDialog; + CSteamID steamID; +}; + +struct ISteamFriends_SteamFriends015_ActivateGameOverlayToWebPage_params +{ + struct u_steam_iface *linux_side; + const char *pchURL; +}; + +struct ISteamFriends_SteamFriends015_ActivateGameOverlayToStore_params +{ + struct u_steam_iface *linux_side; + uint32_t nAppID; + uint32_t eFlag; +}; + +struct ISteamFriends_SteamFriends015_SetPlayedWith_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUserPlayedWith; +}; + +struct ISteamFriends_SteamFriends015_ActivateGameOverlayInviteDialog_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; +}; + +struct ISteamFriends_SteamFriends015_GetSmallFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends015_GetMediumFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends015_GetLargeFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends015_RequestUserInformation_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + bool bRequireNameOnly; +}; + +struct ISteamFriends_SteamFriends015_RequestClanOfficerList_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends015_GetClanOwner_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends015_GetClanOfficerCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends015_GetClanOfficerByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDClan; + int32_t iOfficer; +}; + +struct ISteamFriends_SteamFriends015_GetUserRestrictions_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamFriends_SteamFriends015_SetRichPresence_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamFriends_SteamFriends015_ClearRichPresence_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamFriends_SteamFriends015_GetFriendRichPresence_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + const char *pchKey; +}; + +struct ISteamFriends_SteamFriends015_GetFriendRichPresenceKeyCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends015_GetFriendRichPresenceKeyByIndex_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + int32_t iKey; +}; + +struct ISteamFriends_SteamFriends015_RequestFriendRichPresence_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends015_InviteUserToGame_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + const char *pchConnectString; +}; + +struct ISteamFriends_SteamFriends015_GetCoplayFriendCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamFriends_SteamFriends015_GetCoplayFriend_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iCoplayFriend; +}; + +struct ISteamFriends_SteamFriends015_GetFriendCoplayTime_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends015_GetFriendCoplayGame_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends015_JoinClanChatRoom_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends015_LeaveClanChatRoom_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends015_GetClanChatMemberCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends015_GetChatMemberByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDClan; + int32_t iUser; +}; + +struct ISteamFriends_SteamFriends015_SendClanChatMessage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; + const char *pchText; +}; + +struct ISteamFriends_SteamFriends015_GetClanChatMessage_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDClanChat; + int32_t iMessage; + void *prgchText; + int32_t cchTextMax; + uint32_t *peChatEntryType; + CSteamID *psteamidChatter; +}; + +struct ISteamFriends_SteamFriends015_IsClanChatAdmin_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; + CSteamID steamIDUser; +}; + +struct ISteamFriends_SteamFriends015_IsClanChatWindowOpenInSteam_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; +}; + +struct ISteamFriends_SteamFriends015_OpenClanChatWindowInSteam_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; +}; + +struct ISteamFriends_SteamFriends015_CloseClanChatWindowInSteam_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; +}; + +struct ISteamFriends_SteamFriends015_SetListenForFriendsMessages_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bInterceptEnabled; +}; + +struct ISteamFriends_SteamFriends015_ReplyToFriendMessage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + const char *pchMsgToSend; +}; + +struct ISteamFriends_SteamFriends015_GetFriendMessage_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; + int32_t iMessageID; + void *pvData; + int32_t cubData; + uint32_t *peChatEntryType; +}; + +struct ISteamFriends_SteamFriends015_GetFollowerCount_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamID; +}; + +struct ISteamFriends_SteamFriends015_IsFollowing_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamID; +}; + +struct ISteamFriends_SteamFriends015_EnumerateFollowingList_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t unStartIndex; +}; + +struct ISteamFriends_SteamFriends015_IsClanPublic_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends015_IsClanOfficialGameGroup_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends017_GetPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamFriends_SteamFriends017_SetPersonaName_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchPersonaName; +}; + +struct ISteamFriends_SteamFriends017_GetPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamFriends_SteamFriends017_GetFriendCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends017_GetFriendByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iFriend; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends017_GetFriendRelationship_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends017_GetFriendPersonaState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends017_GetFriendPersonaName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends017_GetFriendGamePlayed_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + FriendGameInfo_t *pFriendGameInfo; +}; + +struct ISteamFriends_SteamFriends017_GetFriendPersonaNameHistory_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + int32_t iPersonaName; +}; + +struct ISteamFriends_SteamFriends017_GetFriendSteamLevel_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends017_GetPlayerNickname_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDPlayer; +}; + +struct ISteamFriends_SteamFriends017_GetFriendsGroupCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamFriends_SteamFriends017_GetFriendsGroupIDByIndex_params +{ + struct u_steam_iface *linux_side; + int16_t _ret; + int32_t iFG; +}; + +struct ISteamFriends_SteamFriends017_GetFriendsGroupName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + int16_t friendsGroupID; +}; + +struct ISteamFriends_SteamFriends017_GetFriendsGroupMembersCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int16_t friendsGroupID; +}; + +struct ISteamFriends_SteamFriends017_GetFriendsGroupMembersList_params +{ + struct u_steam_iface *linux_side; + int16_t friendsGroupID; + CSteamID *pOutSteamIDMembers; + int32_t nMembersCount; +}; + +struct ISteamFriends_SteamFriends017_HasFriend_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + int32_t iFriendFlags; +}; + +struct ISteamFriends_SteamFriends017_GetClanCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamFriends_SteamFriends017_GetClanByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iClan; +}; + +struct ISteamFriends_SteamFriends017_GetClanName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends017_GetClanTag_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends017_GetClanActivityCounts_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClan; + int32_t *pnOnline; + int32_t *pnInGame; + int32_t *pnChatting; +}; + +struct ISteamFriends_SteamFriends017_DownloadClanActivityCounts_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID *psteamIDClans; + int32_t cClansToRequest; +}; + +struct ISteamFriends_SteamFriends017_GetFriendCountFromSource_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDSource; +}; + +struct ISteamFriends_SteamFriends017_GetFriendFromSourceByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDSource; + int32_t iFriend; +}; + +struct ISteamFriends_SteamFriends017_IsUserInSource_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + CSteamID steamIDSource; +}; + +struct ISteamFriends_SteamFriends017_SetInGameVoiceSpeaking_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUser; + bool bSpeaking; +}; + +struct ISteamFriends_SteamFriends017_ActivateGameOverlay_params +{ + struct u_steam_iface *linux_side; + const char *pchDialog; +}; + +struct ISteamFriends_SteamFriends017_ActivateGameOverlayToUser_params +{ + struct u_steam_iface *linux_side; + const char *pchDialog; + CSteamID steamID; +}; + +struct ISteamFriends_SteamFriends017_ActivateGameOverlayToWebPage_params +{ + struct u_steam_iface *linux_side; + const char *pchURL; + uint32_t eMode; +}; + +struct ISteamFriends_SteamFriends017_ActivateGameOverlayToStore_params +{ + struct u_steam_iface *linux_side; + uint32_t nAppID; + uint32_t eFlag; +}; + +struct ISteamFriends_SteamFriends017_SetPlayedWith_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUserPlayedWith; +}; + +struct ISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialog_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; +}; + +struct ISteamFriends_SteamFriends017_GetSmallFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends017_GetMediumFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends017_GetLargeFriendAvatar_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends017_RequestUserInformation_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + bool bRequireNameOnly; +}; + +struct ISteamFriends_SteamFriends017_RequestClanOfficerList_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends017_GetClanOwner_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends017_GetClanOfficerCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends017_GetClanOfficerByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDClan; + int32_t iOfficer; +}; + +struct ISteamFriends_SteamFriends017_GetUserRestrictions_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamFriends_SteamFriends017_SetRichPresence_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamFriends_SteamFriends017_ClearRichPresence_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamFriends_SteamFriends017_GetFriendRichPresence_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + const char *pchKey; +}; + +struct ISteamFriends_SteamFriends017_GetFriendRichPresenceKeyCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends017_GetFriendRichPresenceKeyByIndex_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDFriend; + int32_t iKey; +}; + +struct ISteamFriends_SteamFriends017_RequestFriendRichPresence_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends017_InviteUserToGame_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + const char *pchConnectString; +}; + +struct ISteamFriends_SteamFriends017_GetCoplayFriendCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamFriends_SteamFriends017_GetCoplayFriend_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iCoplayFriend; +}; + +struct ISteamFriends_SteamFriends017_GetFriendCoplayTime_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends017_GetFriendCoplayGame_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDFriend; +}; + +struct ISteamFriends_SteamFriends017_JoinClanChatRoom_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends017_LeaveClanChatRoom_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends017_GetClanChatMemberCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends017_GetChatMemberByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDClan; + int32_t iUser; +}; + +struct ISteamFriends_SteamFriends017_SendClanChatMessage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; + const char *pchText; +}; + +struct ISteamFriends_SteamFriends017_GetClanChatMessage_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDClanChat; + int32_t iMessage; + void *prgchText; + int32_t cchTextMax; + uint32_t *peChatEntryType; + CSteamID *psteamidChatter; +}; + +struct ISteamFriends_SteamFriends017_IsClanChatAdmin_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; + CSteamID steamIDUser; +}; + +struct ISteamFriends_SteamFriends017_IsClanChatWindowOpenInSteam_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; +}; + +struct ISteamFriends_SteamFriends017_OpenClanChatWindowInSteam_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; +}; + +struct ISteamFriends_SteamFriends017_CloseClanChatWindowInSteam_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClanChat; +}; + +struct ISteamFriends_SteamFriends017_SetListenForFriendsMessages_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bInterceptEnabled; +}; + +struct ISteamFriends_SteamFriends017_ReplyToFriendMessage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDFriend; + const char *pchMsgToSend; +}; + +struct ISteamFriends_SteamFriends017_GetFriendMessage_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDFriend; + int32_t iMessageID; + void *pvData; + int32_t cubData; + uint32_t *peChatEntryType; +}; + +struct ISteamFriends_SteamFriends017_GetFollowerCount_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamID; +}; + +struct ISteamFriends_SteamFriends017_IsFollowing_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamID; +}; + +struct ISteamFriends_SteamFriends017_EnumerateFollowingList_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t unStartIndex; +}; + +struct ISteamFriends_SteamFriends017_IsClanPublic_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends017_IsClanOfficialGameGroup_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDClan; +}; + +struct ISteamFriends_SteamFriends017_GetNumChatsWithUnreadPriorityMessages_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamFriends_SteamFriends017_ActivateGameOverlayRemotePlayTogetherInviteDialog_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; +}; + +struct ISteamFriends_SteamFriends017_RegisterProtocolInOverlayBrowser_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchProtocol; +}; + +struct ISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialogConnectString_params +{ + struct u_steam_iface *linux_side; + const char *pchConnectString; +}; + +struct ISteamFriends_SteamFriends017_RequestEquippedProfileItems_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamID; +}; + +struct ISteamFriends_SteamFriends017_BHasEquippedProfileItem_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamID; + uint32_t itemType; +}; + +struct ISteamFriends_SteamFriends017_GetProfileItemPropertyString_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamID; + uint32_t itemType; + uint32_t prop; +}; + +struct ISteamFriends_SteamFriends017_GetProfileItemPropertyUint_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamID; + uint32_t itemType; + uint32_t prop; +}; + +struct ISteamGameCoordinator_SteamGameCoordinator001_SendMessage_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t unMsgType; + const void *pubData; + uint32_t cubData; +}; + +struct ISteamGameCoordinator_SteamGameCoordinator001_IsMessageAvailable_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t *pcubMsgSize; +}; + +struct ISteamGameCoordinator_SteamGameCoordinator001_RetrieveMessage_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t *punMsgType; + void *pubDest; + uint32_t cubDest; + uint32_t *pcubMsgSize; +}; + +struct ISteamGameServer_SteamGameServer002_LogOn_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer002_LogOff_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer002_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamGameServer_SteamGameServer002_GSSetSpawnCount_params +{ + struct u_steam_iface *linux_side; + uint32_t ucSpawn; +}; + +struct ISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionKeyToSendToNewClient_params +{ + struct u_steam_iface *linux_side; + bool _ret; + void *pvEncryptionKey; + uint32_t *pcbEncryptionKey; + uint32_t cbMaxEncryptionKey; +}; + +struct ISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unUserID; + const void *pvRawKey; + uint32_t unKeyLen; + uint32_t unIPPublic; + uint16_t usPort; + const void *pvCookie; + uint32_t cubCookie; +}; + +struct ISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamID; + uint32_t unIPPublic; + const void *pvCookie; + uint32_t cubCookie; +}; + +struct ISteamGameServer_SteamGameServer002_GSRemoveUserConnect_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unUserID; +}; + +struct ISteamGameServer_SteamGameServer002_GSSendUserDisconnect_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamID; + uint32_t unUserID; +}; + +struct ISteamGameServer_SteamGameServer002_GSSendUserStatusResponse_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamID; + int32_t nSecondsConnected; + int32_t nSecondsSinceLast; +}; + +struct ISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus_params +{ + struct u_steam_iface *linux_side; + bool _ret; + 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_GSUpdateStatus_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t cPlayers; + int32_t cPlayersMax; + int32_t cBotPlayers; + const char *pchServerName; + const char *pchMapName; +}; + +struct ISteamGameServer_SteamGameServer002_BSecure_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamGameServer_SteamGameServer002_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamGameServer_SteamGameServer002_GSSetServerType_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t nGameAppId; + uint32_t unServerFlags; + uint32_t unGameIP; + uint32_t unGamePort; + const char *pchGameDir; + const char *pchVersion; +}; + +struct ISteamGameServer_SteamGameServer002_GSSetServerType2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t nGameAppId; + uint32_t unServerFlags; + uint32_t unGameIP; + uint16_t unGamePort; + uint16_t unSpectatorPort; + uint16_t usQueryPort; + const char *pchGameDir; + const char *pchVersion; + bool bLANMode; +}; + +struct ISteamGameServer_SteamGameServer002_GSUpdateStatus2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t cPlayers; + int32_t cPlayersMax; + int32_t cBotPlayers; + const char *pchServerName; + const char *pSpectatorServerName; + const char *pchMapName; +}; + +struct ISteamGameServer_SteamGameServer002_GSCreateUnauthenticatedUser_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID *pSteamID; +}; + +struct ISteamGameServer_SteamGameServer002_GSSetUserData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamID; + const char *pPlayerName; + uint32_t nFrags; +}; + +struct ISteamGameServer_SteamGameServer002_GSUpdateSpectatorPort_params +{ + struct u_steam_iface *linux_side; + uint16_t unSpectatorPort; +}; + +struct ISteamGameServer_SteamGameServer002_GSSetGameType_params +{ + struct u_steam_iface *linux_side; + const char *pchType; +}; + +struct ISteamGameServer_SteamGameServer003_LogOn_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer003_LogOff_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer003_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamGameServer_SteamGameServer003_BSecure_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamGameServer_SteamGameServer003_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionKeyToSendToNewClient_params +{ + struct u_steam_iface *linux_side; + bool _ret; + void *pvEncryptionKey; + uint32_t *pcbEncryptionKey; + uint32_t cbMaxEncryptionKey; +}; + +struct ISteamGameServer_SteamGameServer003_GSSendUserConnect_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unUserID; + uint32_t unIPPublic; + uint16_t usPort; + const void *pvCookie; + uint32_t cubCookie; +}; + +struct ISteamGameServer_SteamGameServer003_GSRemoveUserConnect_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unUserID; +}; + +struct ISteamGameServer_SteamGameServer003_GSSendUserDisconnect_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamID; + uint32_t unUserID; +}; + +struct ISteamGameServer_SteamGameServer003_GSSetSpawnCount_params +{ + struct u_steam_iface *linux_side; + uint32_t ucSpawn; +}; + +struct ISteamGameServer_SteamGameServer003_GSSetServerType_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t nGameAppId; + uint32_t unServerFlags; + uint32_t unGameIP; + uint16_t unGamePort; + uint16_t unSpectatorPort; + uint16_t usQueryPort; + const char *pchGameDir; + const char *pchVersion; + bool bLANMode; +}; + +struct ISteamGameServer_SteamGameServer003_GSUpdateStatus_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t cPlayers; + int32_t cPlayersMax; + int32_t cBotPlayers; + const char *pchServerName; + const char *pSpectatorServerName; + const char *pchMapName; +}; + +struct ISteamGameServer_SteamGameServer003_GSCreateUnauthenticatedUser_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID *pSteamID; +}; + +struct ISteamGameServer_SteamGameServer003_GSSetUserData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamID; + const char *pPlayerName; + uint32_t nFrags; +}; + +struct ISteamGameServer_SteamGameServer003_GSUpdateSpectatorPort_params +{ + struct u_steam_iface *linux_side; + uint16_t unSpectatorPort; +}; + +struct ISteamGameServer_SteamGameServer003_GSSetGameType_params +{ + struct u_steam_iface *linux_side; + const char *pchType; +}; + +struct ISteamGameServer_SteamGameServer003_GSGetUserAchievementStatus_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamID; + const char *pchAchievementName; +}; + +struct ISteamGameServer_SteamGameServer004_LogOn_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer004_LogOff_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer004_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamGameServer_SteamGameServer004_BSecure_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamGameServer_SteamGameServer004_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamGameServer_SteamGameServer004_SendUserConnectAndAuthenticate_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUser; + uint32_t unIPClient; + void *pvAuthBlob; + uint32_t cubAuthBlobSize; +}; + +struct ISteamGameServer_SteamGameServer004_CreateUnauthenticatedUserConnection_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamGameServer_SteamGameServer004_SendUserDisconnect_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUser; +}; + +struct ISteamGameServer_SteamGameServer004_BUpdateUserData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchPlayerName; + uint32_t uScore; +}; + +struct ISteamGameServer_SteamGameServer004_BSetServerType_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t nGameAppId; + uint32_t unServerFlags; + uint32_t unGameIP; + uint16_t unGamePort; + uint16_t unSpectatorPort; + uint16_t usQueryPort; + const char *pchGameDir; + const char *pchVersion; + bool bLANMode; +}; + +struct ISteamGameServer_SteamGameServer004_UpdateServerStatus_params +{ + struct u_steam_iface *linux_side; + int32_t cPlayers; + int32_t cPlayersMax; + int32_t cBotPlayers; + const char *pchServerName; + const char *pSpectatorServerName; + const char *pchMapName; +}; + +struct ISteamGameServer_SteamGameServer004_UpdateSpectatorPort_params +{ + struct u_steam_iface *linux_side; + uint16_t unSpectatorPort; +}; + +struct ISteamGameServer_SteamGameServer004_SetGameType_params +{ + struct u_steam_iface *linux_side; + const char *pchGameType; +}; + +struct ISteamGameServer_SteamGameServer004_BGetUserAchievementStatus_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamID; + const char *pchAchievementName; +}; + +struct ISteamGameServer_SteamGameServer005_LogOn_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer005_LogOff_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer005_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamGameServer_SteamGameServer005_BSecure_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamGameServer_SteamGameServer005_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamGameServer_SteamGameServer005_SendUserConnectAndAuthenticate_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unIPClient; + const void *pvAuthBlob; + uint32_t cubAuthBlobSize; + CSteamID *pSteamIDUser; +}; + +struct ISteamGameServer_SteamGameServer005_CreateUnauthenticatedUserConnection_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamGameServer_SteamGameServer005_SendUserDisconnect_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUser; +}; + +struct ISteamGameServer_SteamGameServer005_BUpdateUserData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchPlayerName; + uint32_t uScore; +}; + +struct ISteamGameServer_SteamGameServer005_BSetServerType_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unServerFlags; + uint32_t unGameIP; + uint16_t unGamePort; + uint16_t unSpectatorPort; + uint16_t usQueryPort; + const char *pchGameDir; + const char *pchVersion; + bool bLANMode; +}; + +struct ISteamGameServer_SteamGameServer005_UpdateServerStatus_params +{ + struct u_steam_iface *linux_side; + int32_t cPlayers; + int32_t cPlayersMax; + int32_t cBotPlayers; + const char *pchServerName; + const char *pSpectatorServerName; + const char *pchMapName; +}; + +struct ISteamGameServer_SteamGameServer005_UpdateSpectatorPort_params +{ + struct u_steam_iface *linux_side; + uint16_t unSpectatorPort; +}; + +struct ISteamGameServer_SteamGameServer005_SetGameType_params +{ + struct u_steam_iface *linux_side; + const char *pchGameType; +}; + +struct ISteamGameServer_SteamGameServer005_BGetUserAchievementStatus_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamID; + const char *pchAchievementName; +}; + +struct ISteamGameServer_SteamGameServer008_LogOn_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer008_LogOff_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer008_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamGameServer_SteamGameServer008_BSecure_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamGameServer_SteamGameServer008_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamGameServer_SteamGameServer008_SendUserConnectAndAuthenticate_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unIPClient; + const void *pvAuthBlob; + uint32_t cubAuthBlobSize; + CSteamID *pSteamIDUser; +}; + +struct ISteamGameServer_SteamGameServer008_CreateUnauthenticatedUserConnection_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamGameServer_SteamGameServer008_SendUserDisconnect_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUser; +}; + +struct ISteamGameServer_SteamGameServer008_BUpdateUserData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchPlayerName; + uint32_t uScore; +}; + +struct ISteamGameServer_SteamGameServer008_BSetServerType_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unServerFlags; + uint32_t unGameIP; + uint16_t unGamePort; + uint16_t unSpectatorPort; + uint16_t usQueryPort; + const char *pchGameDir; + const char *pchVersion; + bool bLANMode; +}; + +struct ISteamGameServer_SteamGameServer008_UpdateServerStatus_params +{ + struct u_steam_iface *linux_side; + int32_t cPlayers; + int32_t cPlayersMax; + int32_t cBotPlayers; + const char *pchServerName; + const char *pSpectatorServerName; + const char *pchMapName; +}; + +struct ISteamGameServer_SteamGameServer008_UpdateSpectatorPort_params +{ + struct u_steam_iface *linux_side; + uint16_t unSpectatorPort; +}; + +struct ISteamGameServer_SteamGameServer008_SetGameType_params +{ + struct u_steam_iface *linux_side; + const char *pchGameType; +}; + +struct ISteamGameServer_SteamGameServer008_BGetUserAchievementStatus_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamID; + const char *pchAchievementName; +}; + +struct ISteamGameServer_SteamGameServer008_GetGameplayStats_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer008_RequestUserGroupStatus_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + CSteamID steamIDGroup; +}; + +struct ISteamGameServer_SteamGameServer008_GetPublicIP_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamGameServer_SteamGameServer009_LogOn_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer009_LogOff_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer009_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamGameServer_SteamGameServer009_BSecure_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamGameServer_SteamGameServer009_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamGameServer_SteamGameServer009_SendUserConnectAndAuthenticate_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unIPClient; + const void *pvAuthBlob; + uint32_t cubAuthBlobSize; + CSteamID *pSteamIDUser; +}; + +struct ISteamGameServer_SteamGameServer009_CreateUnauthenticatedUserConnection_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamGameServer_SteamGameServer009_SendUserDisconnect_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUser; +}; + +struct ISteamGameServer_SteamGameServer009_BUpdateUserData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchPlayerName; + uint32_t uScore; +}; + +struct ISteamGameServer_SteamGameServer009_BSetServerType_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unServerFlags; + uint32_t unGameIP; + uint16_t unGamePort; + uint16_t unSpectatorPort; + uint16_t usQueryPort; + const char *pchGameDir; + const char *pchVersion; + bool bLANMode; +}; + +struct ISteamGameServer_SteamGameServer009_UpdateServerStatus_params +{ + struct u_steam_iface *linux_side; + int32_t cPlayers; + int32_t cPlayersMax; + int32_t cBotPlayers; + const char *pchServerName; + const char *pSpectatorServerName; + const char *pchMapName; +}; + +struct ISteamGameServer_SteamGameServer009_UpdateSpectatorPort_params +{ + struct u_steam_iface *linux_side; + uint16_t unSpectatorPort; +}; + +struct ISteamGameServer_SteamGameServer009_SetGameType_params +{ + struct u_steam_iface *linux_side; + const char *pchGameType; +}; + +struct ISteamGameServer_SteamGameServer009_BGetUserAchievementStatus_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamID; + const char *pchAchievementName; +}; + +struct ISteamGameServer_SteamGameServer009_GetGameplayStats_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer009_RequestUserGroupStatus_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + CSteamID steamIDGroup; +}; + +struct ISteamGameServer_SteamGameServer009_GetPublicIP_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamGameServer_SteamGameServer009_SetGameData_params +{ + struct u_steam_iface *linux_side; + const char *pchGameData; +}; + +struct ISteamGameServer_SteamGameServer009_UserHasLicenseForApp_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamID; + uint32_t appID; +}; + +struct ISteamGameServer_SteamGameServer010_LogOn_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer010_LogOff_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer010_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamGameServer_SteamGameServer010_BSecure_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamGameServer_SteamGameServer010_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamGameServer_SteamGameServer010_SendUserConnectAndAuthenticate_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unIPClient; + const void *pvAuthBlob; + uint32_t cubAuthBlobSize; + CSteamID *pSteamIDUser; +}; + +struct ISteamGameServer_SteamGameServer010_CreateUnauthenticatedUserConnection_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamGameServer_SteamGameServer010_SendUserDisconnect_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUser; +}; + +struct ISteamGameServer_SteamGameServer010_BUpdateUserData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchPlayerName; + uint32_t uScore; +}; + +struct ISteamGameServer_SteamGameServer010_BSetServerType_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unServerFlags; + uint32_t unGameIP; + uint16_t unGamePort; + uint16_t unSpectatorPort; + uint16_t usQueryPort; + const char *pchGameDir; + const char *pchVersion; + bool bLANMode; +}; + +struct ISteamGameServer_SteamGameServer010_UpdateServerStatus_params +{ + struct u_steam_iface *linux_side; + int32_t cPlayers; + int32_t cPlayersMax; + int32_t cBotPlayers; + const char *pchServerName; + const char *pSpectatorServerName; + const char *pchMapName; +}; + +struct ISteamGameServer_SteamGameServer010_UpdateSpectatorPort_params +{ + struct u_steam_iface *linux_side; + uint16_t unSpectatorPort; +}; + +struct ISteamGameServer_SteamGameServer010_SetGameTags_params +{ + struct u_steam_iface *linux_side; + const char *pchGameTags; +}; + +struct ISteamGameServer_SteamGameServer010_GetGameplayStats_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer010_GetServerReputation_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamGameServer_SteamGameServer010_RequestUserGroupStatus_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + CSteamID steamIDGroup; +}; + +struct ISteamGameServer_SteamGameServer010_GetPublicIP_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamGameServer_SteamGameServer010_SetGameData_params +{ + struct u_steam_iface *linux_side; + const char *pchGameData; +}; + +struct ISteamGameServer_SteamGameServer010_UserHasLicenseForApp_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamID; + uint32_t appID; +}; + +struct ISteamGameServer_SteamGameServer010_GetAuthSessionTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + void *pTicket; + int32_t cbMaxTicket; + uint32_t *pcbTicket; +}; + +struct ISteamGameServer_SteamGameServer010_BeginAuthSession_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const void *pAuthTicket; + int32_t cbAuthTicket; + CSteamID steamID; +}; + +struct ISteamGameServer_SteamGameServer010_EndAuthSession_params +{ + struct u_steam_iface *linux_side; + CSteamID steamID; +}; + +struct ISteamGameServer_SteamGameServer010_CancelAuthTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t hAuthTicket; +}; + +struct ISteamGameServer_SteamGameServer011_InitGameServer_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unIP; + uint16_t usGamePort; + uint16_t usQueryPort; + uint32_t unFlags; + uint32_t nGameAppId; + const char *pchVersionString; +}; + +struct ISteamGameServer_SteamGameServer011_SetProduct_params +{ + struct u_steam_iface *linux_side; + const char *pszProduct; +}; + +struct ISteamGameServer_SteamGameServer011_SetGameDescription_params +{ + struct u_steam_iface *linux_side; + const char *pszGameDescription; +}; + +struct ISteamGameServer_SteamGameServer011_SetModDir_params +{ + struct u_steam_iface *linux_side; + const char *pszModDir; +}; + +struct ISteamGameServer_SteamGameServer011_SetDedicatedServer_params +{ + struct u_steam_iface *linux_side; + bool bDedicated; +}; + +struct ISteamGameServer_SteamGameServer011_LogOn_params +{ + struct u_steam_iface *linux_side; + const char *pszAccountName; + const char *pszPassword; +}; + +struct ISteamGameServer_SteamGameServer011_LogOnAnonymous_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer011_LogOff_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer011_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamGameServer_SteamGameServer011_BSecure_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamGameServer_SteamGameServer011_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamGameServer_SteamGameServer011_WasRestartRequested_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamGameServer_SteamGameServer011_SetMaxPlayerCount_params +{ + struct u_steam_iface *linux_side; + int32_t cPlayersMax; +}; + +struct ISteamGameServer_SteamGameServer011_SetBotPlayerCount_params +{ + struct u_steam_iface *linux_side; + int32_t cBotplayers; +}; + +struct ISteamGameServer_SteamGameServer011_SetServerName_params +{ + struct u_steam_iface *linux_side; + const char *pszServerName; +}; + +struct ISteamGameServer_SteamGameServer011_SetMapName_params +{ + struct u_steam_iface *linux_side; + const char *pszMapName; +}; + +struct ISteamGameServer_SteamGameServer011_SetPasswordProtected_params +{ + struct u_steam_iface *linux_side; + bool bPasswordProtected; +}; + +struct ISteamGameServer_SteamGameServer011_SetSpectatorPort_params +{ + struct u_steam_iface *linux_side; + uint16_t unSpectatorPort; +}; + +struct ISteamGameServer_SteamGameServer011_SetSpectatorServerName_params +{ + struct u_steam_iface *linux_side; + const char *pszSpectatorServerName; +}; + +struct ISteamGameServer_SteamGameServer011_ClearAllKeyValues_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer011_SetKeyValue_params +{ + struct u_steam_iface *linux_side; + const char *pKey; + const char *pValue; +}; + +struct ISteamGameServer_SteamGameServer011_SetGameTags_params +{ + struct u_steam_iface *linux_side; + const char *pchGameTags; +}; + +struct ISteamGameServer_SteamGameServer011_SetGameData_params +{ + struct u_steam_iface *linux_side; + const char *pchGameData; +}; + +struct ISteamGameServer_SteamGameServer011_SetRegion_params +{ + struct u_steam_iface *linux_side; + const char *pszRegion; +}; + +struct ISteamGameServer_SteamGameServer011_SendUserConnectAndAuthenticate_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unIPClient; + const void *pvAuthBlob; + uint32_t cubAuthBlobSize; + CSteamID *pSteamIDUser; +}; + +struct ISteamGameServer_SteamGameServer011_CreateUnauthenticatedUserConnection_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamGameServer_SteamGameServer011_SendUserDisconnect_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUser; +}; + +struct ISteamGameServer_SteamGameServer011_BUpdateUserData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchPlayerName; + uint32_t uScore; +}; + +struct ISteamGameServer_SteamGameServer011_GetAuthSessionTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + void *pTicket; + int32_t cbMaxTicket; + uint32_t *pcbTicket; +}; + +struct ISteamGameServer_SteamGameServer011_BeginAuthSession_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const void *pAuthTicket; + int32_t cbAuthTicket; + CSteamID steamID; +}; + +struct ISteamGameServer_SteamGameServer011_EndAuthSession_params +{ + struct u_steam_iface *linux_side; + CSteamID steamID; +}; + +struct ISteamGameServer_SteamGameServer011_CancelAuthTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t hAuthTicket; +}; + +struct ISteamGameServer_SteamGameServer011_UserHasLicenseForApp_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamID; + uint32_t appID; +}; + +struct ISteamGameServer_SteamGameServer011_RequestUserGroupStatus_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + CSteamID steamIDGroup; +}; + +struct ISteamGameServer_SteamGameServer011_GetGameplayStats_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer011_GetServerReputation_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamGameServer_SteamGameServer011_GetPublicIP_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamGameServer_SteamGameServer011_HandleIncomingPacket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const void *pData; + int32_t cbData; + uint32_t srcIP; + uint16_t srcPort; +}; + +struct ISteamGameServer_SteamGameServer011_GetNextOutgoingPacket_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + void *pOut; + int32_t cbMaxOut; + uint32_t *pNetAdr; + uint16_t *pPort; +}; + +struct ISteamGameServer_SteamGameServer011_EnableHeartbeats_params +{ + struct u_steam_iface *linux_side; + bool bActive; +}; + +struct ISteamGameServer_SteamGameServer011_SetHeartbeatInterval_params +{ + struct u_steam_iface *linux_side; + int32_t iHeartbeatInterval; +}; + +struct ISteamGameServer_SteamGameServer011_ForceHeartbeat_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer011_AssociateWithClan_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamGameServer_SteamGameServer011_ComputeNewPlayerCompatibility_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDNewPlayer; +}; + +struct ISteamGameServer_SteamGameServer012_InitGameServer_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unIP; + uint16_t usGamePort; + uint16_t usQueryPort; + uint32_t unFlags; + uint32_t nGameAppId; + const char *pchVersionString; +}; + +struct ISteamGameServer_SteamGameServer012_SetProduct_params +{ + struct u_steam_iface *linux_side; + const char *pszProduct; +}; + +struct ISteamGameServer_SteamGameServer012_SetGameDescription_params +{ + struct u_steam_iface *linux_side; + const char *pszGameDescription; +}; + +struct ISteamGameServer_SteamGameServer012_SetModDir_params +{ + struct u_steam_iface *linux_side; + const char *pszModDir; +}; + +struct ISteamGameServer_SteamGameServer012_SetDedicatedServer_params +{ + struct u_steam_iface *linux_side; + bool bDedicated; +}; + +struct ISteamGameServer_SteamGameServer012_LogOn_params +{ + struct u_steam_iface *linux_side; + const char *pszToken; +}; + +struct ISteamGameServer_SteamGameServer012_LogOnAnonymous_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer012_LogOff_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer012_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamGameServer_SteamGameServer012_BSecure_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamGameServer_SteamGameServer012_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamGameServer_SteamGameServer012_WasRestartRequested_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamGameServer_SteamGameServer012_SetMaxPlayerCount_params +{ + struct u_steam_iface *linux_side; + int32_t cPlayersMax; +}; + +struct ISteamGameServer_SteamGameServer012_SetBotPlayerCount_params +{ + struct u_steam_iface *linux_side; + int32_t cBotplayers; +}; + +struct ISteamGameServer_SteamGameServer012_SetServerName_params +{ + struct u_steam_iface *linux_side; + const char *pszServerName; +}; + +struct ISteamGameServer_SteamGameServer012_SetMapName_params +{ + struct u_steam_iface *linux_side; + const char *pszMapName; +}; + +struct ISteamGameServer_SteamGameServer012_SetPasswordProtected_params +{ + struct u_steam_iface *linux_side; + bool bPasswordProtected; +}; + +struct ISteamGameServer_SteamGameServer012_SetSpectatorPort_params +{ + struct u_steam_iface *linux_side; + uint16_t unSpectatorPort; +}; + +struct ISteamGameServer_SteamGameServer012_SetSpectatorServerName_params +{ + struct u_steam_iface *linux_side; + const char *pszSpectatorServerName; +}; + +struct ISteamGameServer_SteamGameServer012_ClearAllKeyValues_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer012_SetKeyValue_params +{ + struct u_steam_iface *linux_side; + const char *pKey; + const char *pValue; +}; + +struct ISteamGameServer_SteamGameServer012_SetGameTags_params +{ + struct u_steam_iface *linux_side; + const char *pchGameTags; +}; + +struct ISteamGameServer_SteamGameServer012_SetGameData_params +{ + struct u_steam_iface *linux_side; + const char *pchGameData; +}; + +struct ISteamGameServer_SteamGameServer012_SetRegion_params +{ + struct u_steam_iface *linux_side; + const char *pszRegion; +}; + +struct ISteamGameServer_SteamGameServer012_SendUserConnectAndAuthenticate_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unIPClient; + const void *pvAuthBlob; + uint32_t cubAuthBlobSize; + CSteamID *pSteamIDUser; +}; + +struct ISteamGameServer_SteamGameServer012_CreateUnauthenticatedUserConnection_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamGameServer_SteamGameServer012_SendUserDisconnect_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUser; +}; + +struct ISteamGameServer_SteamGameServer012_BUpdateUserData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchPlayerName; + uint32_t uScore; +}; + +struct ISteamGameServer_SteamGameServer012_GetAuthSessionTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + void *pTicket; + int32_t cbMaxTicket; + uint32_t *pcbTicket; +}; + +struct ISteamGameServer_SteamGameServer012_BeginAuthSession_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const void *pAuthTicket; + int32_t cbAuthTicket; + CSteamID steamID; +}; + +struct ISteamGameServer_SteamGameServer012_EndAuthSession_params +{ + struct u_steam_iface *linux_side; + CSteamID steamID; +}; + +struct ISteamGameServer_SteamGameServer012_CancelAuthTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t hAuthTicket; +}; + +struct ISteamGameServer_SteamGameServer012_UserHasLicenseForApp_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamID; + uint32_t appID; +}; + +struct ISteamGameServer_SteamGameServer012_RequestUserGroupStatus_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + CSteamID steamIDGroup; +}; + +struct ISteamGameServer_SteamGameServer012_GetGameplayStats_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer012_GetServerReputation_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamGameServer_SteamGameServer012_GetPublicIP_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamGameServer_SteamGameServer012_HandleIncomingPacket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const void *pData; + int32_t cbData; + uint32_t srcIP; + uint16_t srcPort; +}; + +struct ISteamGameServer_SteamGameServer012_GetNextOutgoingPacket_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + void *pOut; + int32_t cbMaxOut; + uint32_t *pNetAdr; + uint16_t *pPort; +}; + +struct ISteamGameServer_SteamGameServer012_EnableHeartbeats_params +{ + struct u_steam_iface *linux_side; + bool bActive; +}; + +struct ISteamGameServer_SteamGameServer012_SetHeartbeatInterval_params +{ + struct u_steam_iface *linux_side; + int32_t iHeartbeatInterval; +}; + +struct ISteamGameServer_SteamGameServer012_ForceHeartbeat_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer012_AssociateWithClan_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamGameServer_SteamGameServer012_ComputeNewPlayerCompatibility_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDNewPlayer; +}; + +struct ISteamGameServer_SteamGameServer013_InitGameServer_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unIP; + uint16_t usGamePort; + uint16_t usQueryPort; + uint32_t unFlags; + uint32_t nGameAppId; + const char *pchVersionString; +}; + +struct ISteamGameServer_SteamGameServer013_SetProduct_params +{ + struct u_steam_iface *linux_side; + const char *pszProduct; +}; + +struct ISteamGameServer_SteamGameServer013_SetGameDescription_params +{ + struct u_steam_iface *linux_side; + const char *pszGameDescription; +}; + +struct ISteamGameServer_SteamGameServer013_SetModDir_params +{ + struct u_steam_iface *linux_side; + const char *pszModDir; +}; + +struct ISteamGameServer_SteamGameServer013_SetDedicatedServer_params +{ + struct u_steam_iface *linux_side; + bool bDedicated; +}; + +struct ISteamGameServer_SteamGameServer013_LogOn_params +{ + struct u_steam_iface *linux_side; + const char *pszToken; +}; + +struct ISteamGameServer_SteamGameServer013_LogOnAnonymous_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer013_LogOff_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer013_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamGameServer_SteamGameServer013_BSecure_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamGameServer_SteamGameServer013_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamGameServer_SteamGameServer013_WasRestartRequested_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamGameServer_SteamGameServer013_SetMaxPlayerCount_params +{ + struct u_steam_iface *linux_side; + int32_t cPlayersMax; +}; + +struct ISteamGameServer_SteamGameServer013_SetBotPlayerCount_params +{ + struct u_steam_iface *linux_side; + int32_t cBotplayers; +}; + +struct ISteamGameServer_SteamGameServer013_SetServerName_params +{ + struct u_steam_iface *linux_side; + const char *pszServerName; +}; + +struct ISteamGameServer_SteamGameServer013_SetMapName_params +{ + struct u_steam_iface *linux_side; + const char *pszMapName; +}; + +struct ISteamGameServer_SteamGameServer013_SetPasswordProtected_params +{ + struct u_steam_iface *linux_side; + bool bPasswordProtected; +}; + +struct ISteamGameServer_SteamGameServer013_SetSpectatorPort_params +{ + struct u_steam_iface *linux_side; + uint16_t unSpectatorPort; +}; + +struct ISteamGameServer_SteamGameServer013_SetSpectatorServerName_params +{ + struct u_steam_iface *linux_side; + const char *pszSpectatorServerName; +}; + +struct ISteamGameServer_SteamGameServer013_ClearAllKeyValues_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer013_SetKeyValue_params +{ + struct u_steam_iface *linux_side; + const char *pKey; + const char *pValue; +}; + +struct ISteamGameServer_SteamGameServer013_SetGameTags_params +{ + struct u_steam_iface *linux_side; + const char *pchGameTags; +}; + +struct ISteamGameServer_SteamGameServer013_SetGameData_params +{ + struct u_steam_iface *linux_side; + const char *pchGameData; +}; + +struct ISteamGameServer_SteamGameServer013_SetRegion_params +{ + struct u_steam_iface *linux_side; + const char *pszRegion; +}; + +struct ISteamGameServer_SteamGameServer013_SendUserConnectAndAuthenticate_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unIPClient; + const void *pvAuthBlob; + uint32_t cubAuthBlobSize; + CSteamID *pSteamIDUser; +}; + +struct ISteamGameServer_SteamGameServer013_CreateUnauthenticatedUserConnection_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamGameServer_SteamGameServer013_SendUserDisconnect_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUser; +}; + +struct ISteamGameServer_SteamGameServer013_BUpdateUserData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchPlayerName; + uint32_t uScore; +}; + +struct ISteamGameServer_SteamGameServer013_GetAuthSessionTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + void *pTicket; + int32_t cbMaxTicket; + uint32_t *pcbTicket; +}; + +struct ISteamGameServer_SteamGameServer013_BeginAuthSession_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const void *pAuthTicket; + int32_t cbAuthTicket; + CSteamID steamID; +}; + +struct ISteamGameServer_SteamGameServer013_EndAuthSession_params +{ + struct u_steam_iface *linux_side; + CSteamID steamID; +}; + +struct ISteamGameServer_SteamGameServer013_CancelAuthTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t hAuthTicket; +}; + +struct ISteamGameServer_SteamGameServer013_UserHasLicenseForApp_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamID; + uint32_t appID; +}; + +struct ISteamGameServer_SteamGameServer013_RequestUserGroupStatus_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + CSteamID steamIDGroup; +}; + +struct ISteamGameServer_SteamGameServer013_GetGameplayStats_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer013_GetServerReputation_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamGameServer_SteamGameServer013_GetPublicIP_params +{ + struct u_steam_iface *linux_side; + SteamIPAddress_t *_ret; +}; + +struct ISteamGameServer_SteamGameServer013_HandleIncomingPacket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const void *pData; + int32_t cbData; + uint32_t srcIP; + uint16_t srcPort; +}; + +struct ISteamGameServer_SteamGameServer013_GetNextOutgoingPacket_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + void *pOut; + int32_t cbMaxOut; + uint32_t *pNetAdr; + uint16_t *pPort; +}; + +struct ISteamGameServer_SteamGameServer013_EnableHeartbeats_params +{ + struct u_steam_iface *linux_side; + bool bActive; +}; + +struct ISteamGameServer_SteamGameServer013_SetHeartbeatInterval_params +{ + struct u_steam_iface *linux_side; + int32_t iHeartbeatInterval; +}; + +struct ISteamGameServer_SteamGameServer013_ForceHeartbeat_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer013_AssociateWithClan_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamGameServer_SteamGameServer013_ComputeNewPlayerCompatibility_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDNewPlayer; +}; + +struct ISteamGameServer_SteamGameServer014_InitGameServer_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unIP; + uint16_t usGamePort; + uint16_t usQueryPort; + uint32_t unFlags; + uint32_t nGameAppId; + const char *pchVersionString; +}; + +struct ISteamGameServer_SteamGameServer014_SetProduct_params +{ + struct u_steam_iface *linux_side; + const char *pszProduct; +}; + +struct ISteamGameServer_SteamGameServer014_SetGameDescription_params +{ + struct u_steam_iface *linux_side; + const char *pszGameDescription; +}; + +struct ISteamGameServer_SteamGameServer014_SetModDir_params +{ + struct u_steam_iface *linux_side; + const char *pszModDir; +}; + +struct ISteamGameServer_SteamGameServer014_SetDedicatedServer_params +{ + struct u_steam_iface *linux_side; + bool bDedicated; +}; + +struct ISteamGameServer_SteamGameServer014_LogOn_params +{ + struct u_steam_iface *linux_side; + const char *pszToken; +}; + +struct ISteamGameServer_SteamGameServer014_LogOnAnonymous_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer014_LogOff_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer014_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamGameServer_SteamGameServer014_BSecure_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamGameServer_SteamGameServer014_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamGameServer_SteamGameServer014_WasRestartRequested_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamGameServer_SteamGameServer014_SetMaxPlayerCount_params +{ + struct u_steam_iface *linux_side; + int32_t cPlayersMax; +}; + +struct ISteamGameServer_SteamGameServer014_SetBotPlayerCount_params +{ + struct u_steam_iface *linux_side; + int32_t cBotplayers; +}; + +struct ISteamGameServer_SteamGameServer014_SetServerName_params +{ + struct u_steam_iface *linux_side; + const char *pszServerName; +}; + +struct ISteamGameServer_SteamGameServer014_SetMapName_params +{ + struct u_steam_iface *linux_side; + const char *pszMapName; +}; + +struct ISteamGameServer_SteamGameServer014_SetPasswordProtected_params +{ + struct u_steam_iface *linux_side; + bool bPasswordProtected; +}; + +struct ISteamGameServer_SteamGameServer014_SetSpectatorPort_params +{ + struct u_steam_iface *linux_side; + uint16_t unSpectatorPort; +}; + +struct ISteamGameServer_SteamGameServer014_SetSpectatorServerName_params +{ + struct u_steam_iface *linux_side; + const char *pszSpectatorServerName; +}; + +struct ISteamGameServer_SteamGameServer014_ClearAllKeyValues_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer014_SetKeyValue_params +{ + struct u_steam_iface *linux_side; + const char *pKey; + const char *pValue; +}; + +struct ISteamGameServer_SteamGameServer014_SetGameTags_params +{ + struct u_steam_iface *linux_side; + const char *pchGameTags; +}; + +struct ISteamGameServer_SteamGameServer014_SetGameData_params +{ + struct u_steam_iface *linux_side; + const char *pchGameData; +}; + +struct ISteamGameServer_SteamGameServer014_SetRegion_params +{ + struct u_steam_iface *linux_side; + const char *pszRegion; +}; + +struct ISteamGameServer_SteamGameServer014_SetAdvertiseServerActive_params +{ + struct u_steam_iface *linux_side; + bool bActive; +}; + +struct ISteamGameServer_SteamGameServer014_GetAuthSessionTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + void *pTicket; + int32_t cbMaxTicket; + uint32_t *pcbTicket; +}; + +struct ISteamGameServer_SteamGameServer014_BeginAuthSession_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const void *pAuthTicket; + int32_t cbAuthTicket; + CSteamID steamID; +}; + +struct ISteamGameServer_SteamGameServer014_EndAuthSession_params +{ + struct u_steam_iface *linux_side; + CSteamID steamID; +}; + +struct ISteamGameServer_SteamGameServer014_CancelAuthTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t hAuthTicket; +}; + +struct ISteamGameServer_SteamGameServer014_UserHasLicenseForApp_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamID; + uint32_t appID; +}; + +struct ISteamGameServer_SteamGameServer014_RequestUserGroupStatus_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + CSteamID steamIDGroup; +}; + +struct ISteamGameServer_SteamGameServer014_GetGameplayStats_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer014_GetServerReputation_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamGameServer_SteamGameServer014_GetPublicIP_params +{ + struct u_steam_iface *linux_side; + SteamIPAddress_t *_ret; +}; + +struct ISteamGameServer_SteamGameServer014_HandleIncomingPacket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const void *pData; + int32_t cbData; + uint32_t srcIP; + uint16_t srcPort; +}; + +struct ISteamGameServer_SteamGameServer014_GetNextOutgoingPacket_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + void *pOut; + int32_t cbMaxOut; + uint32_t *pNetAdr; + uint16_t *pPort; +}; + +struct ISteamGameServer_SteamGameServer014_AssociateWithClan_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamGameServer_SteamGameServer014_ComputeNewPlayerCompatibility_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDNewPlayer; +}; + +struct ISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEPRECATED_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unIPClient; + const void *pvAuthBlob; + uint32_t cubAuthBlobSize; + CSteamID *pSteamIDUser; +}; + +struct ISteamGameServer_SteamGameServer014_CreateUnauthenticatedUserConnection_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamGameServer_SteamGameServer014_SendUserDisconnect_DEPRECATED_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUser; +}; + +struct ISteamGameServer_SteamGameServer014_BUpdateUserData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchPlayerName; + uint32_t uScore; +}; + +struct ISteamGameServer_SteamGameServer014_SetMasterServerHeartbeatInterval_DEPRECATED_params +{ + struct u_steam_iface *linux_side; + int32_t iHeartbeatInterval; +}; + +struct ISteamGameServer_SteamGameServer014_ForceMasterServerHeartbeat_DEPRECATED_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer015_InitGameServer_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unIP; + uint16_t usGamePort; + uint16_t usQueryPort; + uint32_t unFlags; + uint32_t nGameAppId; + const char *pchVersionString; +}; + +struct ISteamGameServer_SteamGameServer015_SetProduct_params +{ + struct u_steam_iface *linux_side; + const char *pszProduct; +}; + +struct ISteamGameServer_SteamGameServer015_SetGameDescription_params +{ + struct u_steam_iface *linux_side; + const char *pszGameDescription; +}; + +struct ISteamGameServer_SteamGameServer015_SetModDir_params +{ + struct u_steam_iface *linux_side; + const char *pszModDir; +}; + +struct ISteamGameServer_SteamGameServer015_SetDedicatedServer_params +{ + struct u_steam_iface *linux_side; + bool bDedicated; +}; + +struct ISteamGameServer_SteamGameServer015_LogOn_params +{ + struct u_steam_iface *linux_side; + const char *pszToken; +}; + +struct ISteamGameServer_SteamGameServer015_LogOnAnonymous_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer015_LogOff_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer015_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamGameServer_SteamGameServer015_BSecure_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamGameServer_SteamGameServer015_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamGameServer_SteamGameServer015_WasRestartRequested_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamGameServer_SteamGameServer015_SetMaxPlayerCount_params +{ + struct u_steam_iface *linux_side; + int32_t cPlayersMax; +}; + +struct ISteamGameServer_SteamGameServer015_SetBotPlayerCount_params +{ + struct u_steam_iface *linux_side; + int32_t cBotplayers; +}; + +struct ISteamGameServer_SteamGameServer015_SetServerName_params +{ + struct u_steam_iface *linux_side; + const char *pszServerName; +}; + +struct ISteamGameServer_SteamGameServer015_SetMapName_params +{ + struct u_steam_iface *linux_side; + const char *pszMapName; +}; + +struct ISteamGameServer_SteamGameServer015_SetPasswordProtected_params +{ + struct u_steam_iface *linux_side; + bool bPasswordProtected; +}; + +struct ISteamGameServer_SteamGameServer015_SetSpectatorPort_params +{ + struct u_steam_iface *linux_side; + uint16_t unSpectatorPort; +}; + +struct ISteamGameServer_SteamGameServer015_SetSpectatorServerName_params +{ + struct u_steam_iface *linux_side; + const char *pszSpectatorServerName; +}; + +struct ISteamGameServer_SteamGameServer015_ClearAllKeyValues_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer015_SetKeyValue_params +{ + struct u_steam_iface *linux_side; + const char *pKey; + const char *pValue; +}; + +struct ISteamGameServer_SteamGameServer015_SetGameTags_params +{ + struct u_steam_iface *linux_side; + const char *pchGameTags; +}; + +struct ISteamGameServer_SteamGameServer015_SetGameData_params +{ + struct u_steam_iface *linux_side; + const char *pchGameData; +}; + +struct ISteamGameServer_SteamGameServer015_SetRegion_params +{ + struct u_steam_iface *linux_side; + const char *pszRegion; +}; + +struct ISteamGameServer_SteamGameServer015_SetAdvertiseServerActive_params +{ + struct u_steam_iface *linux_side; + bool bActive; +}; + +struct ISteamGameServer_SteamGameServer015_GetAuthSessionTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + void *pTicket; + int32_t cbMaxTicket; + uint32_t *pcbTicket; + const SteamNetworkingIdentity_144 *pSnid; +}; + +struct ISteamGameServer_SteamGameServer015_BeginAuthSession_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const void *pAuthTicket; + int32_t cbAuthTicket; + CSteamID steamID; +}; + +struct ISteamGameServer_SteamGameServer015_EndAuthSession_params +{ + struct u_steam_iface *linux_side; + CSteamID steamID; +}; + +struct ISteamGameServer_SteamGameServer015_CancelAuthTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t hAuthTicket; +}; + +struct ISteamGameServer_SteamGameServer015_UserHasLicenseForApp_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamID; + uint32_t appID; +}; + +struct ISteamGameServer_SteamGameServer015_RequestUserGroupStatus_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + CSteamID steamIDGroup; +}; + +struct ISteamGameServer_SteamGameServer015_GetGameplayStats_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServer_SteamGameServer015_GetServerReputation_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamGameServer_SteamGameServer015_GetPublicIP_params +{ + struct u_steam_iface *linux_side; + SteamIPAddress_t *_ret; +}; + +struct ISteamGameServer_SteamGameServer015_HandleIncomingPacket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const void *pData; + int32_t cbData; + uint32_t srcIP; + uint16_t srcPort; +}; + +struct ISteamGameServer_SteamGameServer015_GetNextOutgoingPacket_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + void *pOut; + int32_t cbMaxOut; + uint32_t *pNetAdr; + uint16_t *pPort; +}; + +struct ISteamGameServer_SteamGameServer015_AssociateWithClan_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDClan; +}; + +struct ISteamGameServer_SteamGameServer015_ComputeNewPlayerCompatibility_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDNewPlayer; +}; + +struct ISteamGameServer_SteamGameServer015_SendUserConnectAndAuthenticate_DEPRECATED_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unIPClient; + const void *pvAuthBlob; + uint32_t cubAuthBlobSize; + CSteamID *pSteamIDUser; +}; + +struct ISteamGameServer_SteamGameServer015_CreateUnauthenticatedUserConnection_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamGameServer_SteamGameServer015_SendUserDisconnect_DEPRECATED_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDUser; +}; + +struct ISteamGameServer_SteamGameServer015_BUpdateUserData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchPlayerName; + uint32_t uScore; +}; + +struct ISteamGameServer_SteamGameServer015_SetMasterServerHeartbeatInterval_DEPRECATED_params +{ + struct u_steam_iface *linux_side; + int32_t iHeartbeatInterval; +}; + +struct ISteamGameServer_SteamGameServer015_ForceMasterServerHeartbeat_DEPRECATED_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamGameServerStats_SteamGameServerStats001_RequestUserStats_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDUser; +}; + +struct ISteamGameServerStats_SteamGameServerStats001_GetUserStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + int32_t *pData; +}; + +struct ISteamGameServerStats_SteamGameServerStats001_GetUserStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + float *pData; +}; + +struct ISteamGameServerStats_SteamGameServerStats001_GetUserAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + bool *pbAchieved; +}; + +struct ISteamGameServerStats_SteamGameServerStats001_SetUserStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + int32_t nData; +}; + +struct ISteamGameServerStats_SteamGameServerStats001_SetUserStat_2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + float fData; +}; + +struct ISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRateStat_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; + float flCountThisSession; + double dSessionLength; +}; + +struct ISteamGameServerStats_SteamGameServerStats001_SetUserAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; +}; + +struct ISteamGameServerStats_SteamGameServerStats001_ClearUserAchievement_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDUser; + const char *pchName; +}; + +struct ISteamGameServerStats_SteamGameServerStats001_StoreUserStats_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDUser; +}; + +struct ISteamGameStats_SteamGameStats001_GetNewSession_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + int8_t nAccountType; + uint64_t ulAccountID; + int32_t nAppID; + uint32_t rtTimeStarted; +}; + +struct ISteamGameStats_SteamGameStats001_EndSession_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t ulSessionID; + uint32_t rtTimeEnded; + int32_t nReasonCode; +}; + +struct ISteamGameStats_SteamGameStats001_AddSessionAttributeInt_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t ulSessionID; + const char *pstrName; + int32_t nData; +}; + +struct ISteamGameStats_SteamGameStats001_AddSessionAttributeString_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t ulSessionID; + const char *pstrName; + const char *pstrData; +}; + +struct ISteamGameStats_SteamGameStats001_AddSessionAttributeFloat_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t ulSessionID; + const char *pstrName; + float fData; +}; + +struct ISteamGameStats_SteamGameStats001_AddNewRow_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t *pulRowID; + uint64_t ulSessionID; + const char *pstrTableName; +}; + +struct ISteamGameStats_SteamGameStats001_CommitRow_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t ulRowID; +}; + +struct ISteamGameStats_SteamGameStats001_CommitOutstandingRows_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t ulSessionID; +}; + +struct ISteamGameStats_SteamGameStats001_AddRowAttributeInt_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t ulRowID; + const char *pstrName; + int32_t nData; +}; + +struct ISteamGameStats_SteamGameStats001_AddRowAtributeString_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t ulRowID; + const char *pstrName; + const char *pstrData; +}; + +struct ISteamGameStats_SteamGameStats001_AddRowAttributeFloat_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t ulRowID; + const char *pstrName; + float fData; +}; + +struct ISteamGameStats_SteamGameStats001_AddSessionAttributeInt64_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t ulSessionID; + const char *pstrName; + int64_t llData; +}; + +struct ISteamGameStats_SteamGameStats001_AddRowAttributeInt64_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t ulRowID; + const char *pstrName; + int64_t llData; +}; + +struct ISteamInput_SteamInput001_Init_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamInput_SteamInput001_Shutdown_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamInput_SteamInput001_RunFrame_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamInput_SteamInput001_GetConnectedControllers_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t *handlesOut; +}; + +struct ISteamInput_SteamInput001_GetActionSetHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pszActionSetName; +}; + +struct ISteamInput_SteamInput001_ActivateActionSet_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint64_t actionSetHandle; +}; + +struct ISteamInput_SteamInput001_GetCurrentActionSet_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t inputHandle; +}; + +struct ISteamInput_SteamInput001_ActivateActionSetLayer_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint64_t actionSetLayerHandle; +}; + +struct ISteamInput_SteamInput001_DeactivateActionSetLayer_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint64_t actionSetLayerHandle; +}; + +struct ISteamInput_SteamInput001_DeactivateAllActionSetLayers_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; +}; + +struct ISteamInput_SteamInput001_GetActiveActionSetLayers_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t inputHandle; + uint64_t *handlesOut; +}; + +struct ISteamInput_SteamInput001_GetDigitalActionHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pszActionName; +}; + +struct ISteamInput_SteamInput001_GetDigitalActionData_params +{ + struct u_steam_iface *linux_side; + InputDigitalActionData_t *_ret; + uint64_t inputHandle; + uint64_t digitalActionHandle; +}; + +struct ISteamInput_SteamInput001_GetDigitalActionOrigins_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t inputHandle; + uint64_t actionSetHandle; + uint64_t digitalActionHandle; + uint32_t *originsOut; +}; + +struct ISteamInput_SteamInput001_GetAnalogActionHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pszActionName; +}; + +struct ISteamInput_SteamInput001_GetAnalogActionData_params +{ + struct u_steam_iface *linux_side; + InputAnalogActionData_t *_ret; + uint64_t inputHandle; + uint64_t analogActionHandle; +}; + +struct ISteamInput_SteamInput001_GetAnalogActionOrigins_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t inputHandle; + uint64_t actionSetHandle; + uint64_t analogActionHandle; + uint32_t *originsOut; +}; + +struct ISteamInput_SteamInput001_GetGlyphForActionOrigin_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; +}; + +struct ISteamInput_SteamInput001_GetStringForActionOrigin_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; +}; + +struct ISteamInput_SteamInput001_StopAnalogActionMomentum_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint64_t eAction; +}; + +struct ISteamInput_SteamInput001_GetMotionData_params +{ + struct u_steam_iface *linux_side; + InputMotionData_t *_ret; + uint64_t inputHandle; +}; + +struct ISteamInput_SteamInput001_TriggerVibration_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint16_t usLeftSpeed; + uint16_t usRightSpeed; +}; + +struct ISteamInput_SteamInput001_SetLEDColor_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint8_t nColorR; + uint8_t nColorG; + uint8_t nColorB; + uint32_t nFlags; +}; + +struct ISteamInput_SteamInput001_TriggerHapticPulse_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint32_t eTargetPad; + uint16_t usDurationMicroSec; +}; + +struct ISteamInput_SteamInput001_TriggerRepeatedHapticPulse_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint32_t eTargetPad; + uint16_t usDurationMicroSec; + uint16_t usOffMicroSec; + uint16_t unRepeat; + uint32_t nFlags; +}; + +struct ISteamInput_SteamInput001_ShowBindingPanel_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t inputHandle; +}; + +struct ISteamInput_SteamInput001_GetInputTypeForHandle_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t inputHandle; +}; + +struct ISteamInput_SteamInput001_GetControllerForGamepadIndex_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + int32_t nIndex; +}; + +struct ISteamInput_SteamInput001_GetGamepadIndexForController_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t ulinputHandle; +}; + +struct ISteamInput_SteamInput001_GetStringForXboxOrigin_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; +}; + +struct ISteamInput_SteamInput001_GetGlyphForXboxOrigin_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; +}; + +struct ISteamInput_SteamInput001_GetActionOriginFromXboxOrigin_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t inputHandle; + uint32_t eOrigin; +}; + +struct ISteamInput_SteamInput001_TranslateActionOrigin_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t eDestinationInputType; + uint32_t eSourceOrigin; +}; + +struct ISteamInput_SteamInput001_GetDeviceBindingRevision_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t inputHandle; + int32_t *pMajor; + int32_t *pMinor; +}; + +struct ISteamInput_SteamInput001_GetRemotePlaySessionID_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t inputHandle; +}; + +struct ISteamInput_SteamInput002_Init_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamInput_SteamInput002_Shutdown_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamInput_SteamInput002_RunFrame_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamInput_SteamInput002_GetConnectedControllers_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t *handlesOut; +}; + +struct ISteamInput_SteamInput002_GetActionSetHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pszActionSetName; +}; + +struct ISteamInput_SteamInput002_ActivateActionSet_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint64_t actionSetHandle; +}; + +struct ISteamInput_SteamInput002_GetCurrentActionSet_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t inputHandle; +}; + +struct ISteamInput_SteamInput002_ActivateActionSetLayer_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint64_t actionSetLayerHandle; +}; + +struct ISteamInput_SteamInput002_DeactivateActionSetLayer_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint64_t actionSetLayerHandle; +}; + +struct ISteamInput_SteamInput002_DeactivateAllActionSetLayers_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; +}; + +struct ISteamInput_SteamInput002_GetActiveActionSetLayers_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t inputHandle; + uint64_t *handlesOut; +}; + +struct ISteamInput_SteamInput002_GetDigitalActionHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pszActionName; +}; + +struct ISteamInput_SteamInput002_GetDigitalActionData_params +{ + struct u_steam_iface *linux_side; + InputDigitalActionData_t *_ret; + uint64_t inputHandle; + uint64_t digitalActionHandle; +}; + +struct ISteamInput_SteamInput002_GetDigitalActionOrigins_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t inputHandle; + uint64_t actionSetHandle; + uint64_t digitalActionHandle; + uint32_t *originsOut; +}; + +struct ISteamInput_SteamInput002_GetAnalogActionHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pszActionName; +}; + +struct ISteamInput_SteamInput002_GetAnalogActionData_params +{ + struct u_steam_iface *linux_side; + InputAnalogActionData_t *_ret; + uint64_t inputHandle; + uint64_t analogActionHandle; +}; + +struct ISteamInput_SteamInput002_GetAnalogActionOrigins_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t inputHandle; + uint64_t actionSetHandle; + uint64_t analogActionHandle; + uint32_t *originsOut; +}; + +struct ISteamInput_SteamInput002_GetGlyphForActionOrigin_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; +}; + +struct ISteamInput_SteamInput002_GetStringForActionOrigin_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; +}; + +struct ISteamInput_SteamInput002_StopAnalogActionMomentum_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint64_t eAction; +}; + +struct ISteamInput_SteamInput002_GetMotionData_params +{ + struct u_steam_iface *linux_side; + InputMotionData_t *_ret; + uint64_t inputHandle; +}; + +struct ISteamInput_SteamInput002_TriggerVibration_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint16_t usLeftSpeed; + uint16_t usRightSpeed; +}; + +struct ISteamInput_SteamInput002_SetLEDColor_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint8_t nColorR; + uint8_t nColorG; + uint8_t nColorB; + uint32_t nFlags; +}; + +struct ISteamInput_SteamInput002_TriggerHapticPulse_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint32_t eTargetPad; + uint16_t usDurationMicroSec; +}; + +struct ISteamInput_SteamInput002_TriggerRepeatedHapticPulse_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint32_t eTargetPad; + uint16_t usDurationMicroSec; + uint16_t usOffMicroSec; + uint16_t unRepeat; + uint32_t nFlags; +}; + +struct ISteamInput_SteamInput002_ShowBindingPanel_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t inputHandle; +}; + +struct ISteamInput_SteamInput002_GetInputTypeForHandle_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t inputHandle; +}; + +struct ISteamInput_SteamInput002_GetControllerForGamepadIndex_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + int32_t nIndex; +}; + +struct ISteamInput_SteamInput002_GetGamepadIndexForController_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t ulinputHandle; +}; + +struct ISteamInput_SteamInput002_GetStringForXboxOrigin_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; +}; + +struct ISteamInput_SteamInput002_GetGlyphForXboxOrigin_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; +}; + +struct ISteamInput_SteamInput002_GetActionOriginFromXboxOrigin_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t inputHandle; + uint32_t eOrigin; +}; + +struct ISteamInput_SteamInput002_TranslateActionOrigin_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t eDestinationInputType; + uint32_t eSourceOrigin; +}; + +struct ISteamInput_SteamInput002_GetDeviceBindingRevision_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t inputHandle; + int32_t *pMajor; + int32_t *pMinor; +}; + +struct ISteamInput_SteamInput002_GetRemotePlaySessionID_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t inputHandle; +}; + +struct ISteamInput_SteamInput005_Init_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bExplicitlyCallRunFrame; +}; + +struct ISteamInput_SteamInput005_Shutdown_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamInput_SteamInput005_SetInputActionManifestFilePath_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchInputActionManifestAbsolutePath; +}; + +struct ISteamInput_SteamInput005_RunFrame_params +{ + struct u_steam_iface *linux_side; + bool bReservedValue; +}; + +struct ISteamInput_SteamInput005_BWaitForData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bWaitForever; + uint32_t unTimeout; +}; + +struct ISteamInput_SteamInput005_BNewDataAvailable_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamInput_SteamInput005_GetConnectedControllers_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t *handlesOut; +}; + +struct ISteamInput_SteamInput005_EnableDeviceCallbacks_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamInput_SteamInput005_EnableActionEventCallbacks_params +{ + struct u_steam_iface *linux_side; + void (*W_STDCALL pCallback)(SteamInputActionEvent_t *); +}; + +struct ISteamInput_SteamInput005_GetActionSetHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pszActionSetName; +}; + +struct ISteamInput_SteamInput005_ActivateActionSet_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint64_t actionSetHandle; +}; + +struct ISteamInput_SteamInput005_GetCurrentActionSet_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t inputHandle; +}; + +struct ISteamInput_SteamInput005_ActivateActionSetLayer_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint64_t actionSetLayerHandle; +}; + +struct ISteamInput_SteamInput005_DeactivateActionSetLayer_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint64_t actionSetLayerHandle; +}; + +struct ISteamInput_SteamInput005_DeactivateAllActionSetLayers_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; +}; + +struct ISteamInput_SteamInput005_GetActiveActionSetLayers_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t inputHandle; + uint64_t *handlesOut; +}; + +struct ISteamInput_SteamInput005_GetDigitalActionHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pszActionName; +}; + +struct ISteamInput_SteamInput005_GetDigitalActionData_params +{ + struct u_steam_iface *linux_side; + InputDigitalActionData_t *_ret; + uint64_t inputHandle; + uint64_t digitalActionHandle; +}; + +struct ISteamInput_SteamInput005_GetDigitalActionOrigins_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t inputHandle; + uint64_t actionSetHandle; + uint64_t digitalActionHandle; + uint32_t *originsOut; +}; + +struct ISteamInput_SteamInput005_GetStringForDigitalActionName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint64_t eActionHandle; +}; + +struct ISteamInput_SteamInput005_GetAnalogActionHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pszActionName; +}; + +struct ISteamInput_SteamInput005_GetAnalogActionData_params +{ + struct u_steam_iface *linux_side; + InputAnalogActionData_t *_ret; + uint64_t inputHandle; + uint64_t analogActionHandle; +}; + +struct ISteamInput_SteamInput005_GetAnalogActionOrigins_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t inputHandle; + uint64_t actionSetHandle; + uint64_t analogActionHandle; + uint32_t *originsOut; +}; + +struct ISteamInput_SteamInput005_GetGlyphPNGForActionOrigin_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; + uint32_t eSize; + uint32_t unFlags; +}; + +struct ISteamInput_SteamInput005_GetGlyphSVGForActionOrigin_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; + uint32_t unFlags; +}; + +struct ISteamInput_SteamInput005_GetGlyphForActionOrigin_Legacy_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; +}; + +struct ISteamInput_SteamInput005_GetStringForActionOrigin_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; +}; + +struct ISteamInput_SteamInput005_GetStringForAnalogActionName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint64_t eActionHandle; +}; + +struct ISteamInput_SteamInput005_StopAnalogActionMomentum_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint64_t eAction; +}; + +struct ISteamInput_SteamInput005_GetMotionData_params +{ + struct u_steam_iface *linux_side; + InputMotionData_t *_ret; + uint64_t inputHandle; +}; + +struct ISteamInput_SteamInput005_TriggerVibration_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint16_t usLeftSpeed; + uint16_t usRightSpeed; +}; + +struct ISteamInput_SteamInput005_TriggerVibrationExtended_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint16_t usLeftSpeed; + uint16_t usRightSpeed; + uint16_t usLeftTriggerSpeed; + uint16_t usRightTriggerSpeed; +}; + +struct ISteamInput_SteamInput005_TriggerSimpleHapticEvent_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint32_t eHapticLocation; + uint8_t nIntensity; + char nGainDB; + uint8_t nOtherIntensity; + char nOtherGainDB; +}; + +struct ISteamInput_SteamInput005_SetLEDColor_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint8_t nColorR; + uint8_t nColorG; + uint8_t nColorB; + uint32_t nFlags; +}; + +struct ISteamInput_SteamInput005_Legacy_TriggerHapticPulse_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint32_t eTargetPad; + uint16_t usDurationMicroSec; +}; + +struct ISteamInput_SteamInput005_Legacy_TriggerRepeatedHapticPulse_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint32_t eTargetPad; + uint16_t usDurationMicroSec; + uint16_t usOffMicroSec; + uint16_t unRepeat; + uint32_t nFlags; +}; + +struct ISteamInput_SteamInput005_ShowBindingPanel_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t inputHandle; +}; + +struct ISteamInput_SteamInput005_GetInputTypeForHandle_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t inputHandle; +}; + +struct ISteamInput_SteamInput005_GetControllerForGamepadIndex_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + int32_t nIndex; +}; + +struct ISteamInput_SteamInput005_GetGamepadIndexForController_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t ulinputHandle; +}; + +struct ISteamInput_SteamInput005_GetStringForXboxOrigin_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; +}; + +struct ISteamInput_SteamInput005_GetGlyphForXboxOrigin_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; +}; + +struct ISteamInput_SteamInput005_GetActionOriginFromXboxOrigin_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t inputHandle; + uint32_t eOrigin; +}; + +struct ISteamInput_SteamInput005_TranslateActionOrigin_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t eDestinationInputType; + uint32_t eSourceOrigin; +}; + +struct ISteamInput_SteamInput005_GetDeviceBindingRevision_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t inputHandle; + int32_t *pMajor; + int32_t *pMinor; +}; + +struct ISteamInput_SteamInput005_GetRemotePlaySessionID_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t inputHandle; +}; + +struct ISteamInput_SteamInput005_GetSessionInputConfigurationSettings_params +{ + struct u_steam_iface *linux_side; + uint16_t _ret; +}; + +struct ISteamInput_SteamInput006_Init_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bExplicitlyCallRunFrame; +}; + +struct ISteamInput_SteamInput006_Shutdown_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamInput_SteamInput006_SetInputActionManifestFilePath_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchInputActionManifestAbsolutePath; +}; + +struct ISteamInput_SteamInput006_RunFrame_params +{ + struct u_steam_iface *linux_side; + bool bReservedValue; +}; + +struct ISteamInput_SteamInput006_BWaitForData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bWaitForever; + uint32_t unTimeout; +}; + +struct ISteamInput_SteamInput006_BNewDataAvailable_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamInput_SteamInput006_GetConnectedControllers_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t *handlesOut; +}; + +struct ISteamInput_SteamInput006_EnableDeviceCallbacks_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamInput_SteamInput006_EnableActionEventCallbacks_params +{ + struct u_steam_iface *linux_side; + void (*W_STDCALL pCallback)(SteamInputActionEvent_t *); +}; + +struct ISteamInput_SteamInput006_GetActionSetHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pszActionSetName; +}; + +struct ISteamInput_SteamInput006_ActivateActionSet_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint64_t actionSetHandle; +}; + +struct ISteamInput_SteamInput006_GetCurrentActionSet_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t inputHandle; +}; + +struct ISteamInput_SteamInput006_ActivateActionSetLayer_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint64_t actionSetLayerHandle; +}; + +struct ISteamInput_SteamInput006_DeactivateActionSetLayer_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint64_t actionSetLayerHandle; +}; + +struct ISteamInput_SteamInput006_DeactivateAllActionSetLayers_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; +}; + +struct ISteamInput_SteamInput006_GetActiveActionSetLayers_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t inputHandle; + uint64_t *handlesOut; +}; + +struct ISteamInput_SteamInput006_GetDigitalActionHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pszActionName; +}; + +struct ISteamInput_SteamInput006_GetDigitalActionData_params +{ + struct u_steam_iface *linux_side; + InputDigitalActionData_t *_ret; + uint64_t inputHandle; + uint64_t digitalActionHandle; +}; + +struct ISteamInput_SteamInput006_GetDigitalActionOrigins_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t inputHandle; + uint64_t actionSetHandle; + uint64_t digitalActionHandle; + uint32_t *originsOut; +}; + +struct ISteamInput_SteamInput006_GetStringForDigitalActionName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint64_t eActionHandle; +}; + +struct ISteamInput_SteamInput006_GetAnalogActionHandle_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pszActionName; +}; + +struct ISteamInput_SteamInput006_GetAnalogActionData_params +{ + struct u_steam_iface *linux_side; + InputAnalogActionData_t *_ret; + uint64_t inputHandle; + uint64_t analogActionHandle; +}; + +struct ISteamInput_SteamInput006_GetAnalogActionOrigins_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t inputHandle; + uint64_t actionSetHandle; + uint64_t analogActionHandle; + uint32_t *originsOut; +}; + +struct ISteamInput_SteamInput006_GetGlyphPNGForActionOrigin_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; + uint32_t eSize; + uint32_t unFlags; +}; + +struct ISteamInput_SteamInput006_GetGlyphSVGForActionOrigin_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; + uint32_t unFlags; +}; + +struct ISteamInput_SteamInput006_GetGlyphForActionOrigin_Legacy_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; +}; + +struct ISteamInput_SteamInput006_GetStringForActionOrigin_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; +}; + +struct ISteamInput_SteamInput006_GetStringForAnalogActionName_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint64_t eActionHandle; +}; + +struct ISteamInput_SteamInput006_StopAnalogActionMomentum_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint64_t eAction; +}; + +struct ISteamInput_SteamInput006_GetMotionData_params +{ + struct u_steam_iface *linux_side; + InputMotionData_t *_ret; + uint64_t inputHandle; +}; + +struct ISteamInput_SteamInput006_TriggerVibration_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint16_t usLeftSpeed; + uint16_t usRightSpeed; +}; + +struct ISteamInput_SteamInput006_TriggerVibrationExtended_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint16_t usLeftSpeed; + uint16_t usRightSpeed; + uint16_t usLeftTriggerSpeed; + uint16_t usRightTriggerSpeed; +}; + +struct ISteamInput_SteamInput006_TriggerSimpleHapticEvent_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint32_t eHapticLocation; + uint8_t nIntensity; + char nGainDB; + uint8_t nOtherIntensity; + char nOtherGainDB; +}; + +struct ISteamInput_SteamInput006_SetLEDColor_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint8_t nColorR; + uint8_t nColorG; + uint8_t nColorB; + uint32_t nFlags; +}; + +struct ISteamInput_SteamInput006_Legacy_TriggerHapticPulse_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint32_t eTargetPad; + uint16_t usDurationMicroSec; +}; + +struct ISteamInput_SteamInput006_Legacy_TriggerRepeatedHapticPulse_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + uint32_t eTargetPad; + uint16_t usDurationMicroSec; + uint16_t usOffMicroSec; + uint16_t unRepeat; + uint32_t nFlags; +}; + +struct ISteamInput_SteamInput006_ShowBindingPanel_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t inputHandle; +}; + +struct ISteamInput_SteamInput006_GetInputTypeForHandle_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t inputHandle; +}; + +struct ISteamInput_SteamInput006_GetControllerForGamepadIndex_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + int32_t nIndex; +}; + +struct ISteamInput_SteamInput006_GetGamepadIndexForController_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint64_t ulinputHandle; +}; + +struct ISteamInput_SteamInput006_GetStringForXboxOrigin_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; +}; + +struct ISteamInput_SteamInput006_GetGlyphForXboxOrigin_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eOrigin; +}; + +struct ISteamInput_SteamInput006_GetActionOriginFromXboxOrigin_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t inputHandle; + uint32_t eOrigin; +}; + +struct ISteamInput_SteamInput006_TranslateActionOrigin_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t eDestinationInputType; + uint32_t eSourceOrigin; +}; + +struct ISteamInput_SteamInput006_GetDeviceBindingRevision_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t inputHandle; + int32_t *pMajor; + int32_t *pMinor; +}; + +struct ISteamInput_SteamInput006_GetRemotePlaySessionID_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t inputHandle; +}; + +struct ISteamInput_SteamInput006_GetSessionInputConfigurationSettings_params +{ + struct u_steam_iface *linux_side; + uint16_t _ret; +}; + +struct ISteamInput_SteamInput006_SetDualSenseTriggerEffect_params +{ + struct u_steam_iface *linux_side; + uint64_t inputHandle; + const ScePadTriggerEffectParam *pParam; +}; + +struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetActive_params +{ + struct u_steam_iface *linux_side; + bool bActive; +}; + +struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetHeartbeatInterval_params +{ + struct u_steam_iface *linux_side; + int32_t iHeartbeatInterval; +}; + +struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_HandleIncomingPacket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const void *pData; + int32_t cbData; + uint32_t srcIP; + uint16_t srcPort; +}; + +struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNextOutgoingPacket_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + void *pOut; + int32_t cbMaxOut; + uint32_t *pNetAdr; + uint16_t *pPort; +}; + +struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasicServerData_params +{ + struct u_steam_iface *linux_side; + uint16_t nProtocolVersion; + bool bDedicatedServer; + const char *pRegionName; + const char *pProductName; + uint16_t nMaxReportedClients; + bool bPasswordProtected; + const char *pGameDescription; +}; + +struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_ClearAllKeyValues_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetKeyValue_params +{ + struct u_steam_iface *linux_side; + const char *pKey; + const char *pValue; +}; + +struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_NotifyShutdown_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_WasRestartRequested_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_ForceHeartbeat_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_AddMasterServer_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pServerAddress; +}; + +struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_RemoveMasterServer_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pServerAddress; +}; + +struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNumMasterServers_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetMasterServerAddress_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t iServer; + char *pOut; + int32_t outBufferSize; +}; + +struct ISteamGameSearch_SteamMatchGameSearch001_AddGameSearchParams_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const char *pchKeyToFind; + const char *pchValuesToFind; +}; + +struct ISteamGameSearch_SteamMatchGameSearch001_SearchForGameWithLobby_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDLobby; + int32_t nPlayerMin; + int32_t nPlayerMax; +}; + +struct ISteamGameSearch_SteamMatchGameSearch001_SearchForGameSolo_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + int32_t nPlayerMin; + int32_t nPlayerMax; +}; + +struct ISteamGameSearch_SteamMatchGameSearch001_AcceptGame_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamGameSearch_SteamMatchGameSearch001_DeclineGame_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamGameSearch_SteamMatchGameSearch001_RetrieveConnectionDetails_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDHost; + char *pchConnectionDetails; + int32_t cubConnectionDetails; +}; + +struct ISteamGameSearch_SteamMatchGameSearch001_EndGameSearch_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamGameSearch_SteamMatchGameSearch001_SetGameHostParams_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamGameSearch_SteamMatchGameSearch001_SetConnectionDetails_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const char *pchConnectionDetails; + int32_t cubConnectionDetails; +}; + +struct ISteamGameSearch_SteamMatchGameSearch001_RequestPlayersForGame_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + int32_t nPlayerMin; + int32_t nPlayerMax; + int32_t nMaxTeamSize; +}; + +struct ISteamGameSearch_SteamMatchGameSearch001_HostConfirmGameStart_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t ullUniqueGameID; +}; + +struct ISteamGameSearch_SteamMatchGameSearch001_CancelRequestPlayersForGame_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamGameSearch_SteamMatchGameSearch001_SubmitPlayerResult_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t ullUniqueGameID; + CSteamID steamIDPlayer; + uint32_t EPlayerResult; +}; + +struct ISteamGameSearch_SteamMatchGameSearch001_EndGame_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t ullUniqueGameID; +}; + +struct ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGameCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iGame; + uint32_t *pnAppID; + uint32_t *pnIP; + uint16_t *pnConnPort; + uint32_t *punFlags; + uint32_t *pRTime32LastPlayedOnServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t nAppID; + uint32_t nIP; + uint16_t nConnPort; + uint32_t unFlags; + uint32_t rTime32LastPlayedOnServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t nAppID; + uint32_t nIP; + uint16_t nConnPort; + uint32_t unFlags; +}; + +struct ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iGame; + uint32_t *pnAppID; + uint32_t *pnIP; + uint16_t *pnConnPort; + uint16_t *pnQueryPort; + uint32_t *punFlags; + uint32_t *pRTime32LastPlayedOnServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame2_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t nAppID; + uint32_t nIP; + uint16_t nConnPort; + uint16_t nQueryPort; + uint32_t unFlags; + uint32_t rTime32LastPlayedOnServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame2_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t nAppID; + uint32_t nIP; + uint16_t nConnPort; + uint16_t nQueryPort; + uint32_t unFlags; +}; + +struct ISteamMatchmaking_SteamMatchMaking001_RequestLobbyList_params +{ + struct u_steam_iface *linux_side; + uint64_t ulGameID; + MatchMakingKeyValuePair_t *pFilters; + uint32_t nFilters; +}; + +struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking001_CreateLobby_params +{ + struct u_steam_iface *linux_side; + uint64_t ulGameID; + bool bPrivate; +}; + +struct ISteamMatchmaking_SteamMatchMaking001_JoinLobby_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking001_LeaveLobby_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking001_InviteUserToLobby_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + CSteamID steamIDInvitee; +}; + +struct ISteamMatchmaking_SteamMatchMaking001_GetNumLobbyMembers_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDLobby; + int32_t iMember; +}; + +struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyData_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID SteamIDLobby; + const char *pchKey; +}; + +struct ISteamMatchmaking_SteamMatchMaking001_SetLobbyData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberData_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDLobby; + CSteamID steamIDUser; + const char *pchKey; +}; + +struct ISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMsg_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + const void *pvMsgBody; + int32_t cubMsgBody; +}; + +struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyChatEntry_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDLobby; + int32_t iChatID; + CSteamID *pSteamIDUser; + void *pvData; + int32_t cubData; + uint32_t *peChatEntryType; +}; + +struct ISteamMatchmaking_SteamMatchMaking001_RequestLobbyData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGameCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iGame; + uint32_t *pnAppID; + uint32_t *pnIP; + uint16_t *pnConnPort; + uint16_t *pnQueryPort; + uint32_t *punFlags; + uint32_t *pRTime32LastPlayedOnServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking002_AddFavoriteGame_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t nAppID; + uint32_t nIP; + uint16_t nConnPort; + uint16_t nQueryPort; + uint32_t unFlags; + uint32_t rTime32LastPlayedOnServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking002_RemoveFavoriteGame_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t nAppID; + uint32_t nIP; + uint16_t nConnPort; + uint16_t nQueryPort; + uint32_t unFlags; +}; + +struct ISteamMatchmaking_SteamMatchMaking002_RequestLobbyList_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking002_CreateLobby_params +{ + struct u_steam_iface *linux_side; + bool bPrivate; +}; + +struct ISteamMatchmaking_SteamMatchMaking002_JoinLobby_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking002_LeaveLobby_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking002_InviteUserToLobby_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + CSteamID steamIDInvitee; +}; + +struct ISteamMatchmaking_SteamMatchMaking002_GetNumLobbyMembers_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDLobby; + int32_t iMember; +}; + +struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyData_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDLobby; + const char *pchKey; +}; + +struct ISteamMatchmaking_SteamMatchMaking002_SetLobbyData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberData_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDLobby; + CSteamID steamIDUser; + const char *pchKey; +}; + +struct ISteamMatchmaking_SteamMatchMaking002_SetLobbyMemberData_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamMatchmaking_SteamMatchMaking002_SendLobbyChatMsg_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + const void *pvMsgBody; + int32_t cubMsgBody; +}; + +struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyChatEntry_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDLobby; + int32_t iChatID; + CSteamID *pSteamIDUser; + void *pvData; + int32_t cubData; + uint32_t *peChatEntryType; +}; + +struct ISteamMatchmaking_SteamMatchMaking002_RequestLobbyData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking002_SetLobbyGameServer_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; + uint32_t unGameServerIP; + uint16_t unGameServerPort; + CSteamID steamIDGameServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGameCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iGame; + uint32_t *pnAppID; + uint32_t *pnIP; + uint16_t *pnConnPort; + uint16_t *pnQueryPort; + uint32_t *punFlags; + uint32_t *pRTime32LastPlayedOnServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking003_AddFavoriteGame_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t nAppID; + uint32_t nIP; + uint16_t nConnPort; + uint16_t nQueryPort; + uint32_t unFlags; + uint32_t rTime32LastPlayedOnServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking003_RemoveFavoriteGame_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t nAppID; + uint32_t nIP; + uint16_t nConnPort; + uint16_t nQueryPort; + uint32_t unFlags; +}; + +struct ISteamMatchmaking_SteamMatchMaking003_RequestLobbyList_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListFilter_params +{ + struct u_steam_iface *linux_side; + const char *pchKeyToMatch; + const char *pchValueToMatch; +}; + +struct ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListNumericalFilter_params +{ + struct u_steam_iface *linux_side; + const char *pchKeyToMatch; + int32_t nValueToMatch; + int32_t nComparisonType; +}; + +struct ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListSlotsAvailableFilter_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking003_CreateLobby_params +{ + struct u_steam_iface *linux_side; + bool bPrivate; +}; + +struct ISteamMatchmaking_SteamMatchMaking003_JoinLobby_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking003_LeaveLobby_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking003_InviteUserToLobby_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + CSteamID steamIDInvitee; +}; + +struct ISteamMatchmaking_SteamMatchMaking003_GetNumLobbyMembers_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDLobby; + int32_t iMember; +}; + +struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyData_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDLobby; + const char *pchKey; +}; + +struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberData_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDLobby; + CSteamID steamIDUser; + const char *pchKey; +}; + +struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberData_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamMatchmaking_SteamMatchMaking003_SendLobbyChatMsg_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + const void *pvMsgBody; + int32_t cubMsgBody; +}; + +struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyChatEntry_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDLobby; + int32_t iChatID; + CSteamID *pSteamIDUser; + void *pvData; + int32_t cubData; + uint32_t *peChatEntryType; +}; + +struct ISteamMatchmaking_SteamMatchMaking003_RequestLobbyData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyGameServer_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; + uint32_t unGameServerIP; + uint16_t unGameServerPort; + CSteamID steamIDGameServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + uint32_t *punGameServerIP; + uint16_t *punGameServerPort; + CSteamID *psteamIDGameServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberLimit_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + int32_t cMaxMembers; +}; + +struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberLimit_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; + bool bVoiceEnabled; +}; + +struct ISteamMatchmaking_SteamMatchMaking003_RequestFriendsLobbies_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGameCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iGame; + uint32_t *pnAppID; + uint32_t *pnIP; + uint16_t *pnConnPort; + uint16_t *pnQueryPort; + uint32_t *punFlags; + uint32_t *pRTime32LastPlayedOnServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking004_AddFavoriteGame_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t nAppID; + uint32_t nIP; + uint16_t nConnPort; + uint16_t nQueryPort; + uint32_t unFlags; + uint32_t rTime32LastPlayedOnServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking004_RemoveFavoriteGame_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t nAppID; + uint32_t nIP; + uint16_t nConnPort; + uint16_t nQueryPort; + uint32_t unFlags; +}; + +struct ISteamMatchmaking_SteamMatchMaking004_RequestLobbyList_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListFilter_params +{ + struct u_steam_iface *linux_side; + const char *pchKeyToMatch; + const char *pchValueToMatch; +}; + +struct ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListNumericalFilter_params +{ + struct u_steam_iface *linux_side; + const char *pchKeyToMatch; + int32_t nValueToMatch; + int32_t nComparisonType; +}; + +struct ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListSlotsAvailableFilter_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking004_CreateLobby_params +{ + struct u_steam_iface *linux_side; + bool bPrivate; +}; + +struct ISteamMatchmaking_SteamMatchMaking004_JoinLobby_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking004_LeaveLobby_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking004_InviteUserToLobby_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + CSteamID steamIDInvitee; +}; + +struct ISteamMatchmaking_SteamMatchMaking004_GetNumLobbyMembers_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDLobby; + int32_t iMember; +}; + +struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyData_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDLobby; + const char *pchKey; +}; + +struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberData_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDLobby; + CSteamID steamIDUser; + const char *pchKey; +}; + +struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberData_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamMatchmaking_SteamMatchMaking004_SendLobbyChatMsg_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + const void *pvMsgBody; + int32_t cubMsgBody; +}; + +struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyChatEntry_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDLobby; + int32_t iChatID; + CSteamID *pSteamIDUser; + void *pvData; + int32_t cubData; + uint32_t *peChatEntryType; +}; + +struct ISteamMatchmaking_SteamMatchMaking004_RequestLobbyData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyGameServer_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; + uint32_t unGameServerIP; + uint16_t unGameServerPort; + CSteamID steamIDGameServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + uint32_t *punGameServerIP; + uint16_t *punGameServerPort; + CSteamID *psteamIDGameServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberLimit_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + int32_t cMaxMembers; +}; + +struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberLimit_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking004_RequestFriendsLobbies_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGameCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iGame; + uint32_t *pnAppID; + uint32_t *pnIP; + uint16_t *pnConnPort; + uint16_t *pnQueryPort; + uint32_t *punFlags; + uint32_t *pRTime32LastPlayedOnServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking005_AddFavoriteGame_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t nAppID; + uint32_t nIP; + uint16_t nConnPort; + uint16_t nQueryPort; + uint32_t unFlags; + uint32_t rTime32LastPlayedOnServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking005_RemoveFavoriteGame_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t nAppID; + uint32_t nIP; + uint16_t nConnPort; + uint16_t nQueryPort; + uint32_t unFlags; +}; + +struct ISteamMatchmaking_SteamMatchMaking005_RequestLobbyList_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListFilter_params +{ + struct u_steam_iface *linux_side; + const char *pchKeyToMatch; + const char *pchValueToMatch; +}; + +struct ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNumericalFilter_params +{ + struct u_steam_iface *linux_side; + const char *pchKeyToMatch; + int32_t nValueToMatch; + int32_t nComparisonType; +}; + +struct ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListSlotsAvailableFilter_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNearValueFilter_params +{ + struct u_steam_iface *linux_side; + const char *pchKeyToMatch; + int32_t nValueToBeCloseTo; +}; + +struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking005_CreateLobby_params +{ + struct u_steam_iface *linux_side; + uint32_t eLobbyType; +}; + +struct ISteamMatchmaking_SteamMatchMaking005_JoinLobby_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking005_LeaveLobby_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking005_InviteUserToLobby_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + CSteamID steamIDInvitee; +}; + +struct ISteamMatchmaking_SteamMatchMaking005_GetNumLobbyMembers_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDLobby; + int32_t iMember; +}; + +struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyData_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDLobby; + const char *pchKey; +}; + +struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberData_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDLobby; + CSteamID steamIDUser; + const char *pchKey; +}; + +struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberData_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamMatchmaking_SteamMatchMaking005_SendLobbyChatMsg_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + const void *pvMsgBody; + int32_t cubMsgBody; +}; + +struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyChatEntry_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDLobby; + int32_t iChatID; + CSteamID *pSteamIDUser; + void *pvData; + int32_t cubData; + uint32_t *peChatEntryType; +}; + +struct ISteamMatchmaking_SteamMatchMaking005_RequestLobbyData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyGameServer_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; + uint32_t unGameServerIP; + uint16_t unGameServerPort; + CSteamID steamIDGameServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + uint32_t *punGameServerIP; + uint16_t *punGameServerPort; + CSteamID *psteamIDGameServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberLimit_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + int32_t cMaxMembers; +}; + +struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberLimit_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking005_RequestFriendsLobbies_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyType_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + uint32_t eLobbyType; +}; + +struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyOwner_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyDistance_params +{ + struct u_steam_iface *linux_side; + float _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGameCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iGame; + uint32_t *pnAppID; + uint32_t *pnIP; + uint16_t *pnConnPort; + uint16_t *pnQueryPort; + uint32_t *punFlags; + uint32_t *pRTime32LastPlayedOnServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking006_AddFavoriteGame_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t nAppID; + uint32_t nIP; + uint16_t nConnPort; + uint16_t nQueryPort; + uint32_t unFlags; + uint32_t rTime32LastPlayedOnServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking006_RemoveFavoriteGame_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t nAppID; + uint32_t nIP; + uint16_t nConnPort; + uint16_t nQueryPort; + uint32_t unFlags; +}; + +struct ISteamMatchmaking_SteamMatchMaking006_RequestLobbyList_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListFilter_params +{ + struct u_steam_iface *linux_side; + const char *pchKeyToMatch; + const char *pchValueToMatch; +}; + +struct ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNumericalFilter_params +{ + struct u_steam_iface *linux_side; + const char *pchKeyToMatch; + int32_t nValueToMatch; + int32_t nComparisonType; +}; + +struct ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNearValueFilter_params +{ + struct u_steam_iface *linux_side; + const char *pchKeyToMatch; + int32_t nValueToBeCloseTo; +}; + +struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking006_CreateLobby_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eLobbyType; +}; + +struct ISteamMatchmaking_SteamMatchMaking006_JoinLobby_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking006_LeaveLobby_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking006_InviteUserToLobby_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + CSteamID steamIDInvitee; +}; + +struct ISteamMatchmaking_SteamMatchMaking006_GetNumLobbyMembers_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDLobby; + int32_t iMember; +}; + +struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyData_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDLobby; + const char *pchKey; +}; + +struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberData_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDLobby; + CSteamID steamIDUser; + const char *pchKey; +}; + +struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberData_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamMatchmaking_SteamMatchMaking006_SendLobbyChatMsg_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + const void *pvMsgBody; + int32_t cubMsgBody; +}; + +struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyChatEntry_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDLobby; + int32_t iChatID; + CSteamID *pSteamIDUser; + void *pvData; + int32_t cubData; + uint32_t *peChatEntryType; +}; + +struct ISteamMatchmaking_SteamMatchMaking006_RequestLobbyData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyGameServer_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; + uint32_t unGameServerIP; + uint16_t unGameServerPort; + CSteamID steamIDGameServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + uint32_t *punGameServerIP; + uint16_t *punGameServerPort; + CSteamID *psteamIDGameServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberLimit_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + int32_t cMaxMembers; +}; + +struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberLimit_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyType_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + uint32_t eLobbyType; +}; + +struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyOwner_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGameCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iGame; + uint32_t *pnAppID; + uint32_t *pnIP; + uint16_t *pnConnPort; + uint16_t *pnQueryPort; + uint32_t *punFlags; + uint32_t *pRTime32LastPlayedOnServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_AddFavoriteGame_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t nAppID; + uint32_t nIP; + uint16_t nConnPort; + uint16_t nQueryPort; + uint32_t unFlags; + uint32_t rTime32LastPlayedOnServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_RemoveFavoriteGame_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t nAppID; + uint32_t nIP; + uint16_t nConnPort; + uint16_t nQueryPort; + uint32_t unFlags; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_RequestLobbyList_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListStringFilter_params +{ + struct u_steam_iface *linux_side; + const char *pchKeyToMatch; + const char *pchValueToMatch; + uint32_t eComparisonType; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNumericalFilter_params +{ + struct u_steam_iface *linux_side; + const char *pchKeyToMatch; + int32_t nValueToMatch; + uint32_t eComparisonType; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNearValueFilter_params +{ + struct u_steam_iface *linux_side; + const char *pchKeyToMatch; + int32_t nValueToBeCloseTo; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListFilterSlotsAvailable_params +{ + struct u_steam_iface *linux_side; + int32_t nSlotsAvailable; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_CreateLobby_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eLobbyType; + int32_t cMaxMembers; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_JoinLobby_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_LeaveLobby_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_InviteUserToLobby_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + CSteamID steamIDInvitee; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_GetNumLobbyMembers_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDLobby; + int32_t iMember; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyData_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDLobby; + const char *pchKey; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + int32_t iLobbyData; + char *pchKey; + int32_t cchKeyBufferSize; + char *pchValue; + int32_t cchValueBufferSize; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_DeleteLobbyData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + const char *pchKey; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberData_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDLobby; + CSteamID steamIDUser; + const char *pchKey; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberData_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_SendLobbyChatMsg_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + const void *pvMsgBody; + int32_t cubMsgBody; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyChatEntry_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDLobby; + int32_t iChatID; + CSteamID *pSteamIDUser; + void *pvData; + int32_t cubData; + uint32_t *peChatEntryType; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_RequestLobbyData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyGameServer_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; + uint32_t unGameServerIP; + uint16_t unGameServerPort; + CSteamID steamIDGameServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + uint32_t *punGameServerIP; + uint16_t *punGameServerPort; + CSteamID *psteamIDGameServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberLimit_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + int32_t cMaxMembers; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberLimit_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyType_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + uint32_t eLobbyType; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyJoinable_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + bool bLobbyJoinable; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyOwner_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyOwner_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + CSteamID steamIDNewOwner; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGameCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iGame; + uint32_t *pnAppID; + uint32_t *pnIP; + uint16_t *pnConnPort; + uint16_t *pnQueryPort; + uint32_t *punFlags; + uint32_t *pRTime32LastPlayedOnServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_AddFavoriteGame_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t nAppID; + uint32_t nIP; + uint16_t nConnPort; + uint16_t nQueryPort; + uint32_t unFlags; + uint32_t rTime32LastPlayedOnServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_RemoveFavoriteGame_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t nAppID; + uint32_t nIP; + uint16_t nConnPort; + uint16_t nQueryPort; + uint32_t unFlags; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_RequestLobbyList_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListStringFilter_params +{ + struct u_steam_iface *linux_side; + const char *pchKeyToMatch; + const char *pchValueToMatch; + uint32_t eComparisonType; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNumericalFilter_params +{ + struct u_steam_iface *linux_side; + const char *pchKeyToMatch; + int32_t nValueToMatch; + uint32_t eComparisonType; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNearValueFilter_params +{ + struct u_steam_iface *linux_side; + const char *pchKeyToMatch; + int32_t nValueToBeCloseTo; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListFilterSlotsAvailable_params +{ + struct u_steam_iface *linux_side; + int32_t nSlotsAvailable; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListDistanceFilter_params +{ + struct u_steam_iface *linux_side; + uint32_t eLobbyDistanceFilter; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListResultCountFilter_params +{ + struct u_steam_iface *linux_side; + int32_t cMaxResults; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_CreateLobby_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eLobbyType; + int32_t cMaxMembers; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_JoinLobby_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_LeaveLobby_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_InviteUserToLobby_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + CSteamID steamIDInvitee; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_GetNumLobbyMembers_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDLobby; + int32_t iMember; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyData_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDLobby; + const char *pchKey; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + int32_t iLobbyData; + char *pchKey; + int32_t cchKeyBufferSize; + char *pchValue; + int32_t cchValueBufferSize; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_DeleteLobbyData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + const char *pchKey; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberData_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDLobby; + CSteamID steamIDUser; + const char *pchKey; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberData_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_SendLobbyChatMsg_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + const void *pvMsgBody; + int32_t cubMsgBody; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyChatEntry_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDLobby; + int32_t iChatID; + CSteamID *pSteamIDUser; + void *pvData; + int32_t cubData; + uint32_t *peChatEntryType; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_RequestLobbyData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyGameServer_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; + uint32_t unGameServerIP; + uint16_t unGameServerPort; + CSteamID steamIDGameServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + uint32_t *punGameServerIP; + uint16_t *punGameServerPort; + CSteamID *psteamIDGameServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberLimit_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + int32_t cMaxMembers; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberLimit_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyType_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + uint32_t eLobbyType; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyJoinable_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + bool bLobbyJoinable; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyOwner_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyOwner_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + CSteamID steamIDNewOwner; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGameCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iGame; + uint32_t *pnAppID; + uint32_t *pnIP; + uint16_t *pnConnPort; + uint16_t *pnQueryPort; + uint32_t *punFlags; + uint32_t *pRTime32LastPlayedOnServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_AddFavoriteGame_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t nAppID; + uint32_t nIP; + uint16_t nConnPort; + uint16_t nQueryPort; + uint32_t unFlags; + uint32_t rTime32LastPlayedOnServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_RemoveFavoriteGame_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t nAppID; + uint32_t nIP; + uint16_t nConnPort; + uint16_t nQueryPort; + uint32_t unFlags; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_RequestLobbyList_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListStringFilter_params +{ + struct u_steam_iface *linux_side; + const char *pchKeyToMatch; + const char *pchValueToMatch; + uint32_t eComparisonType; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNumericalFilter_params +{ + struct u_steam_iface *linux_side; + const char *pchKeyToMatch; + int32_t nValueToMatch; + uint32_t eComparisonType; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNearValueFilter_params +{ + struct u_steam_iface *linux_side; + const char *pchKeyToMatch; + int32_t nValueToBeCloseTo; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListFilterSlotsAvailable_params +{ + struct u_steam_iface *linux_side; + int32_t nSlotsAvailable; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListDistanceFilter_params +{ + struct u_steam_iface *linux_side; + uint32_t eLobbyDistanceFilter; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListResultCountFilter_params +{ + struct u_steam_iface *linux_side; + int32_t cMaxResults; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListCompatibleMembersFilter_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + int32_t iLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_CreateLobby_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t eLobbyType; + int32_t cMaxMembers; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_JoinLobby_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_LeaveLobby_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_InviteUserToLobby_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + CSteamID steamIDInvitee; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_GetNumLobbyMembers_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberByIndex_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDLobby; + int32_t iMember; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyData_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDLobby; + const char *pchKey; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + int32_t iLobbyData; + char *pchKey; + int32_t cchKeyBufferSize; + char *pchValue; + int32_t cchValueBufferSize; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_DeleteLobbyData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + const char *pchKey; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberData_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + CSteamID steamIDLobby; + CSteamID steamIDUser; + const char *pchKey; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberData_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_SendLobbyChatMsg_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + const void *pvMsgBody; + int32_t cubMsgBody; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyChatEntry_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDLobby; + int32_t iChatID; + CSteamID *pSteamIDUser; + void *pvData; + int32_t cubData; + uint32_t *peChatEntryType; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_RequestLobbyData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyGameServer_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDLobby; + uint32_t unGameServerIP; + uint16_t unGameServerPort; + CSteamID steamIDGameServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + uint32_t *punGameServerIP; + uint16_t *punGameServerPort; + CSteamID *psteamIDGameServer; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberLimit_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + int32_t cMaxMembers; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberLimit_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyType_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + uint32_t eLobbyType; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyJoinable_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + bool bLobbyJoinable; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyOwner_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; + CSteamID steamIDLobby; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + CSteamID steamIDNewOwner; +}; + +struct ISteamMatchmaking_SteamMatchMaking009_SetLinkedLobby_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDLobby; + CSteamID steamIDLobbyDependent; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestInternetServerList_params +{ + struct u_steam_iface *linux_side; + uint32_t iApp; + MatchMakingKeyValuePair_t **ppchFilters; + uint32_t nFilters; + w_ISteamMatchmakingServerListResponse *pRequestServersResponse; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestLANServerList_params +{ + struct u_steam_iface *linux_side; + uint32_t iApp; + w_ISteamMatchmakingServerListResponse *pRequestServersResponse; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestFriendsServerList_params +{ + struct u_steam_iface *linux_side; + uint32_t iApp; + MatchMakingKeyValuePair_t **ppchFilters; + uint32_t nFilters; + w_ISteamMatchmakingServerListResponse *pRequestServersResponse; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestFavoritesServerList_params +{ + struct u_steam_iface *linux_side; + uint32_t iApp; + MatchMakingKeyValuePair_t **ppchFilters; + uint32_t nFilters; + w_ISteamMatchmakingServerListResponse *pRequestServersResponse; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestHistoryServerList_params +{ + struct u_steam_iface *linux_side; + uint32_t iApp; + MatchMakingKeyValuePair_t **ppchFilters; + uint32_t nFilters; + w_ISteamMatchmakingServerListResponse *pRequestServersResponse; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestSpectatorServerList_params +{ + struct u_steam_iface *linux_side; + uint32_t iApp; + MatchMakingKeyValuePair_t **ppchFilters; + uint32_t nFilters; + w_ISteamMatchmakingServerListResponse *pRequestServersResponse; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers001_GetServerDetails_params +{ + struct u_steam_iface *linux_side; + gameserveritem_t_105 *_ret; + uint32_t eType; + int32_t iServer; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers001_CancelQuery_params +{ + struct u_steam_iface *linux_side; + uint32_t eType; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers001_RefreshQuery_params +{ + struct u_steam_iface *linux_side; + uint32_t eType; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers001_IsRefreshing_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eType; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers001_GetServerCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t eType; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers001_RefreshServer_params +{ + struct u_steam_iface *linux_side; + uint32_t eType; + int32_t iServer; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers001_PingServer_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t unIP; + uint16_t usPort; + w_ISteamMatchmakingPingResponse *pRequestServersResponse; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers001_PlayerDetails_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t unIP; + uint16_t usPort; + w_ISteamMatchmakingPlayersResponse *pRequestServersResponse; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers001_ServerRules_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t unIP; + uint16_t usPort; + w_ISteamMatchmakingRulesResponse *pRequestServersResponse; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers001_CancelServerQuery_params +{ + struct u_steam_iface *linux_side; + int32_t hServerQuery; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestInternetServerList_params +{ + struct u_steam_iface *linux_side; + void *_ret; + uint32_t iApp; + MatchMakingKeyValuePair_t **ppchFilters; + uint32_t nFilters; + w_ISteamMatchmakingServerListResponse *pRequestServersResponse; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestLANServerList_params +{ + struct u_steam_iface *linux_side; + void *_ret; + uint32_t iApp; + w_ISteamMatchmakingServerListResponse *pRequestServersResponse; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestFriendsServerList_params +{ + struct u_steam_iface *linux_side; + void *_ret; + uint32_t iApp; + MatchMakingKeyValuePair_t **ppchFilters; + uint32_t nFilters; + w_ISteamMatchmakingServerListResponse *pRequestServersResponse; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestFavoritesServerList_params +{ + struct u_steam_iface *linux_side; + void *_ret; + uint32_t iApp; + MatchMakingKeyValuePair_t **ppchFilters; + uint32_t nFilters; + w_ISteamMatchmakingServerListResponse *pRequestServersResponse; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestHistoryServerList_params +{ + struct u_steam_iface *linux_side; + void *_ret; + uint32_t iApp; + MatchMakingKeyValuePair_t **ppchFilters; + uint32_t nFilters; + w_ISteamMatchmakingServerListResponse *pRequestServersResponse; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestSpectatorServerList_params +{ + struct u_steam_iface *linux_side; + void *_ret; + uint32_t iApp; + MatchMakingKeyValuePair_t **ppchFilters; + uint32_t nFilters; + w_ISteamMatchmakingServerListResponse *pRequestServersResponse; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers002_ReleaseRequest_params +{ + struct u_steam_iface *linux_side; + void *hServerListRequest; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers002_GetServerDetails_params +{ + struct u_steam_iface *linux_side; + gameserveritem_t_105 *_ret; + void *hRequest; + int32_t iServer; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers002_CancelQuery_params +{ + struct u_steam_iface *linux_side; + void *hRequest; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers002_RefreshQuery_params +{ + struct u_steam_iface *linux_side; + void *hRequest; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers002_IsRefreshing_params +{ + struct u_steam_iface *linux_side; + bool _ret; + void *hRequest; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers002_GetServerCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + void *hRequest; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers002_RefreshServer_params +{ + struct u_steam_iface *linux_side; + void *hRequest; + int32_t iServer; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers002_PingServer_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t unIP; + uint16_t usPort; + w_ISteamMatchmakingPingResponse *pRequestServersResponse; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers002_PlayerDetails_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t unIP; + uint16_t usPort; + w_ISteamMatchmakingPlayersResponse *pRequestServersResponse; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers002_ServerRules_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t unIP; + uint16_t usPort; + w_ISteamMatchmakingRulesResponse *pRequestServersResponse; +}; + +struct ISteamMatchmakingServers_SteamMatchMakingServers002_CancelServerQuery_params +{ + struct u_steam_iface *linux_side; + int32_t hServerQuery; +}; + +struct ISteamNetworking_SteamNetworking001_CreateListenSocket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + int32_t nVirtualP2PPort; + uint32_t nIP; + uint16_t nPort; +}; + +struct ISteamNetworking_SteamNetworking001_CreateP2PConnectionSocket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDTarget; + int32_t nVirtualPort; + int32_t nTimeoutSec; +}; + +struct ISteamNetworking_SteamNetworking001_CreateConnectionSocket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t nIP; + uint16_t nPort; + int32_t nTimeoutSec; +}; + +struct ISteamNetworking_SteamNetworking001_DestroySocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + bool bNotifyRemoteEnd; +}; + +struct ISteamNetworking_SteamNetworking001_DestroyListenSocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + bool bNotifyRemoteEnd; +}; + +struct ISteamNetworking_SteamNetworking001_SendDataOnSocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + void *pubData; + uint32_t cubData; + bool bReliable; +}; + +struct ISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + uint32_t *pcubMsgSize; +}; + +struct ISteamNetworking_SteamNetworking001_RetrieveDataFromSocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + void *pubDest; + uint32_t cubDest; + uint32_t *pcubMsgSize; +}; + +struct ISteamNetworking_SteamNetworking001_IsDataAvailable_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hListenSocket; + uint32_t *pcubMsgSize; + uint32_t *phSocket; +}; + +struct ISteamNetworking_SteamNetworking001_RetrieveData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hListenSocket; + void *pubDest; + uint32_t cubDest; + uint32_t *pcubMsgSize; + uint32_t *phSocket; +}; + +struct ISteamNetworking_SteamNetworking001_GetSocketInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + CSteamID *pSteamIDRemote; + int32_t *peSocketStatus; + uint32_t *punIPRemote; + uint16_t *punPortRemote; +}; + +struct ISteamNetworking_SteamNetworking001_GetListenSocketInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hListenSocket; + uint32_t *pnIP; + uint16_t *pnPort; +}; + +struct ISteamNetworking_SteamNetworking002_CreateListenSocket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + int32_t nVirtualP2PPort; + uint32_t nIP; + uint16_t nPort; + bool bAllowUseOfPacketRelay; +}; + +struct ISteamNetworking_SteamNetworking002_CreateP2PConnectionSocket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDTarget; + int32_t nVirtualPort; + int32_t nTimeoutSec; + bool bAllowUseOfPacketRelay; +}; + +struct ISteamNetworking_SteamNetworking002_CreateConnectionSocket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t nIP; + uint16_t nPort; + int32_t nTimeoutSec; +}; + +struct ISteamNetworking_SteamNetworking002_DestroySocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + bool bNotifyRemoteEnd; +}; + +struct ISteamNetworking_SteamNetworking002_DestroyListenSocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + bool bNotifyRemoteEnd; +}; + +struct ISteamNetworking_SteamNetworking002_SendDataOnSocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + void *pubData; + uint32_t cubData; + bool bReliable; +}; + +struct ISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + uint32_t *pcubMsgSize; +}; + +struct ISteamNetworking_SteamNetworking002_RetrieveDataFromSocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + void *pubDest; + uint32_t cubDest; + uint32_t *pcubMsgSize; +}; + +struct ISteamNetworking_SteamNetworking002_IsDataAvailable_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hListenSocket; + uint32_t *pcubMsgSize; + uint32_t *phSocket; +}; + +struct ISteamNetworking_SteamNetworking002_RetrieveData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hListenSocket; + void *pubDest; + uint32_t cubDest; + uint32_t *pcubMsgSize; + uint32_t *phSocket; +}; + +struct ISteamNetworking_SteamNetworking002_GetSocketInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + CSteamID *pSteamIDRemote; + int32_t *peSocketStatus; + uint32_t *punIPRemote; + uint16_t *punPortRemote; +}; + +struct ISteamNetworking_SteamNetworking002_GetListenSocketInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hListenSocket; + uint32_t *pnIP; + uint16_t *pnPort; +}; + +struct ISteamNetworking_SteamNetworking002_GetSocketConnectionType_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t hSocket; +}; + +struct ISteamNetworking_SteamNetworking002_GetMaxPacketSize_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t hSocket; +}; + +struct ISteamNetworking_SteamNetworking003_SendP2PPacket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDRemote; + const void *pubData; + uint32_t cubData; + uint32_t eP2PSendType; +}; + +struct ISteamNetworking_SteamNetworking003_IsP2PPacketAvailable_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t *pcubMsgSize; +}; + +struct ISteamNetworking_SteamNetworking003_ReadP2PPacket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + void *pubDest; + uint32_t cubDest; + uint32_t *pcubMsgSize; + CSteamID *psteamIDRemote; +}; + +struct ISteamNetworking_SteamNetworking003_AcceptP2PSessionWithUser_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDRemote; +}; + +struct ISteamNetworking_SteamNetworking003_CloseP2PSessionWithUser_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDRemote; +}; + +struct ISteamNetworking_SteamNetworking003_GetP2PSessionState_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDRemote; + P2PSessionState_t *pConnectionState; +}; + +struct ISteamNetworking_SteamNetworking003_CreateListenSocket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + int32_t nVirtualP2PPort; + uint32_t nIP; + uint16_t nPort; + bool bAllowUseOfPacketRelay; +}; + +struct ISteamNetworking_SteamNetworking003_CreateP2PConnectionSocket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDTarget; + int32_t nVirtualPort; + int32_t nTimeoutSec; + bool bAllowUseOfPacketRelay; +}; + +struct ISteamNetworking_SteamNetworking003_CreateConnectionSocket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t nIP; + uint16_t nPort; + int32_t nTimeoutSec; +}; + +struct ISteamNetworking_SteamNetworking003_DestroySocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + bool bNotifyRemoteEnd; +}; + +struct ISteamNetworking_SteamNetworking003_DestroyListenSocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + bool bNotifyRemoteEnd; +}; + +struct ISteamNetworking_SteamNetworking003_SendDataOnSocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + void *pubData; + uint32_t cubData; + bool bReliable; +}; + +struct ISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + uint32_t *pcubMsgSize; +}; + +struct ISteamNetworking_SteamNetworking003_RetrieveDataFromSocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + void *pubDest; + uint32_t cubDest; + uint32_t *pcubMsgSize; +}; + +struct ISteamNetworking_SteamNetworking003_IsDataAvailable_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hListenSocket; + uint32_t *pcubMsgSize; + uint32_t *phSocket; +}; + +struct ISteamNetworking_SteamNetworking003_RetrieveData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hListenSocket; + void *pubDest; + uint32_t cubDest; + uint32_t *pcubMsgSize; + uint32_t *phSocket; +}; + +struct ISteamNetworking_SteamNetworking003_GetSocketInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + CSteamID *pSteamIDRemote; + int32_t *peSocketStatus; + uint32_t *punIPRemote; + uint16_t *punPortRemote; +}; + +struct ISteamNetworking_SteamNetworking003_GetListenSocketInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hListenSocket; + uint32_t *pnIP; + uint16_t *pnPort; +}; + +struct ISteamNetworking_SteamNetworking003_GetSocketConnectionType_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t hSocket; +}; + +struct ISteamNetworking_SteamNetworking003_GetMaxPacketSize_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t hSocket; +}; + +struct ISteamNetworking_SteamNetworking004_SendP2PPacket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDRemote; + const void *pubData; + uint32_t cubData; + uint32_t eP2PSendType; + int32_t nVirtualPort; +}; + +struct ISteamNetworking_SteamNetworking004_IsP2PPacketAvailable_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t *pcubMsgSize; + int32_t nVirtualPort; +}; + +struct ISteamNetworking_SteamNetworking004_ReadP2PPacket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + void *pubDest; + uint32_t cubDest; + uint32_t *pcubMsgSize; + CSteamID *psteamIDRemote; + int32_t nVirtualPort; +}; + +struct ISteamNetworking_SteamNetworking004_AcceptP2PSessionWithUser_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDRemote; +}; + +struct ISteamNetworking_SteamNetworking004_CloseP2PSessionWithUser_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDRemote; +}; + +struct ISteamNetworking_SteamNetworking004_GetP2PSessionState_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDRemote; + P2PSessionState_t *pConnectionState; +}; + +struct ISteamNetworking_SteamNetworking004_CreateListenSocket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + int32_t nVirtualP2PPort; + uint32_t nIP; + uint16_t nPort; + bool bAllowUseOfPacketRelay; +}; + +struct ISteamNetworking_SteamNetworking004_CreateP2PConnectionSocket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDTarget; + int32_t nVirtualPort; + int32_t nTimeoutSec; + bool bAllowUseOfPacketRelay; +}; + +struct ISteamNetworking_SteamNetworking004_CreateConnectionSocket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t nIP; + uint16_t nPort; + int32_t nTimeoutSec; +}; + +struct ISteamNetworking_SteamNetworking004_DestroySocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + bool bNotifyRemoteEnd; +}; + +struct ISteamNetworking_SteamNetworking004_DestroyListenSocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + bool bNotifyRemoteEnd; +}; + +struct ISteamNetworking_SteamNetworking004_SendDataOnSocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + void *pubData; + uint32_t cubData; + bool bReliable; +}; + +struct ISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + uint32_t *pcubMsgSize; +}; + +struct ISteamNetworking_SteamNetworking004_RetrieveDataFromSocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + void *pubDest; + uint32_t cubDest; + uint32_t *pcubMsgSize; +}; + +struct ISteamNetworking_SteamNetworking004_IsDataAvailable_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hListenSocket; + uint32_t *pcubMsgSize; + uint32_t *phSocket; +}; + +struct ISteamNetworking_SteamNetworking004_RetrieveData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hListenSocket; + void *pubDest; + uint32_t cubDest; + uint32_t *pcubMsgSize; + uint32_t *phSocket; +}; + +struct ISteamNetworking_SteamNetworking004_GetSocketInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + CSteamID *pSteamIDRemote; + int32_t *peSocketStatus; + uint32_t *punIPRemote; + uint16_t *punPortRemote; +}; + +struct ISteamNetworking_SteamNetworking004_GetListenSocketInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hListenSocket; + uint32_t *pnIP; + uint16_t *pnPort; +}; + +struct ISteamNetworking_SteamNetworking004_GetSocketConnectionType_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t hSocket; +}; + +struct ISteamNetworking_SteamNetworking004_GetMaxPacketSize_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t hSocket; +}; + +struct ISteamNetworking_SteamNetworking005_SendP2PPacket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDRemote; + const void *pubData; + uint32_t cubData; + uint32_t eP2PSendType; + int32_t nChannel; +}; + +struct ISteamNetworking_SteamNetworking005_IsP2PPacketAvailable_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t *pcubMsgSize; + int32_t nChannel; +}; + +struct ISteamNetworking_SteamNetworking005_ReadP2PPacket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + void *pubDest; + uint32_t cubDest; + uint32_t *pcubMsgSize; + CSteamID *psteamIDRemote; + int32_t nChannel; +}; + +struct ISteamNetworking_SteamNetworking005_AcceptP2PSessionWithUser_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDRemote; +}; + +struct ISteamNetworking_SteamNetworking005_CloseP2PSessionWithUser_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDRemote; +}; + +struct ISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDRemote; + int32_t nChannel; +}; + +struct ISteamNetworking_SteamNetworking005_GetP2PSessionState_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDRemote; + P2PSessionState_t *pConnectionState; +}; + +struct ISteamNetworking_SteamNetworking005_AllowP2PPacketRelay_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bAllow; +}; + +struct ISteamNetworking_SteamNetworking005_CreateListenSocket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + int32_t nVirtualP2PPort; + uint32_t nIP; + uint16_t nPort; + bool bAllowUseOfPacketRelay; +}; + +struct ISteamNetworking_SteamNetworking005_CreateP2PConnectionSocket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDTarget; + int32_t nVirtualPort; + int32_t nTimeoutSec; + bool bAllowUseOfPacketRelay; +}; + +struct ISteamNetworking_SteamNetworking005_CreateConnectionSocket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t nIP; + uint16_t nPort; + int32_t nTimeoutSec; +}; + +struct ISteamNetworking_SteamNetworking005_DestroySocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + bool bNotifyRemoteEnd; +}; + +struct ISteamNetworking_SteamNetworking005_DestroyListenSocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + bool bNotifyRemoteEnd; +}; + +struct ISteamNetworking_SteamNetworking005_SendDataOnSocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + void *pubData; + uint32_t cubData; + bool bReliable; +}; + +struct ISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + uint32_t *pcubMsgSize; +}; + +struct ISteamNetworking_SteamNetworking005_RetrieveDataFromSocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + void *pubDest; + uint32_t cubDest; + uint32_t *pcubMsgSize; +}; + +struct ISteamNetworking_SteamNetworking005_IsDataAvailable_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hListenSocket; + uint32_t *pcubMsgSize; + uint32_t *phSocket; +}; + +struct ISteamNetworking_SteamNetworking005_RetrieveData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hListenSocket; + void *pubDest; + uint32_t cubDest; + uint32_t *pcubMsgSize; + uint32_t *phSocket; +}; + +struct ISteamNetworking_SteamNetworking005_GetSocketInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + CSteamID *pSteamIDRemote; + int32_t *peSocketStatus; + uint32_t *punIPRemote; + uint16_t *punPortRemote; +}; + +struct ISteamNetworking_SteamNetworking005_GetListenSocketInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hListenSocket; + uint32_t *pnIP; + uint16_t *pnPort; +}; + +struct ISteamNetworking_SteamNetworking005_GetSocketConnectionType_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t hSocket; +}; + +struct ISteamNetworking_SteamNetworking005_GetMaxPacketSize_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t hSocket; +}; + +struct ISteamNetworking_SteamNetworking006_SendP2PPacket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDRemote; + const void *pubData; + uint32_t cubData; + uint32_t eP2PSendType; + int32_t nChannel; +}; + +struct ISteamNetworking_SteamNetworking006_IsP2PPacketAvailable_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t *pcubMsgSize; + int32_t nChannel; +}; + +struct ISteamNetworking_SteamNetworking006_ReadP2PPacket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + void *pubDest; + uint32_t cubDest; + uint32_t *pcubMsgSize; + CSteamID *psteamIDRemote; + int32_t nChannel; +}; + +struct ISteamNetworking_SteamNetworking006_AcceptP2PSessionWithUser_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDRemote; +}; + +struct ISteamNetworking_SteamNetworking006_CloseP2PSessionWithUser_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDRemote; +}; + +struct ISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDRemote; + int32_t nChannel; +}; + +struct ISteamNetworking_SteamNetworking006_GetP2PSessionState_params +{ + struct u_steam_iface *linux_side; + bool _ret; + CSteamID steamIDRemote; + P2PSessionState_t *pConnectionState; +}; + +struct ISteamNetworking_SteamNetworking006_AllowP2PPacketRelay_params +{ + struct u_steam_iface *linux_side; + bool _ret; + bool bAllow; +}; + +struct ISteamNetworking_SteamNetworking006_CreateListenSocket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + int32_t nVirtualP2PPort; + SteamIPAddress_t nIP; + uint16_t nPort; + bool bAllowUseOfPacketRelay; +}; + +struct ISteamNetworking_SteamNetworking006_CreateP2PConnectionSocket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamIDTarget; + int32_t nVirtualPort; + int32_t nTimeoutSec; + bool bAllowUseOfPacketRelay; +}; + +struct ISteamNetworking_SteamNetworking006_CreateConnectionSocket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + SteamIPAddress_t nIP; + uint16_t nPort; + int32_t nTimeoutSec; +}; + +struct ISteamNetworking_SteamNetworking006_DestroySocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + bool bNotifyRemoteEnd; +}; + +struct ISteamNetworking_SteamNetworking006_DestroyListenSocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + bool bNotifyRemoteEnd; +}; + +struct ISteamNetworking_SteamNetworking006_SendDataOnSocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + void *pubData; + uint32_t cubData; + bool bReliable; +}; + +struct ISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + uint32_t *pcubMsgSize; +}; + +struct ISteamNetworking_SteamNetworking006_RetrieveDataFromSocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + void *pubDest; + uint32_t cubDest; + uint32_t *pcubMsgSize; +}; + +struct ISteamNetworking_SteamNetworking006_IsDataAvailable_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hListenSocket; + uint32_t *pcubMsgSize; + uint32_t *phSocket; +}; + +struct ISteamNetworking_SteamNetworking006_RetrieveData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hListenSocket; + void *pubDest; + uint32_t cubDest; + uint32_t *pcubMsgSize; + uint32_t *phSocket; +}; + +struct ISteamNetworking_SteamNetworking006_GetSocketInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + CSteamID *pSteamIDRemote; + int32_t *peSocketStatus; + SteamIPAddress_t *punIPRemote; + uint16_t *punPortRemote; +}; + +struct ISteamNetworking_SteamNetworking006_GetListenSocketInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hListenSocket; + SteamIPAddress_t *pnIP; + uint16_t *pnPort; +}; + +struct ISteamNetworking_SteamNetworking006_GetSocketConnectionType_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t hSocket; +}; + +struct ISteamNetworking_SteamNetworking006_GetMaxPacketSize_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t hSocket; +}; + +struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_DestroyFakeUDPPort_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_SendMessageToFakeIP_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const SteamNetworkingIPAddr *remoteAddress; + const void *pData; + uint32_t cbData; + int32_t nSendFlags; +}; + +struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ReceiveMessages_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + w_SteamNetworkingMessage_t_153a **ppOutMessages; + int32_t nMaxMessages; +}; + +struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ScheduleCleanup_params +{ + struct u_steam_iface *linux_side; + const SteamNetworkingIPAddr *remoteAddress; +}; + +struct ISteamNetworkingMessages_SteamNetworkingMessages002_SendMessageToUser_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const SteamNetworkingIdentity_144 *identityRemote; + const void *pubData; + uint32_t cubData; + int32_t nSendFlags; + int32_t nRemoteChannel; +}; + +struct ISteamNetworkingMessages_SteamNetworkingMessages002_ReceiveMessagesOnChannel_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t nLocalChannel; + w_SteamNetworkingMessage_t_153a **ppOutMessages; + int32_t nMaxMessages; +}; + +struct ISteamNetworkingMessages_SteamNetworkingMessages002_AcceptSessionWithUser_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const SteamNetworkingIdentity_144 *identityRemote; +}; + +struct ISteamNetworkingMessages_SteamNetworkingMessages002_CloseSessionWithUser_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const SteamNetworkingIdentity_144 *identityRemote; +}; + +struct ISteamNetworkingMessages_SteamNetworkingMessages002_CloseChannelWithUser_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const SteamNetworkingIdentity_144 *identityRemote; + int32_t nLocalChannel; +}; + +struct ISteamNetworkingMessages_SteamNetworkingMessages002_GetSessionConnectionInfo_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const SteamNetworkingIdentity_144 *identityRemote; + SteamNetConnectionInfo_t_153a *pConnectionInfo; + SteamNetConnectionRealTimeStatus_t *pQuickStatus; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketIP_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const SteamNetworkingIPAddr *localAddress; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectByIPAddress_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const SteamNetworkingIPAddr *address; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketP2P_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + int32_t nVirtualPort; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectP2P_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const SteamNetworkingIdentity_144 *identityRemote; + int32_t nVirtualPort; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets002_AcceptConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t hConn; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets002_CloseConnection_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hPeer; + int32_t nReason; + const char *pszDebug; + bool bEnableLinger; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets002_CloseListenSocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionUserData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hPeer; + int64_t nUserData; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionUserData_params +{ + struct u_steam_iface *linux_side; + int64_t _ret; + uint32_t hPeer; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionName_params +{ + struct u_steam_iface *linux_side; + uint32_t hPeer; + const char *pszName; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionName_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hPeer; + char *pszName; + int32_t nMaxLen; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets002_SendMessageToConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t hConn; + const void *pData; + uint32_t cbData; + int32_t nSendFlags; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets002_FlushMessagesOnConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t hConn; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnConnection_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t hConn; + w_SteamNetworkingMessage_t_144 **ppOutMessages; + int32_t nMaxMessages; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnListenSocket_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t hSocket; + w_SteamNetworkingMessage_t_144 **ppOutMessages; + int32_t nMaxMessages; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hConn; + SteamNetConnectionInfo_t_144 *pInfo; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetQuickConnectionStatus_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hConn; + SteamNetworkingQuickConnectionStatus *pStats; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetDetailedConnectionStatus_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t hConn; + char *pszBuf; + int32_t cbBuf; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetListenSocketAddress_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + SteamNetworkingIPAddr *address; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocketPair_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t *pOutConnection1; + uint32_t *pOutConnection2; + bool bUseNetworkLoopback; + const SteamNetworkingIdentity_144 *pIdentity1; + const SteamNetworkingIdentity_144 *pIdentity2; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetIdentity_params +{ + struct u_steam_iface *linux_side; + bool _ret; + SteamNetworkingIdentity_144 *pIdentity; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets002_ReceivedRelayAuthTicket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const void *pvTicket; + int32_t cbTicket; + SteamDatagramRelayAuthTicket *pOutParsedTicket; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets002_FindRelayAuthTicketForServer_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const SteamNetworkingIdentity_144 *identityGameServer; + int32_t nVirtualPort; + SteamDatagramRelayAuthTicket *pOutParsedTicket; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectToHostedDedicatedServer_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const SteamNetworkingIdentity_144 *identityTarget; + int32_t nVirtualPort; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPort_params +{ + struct u_steam_iface *linux_side; + uint16_t _ret; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPOPID_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerAddress_params +{ + struct u_steam_iface *linux_side; + bool _ret; + SteamDatagramHostedAddress *pRouting; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateHostedDedicatedServerListenSocket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + int32_t nVirtualPort; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketIP_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const SteamNetworkingIPAddr *localAddress; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectByIPAddress_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const SteamNetworkingIPAddr *address; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketP2P_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + int32_t nVirtualPort; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectP2P_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const SteamNetworkingIdentity_144 *identityRemote; + int32_t nVirtualPort; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets004_AcceptConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t hConn; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets004_CloseConnection_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hPeer; + int32_t nReason; + const char *pszDebug; + bool bEnableLinger; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets004_CloseListenSocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionUserData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hPeer; + int64_t nUserData; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionUserData_params +{ + struct u_steam_iface *linux_side; + int64_t _ret; + uint32_t hPeer; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionName_params +{ + struct u_steam_iface *linux_side; + uint32_t hPeer; + const char *pszName; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionName_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hPeer; + char *pszName; + int32_t nMaxLen; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets004_SendMessageToConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t hConn; + const void *pData; + uint32_t cbData; + int32_t nSendFlags; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets004_FlushMessagesOnConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t hConn; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnConnection_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t hConn; + w_SteamNetworkingMessage_t_144 **ppOutMessages; + int32_t nMaxMessages; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnListenSocket_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t hSocket; + w_SteamNetworkingMessage_t_144 **ppOutMessages; + int32_t nMaxMessages; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hConn; + SteamNetConnectionInfo_t_144 *pInfo; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetQuickConnectionStatus_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hConn; + SteamNetworkingQuickConnectionStatus *pStats; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetDetailedConnectionStatus_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t hConn; + char *pszBuf; + int32_t cbBuf; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetListenSocketAddress_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + SteamNetworkingIPAddr *address; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocketPair_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t *pOutConnection1; + uint32_t *pOutConnection2; + bool bUseNetworkLoopback; + const SteamNetworkingIdentity_144 *pIdentity1; + const SteamNetworkingIdentity_144 *pIdentity2; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetIdentity_params +{ + struct u_steam_iface *linux_side; + bool _ret; + SteamNetworkingIdentity_144 *pIdentity; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets004_InitAuthentication_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetAuthenticationStatus_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + SteamNetAuthenticationStatus_t *pDetails; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets004_ReceivedRelayAuthTicket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const void *pvTicket; + int32_t cbTicket; + SteamDatagramRelayAuthTicket *pOutParsedTicket; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets004_FindRelayAuthTicketForServer_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const SteamNetworkingIdentity_144 *identityGameServer; + int32_t nVirtualPort; + SteamDatagramRelayAuthTicket *pOutParsedTicket; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectToHostedDedicatedServer_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const SteamNetworkingIdentity_144 *identityTarget; + int32_t nVirtualPort; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPort_params +{ + struct u_steam_iface *linux_side; + uint16_t _ret; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPOPID_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerAddress_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + SteamDatagramHostedAddress *pRouting; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateHostedDedicatedServerListenSocket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + int32_t nVirtualPort; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetGameCoordinatorServerLogin_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + SteamDatagramGameCoordinatorServerLogin *pLoginInfo; + int32_t *pcbSignedBlob; + void *pBlob; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketIP_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const SteamNetworkingIPAddr *localAddress; + int32_t nOptions; + const SteamNetworkingConfigValue_t *pOptions; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectByIPAddress_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const SteamNetworkingIPAddr *address; + int32_t nOptions; + const SteamNetworkingConfigValue_t *pOptions; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketP2P_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + int32_t nVirtualPort; + int32_t nOptions; + const SteamNetworkingConfigValue_t *pOptions; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2P_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const SteamNetworkingIdentity_144 *identityRemote; + int32_t nVirtualPort; + int32_t nOptions; + const SteamNetworkingConfigValue_t *pOptions; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_AcceptConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t hConn; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_CloseConnection_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hPeer; + int32_t nReason; + const char *pszDebug; + bool bEnableLinger; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_CloseListenSocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionUserData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hPeer; + int64_t nUserData; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionUserData_params +{ + struct u_steam_iface *linux_side; + int64_t _ret; + uint32_t hPeer; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionName_params +{ + struct u_steam_iface *linux_side; + uint32_t hPeer; + const char *pszName; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionName_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hPeer; + char *pszName; + int32_t nMaxLen; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_SendMessageToConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t hConn; + const void *pData; + uint32_t cbData; + int32_t nSendFlags; + int64_t *pOutMessageNumber; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_SendMessages_params +{ + struct u_steam_iface *linux_side; + int32_t nMessages; + w_SteamNetworkingMessage_t_147 **pMessages; + int64_t *pOutMessageNumberOrResult; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_FlushMessagesOnConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t hConn; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnConnection_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t hConn; + w_SteamNetworkingMessage_t_147 **ppOutMessages; + int32_t nMaxMessages; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnListenSocket_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t hSocket; + w_SteamNetworkingMessage_t_147 **ppOutMessages; + int32_t nMaxMessages; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hConn; + SteamNetConnectionInfo_t_144 *pInfo; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetQuickConnectionStatus_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hConn; + SteamNetworkingQuickConnectionStatus *pStats; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetDetailedConnectionStatus_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t hConn; + char *pszBuf; + int32_t cbBuf; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetListenSocketAddress_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + SteamNetworkingIPAddr *address; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocketPair_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t *pOutConnection1; + uint32_t *pOutConnection2; + bool bUseNetworkLoopback; + const SteamNetworkingIdentity_144 *pIdentity1; + const SteamNetworkingIdentity_144 *pIdentity2; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetIdentity_params +{ + struct u_steam_iface *linux_side; + bool _ret; + SteamNetworkingIdentity_144 *pIdentity; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_InitAuthentication_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetAuthenticationStatus_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + SteamNetAuthenticationStatus_t *pDetails; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedRelayAuthTicket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const void *pvTicket; + int32_t cbTicket; + SteamDatagramRelayAuthTicket *pOutParsedTicket; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_FindRelayAuthTicketForServer_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const SteamNetworkingIdentity_144 *identityGameServer; + int32_t nVirtualPort; + SteamDatagramRelayAuthTicket *pOutParsedTicket; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectToHostedDedicatedServer_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const SteamNetworkingIdentity_144 *identityTarget; + int32_t nVirtualPort; + int32_t nOptions; + const SteamNetworkingConfigValue_t *pOptions; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPort_params +{ + struct u_steam_iface *linux_side; + uint16_t _ret; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPOPID_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerAddress_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + SteamDatagramHostedAddress *pRouting; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateHostedDedicatedServerListenSocket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + int32_t nVirtualPort; + int32_t nOptions; + const SteamNetworkingConfigValue_t *pOptions; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetGameCoordinatorServerLogin_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + SteamDatagramGameCoordinatorServerLogin *pLoginInfo; + int32_t *pcbSignedBlob; + void *pBlob; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2PCustomSignaling_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + w_ISteamNetworkingConnectionCustomSignaling *pSignaling; + const SteamNetworkingIdentity_144 *pPeerIdentity; + int32_t nOptions; + const SteamNetworkingConfigValue_t *pOptions; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP2PCustomSignal_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const void *pMsg; + int32_t cbMsg; + w_ISteamNetworkingCustomSignalingRecvContext *pContext; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketIP_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const SteamNetworkingIPAddr *localAddress; + int32_t nOptions; + const SteamNetworkingConfigValue_t *pOptions; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectByIPAddress_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const SteamNetworkingIPAddr *address; + int32_t nOptions; + const SteamNetworkingConfigValue_t *pOptions; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketP2P_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + int32_t nVirtualPort; + int32_t nOptions; + const SteamNetworkingConfigValue_t *pOptions; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2P_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const SteamNetworkingIdentity_144 *identityRemote; + int32_t nVirtualPort; + int32_t nOptions; + const SteamNetworkingConfigValue_t *pOptions; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_AcceptConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t hConn; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_CloseConnection_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hPeer; + int32_t nReason; + const char *pszDebug; + bool bEnableLinger; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_CloseListenSocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionUserData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hPeer; + int64_t nUserData; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionUserData_params +{ + struct u_steam_iface *linux_side; + int64_t _ret; + uint32_t hPeer; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionName_params +{ + struct u_steam_iface *linux_side; + uint32_t hPeer; + const char *pszName; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionName_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hPeer; + char *pszName; + int32_t nMaxLen; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_SendMessageToConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t hConn; + const void *pData; + uint32_t cbData; + int32_t nSendFlags; + int64_t *pOutMessageNumber; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_SendMessages_params +{ + struct u_steam_iface *linux_side; + int32_t nMessages; + w_SteamNetworkingMessage_t_147 *const *pMessages; + int64_t *pOutMessageNumberOrResult; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_FlushMessagesOnConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t hConn; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnConnection_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t hConn; + w_SteamNetworkingMessage_t_147 **ppOutMessages; + int32_t nMaxMessages; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hConn; + SteamNetConnectionInfo_t_144 *pInfo; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetQuickConnectionStatus_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hConn; + SteamNetworkingQuickConnectionStatus *pStats; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetDetailedConnectionStatus_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t hConn; + char *pszBuf; + int32_t cbBuf; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetListenSocketAddress_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + SteamNetworkingIPAddr *address; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocketPair_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t *pOutConnection1; + uint32_t *pOutConnection2; + bool bUseNetworkLoopback; + const SteamNetworkingIdentity_144 *pIdentity1; + const SteamNetworkingIdentity_144 *pIdentity2; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetIdentity_params +{ + struct u_steam_iface *linux_side; + bool _ret; + SteamNetworkingIdentity_144 *pIdentity; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_InitAuthentication_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetAuthenticationStatus_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + SteamNetAuthenticationStatus_t *pDetails; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreatePollGroup_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_DestroyPollGroup_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hPollGroup; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionPollGroup_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hConn; + uint32_t hPollGroup; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnPollGroup_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t hPollGroup; + w_SteamNetworkingMessage_t_147 **ppOutMessages; + int32_t nMaxMessages; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedRelayAuthTicket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const void *pvTicket; + int32_t cbTicket; + SteamDatagramRelayAuthTicket *pOutParsedTicket; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_FindRelayAuthTicketForServer_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const SteamNetworkingIdentity_144 *identityGameServer; + int32_t nVirtualPort; + SteamDatagramRelayAuthTicket *pOutParsedTicket; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectToHostedDedicatedServer_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const SteamNetworkingIdentity_144 *identityTarget; + int32_t nVirtualPort; + int32_t nOptions; + const SteamNetworkingConfigValue_t *pOptions; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPort_params +{ + struct u_steam_iface *linux_side; + uint16_t _ret; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPOPID_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerAddress_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + SteamDatagramHostedAddress *pRouting; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateHostedDedicatedServerListenSocket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + int32_t nVirtualPort; + int32_t nOptions; + const SteamNetworkingConfigValue_t *pOptions; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetGameCoordinatorServerLogin_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + SteamDatagramGameCoordinatorServerLogin *pLoginInfo; + int32_t *pcbSignedBlob; + void *pBlob; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2PCustomSignaling_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + w_ISteamNetworkingConnectionCustomSignaling *pSignaling; + const SteamNetworkingIdentity_144 *pPeerIdentity; + int32_t nOptions; + const SteamNetworkingConfigValue_t *pOptions; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP2PCustomSignal_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const void *pMsg; + int32_t cbMsg; + w_ISteamNetworkingCustomSignalingRecvContext *pContext; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetCertificateRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pcbBlob; + void *pBlob; + char (*errMsg)[1024]; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetCertificate_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const void *pCertificate; + int32_t cbCertificate; + char (*errMsg)[1024]; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketIP_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const SteamNetworkingIPAddr *localAddress; + int32_t nOptions; + const SteamNetworkingConfigValue_t *pOptions; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectByIPAddress_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const SteamNetworkingIPAddr *address; + int32_t nOptions; + const SteamNetworkingConfigValue_t *pOptions; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketP2P_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + int32_t nLocalVirtualPort; + int32_t nOptions; + const SteamNetworkingConfigValue_t *pOptions; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2P_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const SteamNetworkingIdentity_144 *identityRemote; + int32_t nRemoteVirtualPort; + int32_t nOptions; + const SteamNetworkingConfigValue_t *pOptions; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_AcceptConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t hConn; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_CloseConnection_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hPeer; + int32_t nReason; + const char *pszDebug; + bool bEnableLinger; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_CloseListenSocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionUserData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hPeer; + int64_t nUserData; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionUserData_params +{ + struct u_steam_iface *linux_side; + int64_t _ret; + uint32_t hPeer; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionName_params +{ + struct u_steam_iface *linux_side; + uint32_t hPeer; + const char *pszName; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionName_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hPeer; + char *pszName; + int32_t nMaxLen; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_SendMessageToConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t hConn; + const void *pData; + uint32_t cbData; + int32_t nSendFlags; + int64_t *pOutMessageNumber; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_SendMessages_params +{ + struct u_steam_iface *linux_side; + int32_t nMessages; + w_SteamNetworkingMessage_t_147 *const *pMessages; + int64_t *pOutMessageNumberOrResult; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_FlushMessagesOnConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t hConn; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnConnection_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t hConn; + w_SteamNetworkingMessage_t_147 **ppOutMessages; + int32_t nMaxMessages; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hConn; + SteamNetConnectionInfo_t_144 *pInfo; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetQuickConnectionStatus_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hConn; + SteamNetworkingQuickConnectionStatus *pStats; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetDetailedConnectionStatus_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t hConn; + char *pszBuf; + int32_t cbBuf; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetListenSocketAddress_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + SteamNetworkingIPAddr *address; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocketPair_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t *pOutConnection1; + uint32_t *pOutConnection2; + bool bUseNetworkLoopback; + const SteamNetworkingIdentity_144 *pIdentity1; + const SteamNetworkingIdentity_144 *pIdentity2; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetIdentity_params +{ + struct u_steam_iface *linux_side; + bool _ret; + SteamNetworkingIdentity_144 *pIdentity; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_InitAuthentication_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetAuthenticationStatus_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + SteamNetAuthenticationStatus_t *pDetails; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreatePollGroup_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_DestroyPollGroup_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hPollGroup; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionPollGroup_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hConn; + uint32_t hPollGroup; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnPollGroup_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t hPollGroup; + w_SteamNetworkingMessage_t_147 **ppOutMessages; + int32_t nMaxMessages; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedRelayAuthTicket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const void *pvTicket; + int32_t cbTicket; + SteamDatagramRelayAuthTicket *pOutParsedTicket; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_FindRelayAuthTicketForServer_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const SteamNetworkingIdentity_144 *identityGameServer; + int32_t nRemoteVirtualPort; + SteamDatagramRelayAuthTicket *pOutParsedTicket; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectToHostedDedicatedServer_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const SteamNetworkingIdentity_144 *identityTarget; + int32_t nRemoteVirtualPort; + int32_t nOptions; + const SteamNetworkingConfigValue_t *pOptions; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPort_params +{ + struct u_steam_iface *linux_side; + uint16_t _ret; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPOPID_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerAddress_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + SteamDatagramHostedAddress *pRouting; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateHostedDedicatedServerListenSocket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + int32_t nLocalVirtualPort; + int32_t nOptions; + const SteamNetworkingConfigValue_t *pOptions; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetGameCoordinatorServerLogin_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + SteamDatagramGameCoordinatorServerLogin *pLoginInfo; + int32_t *pcbSignedBlob; + void *pBlob; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2PCustomSignaling_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + void /*ISteamNetworkingConnectionSignaling*/ *pSignaling; + const SteamNetworkingIdentity_144 *pPeerIdentity; + int32_t nRemoteVirtualPort; + int32_t nOptions; + const SteamNetworkingConfigValue_t *pOptions; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2PCustomSignal_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const void *pMsg; + int32_t cbMsg; + void /*ISteamNetworkingSignalingRecvContext*/ *pContext; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetCertificateRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pcbBlob; + void *pBlob; + char (*errMsg)[1024]; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetCertificate_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const void *pCertificate; + int32_t cbCertificate; + char (*errMsg)[1024]; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets009_RunCallbacks_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketIP_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const SteamNetworkingIPAddr *localAddress; + int32_t nOptions; + const SteamNetworkingConfigValue_t *pOptions; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectByIPAddress_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const SteamNetworkingIPAddr *address; + int32_t nOptions; + const SteamNetworkingConfigValue_t *pOptions; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2P_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + int32_t nLocalVirtualPort; + int32_t nOptions; + const SteamNetworkingConfigValue_t *pOptions; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2P_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const SteamNetworkingIdentity_144 *identityRemote; + int32_t nRemoteVirtualPort; + int32_t nOptions; + const SteamNetworkingConfigValue_t *pOptions; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_AcceptConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t hConn; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_CloseConnection_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hPeer; + int32_t nReason; + const char *pszDebug; + bool bEnableLinger; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_CloseListenSocket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionUserData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hPeer; + int64_t nUserData; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionUserData_params +{ + struct u_steam_iface *linux_side; + int64_t _ret; + uint32_t hPeer; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionName_params +{ + struct u_steam_iface *linux_side; + uint32_t hPeer; + const char *pszName; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionName_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hPeer; + char *pszName; + int32_t nMaxLen; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_SendMessageToConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t hConn; + const void *pData; + uint32_t cbData; + int32_t nSendFlags; + int64_t *pOutMessageNumber; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_SendMessages_params +{ + struct u_steam_iface *linux_side; + int32_t nMessages; + w_SteamNetworkingMessage_t_153a *const *pMessages; + int64_t *pOutMessageNumberOrResult; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_FlushMessagesOnConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t hConn; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnConnection_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t hConn; + w_SteamNetworkingMessage_t_153a **ppOutMessages; + int32_t nMaxMessages; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hConn; + SteamNetConnectionInfo_t_153a *pInfo; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionRealTimeStatus_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t hConn; + SteamNetConnectionRealTimeStatus_t *pStatus; + int32_t nLanes; + SteamNetConnectionRealTimeLaneStatus_t *pLanes; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetDetailedConnectionStatus_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t hConn; + char *pszBuf; + int32_t cbBuf; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetListenSocketAddress_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hSocket; + SteamNetworkingIPAddr *address; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateSocketPair_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t *pOutConnection1; + uint32_t *pOutConnection2; + bool bUseNetworkLoopback; + const SteamNetworkingIdentity_144 *pIdentity1; + const SteamNetworkingIdentity_144 *pIdentity2; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConfigureConnectionLanes_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t hConn; + int32_t nNumLanes; + const int32_t *pLanePriorities; + const uint16_t *pLaneWeights; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetIdentity_params +{ + struct u_steam_iface *linux_side; + bool _ret; + SteamNetworkingIdentity_144 *pIdentity; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_InitAuthentication_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetAuthenticationStatus_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + SteamNetAuthenticationStatus_t *pDetails; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreatePollGroup_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_DestroyPollGroup_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hPollGroup; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionPollGroup_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t hConn; + uint32_t hPollGroup; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnPollGroup_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t hPollGroup; + w_SteamNetworkingMessage_t_153a **ppOutMessages; + int32_t nMaxMessages; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedRelayAuthTicket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const void *pvTicket; + int32_t cbTicket; + SteamDatagramRelayAuthTicket *pOutParsedTicket; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_FindRelayAuthTicketForServer_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const SteamNetworkingIdentity_144 *identityGameServer; + int32_t nRemoteVirtualPort; + SteamDatagramRelayAuthTicket *pOutParsedTicket; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectToHostedDedicatedServer_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const SteamNetworkingIdentity_144 *identityTarget; + int32_t nRemoteVirtualPort; + int32_t nOptions; + const SteamNetworkingConfigValue_t *pOptions; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPort_params +{ + struct u_steam_iface *linux_side; + uint16_t _ret; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPOPID_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerAddress_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + SteamDatagramHostedAddress *pRouting; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateHostedDedicatedServerListenSocket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + int32_t nLocalVirtualPort; + int32_t nOptions; + const SteamNetworkingConfigValue_t *pOptions; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetGameCoordinatorServerLogin_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + SteamDatagramGameCoordinatorServerLogin *pLoginInfo; + int32_t *pcbSignedBlob; + void *pBlob; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2PCustomSignaling_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + void /*ISteamNetworkingConnectionSignaling*/ *pSignaling; + const SteamNetworkingIdentity_144 *pPeerIdentity; + int32_t nRemoteVirtualPort; + int32_t nOptions; + const SteamNetworkingConfigValue_t *pOptions; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2PCustomSignal_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const void *pMsg; + int32_t cbMsg; + void /*ISteamNetworkingSignalingRecvContext*/ *pContext; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetCertificateRequest_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t *pcbBlob; + void *pBlob; + char (*errMsg)[1024]; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetCertificate_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const void *pCertificate; + int32_t cbCertificate; + char (*errMsg)[1024]; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_ResetIdentity_params +{ + struct u_steam_iface *linux_side; + const SteamNetworkingIdentity_144 *pIdentity; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_RunCallbacks_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_BeginAsyncRequestFakeIP_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t nNumPorts; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetFakeIP_params +{ + struct u_steam_iface *linux_side; + int32_t idxFirstPort; + SteamNetworkingFakeIPResult_t *pInfo; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2PFakeIP_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + int32_t idxFakePort; + int32_t nOptions; + const SteamNetworkingConfigValue_t *pOptions; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetRemoteFakeIPForConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t hConn; + SteamNetworkingIPAddr *pOutAddr; +}; + +struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateFakeUDPPort_params +{ + struct u_steam_iface *linux_side; + void /*ISteamNetworkingFakeUDPPort*/ *_ret; + int32_t idxFakeServerPort; +}; + +struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PRendezvous_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDRemote; + uint32_t unConnectionIDSrc; + const void *pMsgRendezvous; + uint32_t cbRendezvous; +}; + +struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PConnectionFailure_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDRemote; + uint32_t unConnectionIDDest; + uint32_t nReason; + const char *pszReason; +}; + +struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCertAsync_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetNetworkConfigJSON_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + void *buf; + uint32_t cbBuf; +}; + +struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_CacheRelayTicket_params +{ + struct u_steam_iface *linux_side; + const void *pTicket; + uint32_t cbTicket; +}; + +struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicketCount_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicket_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t idxTicket; + void *buf; + uint32_t cbBuf; +}; + +struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_PostConnectionStateMsg_params +{ + struct u_steam_iface *linux_side; + const void *pMsg; + uint32_t cbMsg; +}; + +struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PRendezvous_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDRemote; + uint32_t unConnectionIDSrc; + const void *pMsgRendezvous; + uint32_t cbRendezvous; +}; + +struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PConnectionFailure_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDRemote; + uint32_t unConnectionIDDest; + uint32_t nReason; + const char *pszReason; +}; + +struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCertAsync_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetNetworkConfigJSON_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + void *buf; + uint32_t cbBuf; + const char *pszLauncherPartner; +}; + +struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_CacheRelayTicket_params +{ + struct u_steam_iface *linux_side; + const void *pTicket; + uint32_t cbTicket; +}; + +struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicketCount_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicket_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t idxTicket; + void *buf; + uint32_t cbBuf; +}; + +struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_PostConnectionStateMsg_params +{ + struct u_steam_iface *linux_side; + const void *pMsg; + uint32_t cbMsg; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalPingLocation_params +{ + struct u_steam_iface *linux_side; + float _ret; + SteamNetworkPingLocation_t *result; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeBetweenTwoLocations_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const SteamNetworkPingLocation_t *location1; + const SteamNetworkPingLocation_t *location2; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeFromLocalHost_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const SteamNetworkPingLocation_t *remoteLocation; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils001_ConvertPingLocationToString_params +{ + struct u_steam_iface *linux_side; + const SteamNetworkPingLocation_t *location; + char *pszBuf; + int32_t cchBufSize; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLocationString_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pszString; + SteamNetworkPingLocation_t *result; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils001_CheckPingDataUpToDate_params +{ + struct u_steam_iface *linux_side; + bool _ret; + float flMaxAgeSeconds; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils001_IsPingMeasurementInProgress_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetPingToDataCenter_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t popID; + uint32_t *pViaRelayPoP; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetDirectPingToPOP_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t popID; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPList_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t *list; + int32_t nListSz; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalTimestamp_params +{ + struct u_steam_iface *linux_side; + int64_t _ret; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils001_SetDebugOutputFunction_params +{ + struct u_steam_iface *linux_side; + uint32_t eDetailLevel; + void (*W_STDCALL pfnFunc)(uint32_t, const char *); +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eValue; + uint32_t eScopeType; + int32_t scopeObj; + uint32_t eDataType; + const void *pArg; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValue_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t eValue; + uint32_t eScopeType; + int32_t scopeObj; + uint32_t *pOutDataType; + void *pResult; + uint32_t *cbResult; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eValue; + const char **pOutName; + uint32_t *pOutDataType; + uint32_t *pOutScope; + uint32_t *pOutNextValue; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetFirstConfigValue_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ToString_params +{ + struct u_steam_iface *linux_side; + const SteamNetworkingIPAddr *addr; + char *buf; + uint32_t cbBuf; + bool bWithPort; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ParseString_params +{ + struct u_steam_iface *linux_side; + bool _ret; + SteamNetworkingIPAddr *pAddr; + const char *pszStr; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ToString_params +{ + struct u_steam_iface *linux_side; + const SteamNetworkingIdentity_144 *identity; + char *buf; + uint32_t cbBuf; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ParseString_params +{ + struct u_steam_iface *linux_side; + bool _ret; + SteamNetworkingIdentity_144 *pIdentity; + const char *pszStr; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetRelayNetworkStatus_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + SteamRelayNetworkStatus_t *pDetails; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalPingLocation_params +{ + struct u_steam_iface *linux_side; + float _ret; + SteamNetworkPingLocation_t *result; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeBetweenTwoLocations_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const SteamNetworkPingLocation_t *location1; + const SteamNetworkPingLocation_t *location2; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeFromLocalHost_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const SteamNetworkPingLocation_t *remoteLocation; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils002_ConvertPingLocationToString_params +{ + struct u_steam_iface *linux_side; + const SteamNetworkPingLocation_t *location; + char *pszBuf; + int32_t cchBufSize; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLocationString_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pszString; + SteamNetworkPingLocation_t *result; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils002_CheckPingDataUpToDate_params +{ + struct u_steam_iface *linux_side; + bool _ret; + float flMaxAgeSeconds; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetPingToDataCenter_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t popID; + uint32_t *pViaRelayPoP; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetDirectPingToPOP_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t popID; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPList_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t *list; + int32_t nListSz; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalTimestamp_params +{ + struct u_steam_iface *linux_side; + int64_t _ret; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils002_SetDebugOutputFunction_params +{ + struct u_steam_iface *linux_side; + uint32_t eDetailLevel; + void (*W_STDCALL pfnFunc)(uint32_t, const char *); +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils002_SetConfigValue_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eValue; + uint32_t eScopeType; + int32_t scopeObj; + uint32_t eDataType; + const void *pArg; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValue_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t eValue; + uint32_t eScopeType; + int32_t scopeObj; + uint32_t *pOutDataType; + void *pResult; + uint32_t *cbResult; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValueInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eValue; + const char **pOutName; + uint32_t *pOutDataType; + uint32_t *pOutScope; + uint32_t *pOutNextValue; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetFirstConfigValue_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ToString_params +{ + struct u_steam_iface *linux_side; + const SteamNetworkingIPAddr *addr; + char *buf; + uint32_t cbBuf; + bool bWithPort; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ParseString_params +{ + struct u_steam_iface *linux_side; + bool _ret; + SteamNetworkingIPAddr *pAddr; + const char *pszStr; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ToString_params +{ + struct u_steam_iface *linux_side; + const SteamNetworkingIdentity_144 *identity; + char *buf; + uint32_t cbBuf; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ParseString_params +{ + struct u_steam_iface *linux_side; + bool _ret; + SteamNetworkingIdentity_144 *pIdentity; + const char *pszStr; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils003_AllocateMessage_params +{ + struct u_steam_iface *linux_side; + w_SteamNetworkingMessage_t_147 *_ret; + int32_t cbAllocateBuffer; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetRelayNetworkStatus_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + SteamRelayNetworkStatus_t *pDetails; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalPingLocation_params +{ + struct u_steam_iface *linux_side; + float _ret; + SteamNetworkPingLocation_t *result; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeBetweenTwoLocations_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const SteamNetworkPingLocation_t *location1; + const SteamNetworkPingLocation_t *location2; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeFromLocalHost_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const SteamNetworkPingLocation_t *remoteLocation; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils003_ConvertPingLocationToString_params +{ + struct u_steam_iface *linux_side; + const SteamNetworkPingLocation_t *location; + char *pszBuf; + int32_t cchBufSize; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLocationString_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pszString; + SteamNetworkPingLocation_t *result; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils003_CheckPingDataUpToDate_params +{ + struct u_steam_iface *linux_side; + bool _ret; + float flMaxAgeSeconds; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetPingToDataCenter_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t popID; + uint32_t *pViaRelayPoP; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetDirectPingToPOP_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t popID; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPList_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t *list; + int32_t nListSz; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalTimestamp_params +{ + struct u_steam_iface *linux_side; + int64_t _ret; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils003_SetDebugOutputFunction_params +{ + struct u_steam_iface *linux_side; + uint32_t eDetailLevel; + void (*W_STDCALL pfnFunc)(uint32_t, const char *); +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eValue; + uint32_t eScopeType; + int32_t scopeObj; + uint32_t eDataType; + const void *pArg; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValue_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t eValue; + uint32_t eScopeType; + int32_t scopeObj; + uint32_t *pOutDataType; + void *pResult; + uint32_t *cbResult; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValueInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eValue; + const char **pOutName; + uint32_t *pOutDataType; + uint32_t *pOutScope; + uint32_t *pOutNextValue; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetFirstConfigValue_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ToString_params +{ + struct u_steam_iface *linux_side; + const SteamNetworkingIPAddr *addr; + char *buf; + uint32_t cbBuf; + bool bWithPort; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ParseString_params +{ + struct u_steam_iface *linux_side; + bool _ret; + SteamNetworkingIPAddr *pAddr; + const char *pszStr; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ToString_params +{ + struct u_steam_iface *linux_side; + const SteamNetworkingIdentity_144 *identity; + char *buf; + uint32_t cbBuf; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ParseString_params +{ + struct u_steam_iface *linux_side; + bool _ret; + SteamNetworkingIdentity_144 *pIdentity; + const char *pszStr; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils004_AllocateMessage_params +{ + struct u_steam_iface *linux_side; + w_SteamNetworkingMessage_t_153a *_ret; + int32_t cbAllocateBuffer; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetRelayNetworkStatus_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + SteamRelayNetworkStatus_t *pDetails; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalPingLocation_params +{ + struct u_steam_iface *linux_side; + float _ret; + SteamNetworkPingLocation_t *result; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeBetweenTwoLocations_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const SteamNetworkPingLocation_t *location1; + const SteamNetworkPingLocation_t *location2; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeFromLocalHost_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + const SteamNetworkPingLocation_t *remoteLocation; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils004_ConvertPingLocationToString_params +{ + struct u_steam_iface *linux_side; + const SteamNetworkPingLocation_t *location; + char *pszBuf; + int32_t cchBufSize; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLocationString_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pszString; + SteamNetworkPingLocation_t *result; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils004_CheckPingDataUpToDate_params +{ + struct u_steam_iface *linux_side; + bool _ret; + float flMaxAgeSeconds; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetPingToDataCenter_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t popID; + uint32_t *pViaRelayPoP; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetDirectPingToPOP_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t popID; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPCount_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPList_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t *list; + int32_t nListSz; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalTimestamp_params +{ + struct u_steam_iface *linux_side; + int64_t _ret; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils004_SetDebugOutputFunction_params +{ + struct u_steam_iface *linux_side; + uint32_t eDetailLevel; + void (*W_STDCALL pfnFunc)(uint32_t, const char *); +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetIPv4FakeIPType_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t nIPv4; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetRealIdentityForFakeIP_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const SteamNetworkingIPAddr *fakeIP; + SteamNetworkingIdentity_144 *pOutRealIdentity; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eValue; + uint32_t eScopeType; + int32_t scopeObj; + uint32_t eDataType; + const void *pArg; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValue_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t eValue; + uint32_t eScopeType; + int32_t scopeObj; + uint32_t *pOutDataType; + void *pResult; + uint32_t *cbResult; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValueInfo_params +{ + struct u_steam_iface *linux_side; + const char *_ret; + uint32_t eValue; + uint32_t *pOutDataType; + uint32_t *pOutScope; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils004_IterateGenericEditableConfigValues_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t eCurrent; + bool bEnumerateDevVars; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToString_params +{ + struct u_steam_iface *linux_side; + const SteamNetworkingIPAddr *addr; + char *buf; + uint32_t cbBuf; + bool bWithPort; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ParseString_params +{ + struct u_steam_iface *linux_side; + bool _ret; + SteamNetworkingIPAddr *pAddr; + const char *pszStr; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_GetFakeIPType_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const SteamNetworkingIPAddr *addr; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ToString_params +{ + struct u_steam_iface *linux_side; + const SteamNetworkingIdentity_144 *identity; + char *buf; + uint32_t cbBuf; +}; + +struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ParseString_params +{ + struct u_steam_iface *linux_side; + bool _ret; + SteamNetworkingIdentity_144 *pIdentity; + const char *pszStr; +}; + +struct ISteamParties_SteamParties002_GetNumActiveBeacons_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamParties_SteamParties002_GetBeaconByIndex_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t unIndex; +}; + +struct ISteamParties_SteamParties002_GetBeaconDetails_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t ulBeaconID; + CSteamID *pSteamIDBeaconOwner; + w_SteamPartyBeaconLocation_t *pLocation; + char *pchMetadata; + int32_t cchMetadata; +}; + +struct ISteamParties_SteamParties002_JoinParty_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t ulBeaconID; +}; + +struct ISteamParties_SteamParties002_GetNumAvailableBeaconLocations_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t *puNumLocations; +}; + +struct ISteamParties_SteamParties002_GetAvailableBeaconLocations_params +{ + struct u_steam_iface *linux_side; + bool _ret; + w_SteamPartyBeaconLocation_t *pLocationList; + uint32_t uMaxNumLocations; +}; + +struct ISteamParties_SteamParties002_CreateBeacon_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint32_t unOpenSlots; + w_SteamPartyBeaconLocation_t *pBeaconLocation; + const char *pchConnectString; + const char *pchMetadata; +}; + +struct ISteamParties_SteamParties002_OnReservationCompleted_params +{ + struct u_steam_iface *linux_side; + uint64_t ulBeacon; + CSteamID steamIDUser; +}; + +struct ISteamParties_SteamParties002_CancelReservation_params +{ + struct u_steam_iface *linux_side; + uint64_t ulBeacon; + CSteamID steamIDUser; +}; + +struct ISteamParties_SteamParties002_ChangeNumOpenSlots_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + uint64_t ulBeacon; + uint32_t unOpenSlots; +}; + +struct ISteamParties_SteamParties002_DestroyBeacon_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t ulBeacon; +}; + +struct ISteamParties_SteamParties002_GetBeaconLocationData_params +{ + struct u_steam_iface *linux_side; + bool _ret; + w_SteamPartyBeaconLocation_t BeaconLocation; + uint32_t eData; + char *pchDataStringOut; + int32_t cchDataStringOut; +}; + +struct ISteamUser_SteamUser004_GetHSteamUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamUser_SteamUser004_LogOn_params +{ + struct u_steam_iface *linux_side; + CSteamID steamID; +}; + +struct ISteamUser_SteamUser004_LogOff_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser004_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser004_GetLogonState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUser_SteamUser004_BConnected_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser004_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamUser_SteamUser004_IsVACBanned_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t nGameID; +}; + +struct ISteamUser_SteamUser004_RequireShowVACBannedMessage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t nGameID; +}; + +struct ISteamUser_SteamUser004_AcknowledgeVACBanning_params +{ + struct u_steam_iface *linux_side; + int32_t nGameID; +}; + +struct ISteamUser_SteamUser004_NClientGameIDAdd_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t nGameID; +}; + +struct ISteamUser_SteamUser004_RemoveClientGame_params +{ + struct u_steam_iface *linux_side; + int32_t nClientGameID; +}; + +struct ISteamUser_SteamUser004_SetClientGameServer_params +{ + struct u_steam_iface *linux_side; + int32_t nClientGameID; + uint32_t unIPServer; + uint16_t usPortServer; +}; + +struct ISteamUser_SteamUser004_SetSteam2Ticket_params +{ + struct u_steam_iface *linux_side; + uint8_t *pubTicket; + int32_t cubTicket; +}; + +struct ISteamUser_SteamUser004_AddServerNetAddress_params +{ + struct u_steam_iface *linux_side; + uint32_t unIP; + uint16_t unPort; +}; + +struct ISteamUser_SteamUser004_SetEmail_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchEmail; +}; + +struct ISteamUser_SteamUser004_GetSteamGameConnectToken_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + void *pBlob; + int32_t cbMaxBlob; +}; + +struct ISteamUser_SteamUser004_SetRegistryString_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eRegistrySubTree; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamUser_SteamUser004_GetRegistryString_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eRegistrySubTree; + const char *pchKey; + char *pchValue; + int32_t cbValue; +}; + +struct ISteamUser_SteamUser004_SetRegistryInt_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eRegistrySubTree; + const char *pchKey; + int32_t iValue; +}; + +struct ISteamUser_SteamUser004_GetRegistryInt_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eRegistrySubTree; + const char *pchKey; + int32_t *piValue; +}; + +struct ISteamUser_SteamUser004_InitiateGameConnection_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + void *pBlob; + int32_t cbMaxBlob; + CSteamID steamID; + int32_t nGameAppID; + uint32_t unIPServer; + uint16_t usPortServer; + bool bSecure; +}; + +struct ISteamUser_SteamUser004_TerminateGameConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t unIPServer; + uint16_t usPortServer; +}; + +struct ISteamUser_SteamUser004_SetSelfAsPrimaryChatDestination_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser004_IsPrimaryChatDestination_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser004_RequestLegacyCDKey_params +{ + struct u_steam_iface *linux_side; + uint32_t iAppID; +}; + +struct ISteamUser_SteamUser005_GetHSteamUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamUser_SteamUser005_LogOn_params +{ + struct u_steam_iface *linux_side; + CSteamID steamID; +}; + +struct ISteamUser_SteamUser005_LogOff_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser005_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser005_GetLogonState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUser_SteamUser005_BConnected_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser005_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamUser_SteamUser005_IsVACBanned_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t nGameID; +}; + +struct ISteamUser_SteamUser005_RequireShowVACBannedMessage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t nAppID; +}; + +struct ISteamUser_SteamUser005_AcknowledgeVACBanning_params +{ + struct u_steam_iface *linux_side; + int32_t nAppID; +}; + +struct ISteamUser_SteamUser005_SetSteam2Ticket_params +{ + struct u_steam_iface *linux_side; + uint8_t *pubTicket; + int32_t cubTicket; +}; + +struct ISteamUser_SteamUser005_AddServerNetAddress_params +{ + struct u_steam_iface *linux_side; + uint32_t unIP; + uint16_t unPort; +}; + +struct ISteamUser_SteamUser005_SetEmail_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchEmail; +}; + +struct ISteamUser_SteamUser005_SetRegistryString_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eRegistrySubTree; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamUser_SteamUser005_GetRegistryString_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eRegistrySubTree; + const char *pchKey; + char *pchValue; + int32_t cbValue; +}; + +struct ISteamUser_SteamUser005_SetRegistryInt_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eRegistrySubTree; + const char *pchKey; + int32_t iValue; +}; + +struct ISteamUser_SteamUser005_GetRegistryInt_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eRegistrySubTree; + const char *pchKey; + int32_t *piValue; +}; + +struct ISteamUser_SteamUser005_InitiateGameConnection_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + void *pBlob; + int32_t cbMaxBlob; + CSteamID steamID; + CGameID gameID; + uint32_t unIPServer; + uint16_t usPortServer; + bool bSecure; +}; + +struct ISteamUser_SteamUser005_TerminateGameConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t unIPServer; + uint16_t usPortServer; +}; + +struct ISteamUser_SteamUser005_SetSelfAsPrimaryChatDestination_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser005_IsPrimaryChatDestination_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser005_RequestLegacyCDKey_params +{ + struct u_steam_iface *linux_side; + uint32_t nAppID; +}; + +struct ISteamUser_SteamUser005_SendGuestPassByEmail_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchEmailAccount; + uint64_t gidGuestPassID; + bool bResending; +}; + +struct ISteamUser_SteamUser005_SendGuestPassByAccountID_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t uAccountID; + uint64_t gidGuestPassID; + bool bResending; +}; + +struct ISteamUser_SteamUser005_AckGuestPass_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchGuestPassCode; +}; + +struct ISteamUser_SteamUser005_RedeemGuestPass_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchGuestPassCode; +}; + +struct ISteamUser_SteamUser005_GetGuestPassToGiveCount_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUser_SteamUser005_GetGuestPassToRedeemCount_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUser_SteamUser005_GetGuestPassLastUpdateTime_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUser_SteamUser005_GetGuestPassToGiveInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + 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_GetGuestPassToRedeemInfo_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t nPassIndex; + uint64_t *pgidGuestPassID; + uint32_t *pnPackageID; + uint32_t *pRTime32Created; + uint32_t *pRTime32Expiration; + uint32_t *pRTime32Sent; + uint32_t *pRTime32Redeemed; +}; + +struct ISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t nPassIndex; + char *pchSenderAddress; + int32_t cSenderAddressSize; +}; + +struct ISteamUser_SteamUser005_GetGuestPassToRedeemSenderName_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t nPassIndex; + char *pchSenderName; + int32_t cSenderNameSize; +}; + +struct ISteamUser_SteamUser005_AcknowledgeMessageByGID_params +{ + struct u_steam_iface *linux_side; + const char *pchMessageGID; +}; + +struct ISteamUser_SteamUser005_SetLanguage_params +{ + struct u_steam_iface *linux_side; + bool _ret; + const char *pchLanguage; +}; + +struct ISteamUser_SteamUser005_TrackAppUsageEvent_params +{ + struct u_steam_iface *linux_side; + CGameID gameID; + int32_t eAppUsageEvent; + const char *pchExtraInfo; +}; + +struct ISteamUser_SteamUser005_SetAccountName_params +{ + struct u_steam_iface *linux_side; + const char *pchAccountName; +}; + +struct ISteamUser_SteamUser005_SetPassword_params +{ + struct u_steam_iface *linux_side; + const char *pchPassword; +}; + +struct ISteamUser_SteamUser005_SetAccountCreationTime_params +{ + struct u_steam_iface *linux_side; + uint32_t rt; +}; + +struct ISteamUser_SteamUser006_GetHSteamUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamUser_SteamUser006_LogOn_params +{ + struct u_steam_iface *linux_side; + CSteamID steamID; +}; + +struct ISteamUser_SteamUser006_LogOff_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser006_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser006_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamUser_SteamUser006_SetRegistryString_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eRegistrySubTree; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamUser_SteamUser006_GetRegistryString_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eRegistrySubTree; + const char *pchKey; + char *pchValue; + int32_t cbValue; +}; + +struct ISteamUser_SteamUser006_SetRegistryInt_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eRegistrySubTree; + const char *pchKey; + int32_t iValue; +}; + +struct ISteamUser_SteamUser006_GetRegistryInt_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eRegistrySubTree; + const char *pchKey; + int32_t *piValue; +}; + +struct ISteamUser_SteamUser006_InitiateGameConnection_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + void *pBlob; + int32_t cbMaxBlob; + CSteamID steamID; + CGameID gameID; + uint32_t unIPServer; + uint16_t usPortServer; + bool bSecure; +}; + +struct ISteamUser_SteamUser006_TerminateGameConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t unIPServer; + uint16_t usPortServer; +}; + +struct ISteamUser_SteamUser006_TrackAppUsageEvent_params +{ + struct u_steam_iface *linux_side; + CGameID gameID; + int32_t eAppUsageEvent; + const char *pchExtraInfo; +}; + +struct ISteamUser_SteamUser007_GetHSteamUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamUser_SteamUser007_LogOn_params +{ + struct u_steam_iface *linux_side; + CSteamID steamID; +}; + +struct ISteamUser_SteamUser007_LogOff_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser007_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser007_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamUser_SteamUser007_SetRegistryString_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eRegistrySubTree; + const char *pchKey; + const char *pchValue; +}; + +struct ISteamUser_SteamUser007_GetRegistryString_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eRegistrySubTree; + const char *pchKey; + char *pchValue; + int32_t cbValue; +}; + +struct ISteamUser_SteamUser007_SetRegistryInt_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eRegistrySubTree; + const char *pchKey; + int32_t iValue; +}; + +struct ISteamUser_SteamUser007_GetRegistryInt_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eRegistrySubTree; + const char *pchKey; + int32_t *piValue; +}; + +struct ISteamUser_SteamUser007_InitiateGameConnection_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + void *pBlob; + int32_t cbMaxBlob; + CSteamID steamID; + CGameID gameID; + uint32_t unIPServer; + uint16_t usPortServer; + bool bSecure; + void *pvSteam2GetEncryptionKey; + int32_t cbSteam2GetEncryptionKey; +}; + +struct ISteamUser_SteamUser007_TerminateGameConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t unIPServer; + uint16_t usPortServer; +}; + +struct ISteamUser_SteamUser007_TrackAppUsageEvent_params +{ + struct u_steam_iface *linux_side; + CGameID gameID; + int32_t eAppUsageEvent; + const char *pchExtraInfo; +}; + +struct ISteamUser_SteamUser007_RefreshSteam2Login_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser008_GetHSteamUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamUser_SteamUser008_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser008_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamUser_SteamUser008_InitiateGameConnection_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + void *pBlob; + int32_t cbMaxBlob; + CSteamID steamID; + CGameID gameID; + uint32_t unIPServer; + uint16_t usPortServer; + bool bSecure; + void *pvSteam2GetEncryptionKey; + int32_t cbSteam2GetEncryptionKey; +}; + +struct ISteamUser_SteamUser008_TerminateGameConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t unIPServer; + uint16_t usPortServer; +}; + +struct ISteamUser_SteamUser008_TrackAppUsageEvent_params +{ + struct u_steam_iface *linux_side; + CGameID gameID; + int32_t eAppUsageEvent; + const char *pchExtraInfo; +}; + +struct ISteamUser_SteamUser008_RefreshSteam2Login_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser009_GetHSteamUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamUser_SteamUser009_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser009_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamUser_SteamUser009_InitiateGameConnection_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + void *pAuthBlob; + int32_t cbMaxAuthBlob; + CSteamID steamIDGameServer; + CGameID gameID; + uint32_t unIPServer; + uint16_t usPortServer; + bool bSecure; +}; + +struct ISteamUser_SteamUser009_TerminateGameConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t unIPServer; + uint16_t usPortServer; +}; + +struct ISteamUser_SteamUser009_TrackAppUsageEvent_params +{ + struct u_steam_iface *linux_side; + CGameID gameID; + int32_t eAppUsageEvent; + const char *pchExtraInfo; +}; + +struct ISteamUser_SteamUser009_RefreshSteam2Login_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser010_GetHSteamUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamUser_SteamUser010_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser010_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamUser_SteamUser010_InitiateGameConnection_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + void *pAuthBlob; + int32_t cbMaxAuthBlob; + CSteamID steamIDGameServer; + uint32_t unIPServer; + uint16_t usPortServer; + bool bSecure; +}; + +struct ISteamUser_SteamUser010_TerminateGameConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t unIPServer; + uint16_t usPortServer; +}; + +struct ISteamUser_SteamUser010_TrackAppUsageEvent_params +{ + struct u_steam_iface *linux_side; + CGameID gameID; + int32_t eAppUsageEvent; + const char *pchExtraInfo; +}; + +struct ISteamUser_SteamUser011_GetHSteamUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamUser_SteamUser011_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser011_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamUser_SteamUser011_InitiateGameConnection_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + void *pAuthBlob; + int32_t cbMaxAuthBlob; + CSteamID steamIDGameServer; + uint32_t unIPServer; + uint16_t usPortServer; + bool bSecure; +}; + +struct ISteamUser_SteamUser011_TerminateGameConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t unIPServer; + uint16_t usPortServer; +}; + +struct ISteamUser_SteamUser011_TrackAppUsageEvent_params +{ + struct u_steam_iface *linux_side; + CGameID gameID; + int32_t eAppUsageEvent; + const char *pchExtraInfo; +}; + +struct ISteamUser_SteamUser011_GetUserDataFolder_params +{ + struct u_steam_iface *linux_side; + bool _ret; + char *pchBuffer; + int32_t cubBuffer; +}; + +struct ISteamUser_SteamUser011_StartVoiceRecording_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser011_StopVoiceRecording_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser011_GetCompressedVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + void *pDestBuffer; + uint32_t cbDestBufferSize; + uint32_t *nBytesWritten; +}; + +struct ISteamUser_SteamUser011_DecompressVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + void *pCompressed; + uint32_t cbCompressed; + void *pDestBuffer; + uint32_t cbDestBufferSize; + uint32_t *nBytesWritten; +}; + +struct ISteamUser_SteamUser012_GetHSteamUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamUser_SteamUser012_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser012_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamUser_SteamUser012_InitiateGameConnection_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + void *pAuthBlob; + int32_t cbMaxAuthBlob; + CSteamID steamIDGameServer; + uint32_t unIPServer; + uint16_t usPortServer; + bool bSecure; +}; + +struct ISteamUser_SteamUser012_TerminateGameConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t unIPServer; + uint16_t usPortServer; +}; + +struct ISteamUser_SteamUser012_TrackAppUsageEvent_params +{ + struct u_steam_iface *linux_side; + CGameID gameID; + int32_t eAppUsageEvent; + const char *pchExtraInfo; +}; + +struct ISteamUser_SteamUser012_GetUserDataFolder_params +{ + struct u_steam_iface *linux_side; + bool _ret; + char *pchBuffer; + int32_t cubBuffer; +}; + +struct ISteamUser_SteamUser012_StartVoiceRecording_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser012_StopVoiceRecording_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser012_GetCompressedVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + void *pDestBuffer; + uint32_t cbDestBufferSize; + uint32_t *nBytesWritten; +}; + +struct ISteamUser_SteamUser012_DecompressVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + void *pCompressed; + uint32_t cbCompressed; + void *pDestBuffer; + uint32_t cbDestBufferSize; + uint32_t *nBytesWritten; +}; + +struct ISteamUser_SteamUser012_GetAuthSessionTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + void *pTicket; + int32_t cbMaxTicket; + uint32_t *pcbTicket; +}; + +struct ISteamUser_SteamUser012_BeginAuthSession_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const void *pAuthTicket; + int32_t cbAuthTicket; + CSteamID steamID; +}; + +struct ISteamUser_SteamUser012_EndAuthSession_params +{ + struct u_steam_iface *linux_side; + CSteamID steamID; +}; + +struct ISteamUser_SteamUser012_CancelAuthTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t hAuthTicket; +}; + +struct ISteamUser_SteamUser012_UserHasLicenseForApp_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamID; + uint32_t appID; +}; + +struct ISteamUser_SteamUser013_GetHSteamUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamUser_SteamUser013_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser013_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamUser_SteamUser013_InitiateGameConnection_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + void *pAuthBlob; + int32_t cbMaxAuthBlob; + CSteamID steamIDGameServer; + uint32_t unIPServer; + uint16_t usPortServer; + bool bSecure; +}; + +struct ISteamUser_SteamUser013_TerminateGameConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t unIPServer; + uint16_t usPortServer; +}; + +struct ISteamUser_SteamUser013_TrackAppUsageEvent_params +{ + struct u_steam_iface *linux_side; + CGameID gameID; + int32_t eAppUsageEvent; + const char *pchExtraInfo; +}; + +struct ISteamUser_SteamUser013_GetUserDataFolder_params +{ + struct u_steam_iface *linux_side; + bool _ret; + char *pchBuffer; + int32_t cubBuffer; +}; + +struct ISteamUser_SteamUser013_StartVoiceRecording_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser013_StopVoiceRecording_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser013_GetAvailableVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t *pcbCompressed; + uint32_t *pcbUncompressed; +}; + +struct ISteamUser_SteamUser013_GetVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + bool bWantCompressed; + void *pDestBuffer; + uint32_t cbDestBufferSize; + uint32_t *nBytesWritten; + bool bWantUncompressed; + void *pUncompressedDestBuffer; + uint32_t cbUncompressedDestBufferSize; + uint32_t *nUncompressBytesWritten; +}; + +struct ISteamUser_SteamUser013_DecompressVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const void *pCompressed; + uint32_t cbCompressed; + void *pDestBuffer; + uint32_t cbDestBufferSize; + uint32_t *nBytesWritten; +}; + +struct ISteamUser_SteamUser013_GetAuthSessionTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + void *pTicket; + int32_t cbMaxTicket; + uint32_t *pcbTicket; +}; + +struct ISteamUser_SteamUser013_BeginAuthSession_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const void *pAuthTicket; + int32_t cbAuthTicket; + CSteamID steamID; +}; + +struct ISteamUser_SteamUser013_EndAuthSession_params +{ + struct u_steam_iface *linux_side; + CSteamID steamID; +}; + +struct ISteamUser_SteamUser013_CancelAuthTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t hAuthTicket; +}; + +struct ISteamUser_SteamUser013_UserHasLicenseForApp_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamID; + uint32_t appID; +}; + +struct ISteamUser_SteamUser014_GetHSteamUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamUser_SteamUser014_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser014_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamUser_SteamUser014_InitiateGameConnection_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + void *pAuthBlob; + int32_t cbMaxAuthBlob; + CSteamID steamIDGameServer; + uint32_t unIPServer; + uint16_t usPortServer; + bool bSecure; +}; + +struct ISteamUser_SteamUser014_TerminateGameConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t unIPServer; + uint16_t usPortServer; +}; + +struct ISteamUser_SteamUser014_TrackAppUsageEvent_params +{ + struct u_steam_iface *linux_side; + CGameID gameID; + int32_t eAppUsageEvent; + const char *pchExtraInfo; +}; + +struct ISteamUser_SteamUser014_GetUserDataFolder_params +{ + struct u_steam_iface *linux_side; + bool _ret; + char *pchBuffer; + int32_t cubBuffer; +}; + +struct ISteamUser_SteamUser014_StartVoiceRecording_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser014_StopVoiceRecording_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser014_GetAvailableVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t *pcbCompressed; + uint32_t *pcbUncompressed; +}; + +struct ISteamUser_SteamUser014_GetVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + bool bWantCompressed; + void *pDestBuffer; + uint32_t cbDestBufferSize; + uint32_t *nBytesWritten; + bool bWantUncompressed; + void *pUncompressedDestBuffer; + uint32_t cbUncompressedDestBufferSize; + uint32_t *nUncompressBytesWritten; +}; + +struct ISteamUser_SteamUser014_DecompressVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const void *pCompressed; + uint32_t cbCompressed; + void *pDestBuffer; + uint32_t cbDestBufferSize; + uint32_t *nBytesWritten; +}; + +struct ISteamUser_SteamUser014_GetAuthSessionTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + void *pTicket; + int32_t cbMaxTicket; + uint32_t *pcbTicket; +}; + +struct ISteamUser_SteamUser014_BeginAuthSession_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const void *pAuthTicket; + int32_t cbAuthTicket; + CSteamID steamID; +}; + +struct ISteamUser_SteamUser014_EndAuthSession_params +{ + struct u_steam_iface *linux_side; + CSteamID steamID; +}; + +struct ISteamUser_SteamUser014_CancelAuthTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t hAuthTicket; +}; + +struct ISteamUser_SteamUser014_UserHasLicenseForApp_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamID; + uint32_t appID; +}; + +struct ISteamUser_SteamUser014_BIsBehindNAT_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser014_AdvertiseGame_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDGameServer; + uint32_t unIPServer; + uint16_t usPortServer; +}; + +struct ISteamUser_SteamUser014_RequestEncryptedAppTicket_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + void *pDataToInclude; + int32_t cbDataToInclude; +}; + +struct ISteamUser_SteamUser014_GetEncryptedAppTicket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + void *pTicket; + int32_t cbMaxTicket; + uint32_t *pcbTicket; +}; + +struct ISteamUser_SteamUser015_GetHSteamUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamUser_SteamUser015_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser015_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamUser_SteamUser015_InitiateGameConnection_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + void *pAuthBlob; + int32_t cbMaxAuthBlob; + CSteamID steamIDGameServer; + uint32_t unIPServer; + uint16_t usPortServer; + bool bSecure; +}; + +struct ISteamUser_SteamUser015_TerminateGameConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t unIPServer; + uint16_t usPortServer; +}; + +struct ISteamUser_SteamUser015_TrackAppUsageEvent_params +{ + struct u_steam_iface *linux_side; + CGameID gameID; + int32_t eAppUsageEvent; + const char *pchExtraInfo; +}; + +struct ISteamUser_SteamUser015_GetUserDataFolder_params +{ + struct u_steam_iface *linux_side; + bool _ret; + char *pchBuffer; + int32_t cubBuffer; +}; + +struct ISteamUser_SteamUser015_StartVoiceRecording_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser015_StopVoiceRecording_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser015_GetAvailableVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t *pcbCompressed; + uint32_t *pcbUncompressed; +}; + +struct ISteamUser_SteamUser015_GetVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + bool bWantCompressed; + void *pDestBuffer; + uint32_t cbDestBufferSize; + uint32_t *nBytesWritten; + bool bWantUncompressed; + void *pUncompressedDestBuffer; + uint32_t cbUncompressedDestBufferSize; + uint32_t *nUncompressBytesWritten; +}; + +struct ISteamUser_SteamUser015_DecompressVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const void *pCompressed; + uint32_t cbCompressed; + void *pDestBuffer; + uint32_t cbDestBufferSize; + uint32_t *nBytesWritten; + uint32_t nDesiredSampleRate; +}; + +struct ISteamUser_SteamUser015_GetVoiceOptimalSampleRate_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUser_SteamUser015_GetAuthSessionTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + void *pTicket; + int32_t cbMaxTicket; + uint32_t *pcbTicket; +}; + +struct ISteamUser_SteamUser015_BeginAuthSession_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const void *pAuthTicket; + int32_t cbAuthTicket; + CSteamID steamID; +}; + +struct ISteamUser_SteamUser015_EndAuthSession_params +{ + struct u_steam_iface *linux_side; + CSteamID steamID; +}; + +struct ISteamUser_SteamUser015_CancelAuthTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t hAuthTicket; +}; + +struct ISteamUser_SteamUser015_UserHasLicenseForApp_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamID; + uint32_t appID; +}; + +struct ISteamUser_SteamUser015_BIsBehindNAT_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser015_AdvertiseGame_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDGameServer; + uint32_t unIPServer; + uint16_t usPortServer; +}; + +struct ISteamUser_SteamUser015_RequestEncryptedAppTicket_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + void *pDataToInclude; + int32_t cbDataToInclude; +}; + +struct ISteamUser_SteamUser015_GetEncryptedAppTicket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + void *pTicket; + int32_t cbMaxTicket; + uint32_t *pcbTicket; +}; + +struct ISteamUser_SteamUser016_GetHSteamUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamUser_SteamUser016_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser016_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamUser_SteamUser016_InitiateGameConnection_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + void *pAuthBlob; + int32_t cbMaxAuthBlob; + CSteamID steamIDGameServer; + uint32_t unIPServer; + uint16_t usPortServer; + bool bSecure; +}; + +struct ISteamUser_SteamUser016_TerminateGameConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t unIPServer; + uint16_t usPortServer; +}; + +struct ISteamUser_SteamUser016_TrackAppUsageEvent_params +{ + struct u_steam_iface *linux_side; + CGameID gameID; + int32_t eAppUsageEvent; + const char *pchExtraInfo; +}; + +struct ISteamUser_SteamUser016_GetUserDataFolder_params +{ + struct u_steam_iface *linux_side; + bool _ret; + char *pchBuffer; + int32_t cubBuffer; +}; + +struct ISteamUser_SteamUser016_StartVoiceRecording_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser016_StopVoiceRecording_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser016_GetAvailableVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t *pcbCompressed; + uint32_t *pcbUncompressed; + uint32_t nUncompressedVoiceDesiredSampleRate; +}; + +struct ISteamUser_SteamUser016_GetVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + bool bWantCompressed; + void *pDestBuffer; + uint32_t cbDestBufferSize; + uint32_t *nBytesWritten; + bool bWantUncompressed; + void *pUncompressedDestBuffer; + uint32_t cbUncompressedDestBufferSize; + uint32_t *nUncompressBytesWritten; + uint32_t nUncompressedVoiceDesiredSampleRate; +}; + +struct ISteamUser_SteamUser016_DecompressVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const void *pCompressed; + uint32_t cbCompressed; + void *pDestBuffer; + uint32_t cbDestBufferSize; + uint32_t *nBytesWritten; + uint32_t nDesiredSampleRate; +}; + +struct ISteamUser_SteamUser016_GetVoiceOptimalSampleRate_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUser_SteamUser016_GetAuthSessionTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + void *pTicket; + int32_t cbMaxTicket; + uint32_t *pcbTicket; +}; + +struct ISteamUser_SteamUser016_BeginAuthSession_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const void *pAuthTicket; + int32_t cbAuthTicket; + CSteamID steamID; +}; + +struct ISteamUser_SteamUser016_EndAuthSession_params +{ + struct u_steam_iface *linux_side; + CSteamID steamID; +}; + +struct ISteamUser_SteamUser016_CancelAuthTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t hAuthTicket; +}; + +struct ISteamUser_SteamUser016_UserHasLicenseForApp_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamID; + uint32_t appID; +}; + +struct ISteamUser_SteamUser016_BIsBehindNAT_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser016_AdvertiseGame_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDGameServer; + uint32_t unIPServer; + uint16_t usPortServer; +}; + +struct ISteamUser_SteamUser016_RequestEncryptedAppTicket_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + void *pDataToInclude; + int32_t cbDataToInclude; +}; + +struct ISteamUser_SteamUser016_GetEncryptedAppTicket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + void *pTicket; + int32_t cbMaxTicket; + uint32_t *pcbTicket; +}; + +struct ISteamUser_SteamUser017_GetHSteamUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamUser_SteamUser017_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser017_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamUser_SteamUser017_InitiateGameConnection_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + void *pAuthBlob; + int32_t cbMaxAuthBlob; + CSteamID steamIDGameServer; + uint32_t unIPServer; + uint16_t usPortServer; + bool bSecure; +}; + +struct ISteamUser_SteamUser017_TerminateGameConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t unIPServer; + uint16_t usPortServer; +}; + +struct ISteamUser_SteamUser017_TrackAppUsageEvent_params +{ + struct u_steam_iface *linux_side; + CGameID gameID; + int32_t eAppUsageEvent; + const char *pchExtraInfo; +}; + +struct ISteamUser_SteamUser017_GetUserDataFolder_params +{ + struct u_steam_iface *linux_side; + bool _ret; + char *pchBuffer; + int32_t cubBuffer; +}; + +struct ISteamUser_SteamUser017_StartVoiceRecording_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser017_StopVoiceRecording_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser017_GetAvailableVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t *pcbCompressed; + uint32_t *pcbUncompressed; + uint32_t nUncompressedVoiceDesiredSampleRate; +}; + +struct ISteamUser_SteamUser017_GetVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + bool bWantCompressed; + void *pDestBuffer; + uint32_t cbDestBufferSize; + uint32_t *nBytesWritten; + bool bWantUncompressed; + void *pUncompressedDestBuffer; + uint32_t cbUncompressedDestBufferSize; + uint32_t *nUncompressBytesWritten; + uint32_t nUncompressedVoiceDesiredSampleRate; +}; + +struct ISteamUser_SteamUser017_DecompressVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const void *pCompressed; + uint32_t cbCompressed; + void *pDestBuffer; + uint32_t cbDestBufferSize; + uint32_t *nBytesWritten; + uint32_t nDesiredSampleRate; +}; + +struct ISteamUser_SteamUser017_GetVoiceOptimalSampleRate_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUser_SteamUser017_GetAuthSessionTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + void *pTicket; + int32_t cbMaxTicket; + uint32_t *pcbTicket; +}; + +struct ISteamUser_SteamUser017_BeginAuthSession_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const void *pAuthTicket; + int32_t cbAuthTicket; + CSteamID steamID; +}; + +struct ISteamUser_SteamUser017_EndAuthSession_params +{ + struct u_steam_iface *linux_side; + CSteamID steamID; +}; + +struct ISteamUser_SteamUser017_CancelAuthTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t hAuthTicket; +}; + +struct ISteamUser_SteamUser017_UserHasLicenseForApp_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamID; + uint32_t appID; +}; + +struct ISteamUser_SteamUser017_BIsBehindNAT_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser017_AdvertiseGame_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDGameServer; + uint32_t unIPServer; + uint16_t usPortServer; +}; + +struct ISteamUser_SteamUser017_RequestEncryptedAppTicket_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + void *pDataToInclude; + int32_t cbDataToInclude; +}; + +struct ISteamUser_SteamUser017_GetEncryptedAppTicket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + void *pTicket; + int32_t cbMaxTicket; + uint32_t *pcbTicket; +}; + +struct ISteamUser_SteamUser017_GetGameBadgeLevel_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t nSeries; + bool bFoil; +}; + +struct ISteamUser_SteamUser017_GetPlayerSteamLevel_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamUser_SteamUser018_GetHSteamUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamUser_SteamUser018_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser018_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamUser_SteamUser018_InitiateGameConnection_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + void *pAuthBlob; + int32_t cbMaxAuthBlob; + CSteamID steamIDGameServer; + uint32_t unIPServer; + uint16_t usPortServer; + bool bSecure; +}; + +struct ISteamUser_SteamUser018_TerminateGameConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t unIPServer; + uint16_t usPortServer; +}; + +struct ISteamUser_SteamUser018_TrackAppUsageEvent_params +{ + struct u_steam_iface *linux_side; + CGameID gameID; + int32_t eAppUsageEvent; + const char *pchExtraInfo; +}; + +struct ISteamUser_SteamUser018_GetUserDataFolder_params +{ + struct u_steam_iface *linux_side; + bool _ret; + char *pchBuffer; + int32_t cubBuffer; +}; + +struct ISteamUser_SteamUser018_StartVoiceRecording_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser018_StopVoiceRecording_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser018_GetAvailableVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t *pcbCompressed; + uint32_t *pcbUncompressed; + uint32_t nUncompressedVoiceDesiredSampleRate; +}; + +struct ISteamUser_SteamUser018_GetVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + bool bWantCompressed; + void *pDestBuffer; + uint32_t cbDestBufferSize; + uint32_t *nBytesWritten; + bool bWantUncompressed; + void *pUncompressedDestBuffer; + uint32_t cbUncompressedDestBufferSize; + uint32_t *nUncompressBytesWritten; + uint32_t nUncompressedVoiceDesiredSampleRate; +}; + +struct ISteamUser_SteamUser018_DecompressVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const void *pCompressed; + uint32_t cbCompressed; + void *pDestBuffer; + uint32_t cbDestBufferSize; + uint32_t *nBytesWritten; + uint32_t nDesiredSampleRate; +}; + +struct ISteamUser_SteamUser018_GetVoiceOptimalSampleRate_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUser_SteamUser018_GetAuthSessionTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + void *pTicket; + int32_t cbMaxTicket; + uint32_t *pcbTicket; +}; + +struct ISteamUser_SteamUser018_BeginAuthSession_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const void *pAuthTicket; + int32_t cbAuthTicket; + CSteamID steamID; +}; + +struct ISteamUser_SteamUser018_EndAuthSession_params +{ + struct u_steam_iface *linux_side; + CSteamID steamID; +}; + +struct ISteamUser_SteamUser018_CancelAuthTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t hAuthTicket; +}; + +struct ISteamUser_SteamUser018_UserHasLicenseForApp_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamID; + uint32_t appID; +}; + +struct ISteamUser_SteamUser018_BIsBehindNAT_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser018_AdvertiseGame_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDGameServer; + uint32_t unIPServer; + uint16_t usPortServer; +}; + +struct ISteamUser_SteamUser018_RequestEncryptedAppTicket_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + void *pDataToInclude; + int32_t cbDataToInclude; +}; + +struct ISteamUser_SteamUser018_GetEncryptedAppTicket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + void *pTicket; + int32_t cbMaxTicket; + uint32_t *pcbTicket; +}; + +struct ISteamUser_SteamUser018_GetGameBadgeLevel_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t nSeries; + bool bFoil; +}; + +struct ISteamUser_SteamUser018_GetPlayerSteamLevel_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamUser_SteamUser018_RequestStoreAuthURL_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchRedirectURL; +}; + +struct ISteamUser_SteamUser019_GetHSteamUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamUser_SteamUser019_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser019_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamUser_SteamUser019_InitiateGameConnection_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + void *pAuthBlob; + int32_t cbMaxAuthBlob; + CSteamID steamIDGameServer; + uint32_t unIPServer; + uint16_t usPortServer; + bool bSecure; +}; + +struct ISteamUser_SteamUser019_TerminateGameConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t unIPServer; + uint16_t usPortServer; +}; + +struct ISteamUser_SteamUser019_TrackAppUsageEvent_params +{ + struct u_steam_iface *linux_side; + CGameID gameID; + int32_t eAppUsageEvent; + const char *pchExtraInfo; +}; + +struct ISteamUser_SteamUser019_GetUserDataFolder_params +{ + struct u_steam_iface *linux_side; + bool _ret; + char *pchBuffer; + int32_t cubBuffer; +}; + +struct ISteamUser_SteamUser019_StartVoiceRecording_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser019_StopVoiceRecording_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser019_GetAvailableVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t *pcbCompressed; + uint32_t *pcbUncompressed_Deprecated; + uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated; +}; + +struct ISteamUser_SteamUser019_GetVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + bool bWantCompressed; + void *pDestBuffer; + uint32_t cbDestBufferSize; + uint32_t *nBytesWritten; + bool bWantUncompressed_Deprecated; + void *pUncompressedDestBuffer_Deprecated; + uint32_t cbUncompressedDestBufferSize_Deprecated; + uint32_t *nUncompressBytesWritten_Deprecated; + uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated; +}; + +struct ISteamUser_SteamUser019_DecompressVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const void *pCompressed; + uint32_t cbCompressed; + void *pDestBuffer; + uint32_t cbDestBufferSize; + uint32_t *nBytesWritten; + uint32_t nDesiredSampleRate; +}; + +struct ISteamUser_SteamUser019_GetVoiceOptimalSampleRate_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUser_SteamUser019_GetAuthSessionTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + void *pTicket; + int32_t cbMaxTicket; + uint32_t *pcbTicket; +}; + +struct ISteamUser_SteamUser019_BeginAuthSession_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const void *pAuthTicket; + int32_t cbAuthTicket; + CSteamID steamID; +}; + +struct ISteamUser_SteamUser019_EndAuthSession_params +{ + struct u_steam_iface *linux_side; + CSteamID steamID; +}; + +struct ISteamUser_SteamUser019_CancelAuthTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t hAuthTicket; +}; + +struct ISteamUser_SteamUser019_UserHasLicenseForApp_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamID; + uint32_t appID; +}; + +struct ISteamUser_SteamUser019_BIsBehindNAT_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser019_AdvertiseGame_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDGameServer; + uint32_t unIPServer; + uint16_t usPortServer; +}; + +struct ISteamUser_SteamUser019_RequestEncryptedAppTicket_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + void *pDataToInclude; + int32_t cbDataToInclude; +}; + +struct ISteamUser_SteamUser019_GetEncryptedAppTicket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + void *pTicket; + int32_t cbMaxTicket; + uint32_t *pcbTicket; +}; + +struct ISteamUser_SteamUser019_GetGameBadgeLevel_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t nSeries; + bool bFoil; +}; + +struct ISteamUser_SteamUser019_GetPlayerSteamLevel_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamUser_SteamUser019_RequestStoreAuthURL_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchRedirectURL; +}; + +struct ISteamUser_SteamUser019_BIsPhoneVerified_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser019_BIsTwoFactorEnabled_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser019_BIsPhoneIdentifying_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser019_BIsPhoneRequiringVerification_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser020_GetHSteamUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamUser_SteamUser020_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser020_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamUser_SteamUser020_InitiateGameConnection_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + void *pAuthBlob; + int32_t cbMaxAuthBlob; + CSteamID steamIDGameServer; + uint32_t unIPServer; + uint16_t usPortServer; + bool bSecure; +}; + +struct ISteamUser_SteamUser020_TerminateGameConnection_params +{ + struct u_steam_iface *linux_side; + uint32_t unIPServer; + uint16_t usPortServer; +}; + +struct ISteamUser_SteamUser020_TrackAppUsageEvent_params +{ + struct u_steam_iface *linux_side; + CGameID gameID; + int32_t eAppUsageEvent; + const char *pchExtraInfo; +}; + +struct ISteamUser_SteamUser020_GetUserDataFolder_params +{ + struct u_steam_iface *linux_side; + bool _ret; + char *pchBuffer; + int32_t cubBuffer; +}; + +struct ISteamUser_SteamUser020_StartVoiceRecording_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser020_StopVoiceRecording_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser020_GetAvailableVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t *pcbCompressed; + uint32_t *pcbUncompressed_Deprecated; + uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated; +}; + +struct ISteamUser_SteamUser020_GetVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + bool bWantCompressed; + void *pDestBuffer; + uint32_t cbDestBufferSize; + uint32_t *nBytesWritten; + bool bWantUncompressed_Deprecated; + void *pUncompressedDestBuffer_Deprecated; + uint32_t cbUncompressedDestBufferSize_Deprecated; + uint32_t *nUncompressBytesWritten_Deprecated; + uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated; +}; + +struct ISteamUser_SteamUser020_DecompressVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const void *pCompressed; + uint32_t cbCompressed; + void *pDestBuffer; + uint32_t cbDestBufferSize; + uint32_t *nBytesWritten; + uint32_t nDesiredSampleRate; +}; + +struct ISteamUser_SteamUser020_GetVoiceOptimalSampleRate_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUser_SteamUser020_GetAuthSessionTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + void *pTicket; + int32_t cbMaxTicket; + uint32_t *pcbTicket; +}; + +struct ISteamUser_SteamUser020_BeginAuthSession_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const void *pAuthTicket; + int32_t cbAuthTicket; + CSteamID steamID; +}; + +struct ISteamUser_SteamUser020_EndAuthSession_params +{ + struct u_steam_iface *linux_side; + CSteamID steamID; +}; + +struct ISteamUser_SteamUser020_CancelAuthTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t hAuthTicket; +}; + +struct ISteamUser_SteamUser020_UserHasLicenseForApp_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamID; + uint32_t appID; +}; + +struct ISteamUser_SteamUser020_BIsBehindNAT_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser020_AdvertiseGame_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDGameServer; + uint32_t unIPServer; + uint16_t usPortServer; +}; + +struct ISteamUser_SteamUser020_RequestEncryptedAppTicket_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + void *pDataToInclude; + int32_t cbDataToInclude; +}; + +struct ISteamUser_SteamUser020_GetEncryptedAppTicket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + void *pTicket; + int32_t cbMaxTicket; + uint32_t *pcbTicket; +}; + +struct ISteamUser_SteamUser020_GetGameBadgeLevel_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t nSeries; + bool bFoil; +}; + +struct ISteamUser_SteamUser020_GetPlayerSteamLevel_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamUser_SteamUser020_RequestStoreAuthURL_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchRedirectURL; +}; + +struct ISteamUser_SteamUser020_BIsPhoneVerified_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser020_BIsTwoFactorEnabled_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser020_BIsPhoneIdentifying_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser020_BIsPhoneRequiringVerification_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser020_GetMarketEligibility_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamUser_SteamUser020_GetDurationControl_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamUser_SteamUser021_GetHSteamUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamUser_SteamUser021_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser021_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamUser_SteamUser021_InitiateGameConnection_DEPRECATED_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + void *pAuthBlob; + int32_t cbMaxAuthBlob; + CSteamID steamIDGameServer; + uint32_t unIPServer; + uint16_t usPortServer; + bool bSecure; +}; + +struct ISteamUser_SteamUser021_TerminateGameConnection_DEPRECATED_params +{ + struct u_steam_iface *linux_side; + uint32_t unIPServer; + uint16_t usPortServer; +}; + +struct ISteamUser_SteamUser021_TrackAppUsageEvent_params +{ + struct u_steam_iface *linux_side; + CGameID gameID; + int32_t eAppUsageEvent; + const char *pchExtraInfo; +}; + +struct ISteamUser_SteamUser021_GetUserDataFolder_params +{ + struct u_steam_iface *linux_side; + bool _ret; + char *pchBuffer; + int32_t cubBuffer; +}; + +struct ISteamUser_SteamUser021_StartVoiceRecording_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser021_StopVoiceRecording_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser021_GetAvailableVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t *pcbCompressed; + uint32_t *pcbUncompressed_Deprecated; + uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated; +}; + +struct ISteamUser_SteamUser021_GetVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + bool bWantCompressed; + void *pDestBuffer; + uint32_t cbDestBufferSize; + uint32_t *nBytesWritten; + bool bWantUncompressed_Deprecated; + void *pUncompressedDestBuffer_Deprecated; + uint32_t cbUncompressedDestBufferSize_Deprecated; + uint32_t *nUncompressBytesWritten_Deprecated; + uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated; +}; + +struct ISteamUser_SteamUser021_DecompressVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const void *pCompressed; + uint32_t cbCompressed; + void *pDestBuffer; + uint32_t cbDestBufferSize; + uint32_t *nBytesWritten; + uint32_t nDesiredSampleRate; +}; + +struct ISteamUser_SteamUser021_GetVoiceOptimalSampleRate_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUser_SteamUser021_GetAuthSessionTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + void *pTicket; + int32_t cbMaxTicket; + uint32_t *pcbTicket; +}; + +struct ISteamUser_SteamUser021_BeginAuthSession_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const void *pAuthTicket; + int32_t cbAuthTicket; + CSteamID steamID; +}; + +struct ISteamUser_SteamUser021_EndAuthSession_params +{ + struct u_steam_iface *linux_side; + CSteamID steamID; +}; + +struct ISteamUser_SteamUser021_CancelAuthTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t hAuthTicket; +}; + +struct ISteamUser_SteamUser021_UserHasLicenseForApp_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamID; + uint32_t appID; +}; + +struct ISteamUser_SteamUser021_BIsBehindNAT_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser021_AdvertiseGame_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDGameServer; + uint32_t unIPServer; + uint16_t usPortServer; +}; + +struct ISteamUser_SteamUser021_RequestEncryptedAppTicket_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + void *pDataToInclude; + int32_t cbDataToInclude; +}; + +struct ISteamUser_SteamUser021_GetEncryptedAppTicket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + void *pTicket; + int32_t cbMaxTicket; + uint32_t *pcbTicket; +}; + +struct ISteamUser_SteamUser021_GetGameBadgeLevel_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t nSeries; + bool bFoil; +}; + +struct ISteamUser_SteamUser021_GetPlayerSteamLevel_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamUser_SteamUser021_RequestStoreAuthURL_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchRedirectURL; +}; + +struct ISteamUser_SteamUser021_BIsPhoneVerified_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser021_BIsTwoFactorEnabled_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser021_BIsPhoneIdentifying_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser021_BIsPhoneRequiringVerification_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser021_GetMarketEligibility_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamUser_SteamUser021_GetDurationControl_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamUser_SteamUser021_BSetDurationControlOnlineState_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eNewState; +}; + +struct ISteamUser_SteamUser022_GetHSteamUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamUser_SteamUser022_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser022_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamUser_SteamUser022_InitiateGameConnection_DEPRECATED_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + void *pAuthBlob; + int32_t cbMaxAuthBlob; + CSteamID steamIDGameServer; + uint32_t unIPServer; + uint16_t usPortServer; + bool bSecure; +}; + +struct ISteamUser_SteamUser022_TerminateGameConnection_DEPRECATED_params +{ + struct u_steam_iface *linux_side; + uint32_t unIPServer; + uint16_t usPortServer; +}; + +struct ISteamUser_SteamUser022_TrackAppUsageEvent_params +{ + struct u_steam_iface *linux_side; + CGameID gameID; + int32_t eAppUsageEvent; + const char *pchExtraInfo; +}; + +struct ISteamUser_SteamUser022_GetUserDataFolder_params +{ + struct u_steam_iface *linux_side; + bool _ret; + char *pchBuffer; + int32_t cubBuffer; +}; + +struct ISteamUser_SteamUser022_StartVoiceRecording_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser022_StopVoiceRecording_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser022_GetAvailableVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t *pcbCompressed; + uint32_t *pcbUncompressed_Deprecated; + uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated; +}; + +struct ISteamUser_SteamUser022_GetVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + bool bWantCompressed; + void *pDestBuffer; + uint32_t cbDestBufferSize; + uint32_t *nBytesWritten; + bool bWantUncompressed_Deprecated; + void *pUncompressedDestBuffer_Deprecated; + uint32_t cbUncompressedDestBufferSize_Deprecated; + uint32_t *nUncompressBytesWritten_Deprecated; + uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated; +}; + +struct ISteamUser_SteamUser022_DecompressVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const void *pCompressed; + uint32_t cbCompressed; + void *pDestBuffer; + uint32_t cbDestBufferSize; + uint32_t *nBytesWritten; + uint32_t nDesiredSampleRate; +}; + +struct ISteamUser_SteamUser022_GetVoiceOptimalSampleRate_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUser_SteamUser022_GetAuthSessionTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + void *pTicket; + int32_t cbMaxTicket; + uint32_t *pcbTicket; + const SteamNetworkingIdentity_144 *pSteamNetworkingIdentity; +}; + +struct ISteamUser_SteamUser022_BeginAuthSession_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const void *pAuthTicket; + int32_t cbAuthTicket; + CSteamID steamID; +}; + +struct ISteamUser_SteamUser022_EndAuthSession_params +{ + struct u_steam_iface *linux_side; + CSteamID steamID; +}; + +struct ISteamUser_SteamUser022_CancelAuthTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t hAuthTicket; +}; + +struct ISteamUser_SteamUser022_UserHasLicenseForApp_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamID; + uint32_t appID; +}; + +struct ISteamUser_SteamUser022_BIsBehindNAT_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser022_AdvertiseGame_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDGameServer; + uint32_t unIPServer; + uint16_t usPortServer; +}; + +struct ISteamUser_SteamUser022_RequestEncryptedAppTicket_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + void *pDataToInclude; + int32_t cbDataToInclude; +}; + +struct ISteamUser_SteamUser022_GetEncryptedAppTicket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + void *pTicket; + int32_t cbMaxTicket; + uint32_t *pcbTicket; +}; + +struct ISteamUser_SteamUser022_GetGameBadgeLevel_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t nSeries; + bool bFoil; +}; + +struct ISteamUser_SteamUser022_GetPlayerSteamLevel_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamUser_SteamUser022_RequestStoreAuthURL_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchRedirectURL; +}; + +struct ISteamUser_SteamUser022_BIsPhoneVerified_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser022_BIsTwoFactorEnabled_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser022_BIsPhoneIdentifying_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser022_BIsPhoneRequiringVerification_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser022_GetMarketEligibility_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamUser_SteamUser022_GetDurationControl_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamUser_SteamUser022_BSetDurationControlOnlineState_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eNewState; +}; + +struct ISteamUser_SteamUser023_GetHSteamUser_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamUser_SteamUser023_BLoggedOn_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser023_GetSteamID_params +{ + struct u_steam_iface *linux_side; + CSteamID *_ret; +}; + +struct ISteamUser_SteamUser023_InitiateGameConnection_DEPRECATED_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + void *pAuthBlob; + int32_t cbMaxAuthBlob; + CSteamID steamIDGameServer; + uint32_t unIPServer; + uint16_t usPortServer; + bool bSecure; +}; + +struct ISteamUser_SteamUser023_TerminateGameConnection_DEPRECATED_params +{ + struct u_steam_iface *linux_side; + uint32_t unIPServer; + uint16_t usPortServer; +}; + +struct ISteamUser_SteamUser023_TrackAppUsageEvent_params +{ + struct u_steam_iface *linux_side; + CGameID gameID; + int32_t eAppUsageEvent; + const char *pchExtraInfo; +}; + +struct ISteamUser_SteamUser023_GetUserDataFolder_params +{ + struct u_steam_iface *linux_side; + bool _ret; + char *pchBuffer; + int32_t cubBuffer; +}; + +struct ISteamUser_SteamUser023_StartVoiceRecording_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser023_StopVoiceRecording_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUser_SteamUser023_GetAvailableVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t *pcbCompressed; + uint32_t *pcbUncompressed_Deprecated; + uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated; +}; + +struct ISteamUser_SteamUser023_GetVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + bool bWantCompressed; + void *pDestBuffer; + uint32_t cbDestBufferSize; + uint32_t *nBytesWritten; + bool bWantUncompressed_Deprecated; + void *pUncompressedDestBuffer_Deprecated; + uint32_t cbUncompressedDestBufferSize_Deprecated; + uint32_t *nUncompressBytesWritten_Deprecated; + uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated; +}; + +struct ISteamUser_SteamUser023_DecompressVoice_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const void *pCompressed; + uint32_t cbCompressed; + void *pDestBuffer; + uint32_t cbDestBufferSize; + uint32_t *nBytesWritten; + uint32_t nDesiredSampleRate; +}; + +struct ISteamUser_SteamUser023_GetVoiceOptimalSampleRate_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUser_SteamUser023_GetAuthSessionTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + void *pTicket; + int32_t cbMaxTicket; + uint32_t *pcbTicket; + const SteamNetworkingIdentity_144 *pSteamNetworkingIdentity; +}; + +struct ISteamUser_SteamUser023_GetAuthTicketForWebApi_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const char *pchIdentity; +}; + +struct ISteamUser_SteamUser023_BeginAuthSession_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + const void *pAuthTicket; + int32_t cbAuthTicket; + CSteamID steamID; +}; + +struct ISteamUser_SteamUser023_EndAuthSession_params +{ + struct u_steam_iface *linux_side; + CSteamID steamID; +}; + +struct ISteamUser_SteamUser023_CancelAuthTicket_params +{ + struct u_steam_iface *linux_side; + uint32_t hAuthTicket; +}; + +struct ISteamUser_SteamUser023_UserHasLicenseForApp_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + CSteamID steamID; + uint32_t appID; +}; + +struct ISteamUser_SteamUser023_BIsBehindNAT_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser023_AdvertiseGame_params +{ + struct u_steam_iface *linux_side; + CSteamID steamIDGameServer; + uint32_t unIPServer; + uint16_t usPortServer; +}; + +struct ISteamUser_SteamUser023_RequestEncryptedAppTicket_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + void *pDataToInclude; + int32_t cbDataToInclude; +}; + +struct ISteamUser_SteamUser023_GetEncryptedAppTicket_params +{ + struct u_steam_iface *linux_side; + bool _ret; + void *pTicket; + int32_t cbMaxTicket; + uint32_t *pcbTicket; +}; + +struct ISteamUser_SteamUser023_GetGameBadgeLevel_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + int32_t nSeries; + bool bFoil; +}; + +struct ISteamUser_SteamUser023_GetPlayerSteamLevel_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; +}; + +struct ISteamUser_SteamUser023_RequestStoreAuthURL_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *pchRedirectURL; +}; + +struct ISteamUser_SteamUser023_BIsPhoneVerified_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser023_BIsTwoFactorEnabled_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser023_BIsPhoneIdentifying_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser023_BIsPhoneRequiringVerification_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUser_SteamUser023_GetMarketEligibility_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamUser_SteamUser023_GetDurationControl_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; +}; + +struct ISteamUser_SteamUser023_BSetDurationControlOnlineState_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eNewState; +}; + +struct ISteamUtils_SteamUtils002_GetSecondsSinceAppActive_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils002_GetSecondsSinceComputerActive_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils002_GetConnectedUniverse_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils002_GetServerRealTime_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils002_GetIPCountry_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamUtils_SteamUtils002_GetImageSize_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iImage; + uint32_t *pnWidth; + uint32_t *pnHeight; +}; + +struct ISteamUtils_SteamUtils002_GetImageRGBA_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iImage; + uint8_t *pubDest; + int32_t nDestBufferSize; +}; + +struct ISteamUtils_SteamUtils002_GetCSERIPPort_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t *unIP; + uint16_t *usPort; +}; + +struct ISteamUtils_SteamUtils002_GetCurrentBatteryPower_params +{ + struct u_steam_iface *linux_side; + uint8_t _ret; +}; + +struct ISteamUtils_SteamUtils002_GetAppID_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils002_SetOverlayNotificationPosition_params +{ + struct u_steam_iface *linux_side; + uint32_t eNotificationPosition; +}; + +struct ISteamUtils_SteamUtils002_IsAPICallCompleted_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hSteamAPICall; + bool *pbFailed; +}; + +struct ISteamUtils_SteamUtils002_GetAPICallFailureReason_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t hSteamAPICall; +}; + +struct ISteamUtils_SteamUtils002_GetAPICallResult_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hSteamAPICall; + void *pCallback; + int32_t cubCallback; + int32_t iCallbackExpected; + bool *pbFailed; +}; + +struct ISteamUtils_SteamUtils004_GetSecondsSinceAppActive_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils004_GetSecondsSinceComputerActive_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils004_GetConnectedUniverse_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils004_GetServerRealTime_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils004_GetIPCountry_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamUtils_SteamUtils004_GetImageSize_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iImage; + uint32_t *pnWidth; + uint32_t *pnHeight; +}; + +struct ISteamUtils_SteamUtils004_GetImageRGBA_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iImage; + uint8_t *pubDest; + int32_t nDestBufferSize; +}; + +struct ISteamUtils_SteamUtils004_GetCSERIPPort_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t *unIP; + uint16_t *usPort; +}; + +struct ISteamUtils_SteamUtils004_GetCurrentBatteryPower_params +{ + struct u_steam_iface *linux_side; + uint8_t _ret; +}; + +struct ISteamUtils_SteamUtils004_GetAppID_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils004_SetOverlayNotificationPosition_params +{ + struct u_steam_iface *linux_side; + uint32_t eNotificationPosition; +}; + +struct ISteamUtils_SteamUtils004_IsAPICallCompleted_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hSteamAPICall; + bool *pbFailed; +}; + +struct ISteamUtils_SteamUtils004_GetAPICallFailureReason_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t hSteamAPICall; +}; + +struct ISteamUtils_SteamUtils004_GetAPICallResult_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hSteamAPICall; + void *pCallback; + int32_t cubCallback; + int32_t iCallbackExpected; + bool *pbFailed; +}; + +struct ISteamUtils_SteamUtils004_RunFrame_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUtils_SteamUtils004_GetIPCCallCount_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils004_SetWarningMessageHook_params +{ + struct u_steam_iface *linux_side; + void (*W_CDECL pFunction)(int32_t, const char *); +}; + +struct ISteamUtils_SteamUtils004_IsOverlayEnabled_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUtils_SteamUtils005_GetSecondsSinceAppActive_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils005_GetSecondsSinceComputerActive_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils005_GetConnectedUniverse_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils005_GetServerRealTime_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils005_GetIPCountry_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamUtils_SteamUtils005_GetImageSize_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iImage; + uint32_t *pnWidth; + uint32_t *pnHeight; +}; + +struct ISteamUtils_SteamUtils005_GetImageRGBA_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iImage; + uint8_t *pubDest; + int32_t nDestBufferSize; +}; + +struct ISteamUtils_SteamUtils005_GetCSERIPPort_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t *unIP; + uint16_t *usPort; +}; + +struct ISteamUtils_SteamUtils005_GetCurrentBatteryPower_params +{ + struct u_steam_iface *linux_side; + uint8_t _ret; +}; + +struct ISteamUtils_SteamUtils005_GetAppID_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils005_SetOverlayNotificationPosition_params +{ + struct u_steam_iface *linux_side; + uint32_t eNotificationPosition; +}; + +struct ISteamUtils_SteamUtils005_IsAPICallCompleted_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hSteamAPICall; + bool *pbFailed; +}; + +struct ISteamUtils_SteamUtils005_GetAPICallFailureReason_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t hSteamAPICall; +}; + +struct ISteamUtils_SteamUtils005_GetAPICallResult_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hSteamAPICall; + void *pCallback; + int32_t cubCallback; + int32_t iCallbackExpected; + bool *pbFailed; +}; + +struct ISteamUtils_SteamUtils005_RunFrame_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUtils_SteamUtils005_GetIPCCallCount_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils005_SetWarningMessageHook_params +{ + struct u_steam_iface *linux_side; + void (*W_CDECL pFunction)(int32_t, const char *); +}; + +struct ISteamUtils_SteamUtils005_IsOverlayEnabled_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUtils_SteamUtils005_BOverlayNeedsPresent_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUtils_SteamUtils005_CheckFileSignature_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *szFileName; +}; + +struct ISteamUtils_SteamUtils005_ShowGamepadTextInput_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eInputMode; + uint32_t eLineInputMode; + const char *pchDescription; + uint32_t unCharMax; +}; + +struct ISteamUtils_SteamUtils005_GetEnteredGamepadTextLength_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils005_GetEnteredGamepadTextInput_params +{ + struct u_steam_iface *linux_side; + bool _ret; + char *pchText; + uint32_t cchText; +}; + +struct ISteamUtils_SteamUtils006_GetSecondsSinceAppActive_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils006_GetSecondsSinceComputerActive_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils006_GetConnectedUniverse_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils006_GetServerRealTime_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils006_GetIPCountry_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamUtils_SteamUtils006_GetImageSize_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iImage; + uint32_t *pnWidth; + uint32_t *pnHeight; +}; + +struct ISteamUtils_SteamUtils006_GetImageRGBA_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iImage; + uint8_t *pubDest; + int32_t nDestBufferSize; +}; + +struct ISteamUtils_SteamUtils006_GetCSERIPPort_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t *unIP; + uint16_t *usPort; +}; + +struct ISteamUtils_SteamUtils006_GetCurrentBatteryPower_params +{ + struct u_steam_iface *linux_side; + uint8_t _ret; +}; + +struct ISteamUtils_SteamUtils006_GetAppID_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils006_SetOverlayNotificationPosition_params +{ + struct u_steam_iface *linux_side; + uint32_t eNotificationPosition; +}; + +struct ISteamUtils_SteamUtils006_IsAPICallCompleted_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hSteamAPICall; + bool *pbFailed; +}; + +struct ISteamUtils_SteamUtils006_GetAPICallFailureReason_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t hSteamAPICall; +}; + +struct ISteamUtils_SteamUtils006_GetAPICallResult_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hSteamAPICall; + void *pCallback; + int32_t cubCallback; + int32_t iCallbackExpected; + bool *pbFailed; +}; + +struct ISteamUtils_SteamUtils006_RunFrame_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUtils_SteamUtils006_GetIPCCallCount_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils006_SetWarningMessageHook_params +{ + struct u_steam_iface *linux_side; + void (*W_CDECL pFunction)(int32_t, const char *); +}; + +struct ISteamUtils_SteamUtils006_IsOverlayEnabled_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUtils_SteamUtils006_BOverlayNeedsPresent_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUtils_SteamUtils006_CheckFileSignature_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *szFileName; +}; + +struct ISteamUtils_SteamUtils006_ShowGamepadTextInput_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eInputMode; + uint32_t eLineInputMode; + const char *pchDescription; + uint32_t unCharMax; +}; + +struct ISteamUtils_SteamUtils006_GetEnteredGamepadTextLength_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils006_GetEnteredGamepadTextInput_params +{ + struct u_steam_iface *linux_side; + bool _ret; + char *pchText; + uint32_t cchText; +}; + +struct ISteamUtils_SteamUtils006_GetSteamUILanguage_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamUtils_SteamUtils006_IsSteamRunningInVR_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUtils_SteamUtils007_GetSecondsSinceAppActive_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils007_GetSecondsSinceComputerActive_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils007_GetConnectedUniverse_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils007_GetServerRealTime_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils007_GetIPCountry_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamUtils_SteamUtils007_GetImageSize_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iImage; + uint32_t *pnWidth; + uint32_t *pnHeight; +}; + +struct ISteamUtils_SteamUtils007_GetImageRGBA_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iImage; + uint8_t *pubDest; + int32_t nDestBufferSize; +}; + +struct ISteamUtils_SteamUtils007_GetCSERIPPort_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t *unIP; + uint16_t *usPort; +}; + +struct ISteamUtils_SteamUtils007_GetCurrentBatteryPower_params +{ + struct u_steam_iface *linux_side; + uint8_t _ret; +}; + +struct ISteamUtils_SteamUtils007_GetAppID_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils007_SetOverlayNotificationPosition_params +{ + struct u_steam_iface *linux_side; + uint32_t eNotificationPosition; +}; + +struct ISteamUtils_SteamUtils007_IsAPICallCompleted_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hSteamAPICall; + bool *pbFailed; +}; + +struct ISteamUtils_SteamUtils007_GetAPICallFailureReason_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t hSteamAPICall; +}; + +struct ISteamUtils_SteamUtils007_GetAPICallResult_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hSteamAPICall; + void *pCallback; + int32_t cubCallback; + int32_t iCallbackExpected; + bool *pbFailed; +}; + +struct ISteamUtils_SteamUtils007_RunFrame_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUtils_SteamUtils007_GetIPCCallCount_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils007_SetWarningMessageHook_params +{ + struct u_steam_iface *linux_side; + void (*W_CDECL pFunction)(int32_t, const char *); +}; + +struct ISteamUtils_SteamUtils007_IsOverlayEnabled_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUtils_SteamUtils007_BOverlayNeedsPresent_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUtils_SteamUtils007_CheckFileSignature_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *szFileName; +}; + +struct ISteamUtils_SteamUtils007_ShowGamepadTextInput_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eInputMode; + uint32_t eLineInputMode; + const char *pchDescription; + uint32_t unCharMax; + const char *pchExistingText; +}; + +struct ISteamUtils_SteamUtils007_GetEnteredGamepadTextLength_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils007_GetEnteredGamepadTextInput_params +{ + struct u_steam_iface *linux_side; + bool _ret; + char *pchText; + uint32_t cchText; +}; + +struct ISteamUtils_SteamUtils007_GetSteamUILanguage_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamUtils_SteamUtils007_IsSteamRunningInVR_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUtils_SteamUtils007_SetOverlayNotificationInset_params +{ + struct u_steam_iface *linux_side; + int32_t nHorizontalInset; + int32_t nVerticalInset; +}; + +struct ISteamUtils_SteamUtils008_GetSecondsSinceAppActive_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils008_GetSecondsSinceComputerActive_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils008_GetConnectedUniverse_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils008_GetServerRealTime_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils008_GetIPCountry_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamUtils_SteamUtils008_GetImageSize_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iImage; + uint32_t *pnWidth; + uint32_t *pnHeight; +}; + +struct ISteamUtils_SteamUtils008_GetImageRGBA_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iImage; + uint8_t *pubDest; + int32_t nDestBufferSize; +}; + +struct ISteamUtils_SteamUtils008_GetCSERIPPort_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t *unIP; + uint16_t *usPort; +}; + +struct ISteamUtils_SteamUtils008_GetCurrentBatteryPower_params +{ + struct u_steam_iface *linux_side; + uint8_t _ret; +}; + +struct ISteamUtils_SteamUtils008_GetAppID_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils008_SetOverlayNotificationPosition_params +{ + struct u_steam_iface *linux_side; + uint32_t eNotificationPosition; +}; + +struct ISteamUtils_SteamUtils008_IsAPICallCompleted_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hSteamAPICall; + bool *pbFailed; +}; + +struct ISteamUtils_SteamUtils008_GetAPICallFailureReason_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t hSteamAPICall; +}; + +struct ISteamUtils_SteamUtils008_GetAPICallResult_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hSteamAPICall; + void *pCallback; + int32_t cubCallback; + int32_t iCallbackExpected; + bool *pbFailed; +}; + +struct ISteamUtils_SteamUtils008_RunFrame_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUtils_SteamUtils008_GetIPCCallCount_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils008_SetWarningMessageHook_params +{ + struct u_steam_iface *linux_side; + void (*W_CDECL pFunction)(int32_t, const char *); +}; + +struct ISteamUtils_SteamUtils008_IsOverlayEnabled_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUtils_SteamUtils008_BOverlayNeedsPresent_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUtils_SteamUtils008_CheckFileSignature_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *szFileName; +}; + +struct ISteamUtils_SteamUtils008_ShowGamepadTextInput_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eInputMode; + uint32_t eLineInputMode; + const char *pchDescription; + uint32_t unCharMax; + const char *pchExistingText; +}; + +struct ISteamUtils_SteamUtils008_GetEnteredGamepadTextLength_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils008_GetEnteredGamepadTextInput_params +{ + struct u_steam_iface *linux_side; + bool _ret; + char *pchText; + uint32_t cchText; +}; + +struct ISteamUtils_SteamUtils008_GetSteamUILanguage_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamUtils_SteamUtils008_IsSteamRunningInVR_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUtils_SteamUtils008_SetOverlayNotificationInset_params +{ + struct u_steam_iface *linux_side; + int32_t nHorizontalInset; + int32_t nVerticalInset; +}; + +struct ISteamUtils_SteamUtils008_IsSteamInBigPictureMode_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUtils_SteamUtils008_StartVRDashboard_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUtils_SteamUtils009_GetSecondsSinceAppActive_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils009_GetSecondsSinceComputerActive_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils009_GetConnectedUniverse_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils009_GetServerRealTime_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils009_GetIPCountry_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamUtils_SteamUtils009_GetImageSize_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iImage; + uint32_t *pnWidth; + uint32_t *pnHeight; +}; + +struct ISteamUtils_SteamUtils009_GetImageRGBA_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iImage; + uint8_t *pubDest; + int32_t nDestBufferSize; +}; + +struct ISteamUtils_SteamUtils009_GetCSERIPPort_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t *unIP; + uint16_t *usPort; +}; + +struct ISteamUtils_SteamUtils009_GetCurrentBatteryPower_params +{ + struct u_steam_iface *linux_side; + uint8_t _ret; +}; + +struct ISteamUtils_SteamUtils009_GetAppID_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils009_SetOverlayNotificationPosition_params +{ + struct u_steam_iface *linux_side; + uint32_t eNotificationPosition; +}; + +struct ISteamUtils_SteamUtils009_IsAPICallCompleted_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hSteamAPICall; + bool *pbFailed; +}; + +struct ISteamUtils_SteamUtils009_GetAPICallFailureReason_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t hSteamAPICall; +}; + +struct ISteamUtils_SteamUtils009_GetAPICallResult_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hSteamAPICall; + void *pCallback; + int32_t cubCallback; + int32_t iCallbackExpected; + bool *pbFailed; +}; + +struct ISteamUtils_SteamUtils009_RunFrame_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUtils_SteamUtils009_GetIPCCallCount_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils009_SetWarningMessageHook_params +{ + struct u_steam_iface *linux_side; + void (*W_CDECL pFunction)(int32_t, const char *); +}; + +struct ISteamUtils_SteamUtils009_IsOverlayEnabled_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUtils_SteamUtils009_BOverlayNeedsPresent_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUtils_SteamUtils009_CheckFileSignature_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *szFileName; +}; + +struct ISteamUtils_SteamUtils009_ShowGamepadTextInput_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eInputMode; + uint32_t eLineInputMode; + const char *pchDescription; + uint32_t unCharMax; + const char *pchExistingText; +}; + +struct ISteamUtils_SteamUtils009_GetEnteredGamepadTextLength_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils009_GetEnteredGamepadTextInput_params +{ + struct u_steam_iface *linux_side; + bool _ret; + char *pchText; + uint32_t cchText; +}; + +struct ISteamUtils_SteamUtils009_GetSteamUILanguage_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamUtils_SteamUtils009_IsSteamRunningInVR_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUtils_SteamUtils009_SetOverlayNotificationInset_params +{ + struct u_steam_iface *linux_side; + int32_t nHorizontalInset; + int32_t nVerticalInset; +}; + +struct ISteamUtils_SteamUtils009_IsSteamInBigPictureMode_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUtils_SteamUtils009_StartVRDashboard_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUtils_SteamUtils009_IsVRHeadsetStreamingEnabled_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUtils_SteamUtils009_SetVRHeadsetStreamingEnabled_params +{ + struct u_steam_iface *linux_side; + bool bEnabled; +}; + +struct ISteamUtils_SteamUtils009_IsSteamChinaLauncher_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUtils_SteamUtils009_InitFilterText_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUtils_SteamUtils009_FilterText_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + char *pchOutFilteredText; + uint32_t nByteSizeOutFilteredText; + const char *pchInputMessage; + bool bLegalOnly; +}; + +struct ISteamUtils_SteamUtils009_GetIPv6ConnectivityState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t eProtocol; +}; + +struct ISteamUtils_SteamUtils010_GetSecondsSinceAppActive_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils010_GetSecondsSinceComputerActive_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils010_GetConnectedUniverse_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils010_GetServerRealTime_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils010_GetIPCountry_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamUtils_SteamUtils010_GetImageSize_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iImage; + uint32_t *pnWidth; + uint32_t *pnHeight; +}; + +struct ISteamUtils_SteamUtils010_GetImageRGBA_params +{ + struct u_steam_iface *linux_side; + bool _ret; + int32_t iImage; + uint8_t *pubDest; + int32_t nDestBufferSize; +}; + +struct ISteamUtils_SteamUtils010_GetCSERIPPort_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t *unIP; + uint16_t *usPort; +}; + +struct ISteamUtils_SteamUtils010_GetCurrentBatteryPower_params +{ + struct u_steam_iface *linux_side; + uint8_t _ret; +}; + +struct ISteamUtils_SteamUtils010_GetAppID_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils010_SetOverlayNotificationPosition_params +{ + struct u_steam_iface *linux_side; + uint32_t eNotificationPosition; +}; + +struct ISteamUtils_SteamUtils010_IsAPICallCompleted_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hSteamAPICall; + bool *pbFailed; +}; + +struct ISteamUtils_SteamUtils010_GetAPICallFailureReason_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint64_t hSteamAPICall; +}; + +struct ISteamUtils_SteamUtils010_GetAPICallResult_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint64_t hSteamAPICall; + void *pCallback; + int32_t cubCallback; + int32_t iCallbackExpected; + bool *pbFailed; +}; + +struct ISteamUtils_SteamUtils010_RunFrame_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUtils_SteamUtils010_GetIPCCallCount_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils010_SetWarningMessageHook_params +{ + struct u_steam_iface *linux_side; + void (*W_CDECL pFunction)(int32_t, const char *); +}; + +struct ISteamUtils_SteamUtils010_IsOverlayEnabled_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUtils_SteamUtils010_BOverlayNeedsPresent_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUtils_SteamUtils010_CheckFileSignature_params +{ + struct u_steam_iface *linux_side; + uint64_t _ret; + const char *szFileName; +}; + +struct ISteamUtils_SteamUtils010_ShowGamepadTextInput_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eInputMode; + uint32_t eLineInputMode; + const char *pchDescription; + uint32_t unCharMax; + const char *pchExistingText; +}; + +struct ISteamUtils_SteamUtils010_GetEnteredGamepadTextLength_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; +}; + +struct ISteamUtils_SteamUtils010_GetEnteredGamepadTextInput_params +{ + struct u_steam_iface *linux_side; + bool _ret; + char *pchText; + uint32_t cchText; +}; + +struct ISteamUtils_SteamUtils010_GetSteamUILanguage_params +{ + struct u_steam_iface *linux_side; + const char *_ret; +}; + +struct ISteamUtils_SteamUtils010_IsSteamRunningInVR_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUtils_SteamUtils010_SetOverlayNotificationInset_params +{ + struct u_steam_iface *linux_side; + int32_t nHorizontalInset; + int32_t nVerticalInset; +}; + +struct ISteamUtils_SteamUtils010_IsSteamInBigPictureMode_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUtils_SteamUtils010_StartVRDashboard_params +{ + struct u_steam_iface *linux_side; +}; + +struct ISteamUtils_SteamUtils010_IsVRHeadsetStreamingEnabled_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUtils_SteamUtils010_SetVRHeadsetStreamingEnabled_params +{ + struct u_steam_iface *linux_side; + bool bEnabled; +}; + +struct ISteamUtils_SteamUtils010_IsSteamChinaLauncher_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUtils_SteamUtils010_InitFilterText_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t unFilterOptions; +}; + +struct ISteamUtils_SteamUtils010_FilterText_params +{ + struct u_steam_iface *linux_side; + int32_t _ret; + uint32_t eContext; + CSteamID sourceSteamID; + const char *pchInputMessage; + char *pchOutFilteredText; + uint32_t nByteSizeOutFilteredText; +}; + +struct ISteamUtils_SteamUtils010_GetIPv6ConnectivityState_params +{ + struct u_steam_iface *linux_side; + uint32_t _ret; + uint32_t eProtocol; +}; + +struct ISteamUtils_SteamUtils010_IsSteamRunningOnSteamDeck_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +struct ISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput_params +{ + struct u_steam_iface *linux_side; + bool _ret; + uint32_t eKeyboardMode; + int32_t nTextFieldXPosition; + int32_t nTextFieldYPosition; + int32_t nTextFieldWidth; + int32_t nTextFieldHeight; +}; + +struct ISteamUtils_SteamUtils010_SetGameLauncherMode_params +{ + struct u_steam_iface *linux_side; + bool bLauncherMode; +}; + +struct ISteamUtils_SteamUtils010_DismissFloatingGamepadTextInput_params +{ + struct u_steam_iface *linux_side; + bool _ret; +}; + +enum unix_funcs +{ + unix_ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetNumInstalledApps, + unix_ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetInstalledApps, + unix_ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName, + unix_ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInstallDir, + unix_ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppBuildId, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION001_GetAppData, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentGameLanguage, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribed, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsLowViolence, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsCybercafe, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsVACBanned, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetCurrentGameLanguage, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetAvailableGameLanguages, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsDlcInstalled, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribed, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsLowViolence, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsCybercafe, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsVACBanned, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetCurrentGameLanguage, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetAvailableGameLanguages, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedApp, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsDlcInstalled, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetEarliestPurchaseUnixTime, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedFromFreeWeekend, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetDLCCount, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByIndex, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION004_InstallDLC, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION004_UninstallDLC, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribed, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsLowViolence, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsCybercafe, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsVACBanned, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentGameLanguage, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAvailableGameLanguages, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedApp, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsDlcInstalled, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetEarliestPurchaseUnixTime, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedFromFreeWeekend, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetDLCCount, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BGetDLCDataByIndex, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION005_InstallDLC, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION005_UninstallDLC, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION005_RequestAppProofOfPurchaseKey, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaName, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION005_MarkContentCorrupt, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetInstalledDepots, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAppInstallDir, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsAppInstalled, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribed, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsLowViolence, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsCybercafe, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsVACBanned, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentGameLanguage, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAvailableGameLanguages, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedApp, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsDlcInstalled, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetEarliestPurchaseUnixTime, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedFromFreeWeekend, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetDLCCount, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BGetDLCDataByIndex, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION006_InstallDLC, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION006_UninstallDLC, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION006_RequestAppProofOfPurchaseKey, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaName, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION006_MarkContentCorrupt, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetInstalledDepots, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppInstallDir, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsAppInstalled, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppOwner, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetLaunchQueryParam, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribed, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsLowViolence, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsCybercafe, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsVACBanned, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentGameLanguage, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAvailableGameLanguages, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedApp, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsDlcInstalled, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetEarliestPurchaseUnixTime, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedFromFreeWeekend, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDLCCount, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BGetDLCDataByIndex, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION007_InstallDLC, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION007_UninstallDLC, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION007_RequestAppProofOfPurchaseKey, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION007_MarkContentCorrupt, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetInstalledDepots, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppInstallDir, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsAppInstalled, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppOwner, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetLaunchQueryParam, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppBuildId, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribed, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsLowViolence, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsCybercafe, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsVACBanned, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentGameLanguage, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAvailableGameLanguages, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedApp, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsDlcInstalled, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetEarliestPurchaseUnixTime, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFreeWeekend, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDLCCount, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BGetDLCDataByIndex, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION008_InstallDLC, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION008_UninstallDLC, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAppProofOfPurchaseKey, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaName, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION008_MarkContentCorrupt, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetInstalledDepots, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppInstallDir, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsAppInstalled, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppOwner, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchQueryParam, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDlcDownloadProgress, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppBuildId, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAllProofOfPurchaseKeys, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetFileDetails, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchCommandLine, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFamilySharing, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial, + unix_ISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetDlcContext, + unix_ISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001_GetAppOwnershipTicketData, + unix_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Init, + unix_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Shutdown, + unix_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_RunFrame, + unix_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_GetControllerState, + unix_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_TriggerHapticPulse, + unix_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_SetOverrideMode, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Init, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Shutdown, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CreateBrowser, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_RemoveBrowser, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_LoadURL, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetSize, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopLoad, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Reload, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoBack, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoForward, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AddHeader, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ExecuteJavascript, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseUp, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDown, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDoubleClick, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseMove, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseWheel, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyDown, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyUp, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyChar, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetHorizontalScroll, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetVerticalScroll, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetKeyFocus, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ViewSource, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CopyToClipboard, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_PasteFromClipboard, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Find, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopFind, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GetLinkAtPosition, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AllowStartRequest, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_JSDialogResponse, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_FileLoadDialogResponse, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Init, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Shutdown, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CreateBrowser, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_RemoveBrowser, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_LoadURL, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetSize, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopLoad, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Reload, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoBack, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoForward, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AddHeader, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ExecuteJavascript, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseUp, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDown, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDoubleClick, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseMove, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseWheel, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyDown, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyUp, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyChar, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetHorizontalScroll, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetVerticalScroll, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetKeyFocus, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ViewSource, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CopyToClipboard, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_PasteFromClipboard, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Find, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopFind, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GetLinkAtPosition, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetCookie, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetPageScaleFactor, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AllowStartRequest, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_JSDialogResponse, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_FileLoadDialogResponse, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Init, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Shutdown, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CreateBrowser, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_RemoveBrowser, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_LoadURL, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetSize, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopLoad, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Reload, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoBack, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoForward, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AddHeader, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ExecuteJavascript, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseUp, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDown, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDoubleClick, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseMove, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseWheel, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyDown, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyUp, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyChar, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetHorizontalScroll, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetVerticalScroll, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetKeyFocus, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ViewSource, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CopyToClipboard, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_PasteFromClipboard, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Find, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopFind, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GetLinkAtPosition, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetCookie, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetPageScaleFactor, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetBackgroundMode, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AllowStartRequest, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_JSDialogResponse, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_FileLoadDialogResponse, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Init, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Shutdown, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CreateBrowser, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_RemoveBrowser, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_LoadURL, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetSize, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopLoad, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Reload, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoBack, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoForward, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AddHeader, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ExecuteJavascript, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseUp, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDown, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDoubleClick, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseMove, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseWheel, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyDown, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyUp, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyChar, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetHorizontalScroll, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetVerticalScroll, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetKeyFocus, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ViewSource, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CopyToClipboard, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_PasteFromClipboard, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Find, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopFind, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GetLinkAtPosition, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetCookie, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetPageScaleFactor, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetBackgroundMode, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetDPIScalingFactor, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AllowStartRequest, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_JSDialogResponse, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_FileLoadDialogResponse, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Init, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Shutdown, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CreateBrowser, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_RemoveBrowser, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_LoadURL, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetSize, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopLoad, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Reload, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoBack, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoForward, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AddHeader, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ExecuteJavascript, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseUp, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDown, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDoubleClick, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseMove, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseWheel, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyDown, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyUp, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyChar, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetHorizontalScroll, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetVerticalScroll, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetKeyFocus, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ViewSource, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CopyToClipboard, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_PasteFromClipboard, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Find, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopFind, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GetLinkAtPosition, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetCookie, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetPageScaleFactor, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetBackgroundMode, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetDPIScalingFactor, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_OpenDeveloperTools, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AllowStartRequest, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_JSDialogResponse, + unix_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_FileLoadDialogResponse, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_CreateHTTPRequest, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestContextValue, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetworkActivityTimeout, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeaderValue, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOrPostParameter, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_DeferHTTPRequest, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_PrioritizeHTTPRequest, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderSize, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderValue, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodySize, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodyData, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_ReleaseHTTPRequest, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProgressPct, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestRawPostBody, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateHTTPRequest, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestContextValue, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetworkActivityTimeout, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeaderValue, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOrPostParameter, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAndStreamResponse, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_DeferHTTPRequest, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_PrioritizeHTTPRequest, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderSize, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderValue, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodySize, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodyData, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingResponseBodyData, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseHTTPRequest, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadProgressPct, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRawPostBody, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateCookieContainer, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseCookieContainer, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCookieContainer, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUserAgentInfo, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRequiresVerifiedCertificate, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsoluteTimeoutMS, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPRequestWasTimedOut, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateHTTPRequest, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestContextValue, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetworkActivityTimeout, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeaderValue, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOrPostParameter, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAndStreamResponse, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_DeferHTTPRequest, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_PrioritizeHTTPRequest, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderSize, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderValue, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodySize, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodyData, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingResponseBodyData, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseHTTPRequest, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadProgressPct, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRawPostBody, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateCookieContainer, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseCookieContainer, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCookieContainer, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUserAgentInfo, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRequiresVerifiedCertificate, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsoluteTimeoutMS, + unix_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPRequestWasTimedOut, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultStatus, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItems, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultTimestamp, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V001_CheckResultSteamID, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DestroyResult, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetAllItems, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeResult, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GrantPromoItems, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TransferItemQuantity, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SendItemDropHeartbeat, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDrop, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V001_LoadItemDefinitions, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionIDs, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionProperty, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V001_RequestEligiblePromoItemDefinitionsIDs, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetEligiblePromoItemDefinitionIDs, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultStatus, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItemProperty, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultTimestamp, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_CheckResultSteamID, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DestroyResult, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetAllItems, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeResult, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GrantPromoItems, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TransferItemQuantity, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SendItemDropHeartbeat, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDrop, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_LoadItemDefinitions, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionIDs, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionProperty, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestEligiblePromoItemDefinitionsIDs, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetEligiblePromoItemDefinitionIDs, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartPurchase, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestPrices, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetNumItemsWithPrices, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPrices, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemPrice, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartUpdateProperties, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SubmitUpdateProperties, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultStatus, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItemProperty, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultTimestamp, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_CheckResultSteamID, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DestroyResult, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetAllItems, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeResult, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GrantPromoItems, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TransferItemQuantity, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SendItemDropHeartbeat, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDrop, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_LoadItemDefinitions, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionIDs, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionProperty, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestEligiblePromoItemDefinitionsIDs, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetEligiblePromoItemDefinitionIDs, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartPurchase, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestPrices, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetNumItemsWithPrices, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPrices, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemPrice, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartUpdateProperties, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateProperties, + unix_ISteamInventory_STEAMINVENTORY_INTERFACE_V003_InspectItem, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_RegisterSteamMusicRemote, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_DeregisterSteamMusicRemote, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BIsCurrentMusicRemote, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BActivationSuccess, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetDisplayName, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPNGIcon_64x64, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayPrevious, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayNext, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableShuffled, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableLooped, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableQueue, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlaylists, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdatePlaybackStatus, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateShuffled, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateLooped, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateVolume, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryWillChange, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryIsAvailable, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryText, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryElapsedSeconds, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryCoverArt, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryDidChange, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueWillChange, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetQueueEntries, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQueueEntry, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentQueueEntry, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueDidChange, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistWillChange, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetPlaylistEntries, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPlaylistEntry, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentPlaylistEntry, + unix_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistDidChange, + unix_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsEnabled, + unix_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsPlaying, + unix_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetPlaybackStatus, + unix_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Play, + unix_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Pause, + unix_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayPrevious, + unix_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayNext, + unix_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_SetVolume, + unix_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetVolume, + unix_ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockEnabled, + unix_ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockLocked, + unix_ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppBlocked, + unix_ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppInBlockList, + unix_ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureBlocked, + unix_ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureInBlockList, + unix_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionCount, + unix_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionID, + unix_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionSteamID, + unix_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientName, + unix_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientFormFactor, + unix_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSessionClientResolution, + unix_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BSendRemotePlayTogetherInvite, + unix_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionCount, + unix_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionID, + unix_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionSteamID, + unix_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientName, + unix_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientFormFactor, + unix_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSessionClientResolution, + unix_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BStartRemotePlayTogether, + unix_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BSendRemotePlayTogetherInvite, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileWrite, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileSize, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileRead, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileExists, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileDelete, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileCount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileNameAndSize, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetQuota, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileWrite, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileSize, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileRead, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileExists, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileCount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileNameAndSize, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetQuota, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileWrite, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileRead, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileForget, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileDelete, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileShare, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileExists, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FilePersisted, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileSize, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileTimestamp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileCount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileNameAndSize, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetQuota, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForAccount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForApp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_SetCloudEnabledForApp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCDownload, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetUGCDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCRead, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCCount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCHandle, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileWrite, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileRead, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileForget, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileDelete, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileShare, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetSyncPlatforms, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileExists, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FilePersisted, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileSize, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileTimestamp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetSyncPlatforms, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileCount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileNameAndSize, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetQuota, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForAccount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForApp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetCloudEnabledForApp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCDownload, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetUGCDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCRead, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCCount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCHandle, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileWrite, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileRead, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileForget, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileDelete, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileShare, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetSyncPlatforms, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileExists, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FilePersisted, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileSize, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileTimestamp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetSyncPlatforms, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileCount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileNameAndSize, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetQuota, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForAccount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForApp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetCloudEnabledForApp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCDownload, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetUGCDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCRead, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCCount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCHandle, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishWorkshopFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UpdatePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetPublishedFileDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_DeletePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserPublishedFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SubscribePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserSubscribedFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UnsubscribePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileWrite, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileRead, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileForget, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileDelete, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileShare, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetSyncPlatforms, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileExists, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FilePersisted, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileSize, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileTimestamp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetSyncPlatforms, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileCount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileNameAndSize, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetQuota, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForAccount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForApp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetCloudEnabledForApp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCDownload, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDownloadProgress, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCRead, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCCount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCHandle, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishWorkshopFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CreatePublishedFileUpdateRequest, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFilePreviewFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTitle, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileDescription, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileVisibility, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTags, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CommitPublishedFileUpdate, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedFileDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_DeletePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserPublishedFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SubscribePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSubscribedFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UnsubscribePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileSetChangeDescription, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedItemVoteDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdateUserPublishedItemVote, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUserPublishedItemVoteDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSharedWorkshopFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishVideo, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetUserPublishedFileAction, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedFilesByUserAction, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedWorkshopFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileWrite, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileRead, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileForget, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileDelete, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileShare, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetSyncPlatforms, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileExists, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FilePersisted, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileSize, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileTimestamp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetSyncPlatforms, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileCount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileNameAndSize, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetQuota, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForAccount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForApp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetCloudEnabledForApp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCDownload, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDownloadProgress, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCRead, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCCount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCHandle, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishWorkshopFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CreatePublishedFileUpdateRequest, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFilePreviewFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTitle, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileDescription, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileVisibility, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTags, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CommitPublishedFileUpdate, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedFileDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_DeletePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserPublishedFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SubscribePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSubscribedFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UnsubscribePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileSetChangeDescription, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedItemVoteDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdateUserPublishedItemVote, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUserPublishedItemVoteDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSharedWorkshopFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishVideo, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetUserPublishedFileAction, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedFilesByUserAction, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedWorkshopFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWrite, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileRead, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileForget, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileDelete, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileShare, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetSyncPlatforms, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamOpen, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamWriteChunk, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamClose, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamCancel, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileExists, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FilePersisted, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileSize, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileTimestamp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetSyncPlatforms, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileCount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileNameAndSize, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetQuota, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForAccount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForApp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetCloudEnabledForApp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCDownload, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDownloadProgress, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCRead, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCCount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCHandle, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishWorkshopFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CreatePublishedFileUpdateRequest, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFilePreviewFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTitle, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileDescription, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileVisibility, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTags, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CommitPublishedFileUpdate, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedFileDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_DeletePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserPublishedFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SubscribePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSubscribedFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UnsubscribePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileSetChangeDescription, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedItemVoteDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdateUserPublishedItemVote, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUserPublishedItemVoteDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSharedWorkshopFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishVideo, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetUserPublishedFileAction, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedFilesByUserAction, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedWorkshopFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWrite, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileRead, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileForget, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileDelete, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileShare, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetSyncPlatforms, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamOpen, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamWriteChunk, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamClose, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamCancel, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileExists, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FilePersisted, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileSize, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileTimestamp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetSyncPlatforms, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileCount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileNameAndSize, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetQuota, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForAccount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForApp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetCloudEnabledForApp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCDownload, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDownloadProgress, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCRead, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCCount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCHandle, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishWorkshopFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CreatePublishedFileUpdateRequest, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFilePreviewFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTitle, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileDescription, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileVisibility, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTags, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CommitPublishedFileUpdate, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedFileDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_DeletePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserPublishedFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SubscribePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSubscribedFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UnsubscribePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileSetChangeDescription, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedItemVoteDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdateUserPublishedItemVote, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUserPublishedItemVoteDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSharedWorkshopFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishVideo, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetUserPublishedFileAction, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedFilesByUserAction, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedWorkshopFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWrite, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileRead, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileForget, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileDelete, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileShare, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetSyncPlatforms, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamOpen, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamWriteChunk, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamClose, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamCancel, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileExists, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FilePersisted, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileSize, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileTimestamp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetSyncPlatforms, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileCount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileNameAndSize, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetQuota, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForAccount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForApp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetCloudEnabledForApp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownload, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDownloadProgress, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCRead, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCCount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCHandle, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishWorkshopFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CreatePublishedFileUpdateRequest, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFilePreviewFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTitle, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileDescription, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileVisibility, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTags, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CommitPublishedFileUpdate, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedFileDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_DeletePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserPublishedFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SubscribePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSubscribedFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UnsubscribePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileSetChangeDescription, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedItemVoteDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdateUserPublishedItemVote, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUserPublishedItemVoteDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSharedWorkshopFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishVideo, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetUserPublishedFileAction, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedFilesByUserAction, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedWorkshopFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownloadToLocation, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWrite, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileRead, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileForget, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileDelete, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileShare, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetSyncPlatforms, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamOpen, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamWriteChunk, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamClose, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamCancel, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileExists, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FilePersisted, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileSize, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileTimestamp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetSyncPlatforms, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileCount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileNameAndSize, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetQuota, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForAccount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForApp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetCloudEnabledForApp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownload, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDownloadProgress, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCRead, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCCount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCHandle, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishWorkshopFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CreatePublishedFileUpdateRequest, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFilePreviewFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTitle, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileDescription, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileVisibility, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTags, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CommitPublishedFileUpdate, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedFileDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_DeletePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserPublishedFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SubscribePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSubscribedFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UnsubscribePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileSetChangeDescription, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedItemVoteDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdateUserPublishedItemVote, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUserPublishedItemVoteDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSharedWorkshopFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishVideo, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetUserPublishedFileAction, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedFilesByUserAction, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedWorkshopFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownloadToLocation, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWrite, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileRead, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileForget, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileDelete, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileShare, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetSyncPlatforms, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamOpen, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamWriteChunk, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamClose, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamCancel, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileExists, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FilePersisted, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileSize, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileTimestamp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetSyncPlatforms, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileCount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileNameAndSize, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetQuota, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForAccount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForApp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetCloudEnabledForApp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownload, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDownloadProgress, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCRead, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCCount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCHandle, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishWorkshopFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CreatePublishedFileUpdateRequest, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFilePreviewFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTitle, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileDescription, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileVisibility, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTags, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CommitPublishedFileUpdate, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedFileDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_DeletePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserPublishedFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SubscribePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSubscribedFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UnsubscribePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileSetChangeDescription, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedItemVoteDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdateUserPublishedItemVote, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUserPublishedItemVoteDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSharedWorkshopFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishVideo, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetUserPublishedFileAction, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedFilesByUserAction, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedWorkshopFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownloadToLocation, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWrite, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileRead, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteAsync, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsync, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsyncComplete, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileForget, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileDelete, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileShare, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetSyncPlatforms, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamOpen, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamWriteChunk, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamClose, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamCancel, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileExists, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FilePersisted, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileSize, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileTimestamp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetSyncPlatforms, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileCount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileNameAndSize, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetQuota, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForAccount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForApp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetCloudEnabledForApp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownload, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDownloadProgress, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCRead, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCCount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCHandle, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishWorkshopFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CreatePublishedFileUpdateRequest, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFilePreviewFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTitle, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileDescription, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileVisibility, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTags, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CommitPublishedFileUpdate, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedFileDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_DeletePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserPublishedFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SubscribePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSubscribedFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UnsubscribePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileSetChangeDescription, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedItemVoteDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdateUserPublishedItemVote, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUserPublishedItemVoteDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSharedWorkshopFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishVideo, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetUserPublishedFileAction, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedFilesByUserAction, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedWorkshopFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownloadToLocation, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWrite, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileRead, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteAsync, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsync, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsyncComplete, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileForget, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileDelete, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileShare, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetSyncPlatforms, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamOpen, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamWriteChunk, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamClose, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamCancel, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileExists, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FilePersisted, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileSize, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileTimestamp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetSyncPlatforms, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileCount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileNameAndSize, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetQuota, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForAccount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForApp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetCloudEnabledForApp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownload, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDownloadProgress, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCRead, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCCount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCHandle, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishWorkshopFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CreatePublishedFileUpdateRequest, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFilePreviewFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTitle, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileDescription, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileVisibility, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTags, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CommitPublishedFileUpdate, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedFileDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_DeletePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserPublishedFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SubscribePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSubscribedFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UnsubscribePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileSetChangeDescription, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedItemVoteDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdateUserPublishedItemVote, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUserPublishedItemVoteDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSharedWorkshopFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishVideo, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetUserPublishedFileAction, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedFilesByUserAction, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedWorkshopFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownloadToLocation, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWrite, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileRead, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteAsync, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsync, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsyncComplete, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileForget, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileDelete, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileShare, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetSyncPlatforms, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamOpen, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamWriteChunk, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamClose, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamCancel, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileExists, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FilePersisted, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileSize, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileTimestamp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetSyncPlatforms, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileCount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileNameAndSize, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetQuota, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForAccount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForApp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetCloudEnabledForApp, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownload, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDownloadProgress, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCRead, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCCount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCHandle, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishWorkshopFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CreatePublishedFileUpdateRequest, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFilePreviewFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTitle, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileDescription, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileVisibility, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTags, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CommitPublishedFileUpdate, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedFileDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_DeletePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserPublishedFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SubscribePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSubscribedFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UnsubscribePublishedFile, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileSetChangeDescription, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedItemVoteDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdateUserPublishedItemVote, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUserPublishedItemVoteDetails, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSharedWorkshopFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishVideo, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetUserPublishedFileAction, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedFilesByUserAction, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedWorkshopFiles, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownloadToLocation, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChangeCount, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChange, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_BeginFileWriteBatch, + unix_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EndFileWriteBatch, + unix_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_WriteScreenshot, + unix_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_AddScreenshotToLibrary, + unix_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TriggerScreenshot, + unix_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_HookScreenshots, + unix_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLocation, + unix_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TagUser, + unix_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_WriteScreenshot, + unix_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_AddScreenshotToLibrary, + unix_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TriggerScreenshot, + unix_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_HookScreenshots, + unix_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_SetLocation, + unix_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUser, + unix_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagPublishedFile, + unix_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_WriteScreenshot, + unix_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddScreenshotToLibrary, + unix_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TriggerScreenshot, + unix_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_HookScreenshots, + unix_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_SetLocation, + unix_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagUser, + unix_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagPublishedFile, + unix_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_IsScreenshotsHooked, + unix_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddVRScreenshotToLibrary, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryUserUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryAllUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SendQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION001_ReleaseQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnLongDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnTotalOnly, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFilter, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetMatchAnyTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetRankedByTrendDays, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION001_RequestUGCDetails, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryUserUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryAllUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SendQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION002_ReleaseQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnLongDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnTotalOnly, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedResponse, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFilter, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetMatchAnyTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetRankedByTrendDays, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION002_RequestUGCDetails, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION002_StartItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubmitItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateProgress, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION002_UnsubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetNumSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryUserUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryAllUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SendQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION003_ReleaseQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDays, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION003_RequestUGCDetails, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION003_StartItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubmitItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateProgress, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION003_UnsubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetNumSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryUserUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryAllUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SendQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_ReleaseQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnLongDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnTotalOnly, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedResponse, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFilter, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetMatchAnyTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetRankedByTrendDays, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_RequestUGCDetails, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_StartItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubmitItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemUpdateProgress, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_UnsubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetNumSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemState, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION004_DownloadItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUserUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryAllUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUGCDetailsRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SendQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCStatistic, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCNumAdditionalPreviews, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAdditionalPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_ReleaseQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnLongDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnChildren, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnAdditionalPreviews, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnTotalOnly, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedResponse, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFilter, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetMatchAnyTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetRankedByTrendDays, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_RequestUGCDetails, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_StartItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubmitItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemUpdateProgress, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddItemToFavorites, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_RemoveItemFromFavorites, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_UnsubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetNumSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemState, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION005_DownloadItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUserUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryAllUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUGCDetailsRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SendQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCStatistic, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCNumAdditionalPreviews, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAdditionalPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_ReleaseQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnLongDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnChildren, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnAdditionalPreviews, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnTotalOnly, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedResponse, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFilter, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetMatchAnyTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetRankedByTrendDays, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_RequestUGCDetails, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_StartItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLanguage, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubmitItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemUpdateProgress, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetUserItemVote, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetUserItemVote, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddItemToFavorites, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_RemoveItemFromFavorites, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_UnsubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetNumSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemState, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION006_DownloadItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUserUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryAllUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUGCDetailsRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SendQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCStatistic, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumAdditionalPreviews, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCAdditionalPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_ReleaseQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnLongDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnChildren, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnAdditionalPreviews, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnTotalOnly, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedResponse, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFilter, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetMatchAnyTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDays, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RequestUGCDetails, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_StartItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLanguage, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubmitItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemUpdateProgress, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetUserItemVote, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetUserItemVote, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemToFavorites, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemFromFavorites, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_UnsubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetNumSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemState, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameServer, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SuspendDownloads, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUserUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryAllUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUGCDetailsRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SendQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCStatistic, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumAdditionalPreviews, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCAdditionalPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_ReleaseQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnLongDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnChildren, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnAdditionalPreviews, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnTotalOnly, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedResponse, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFilter, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetMatchAnyTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDays, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RequestUGCDetails, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_StartItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLanguage, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVideo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubmitItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemUpdateProgress, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetUserItemVote, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetUserItemVote, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemToFavorites, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemFromFavorites, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UnsubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetNumSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemState, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameServer, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SuspendDownloads, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUserUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryAllUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUGCDetailsRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SendQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCStatistic, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumAdditionalPreviews, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCAdditionalPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_ReleaseQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnOnlyIDs, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnLongDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnChildren, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnAdditionalPreviews, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnTotalOnly, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedResponse, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFilter, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetMatchAnyTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDays, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RequestUGCDetails, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLanguage, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVideo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubmitItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemUpdateProgress, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetUserItemVote, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetUserItemVote, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemToFavorites, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemFromFavorites, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UnsubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetNumSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemState, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_DownloadItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameServer, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SuspendDownloads, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartPlaytimeTracking, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTracking, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTrackingForAllItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUserUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryAllUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUGCDetailsRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SendQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCStatistic, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumAdditionalPreviews, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCAdditionalPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_ReleaseQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnOnlyIDs, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnLongDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnChildren, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnAdditionalPreviews, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnTotalOnly, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeStats, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedResponse, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFilter, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetMatchAnyTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDays, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RequestUGCDetails, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLanguage, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVideo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubmitItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemUpdateProgress, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetUserItemVote, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetUserItemVote, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemToFavorites, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemFromFavorites, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UnsubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetNumSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemState, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_DownloadItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameServer, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SuspendDownloads, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartPlaytimeTracking, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTracking, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTrackingForAllItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddAppDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveAppDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetAppDependencies, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION010_DeleteItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUserUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_2, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUGCDetailsRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SendQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCStatistic, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumAdditionalPreviews, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCAdditionalPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_ReleaseQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnOnlyIDs, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnLongDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnChildren, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnAdditionalPreviews, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnTotalOnly, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeStats, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedResponse, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFilter, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetMatchAnyTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDays, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RequestUGCDetails, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLanguage, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowLegacyUpload, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVideo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubmitItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemUpdateProgress, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetUserItemVote, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetUserItemVote, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemToFavorites, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemFromFavorites, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UnsubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetNumSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemState, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_DownloadItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameServer, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SuspendDownloads, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartPlaytimeTracking, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTracking, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTrackingForAllItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddAppDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveAppDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetAppDependencies, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION012_DeleteItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUserUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_2, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUGCDetailsRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SendQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCStatistic, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumAdditionalPreviews, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCAdditionalPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_2, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_ReleaseQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnOnlyIDs, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnLongDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnChildren, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnAdditionalPreviews, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnTotalOnly, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeStats, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedResponse, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFilter, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetMatchAnyTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDays, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RequestUGCDetails, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLanguage, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowLegacyUpload, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAllItemKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVideo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubmitItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemUpdateProgress, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetUserItemVote, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetUserItemVote, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemToFavorites, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemFromFavorites, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UnsubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetNumSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemState, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_DownloadItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameServer, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SuspendDownloads, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartPlaytimeTracking, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTracking, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTrackingForAllItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddAppDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAppDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetAppDependencies, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION013_DeleteItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUserUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_2, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUGCDetailsRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SendQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCStatistic, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumAdditionalPreviews, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCAdditionalPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_2, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_ReleaseQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnOnlyIDs, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnLongDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnChildren, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnAdditionalPreviews, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnTotalOnly, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeStats, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedResponse, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFilter, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetMatchAnyTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDays, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RequestUGCDetails, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLanguage, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowLegacyUpload, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAllItemKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVideo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubmitItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemUpdateProgress, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetUserItemVote, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetUserItemVote, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemToFavorites, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemFromFavorites, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UnsubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetNumSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemState, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_DownloadItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameServer, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SuspendDownloads, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartPlaytimeTracking, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTracking, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTrackingForAllItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddAppDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAppDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetAppDependencies, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION014_DeleteItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUserUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_2, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUGCDetailsRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SendQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCResult, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplayName, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCStatistic, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumAdditionalPreviews, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCAdditionalPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_2, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_ReleaseQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnOnlyIDs, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnLongDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnChildren, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnAdditionalPreviews, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnTotalOnly, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeStats, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedResponse, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFilter, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetMatchAnyTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDays, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RequestUGCDetails, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLanguage, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowLegacyUpload, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAllItemKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVideo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubmitItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemUpdateProgress, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetUserItemVote, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetUserItemVote, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemToFavorites, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemFromFavorites, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UnsubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetNumSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemState, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_DownloadItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameServer, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SuspendDownloads, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartPlaytimeTracking, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTracking, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTrackingForAllItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddAppDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAppDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetAppDependencies, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_DeleteItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_ShowWorkshopEULA, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetWorkshopEULAStatus, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUserUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_2, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUGCDetailsRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SendQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCResult, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplayName, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumAdditionalPreviews, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_2, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_ReleaseQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnOnlyIDs, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnLongDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnChildren, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnAdditionalPreviews, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnTotalOnly, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeStats, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedResponse, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFilter, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetMatchAnyTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDays, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRange, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRange, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RequestUGCDetails, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLanguage, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowLegacyUpload, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAllItemKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVideo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubmitItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemUpdateProgress, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetUserItemVote, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetUserItemVote, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemToFavorites, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemFromFavorites, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UnsubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetNumSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemState, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_DownloadItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameServer, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SuspendDownloads, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartPlaytimeTracking, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTracking, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTrackingForAllItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddAppDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAppDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetAppDependencies, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_DeleteItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_ShowWorkshopEULA, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetWorkshopEULAStatus, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUserUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_2, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUGCDetailsRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SendQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCResult, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplayName, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCStatistic, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumAdditionalPreviews, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCAdditionalPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_2, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCContentDescriptors, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_ReleaseQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnOnlyIDs, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnLongDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnChildren, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnAdditionalPreviews, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnTotalOnly, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeStats, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedResponse, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFilter, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetMatchAnyTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDays, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRange, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRange, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RequestUGCDetails, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLanguage, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowLegacyUpload, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAllItemKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVideo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescriptor, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveContentDescriptor, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubmitItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemUpdateProgress, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetUserItemVote, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetUserItemVote, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemToFavorites, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemFromFavorites, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UnsubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetNumSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemState, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_DownloadItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameServer, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SuspendDownloads, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartPlaytimeTracking, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTracking, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTrackingForAllItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddAppDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAppDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetAppDependencies, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_DeleteItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_ShowWorkshopEULA, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetWorkshopEULAStatus, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUserUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_2, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUGCDetailsRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SendQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCResult, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplayName, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCStatistic, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumAdditionalPreviews, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCAdditionalPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_2, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCContentDescriptors, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_ReleaseQueryUGCRequest, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnOnlyIDs, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnLongDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnChildren, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnAdditionalPreviews, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnTotalOnly, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeStats, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedResponse, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFilter, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetMatchAnyTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDays, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRange, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRange, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RequestUGCDetails, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLanguage, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowLegacyUpload, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAllItemKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueTags, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVideo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescriptor, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveContentDescriptor, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubmitItemUpdate, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemUpdateProgress, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetUserItemVote, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserItemVote, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemToFavorites, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemFromFavorites, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UnsubscribeItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetNumSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetSubscribedItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemState, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_DownloadItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameServer, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SuspendDownloads, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartPlaytimeTracking, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTracking, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTrackingForAllItems, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddAppDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAppDependency, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetAppDependencies, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_DeleteItem, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_ShowWorkshopEULA, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetWorkshopEULAStatus, + unix_ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserContentDescriptorPreferences, + unix_ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendMethod, + unix_ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseInfo, + unix_ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseData, + unix_ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_ReleaseMethod, + unix_ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNotification, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatName, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatType, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumAchievements, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementName, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumGroupAchievements, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievementName, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_RequestCurrentStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvgRateStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGroupAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_StoreStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearGroupAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementIcon, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementDisplayAttribute, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatName, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatType, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumAchievements, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementName, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_RequestCurrentStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvgRateStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_StoreStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementIcon, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementDisplayAttribute, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_IndicateAchievementProgress, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_RequestCurrentStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvgRateStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_ClearAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_StoreStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementIcon, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementDisplayAttribute, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementProgress, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestCurrentStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvgRateStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_ClearAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_StoreStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementIcon, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementDisplayAttribute, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_IndicateAchievementProgress, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestUserStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestCurrentStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvgRateStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ClearAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_StoreStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementIcon, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementDisplayAttribute, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_IndicateAchievementProgress, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestUserStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ResetAllStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindOrCreateLeaderboard, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindLeaderboard, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardName, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardEntryCount, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardSortMethod, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardDisplayType, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_DownloadLeaderboardEntries, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownloadedLeaderboardEntry, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UploadLeaderboardScore, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestCurrentStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvgRateStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ClearAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_StoreStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementIcon, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementDisplayAttribute, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_IndicateAchievementProgress, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestUserStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ResetAllStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindOrCreateLeaderboard, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindLeaderboard, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardName, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardEntryCount, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardSortMethod, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardDisplayType, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_DownloadLeaderboardEntries, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetDownloadedLeaderboardEntry, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UploadLeaderboardScore, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetNumberOfCurrentPlayers, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestCurrentStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvgRateStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ClearAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementAndUnlockTime, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_StoreStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementIcon, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementDisplayAttribute, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_IndicateAchievementProgress, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestUserStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievementAndUnlockTime, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ResetAllStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindOrCreateLeaderboard, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindLeaderboard, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardName, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardEntryCount, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardSortMethod, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardDisplayType, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_DownloadLeaderboardEntries, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetDownloadedLeaderboardEntry, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UploadLeaderboardScore, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetNumberOfCurrentPlayers, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestCurrentStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvgRateStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ClearAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementAndUnlockTime, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_StoreStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementIcon, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementDisplayAttribute, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_IndicateAchievementProgress, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestUserStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievementAndUnlockTime, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ResetAllStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindOrCreateLeaderboard, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindLeaderboard, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardName, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardEntryCount, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardSortMethod, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardDisplayType, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_DownloadLeaderboardEntries, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetDownloadedLeaderboardEntry, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UploadLeaderboardScore, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_AttachLeaderboardUGC, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetNumberOfCurrentPlayers, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestCurrentStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvgRateStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ClearAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementAndUnlockTime, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_StoreStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementIcon, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementDisplayAttribute, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_IndicateAchievementProgress, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestUserStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievementAndUnlockTime, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ResetAllStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindOrCreateLeaderboard, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindLeaderboard, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardName, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardEntryCount, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardSortMethod, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardDisplayType, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntries, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntriesForUsers, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetDownloadedLeaderboardEntry, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UploadLeaderboardScore, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_AttachLeaderboardUGC, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetNumberOfCurrentPlayers, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCurrentStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ClearAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAndUnlockTime, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_StoreStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementIcon, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementDisplayAttribute, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateAchievementProgress, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestUserStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievementAndUnlockTime, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ResetAllStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindOrCreateLeaderboard, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindLeaderboard, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardName, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardEntryCount, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardSortMethod, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardDisplayType, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntries, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntriesForUsers, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownloadedLeaderboardEntry, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UploadLeaderboardScore, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_AttachLeaderboardUGC, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNumberOfCurrentPlayers, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalAchievementPercentages, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMostAchievedAchievementInfo, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchievedAchievementInfo, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAchievedPercent, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestCurrentStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvgRateStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ClearAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAndUnlockTime, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_StoreStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementIcon, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementDisplayAttribute, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_IndicateAchievementProgress, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumAchievements, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementName, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestUserStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievementAndUnlockTime, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ResetAllStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindOrCreateLeaderboard, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindLeaderboard, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardName, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardEntryCount, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardSortMethod, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardDisplayType, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntries, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntriesForUsers, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetDownloadedLeaderboardEntry, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UploadLeaderboardScore, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_AttachLeaderboardUGC, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumberOfCurrentPlayers, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalAchievementPercentages, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetMostAchievedAchievementInfo, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNextMostAchievedAchievementInfo, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAchievedPercent, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestCurrentStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvgRateStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ClearAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAndUnlockTime, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_StoreStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementIcon, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementDisplayAttribute, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_IndicateAchievementProgress, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumAchievements, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementName, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestUserStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievement, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievementAndUnlockTime, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ResetAllStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindOrCreateLeaderboard, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindLeaderboard, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardName, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardEntryCount, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardSortMethod, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardDisplayType, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntries, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntriesForUsers, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetDownloadedLeaderboardEntry, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UploadLeaderboardScore, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_AttachLeaderboardUGC, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumberOfCurrentPlayers, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalAchievementPercentages, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetMostAchievedAchievementInfo, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNextMostAchievedAchievementInfo, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAchievedPercent, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalStats, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_2, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits, + unix_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_2, + unix_ISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL, + unix_ISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting, + unix_ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetVideoURL, + unix_ISteamVideo_STEAMVIDEO_INTERFACE_V002_IsBroadcasting, + unix_ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFSettings, + unix_ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringForApp, + unix_ISteamClient_SteamClient006_CreateSteamPipe, + unix_ISteamClient_SteamClient006_BReleaseSteamPipe, + unix_ISteamClient_SteamClient006_CreateGlobalUser, + unix_ISteamClient_SteamClient006_ConnectToGlobalUser, + unix_ISteamClient_SteamClient006_CreateLocalUser, + unix_ISteamClient_SteamClient006_ReleaseUser, + unix_ISteamClient_SteamClient006_GetISteamUser, + unix_ISteamClient_SteamClient006_GetIVAC, + unix_ISteamClient_SteamClient006_GetISteamGameServer, + unix_ISteamClient_SteamClient006_SetLocalIPBinding, + unix_ISteamClient_SteamClient006_GetUniverseName, + unix_ISteamClient_SteamClient006_GetISteamFriends, + unix_ISteamClient_SteamClient006_GetISteamUtils, + unix_ISteamClient_SteamClient006_GetISteamBilling, + unix_ISteamClient_SteamClient006_GetISteamMatchmaking, + unix_ISteamClient_SteamClient006_GetISteamApps, + unix_ISteamClient_SteamClient006_GetISteamContentServer, + unix_ISteamClient_SteamClient006_GetISteamMasterServerUpdater, + unix_ISteamClient_SteamClient006_GetISteamMatchmakingServers, + unix_ISteamClient_SteamClient006_RunFrame, + unix_ISteamClient_SteamClient006_GetIPCCallCount, + unix_ISteamClient_SteamClient007_CreateSteamPipe, + unix_ISteamClient_SteamClient007_BReleaseSteamPipe, + unix_ISteamClient_SteamClient007_ConnectToGlobalUser, + unix_ISteamClient_SteamClient007_CreateLocalUser, + unix_ISteamClient_SteamClient007_ReleaseUser, + unix_ISteamClient_SteamClient007_GetISteamUser, + unix_ISteamClient_SteamClient007_GetISteamGameServer, + unix_ISteamClient_SteamClient007_SetLocalIPBinding, + unix_ISteamClient_SteamClient007_GetISteamFriends, + unix_ISteamClient_SteamClient007_GetISteamUtils, + unix_ISteamClient_SteamClient007_GetISteamMatchmaking, + unix_ISteamClient_SteamClient007_GetISteamContentServer, + unix_ISteamClient_SteamClient007_GetISteamMasterServerUpdater, + unix_ISteamClient_SteamClient007_GetISteamMatchmakingServers, + unix_ISteamClient_SteamClient007_GetISteamGenericInterface, + unix_ISteamClient_SteamClient007_RunFrame, + unix_ISteamClient_SteamClient007_GetIPCCallCount, + unix_ISteamClient_SteamClient007_GetISteamUserStats, + unix_ISteamClient_SteamClient007_GetISteamApps, + unix_ISteamClient_SteamClient007_GetISteamNetworking, + unix_ISteamClient_SteamClient007_SetWarningMessageHook, + unix_ISteamClient_SteamClient007_GetISteamRemoteStorage, + unix_ISteamClient_SteamClient008_CreateSteamPipe, + unix_ISteamClient_SteamClient008_BReleaseSteamPipe, + unix_ISteamClient_SteamClient008_ConnectToGlobalUser, + unix_ISteamClient_SteamClient008_CreateLocalUser, + unix_ISteamClient_SteamClient008_ReleaseUser, + unix_ISteamClient_SteamClient008_GetISteamUser, + unix_ISteamClient_SteamClient008_GetISteamGameServer, + unix_ISteamClient_SteamClient008_SetLocalIPBinding, + unix_ISteamClient_SteamClient008_GetISteamFriends, + unix_ISteamClient_SteamClient008_GetISteamUtils, + unix_ISteamClient_SteamClient008_GetISteamMatchmaking, + unix_ISteamClient_SteamClient008_GetISteamMasterServerUpdater, + unix_ISteamClient_SteamClient008_GetISteamMatchmakingServers, + unix_ISteamClient_SteamClient008_GetISteamGenericInterface, + unix_ISteamClient_SteamClient008_GetISteamUserStats, + unix_ISteamClient_SteamClient008_GetISteamApps, + unix_ISteamClient_SteamClient008_GetISteamNetworking, + unix_ISteamClient_SteamClient008_GetISteamRemoteStorage, + unix_ISteamClient_SteamClient008_RunFrame, + unix_ISteamClient_SteamClient008_GetIPCCallCount, + unix_ISteamClient_SteamClient008_SetWarningMessageHook, + unix_ISteamClient_SteamClient009_CreateSteamPipe, + unix_ISteamClient_SteamClient009_BReleaseSteamPipe, + unix_ISteamClient_SteamClient009_ConnectToGlobalUser, + unix_ISteamClient_SteamClient009_CreateLocalUser, + unix_ISteamClient_SteamClient009_ReleaseUser, + unix_ISteamClient_SteamClient009_GetISteamUser, + unix_ISteamClient_SteamClient009_GetISteamGameServer, + unix_ISteamClient_SteamClient009_SetLocalIPBinding, + unix_ISteamClient_SteamClient009_GetISteamFriends, + unix_ISteamClient_SteamClient009_GetISteamUtils, + unix_ISteamClient_SteamClient009_GetISteamMatchmaking, + unix_ISteamClient_SteamClient009_GetISteamMasterServerUpdater, + unix_ISteamClient_SteamClient009_GetISteamMatchmakingServers, + unix_ISteamClient_SteamClient009_GetISteamGenericInterface, + unix_ISteamClient_SteamClient009_GetISteamUserStats, + unix_ISteamClient_SteamClient009_GetISteamGameServerStats, + unix_ISteamClient_SteamClient009_GetISteamApps, + unix_ISteamClient_SteamClient009_GetISteamNetworking, + unix_ISteamClient_SteamClient009_GetISteamRemoteStorage, + unix_ISteamClient_SteamClient009_RunFrame, + unix_ISteamClient_SteamClient009_GetIPCCallCount, + unix_ISteamClient_SteamClient009_SetWarningMessageHook, + unix_ISteamClient_SteamClient010_CreateSteamPipe, + unix_ISteamClient_SteamClient010_BReleaseSteamPipe, + unix_ISteamClient_SteamClient010_ConnectToGlobalUser, + unix_ISteamClient_SteamClient010_CreateLocalUser, + unix_ISteamClient_SteamClient010_ReleaseUser, + unix_ISteamClient_SteamClient010_GetISteamUser, + unix_ISteamClient_SteamClient010_GetISteamGameServer, + unix_ISteamClient_SteamClient010_SetLocalIPBinding, + unix_ISteamClient_SteamClient010_GetISteamFriends, + unix_ISteamClient_SteamClient010_GetISteamUtils, + unix_ISteamClient_SteamClient010_GetISteamMatchmaking, + unix_ISteamClient_SteamClient010_GetISteamMasterServerUpdater, + unix_ISteamClient_SteamClient010_GetISteamMatchmakingServers, + unix_ISteamClient_SteamClient010_GetISteamGenericInterface, + unix_ISteamClient_SteamClient010_GetISteamUserStats, + unix_ISteamClient_SteamClient010_GetISteamGameServerStats, + unix_ISteamClient_SteamClient010_GetISteamApps, + unix_ISteamClient_SteamClient010_GetISteamNetworking, + unix_ISteamClient_SteamClient010_GetISteamRemoteStorage, + unix_ISteamClient_SteamClient010_RunFrame, + unix_ISteamClient_SteamClient010_GetIPCCallCount, + unix_ISteamClient_SteamClient010_SetWarningMessageHook, + unix_ISteamClient_SteamClient010_BShutdownIfAllPipesClosed, + unix_ISteamClient_SteamClient010_GetISteamHTTP, + unix_ISteamClient_SteamClient011_CreateSteamPipe, + unix_ISteamClient_SteamClient011_BReleaseSteamPipe, + unix_ISteamClient_SteamClient011_ConnectToGlobalUser, + unix_ISteamClient_SteamClient011_CreateLocalUser, + unix_ISteamClient_SteamClient011_ReleaseUser, + unix_ISteamClient_SteamClient011_GetISteamUser, + unix_ISteamClient_SteamClient011_GetISteamGameServer, + unix_ISteamClient_SteamClient011_SetLocalIPBinding, + unix_ISteamClient_SteamClient011_GetISteamFriends, + unix_ISteamClient_SteamClient011_GetISteamUtils, + unix_ISteamClient_SteamClient011_GetISteamMatchmaking, + unix_ISteamClient_SteamClient011_GetISteamMasterServerUpdater, + unix_ISteamClient_SteamClient011_GetISteamMatchmakingServers, + unix_ISteamClient_SteamClient011_GetISteamGenericInterface, + unix_ISteamClient_SteamClient011_GetISteamUserStats, + unix_ISteamClient_SteamClient011_GetISteamGameServerStats, + unix_ISteamClient_SteamClient011_GetISteamApps, + unix_ISteamClient_SteamClient011_GetISteamNetworking, + unix_ISteamClient_SteamClient011_GetISteamRemoteStorage, + unix_ISteamClient_SteamClient011_GetISteamScreenshots, + unix_ISteamClient_SteamClient011_RunFrame, + unix_ISteamClient_SteamClient011_GetIPCCallCount, + unix_ISteamClient_SteamClient011_SetWarningMessageHook, + unix_ISteamClient_SteamClient011_BShutdownIfAllPipesClosed, + unix_ISteamClient_SteamClient011_GetISteamHTTP, + unix_ISteamClient_SteamClient012_CreateSteamPipe, + unix_ISteamClient_SteamClient012_BReleaseSteamPipe, + unix_ISteamClient_SteamClient012_ConnectToGlobalUser, + unix_ISteamClient_SteamClient012_CreateLocalUser, + unix_ISteamClient_SteamClient012_ReleaseUser, + unix_ISteamClient_SteamClient012_GetISteamUser, + unix_ISteamClient_SteamClient012_GetISteamGameServer, + unix_ISteamClient_SteamClient012_SetLocalIPBinding, + unix_ISteamClient_SteamClient012_GetISteamFriends, + unix_ISteamClient_SteamClient012_GetISteamUtils, + unix_ISteamClient_SteamClient012_GetISteamMatchmaking, + unix_ISteamClient_SteamClient012_GetISteamMatchmakingServers, + unix_ISteamClient_SteamClient012_GetISteamGenericInterface, + unix_ISteamClient_SteamClient012_GetISteamUserStats, + unix_ISteamClient_SteamClient012_GetISteamGameServerStats, + unix_ISteamClient_SteamClient012_GetISteamApps, + unix_ISteamClient_SteamClient012_GetISteamNetworking, + unix_ISteamClient_SteamClient012_GetISteamRemoteStorage, + unix_ISteamClient_SteamClient012_GetISteamScreenshots, + unix_ISteamClient_SteamClient012_RunFrame, + unix_ISteamClient_SteamClient012_GetIPCCallCount, + unix_ISteamClient_SteamClient012_SetWarningMessageHook, + unix_ISteamClient_SteamClient012_BShutdownIfAllPipesClosed, + unix_ISteamClient_SteamClient012_GetISteamHTTP, + unix_ISteamClient_SteamClient012_GetISteamUnifiedMessages, + unix_ISteamClient_SteamClient012_GetISteamController, + unix_ISteamClient_SteamClient012_GetISteamUGC, + unix_ISteamClient_SteamClient013_CreateSteamPipe, + unix_ISteamClient_SteamClient013_BReleaseSteamPipe, + unix_ISteamClient_SteamClient013_ConnectToGlobalUser, + unix_ISteamClient_SteamClient013_CreateLocalUser, + unix_ISteamClient_SteamClient013_ReleaseUser, + unix_ISteamClient_SteamClient013_GetISteamUser, + unix_ISteamClient_SteamClient013_GetISteamGameServer, + unix_ISteamClient_SteamClient013_SetLocalIPBinding, + unix_ISteamClient_SteamClient013_GetISteamFriends, + unix_ISteamClient_SteamClient013_GetISteamUtils, + unix_ISteamClient_SteamClient013_GetISteamMatchmaking, + unix_ISteamClient_SteamClient013_GetISteamMatchmakingServers, + unix_ISteamClient_SteamClient013_GetISteamGenericInterface, + unix_ISteamClient_SteamClient013_GetISteamUserStats, + unix_ISteamClient_SteamClient013_GetISteamGameServerStats, + unix_ISteamClient_SteamClient013_GetISteamApps, + unix_ISteamClient_SteamClient013_GetISteamNetworking, + unix_ISteamClient_SteamClient013_GetISteamRemoteStorage, + unix_ISteamClient_SteamClient013_GetISteamScreenshots, + unix_ISteamClient_SteamClient013_RunFrame, + unix_ISteamClient_SteamClient013_GetIPCCallCount, + unix_ISteamClient_SteamClient013_SetWarningMessageHook, + unix_ISteamClient_SteamClient013_BShutdownIfAllPipesClosed, + unix_ISteamClient_SteamClient013_GetISteamHTTP, + unix_ISteamClient_SteamClient013_GetISteamUnifiedMessages, + unix_ISteamClient_SteamClient013_GetISteamController, + unix_ISteamClient_SteamClient013_GetISteamUGC, + unix_ISteamClient_SteamClient013_GetISteamInventory, + unix_ISteamClient_SteamClient013_GetISteamVideo, + unix_ISteamClient_SteamClient013_GetISteamAppList, + unix_ISteamClient_SteamClient014_CreateSteamPipe, + unix_ISteamClient_SteamClient014_BReleaseSteamPipe, + unix_ISteamClient_SteamClient014_ConnectToGlobalUser, + unix_ISteamClient_SteamClient014_CreateLocalUser, + unix_ISteamClient_SteamClient014_ReleaseUser, + unix_ISteamClient_SteamClient014_GetISteamUser, + unix_ISteamClient_SteamClient014_GetISteamGameServer, + unix_ISteamClient_SteamClient014_SetLocalIPBinding, + unix_ISteamClient_SteamClient014_GetISteamFriends, + unix_ISteamClient_SteamClient014_GetISteamUtils, + unix_ISteamClient_SteamClient014_GetISteamMatchmaking, + unix_ISteamClient_SteamClient014_GetISteamMatchmakingServers, + unix_ISteamClient_SteamClient014_GetISteamGenericInterface, + unix_ISteamClient_SteamClient014_GetISteamUserStats, + unix_ISteamClient_SteamClient014_GetISteamGameServerStats, + unix_ISteamClient_SteamClient014_GetISteamApps, + unix_ISteamClient_SteamClient014_GetISteamNetworking, + unix_ISteamClient_SteamClient014_GetISteamRemoteStorage, + unix_ISteamClient_SteamClient014_GetISteamScreenshots, + unix_ISteamClient_SteamClient014_RunFrame, + unix_ISteamClient_SteamClient014_GetIPCCallCount, + unix_ISteamClient_SteamClient014_SetWarningMessageHook, + unix_ISteamClient_SteamClient014_BShutdownIfAllPipesClosed, + unix_ISteamClient_SteamClient014_GetISteamHTTP, + unix_ISteamClient_SteamClient014_GetISteamUnifiedMessages, + unix_ISteamClient_SteamClient014_GetISteamController, + unix_ISteamClient_SteamClient014_GetISteamUGC, + unix_ISteamClient_SteamClient014_GetISteamAppList, + unix_ISteamClient_SteamClient014_GetISteamMusic, + unix_ISteamClient_SteamClient015_CreateSteamPipe, + unix_ISteamClient_SteamClient015_BReleaseSteamPipe, + unix_ISteamClient_SteamClient015_ConnectToGlobalUser, + unix_ISteamClient_SteamClient015_CreateLocalUser, + unix_ISteamClient_SteamClient015_ReleaseUser, + unix_ISteamClient_SteamClient015_GetISteamUser, + unix_ISteamClient_SteamClient015_GetISteamGameServer, + unix_ISteamClient_SteamClient015_SetLocalIPBinding, + unix_ISteamClient_SteamClient015_GetISteamFriends, + unix_ISteamClient_SteamClient015_GetISteamUtils, + unix_ISteamClient_SteamClient015_GetISteamMatchmaking, + unix_ISteamClient_SteamClient015_GetISteamMatchmakingServers, + unix_ISteamClient_SteamClient015_GetISteamGenericInterface, + unix_ISteamClient_SteamClient015_GetISteamUserStats, + unix_ISteamClient_SteamClient015_GetISteamGameServerStats, + unix_ISteamClient_SteamClient015_GetISteamApps, + unix_ISteamClient_SteamClient015_GetISteamNetworking, + unix_ISteamClient_SteamClient015_GetISteamRemoteStorage, + unix_ISteamClient_SteamClient015_GetISteamScreenshots, + unix_ISteamClient_SteamClient015_RunFrame, + unix_ISteamClient_SteamClient015_GetIPCCallCount, + unix_ISteamClient_SteamClient015_SetWarningMessageHook, + unix_ISteamClient_SteamClient015_BShutdownIfAllPipesClosed, + unix_ISteamClient_SteamClient015_GetISteamHTTP, + unix_ISteamClient_SteamClient015_GetISteamUnifiedMessages, + unix_ISteamClient_SteamClient015_GetISteamController, + unix_ISteamClient_SteamClient015_GetISteamUGC, + unix_ISteamClient_SteamClient015_GetISteamAppList, + unix_ISteamClient_SteamClient015_GetISteamMusic, + unix_ISteamClient_SteamClient015_GetISteamMusicRemote, + unix_ISteamClient_SteamClient016_CreateSteamPipe, + unix_ISteamClient_SteamClient016_BReleaseSteamPipe, + unix_ISteamClient_SteamClient016_ConnectToGlobalUser, + unix_ISteamClient_SteamClient016_CreateLocalUser, + unix_ISteamClient_SteamClient016_ReleaseUser, + unix_ISteamClient_SteamClient016_GetISteamUser, + unix_ISteamClient_SteamClient016_GetISteamGameServer, + unix_ISteamClient_SteamClient016_SetLocalIPBinding, + unix_ISteamClient_SteamClient016_GetISteamFriends, + unix_ISteamClient_SteamClient016_GetISteamUtils, + unix_ISteamClient_SteamClient016_GetISteamMatchmaking, + unix_ISteamClient_SteamClient016_GetISteamMatchmakingServers, + unix_ISteamClient_SteamClient016_GetISteamGenericInterface, + unix_ISteamClient_SteamClient016_GetISteamUserStats, + unix_ISteamClient_SteamClient016_GetISteamGameServerStats, + unix_ISteamClient_SteamClient016_GetISteamApps, + unix_ISteamClient_SteamClient016_GetISteamNetworking, + unix_ISteamClient_SteamClient016_GetISteamRemoteStorage, + unix_ISteamClient_SteamClient016_GetISteamScreenshots, + unix_ISteamClient_SteamClient016_RunFrame, + unix_ISteamClient_SteamClient016_GetIPCCallCount, + unix_ISteamClient_SteamClient016_SetWarningMessageHook, + unix_ISteamClient_SteamClient016_BShutdownIfAllPipesClosed, + unix_ISteamClient_SteamClient016_GetISteamHTTP, + unix_ISteamClient_SteamClient016_GetISteamUnifiedMessages, + unix_ISteamClient_SteamClient016_GetISteamController, + unix_ISteamClient_SteamClient016_GetISteamUGC, + unix_ISteamClient_SteamClient016_GetISteamAppList, + unix_ISteamClient_SteamClient016_GetISteamMusic, + unix_ISteamClient_SteamClient016_GetISteamMusicRemote, + unix_ISteamClient_SteamClient016_GetISteamHTMLSurface, + unix_ISteamClient_SteamClient016_Set_SteamAPI_CPostAPIResultInProcess, + unix_ISteamClient_SteamClient016_Remove_SteamAPI_CPostAPIResultInProcess, + unix_ISteamClient_SteamClient016_Set_SteamAPI_CCheckCallbackRegisteredInProcess, + unix_ISteamClient_SteamClient017_CreateSteamPipe, + unix_ISteamClient_SteamClient017_BReleaseSteamPipe, + unix_ISteamClient_SteamClient017_ConnectToGlobalUser, + unix_ISteamClient_SteamClient017_CreateLocalUser, + unix_ISteamClient_SteamClient017_ReleaseUser, + unix_ISteamClient_SteamClient017_GetISteamUser, + unix_ISteamClient_SteamClient017_GetISteamGameServer, + unix_ISteamClient_SteamClient017_SetLocalIPBinding, + unix_ISteamClient_SteamClient017_GetISteamFriends, + unix_ISteamClient_SteamClient017_GetISteamUtils, + unix_ISteamClient_SteamClient017_GetISteamMatchmaking, + unix_ISteamClient_SteamClient017_GetISteamMatchmakingServers, + unix_ISteamClient_SteamClient017_GetISteamGenericInterface, + unix_ISteamClient_SteamClient017_GetISteamUserStats, + unix_ISteamClient_SteamClient017_GetISteamGameServerStats, + unix_ISteamClient_SteamClient017_GetISteamApps, + unix_ISteamClient_SteamClient017_GetISteamNetworking, + unix_ISteamClient_SteamClient017_GetISteamRemoteStorage, + unix_ISteamClient_SteamClient017_GetISteamScreenshots, + unix_ISteamClient_SteamClient017_RunFrame, + unix_ISteamClient_SteamClient017_GetIPCCallCount, + unix_ISteamClient_SteamClient017_SetWarningMessageHook, + unix_ISteamClient_SteamClient017_BShutdownIfAllPipesClosed, + unix_ISteamClient_SteamClient017_GetISteamHTTP, + unix_ISteamClient_SteamClient017_DEPRECATED_GetISteamUnifiedMessages, + unix_ISteamClient_SteamClient017_GetISteamController, + unix_ISteamClient_SteamClient017_GetISteamUGC, + unix_ISteamClient_SteamClient017_GetISteamAppList, + unix_ISteamClient_SteamClient017_GetISteamMusic, + unix_ISteamClient_SteamClient017_GetISteamMusicRemote, + unix_ISteamClient_SteamClient017_GetISteamHTMLSurface, + unix_ISteamClient_SteamClient017_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess, + unix_ISteamClient_SteamClient017_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess, + unix_ISteamClient_SteamClient017_Set_SteamAPI_CCheckCallbackRegisteredInProcess, + unix_ISteamClient_SteamClient017_GetISteamInventory, + unix_ISteamClient_SteamClient017_GetISteamVideo, + unix_ISteamClient_SteamClient017_GetISteamParentalSettings, + unix_ISteamClient_SteamClient018_CreateSteamPipe, + unix_ISteamClient_SteamClient018_BReleaseSteamPipe, + unix_ISteamClient_SteamClient018_ConnectToGlobalUser, + unix_ISteamClient_SteamClient018_CreateLocalUser, + unix_ISteamClient_SteamClient018_ReleaseUser, + unix_ISteamClient_SteamClient018_GetISteamUser, + unix_ISteamClient_SteamClient018_GetISteamGameServer, + unix_ISteamClient_SteamClient018_SetLocalIPBinding, + unix_ISteamClient_SteamClient018_GetISteamFriends, + unix_ISteamClient_SteamClient018_GetISteamUtils, + unix_ISteamClient_SteamClient018_GetISteamMatchmaking, + unix_ISteamClient_SteamClient018_GetISteamMatchmakingServers, + unix_ISteamClient_SteamClient018_GetISteamGenericInterface, + unix_ISteamClient_SteamClient018_GetISteamUserStats, + unix_ISteamClient_SteamClient018_GetISteamGameServerStats, + unix_ISteamClient_SteamClient018_GetISteamApps, + unix_ISteamClient_SteamClient018_GetISteamNetworking, + unix_ISteamClient_SteamClient018_GetISteamRemoteStorage, + unix_ISteamClient_SteamClient018_GetISteamScreenshots, + unix_ISteamClient_SteamClient018_GetISteamGameSearch, + unix_ISteamClient_SteamClient018_RunFrame, + unix_ISteamClient_SteamClient018_GetIPCCallCount, + unix_ISteamClient_SteamClient018_SetWarningMessageHook, + unix_ISteamClient_SteamClient018_BShutdownIfAllPipesClosed, + unix_ISteamClient_SteamClient018_GetISteamHTTP, + unix_ISteamClient_SteamClient018_DEPRECATED_GetISteamUnifiedMessages, + unix_ISteamClient_SteamClient018_GetISteamController, + unix_ISteamClient_SteamClient018_GetISteamUGC, + unix_ISteamClient_SteamClient018_GetISteamAppList, + unix_ISteamClient_SteamClient018_GetISteamMusic, + unix_ISteamClient_SteamClient018_GetISteamMusicRemote, + unix_ISteamClient_SteamClient018_GetISteamHTMLSurface, + unix_ISteamClient_SteamClient018_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess, + unix_ISteamClient_SteamClient018_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess, + unix_ISteamClient_SteamClient018_Set_SteamAPI_CCheckCallbackRegisteredInProcess, + unix_ISteamClient_SteamClient018_GetISteamInventory, + unix_ISteamClient_SteamClient018_GetISteamVideo, + unix_ISteamClient_SteamClient018_GetISteamParentalSettings, + unix_ISteamClient_SteamClient018_GetISteamInput, + unix_ISteamClient_SteamClient018_GetISteamParties, + unix_ISteamClient_SteamClient019_CreateSteamPipe, + unix_ISteamClient_SteamClient019_BReleaseSteamPipe, + unix_ISteamClient_SteamClient019_ConnectToGlobalUser, + unix_ISteamClient_SteamClient019_CreateLocalUser, + unix_ISteamClient_SteamClient019_ReleaseUser, + unix_ISteamClient_SteamClient019_GetISteamUser, + unix_ISteamClient_SteamClient019_GetISteamGameServer, + unix_ISteamClient_SteamClient019_SetLocalIPBinding, + unix_ISteamClient_SteamClient019_GetISteamFriends, + unix_ISteamClient_SteamClient019_GetISteamUtils, + unix_ISteamClient_SteamClient019_GetISteamMatchmaking, + unix_ISteamClient_SteamClient019_GetISteamMatchmakingServers, + unix_ISteamClient_SteamClient019_GetISteamGenericInterface, + unix_ISteamClient_SteamClient019_GetISteamUserStats, + unix_ISteamClient_SteamClient019_GetISteamGameServerStats, + unix_ISteamClient_SteamClient019_GetISteamApps, + unix_ISteamClient_SteamClient019_GetISteamNetworking, + unix_ISteamClient_SteamClient019_GetISteamRemoteStorage, + unix_ISteamClient_SteamClient019_GetISteamScreenshots, + unix_ISteamClient_SteamClient019_GetISteamGameSearch, + unix_ISteamClient_SteamClient019_RunFrame, + unix_ISteamClient_SteamClient019_GetIPCCallCount, + unix_ISteamClient_SteamClient019_SetWarningMessageHook, + unix_ISteamClient_SteamClient019_BShutdownIfAllPipesClosed, + unix_ISteamClient_SteamClient019_GetISteamHTTP, + unix_ISteamClient_SteamClient019_DEPRECATED_GetISteamUnifiedMessages, + unix_ISteamClient_SteamClient019_GetISteamController, + unix_ISteamClient_SteamClient019_GetISteamUGC, + unix_ISteamClient_SteamClient019_GetISteamAppList, + unix_ISteamClient_SteamClient019_GetISteamMusic, + unix_ISteamClient_SteamClient019_GetISteamMusicRemote, + unix_ISteamClient_SteamClient019_GetISteamHTMLSurface, + unix_ISteamClient_SteamClient019_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess, + unix_ISteamClient_SteamClient019_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess, + unix_ISteamClient_SteamClient019_Set_SteamAPI_CCheckCallbackRegisteredInProcess, + unix_ISteamClient_SteamClient019_GetISteamInventory, + unix_ISteamClient_SteamClient019_GetISteamVideo, + unix_ISteamClient_SteamClient019_GetISteamParentalSettings, + unix_ISteamClient_SteamClient019_GetISteamInput, + unix_ISteamClient_SteamClient019_GetISteamParties, + unix_ISteamClient_SteamClient019_GetISteamRemotePlay, + unix_ISteamClient_SteamClient020_CreateSteamPipe, + unix_ISteamClient_SteamClient020_BReleaseSteamPipe, + unix_ISteamClient_SteamClient020_ConnectToGlobalUser, + unix_ISteamClient_SteamClient020_CreateLocalUser, + unix_ISteamClient_SteamClient020_ReleaseUser, + unix_ISteamClient_SteamClient020_GetISteamUser, + unix_ISteamClient_SteamClient020_GetISteamGameServer, + unix_ISteamClient_SteamClient020_SetLocalIPBinding, + unix_ISteamClient_SteamClient020_GetISteamFriends, + unix_ISteamClient_SteamClient020_GetISteamUtils, + unix_ISteamClient_SteamClient020_GetISteamMatchmaking, + unix_ISteamClient_SteamClient020_GetISteamMatchmakingServers, + unix_ISteamClient_SteamClient020_GetISteamGenericInterface, + unix_ISteamClient_SteamClient020_GetISteamUserStats, + unix_ISteamClient_SteamClient020_GetISteamGameServerStats, + unix_ISteamClient_SteamClient020_GetISteamApps, + unix_ISteamClient_SteamClient020_GetISteamNetworking, + unix_ISteamClient_SteamClient020_GetISteamRemoteStorage, + unix_ISteamClient_SteamClient020_GetISteamScreenshots, + unix_ISteamClient_SteamClient020_GetISteamGameSearch, + unix_ISteamClient_SteamClient020_RunFrame, + unix_ISteamClient_SteamClient020_GetIPCCallCount, + unix_ISteamClient_SteamClient020_SetWarningMessageHook, + unix_ISteamClient_SteamClient020_BShutdownIfAllPipesClosed, + unix_ISteamClient_SteamClient020_GetISteamHTTP, + unix_ISteamClient_SteamClient020_DEPRECATED_GetISteamUnifiedMessages, + unix_ISteamClient_SteamClient020_GetISteamController, + unix_ISteamClient_SteamClient020_GetISteamUGC, + unix_ISteamClient_SteamClient020_GetISteamAppList, + unix_ISteamClient_SteamClient020_GetISteamMusic, + unix_ISteamClient_SteamClient020_GetISteamMusicRemote, + unix_ISteamClient_SteamClient020_GetISteamHTMLSurface, + unix_ISteamClient_SteamClient020_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess, + unix_ISteamClient_SteamClient020_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess, + unix_ISteamClient_SteamClient020_Set_SteamAPI_CCheckCallbackRegisteredInProcess, + unix_ISteamClient_SteamClient020_GetISteamInventory, + unix_ISteamClient_SteamClient020_GetISteamVideo, + unix_ISteamClient_SteamClient020_GetISteamParentalSettings, + unix_ISteamClient_SteamClient020_GetISteamInput, + unix_ISteamClient_SteamClient020_GetISteamParties, + unix_ISteamClient_SteamClient020_GetISteamRemotePlay, + unix_ISteamClient_SteamClient020_DestroyAllInterfaces, + unix_ISteamController_SteamController003_Init, + unix_ISteamController_SteamController003_Shutdown, + unix_ISteamController_SteamController003_RunFrame, + unix_ISteamController_SteamController003_GetConnectedControllers, + unix_ISteamController_SteamController003_ShowBindingPanel, + unix_ISteamController_SteamController003_GetActionSetHandle, + unix_ISteamController_SteamController003_ActivateActionSet, + unix_ISteamController_SteamController003_GetCurrentActionSet, + unix_ISteamController_SteamController003_GetDigitalActionHandle, + unix_ISteamController_SteamController003_GetDigitalActionData, + unix_ISteamController_SteamController003_GetDigitalActionOrigins, + unix_ISteamController_SteamController003_GetAnalogActionHandle, + unix_ISteamController_SteamController003_GetAnalogActionData, + unix_ISteamController_SteamController003_GetAnalogActionOrigins, + unix_ISteamController_SteamController003_StopAnalogActionMomentum, + unix_ISteamController_SteamController003_TriggerHapticPulse, + unix_ISteamController_SteamController003_TriggerRepeatedHapticPulse, + unix_ISteamController_SteamController004_Init, + unix_ISteamController_SteamController004_Shutdown, + unix_ISteamController_SteamController004_RunFrame, + unix_ISteamController_SteamController004_GetConnectedControllers, + unix_ISteamController_SteamController004_ShowBindingPanel, + unix_ISteamController_SteamController004_GetActionSetHandle, + unix_ISteamController_SteamController004_ActivateActionSet, + unix_ISteamController_SteamController004_GetCurrentActionSet, + unix_ISteamController_SteamController004_GetDigitalActionHandle, + unix_ISteamController_SteamController004_GetDigitalActionData, + unix_ISteamController_SteamController004_GetDigitalActionOrigins, + unix_ISteamController_SteamController004_GetAnalogActionHandle, + unix_ISteamController_SteamController004_GetAnalogActionData, + unix_ISteamController_SteamController004_GetAnalogActionOrigins, + unix_ISteamController_SteamController004_StopAnalogActionMomentum, + unix_ISteamController_SteamController004_TriggerHapticPulse, + unix_ISteamController_SteamController004_TriggerRepeatedHapticPulse, + unix_ISteamController_SteamController004_GetGamepadIndexForController, + unix_ISteamController_SteamController004_GetControllerForGamepadIndex, + unix_ISteamController_SteamController004_GetMotionData, + unix_ISteamController_SteamController004_ShowDigitalActionOrigins, + unix_ISteamController_SteamController004_ShowAnalogActionOrigins, + unix_ISteamController_SteamController005_Init, + unix_ISteamController_SteamController005_Shutdown, + unix_ISteamController_SteamController005_RunFrame, + unix_ISteamController_SteamController005_GetConnectedControllers, + unix_ISteamController_SteamController005_ShowBindingPanel, + unix_ISteamController_SteamController005_GetActionSetHandle, + unix_ISteamController_SteamController005_ActivateActionSet, + unix_ISteamController_SteamController005_GetCurrentActionSet, + unix_ISteamController_SteamController005_GetDigitalActionHandle, + unix_ISteamController_SteamController005_GetDigitalActionData, + unix_ISteamController_SteamController005_GetDigitalActionOrigins, + unix_ISteamController_SteamController005_GetAnalogActionHandle, + unix_ISteamController_SteamController005_GetAnalogActionData, + unix_ISteamController_SteamController005_GetAnalogActionOrigins, + unix_ISteamController_SteamController005_StopAnalogActionMomentum, + unix_ISteamController_SteamController005_TriggerHapticPulse, + unix_ISteamController_SteamController005_TriggerRepeatedHapticPulse, + unix_ISteamController_SteamController005_TriggerVibration, + unix_ISteamController_SteamController005_SetLEDColor, + unix_ISteamController_SteamController005_GetGamepadIndexForController, + unix_ISteamController_SteamController005_GetControllerForGamepadIndex, + unix_ISteamController_SteamController005_GetMotionData, + unix_ISteamController_SteamController005_ShowDigitalActionOrigins, + unix_ISteamController_SteamController005_ShowAnalogActionOrigins, + unix_ISteamController_SteamController005_GetStringForActionOrigin, + unix_ISteamController_SteamController005_GetGlyphForActionOrigin, + unix_ISteamController_SteamController006_Init, + unix_ISteamController_SteamController006_Shutdown, + unix_ISteamController_SteamController006_RunFrame, + unix_ISteamController_SteamController006_GetConnectedControllers, + unix_ISteamController_SteamController006_ShowBindingPanel, + unix_ISteamController_SteamController006_GetActionSetHandle, + unix_ISteamController_SteamController006_ActivateActionSet, + unix_ISteamController_SteamController006_GetCurrentActionSet, + unix_ISteamController_SteamController006_ActivateActionSetLayer, + unix_ISteamController_SteamController006_DeactivateActionSetLayer, + unix_ISteamController_SteamController006_DeactivateAllActionSetLayers, + unix_ISteamController_SteamController006_GetActiveActionSetLayers, + unix_ISteamController_SteamController006_GetDigitalActionHandle, + unix_ISteamController_SteamController006_GetDigitalActionData, + unix_ISteamController_SteamController006_GetDigitalActionOrigins, + unix_ISteamController_SteamController006_GetAnalogActionHandle, + unix_ISteamController_SteamController006_GetAnalogActionData, + unix_ISteamController_SteamController006_GetAnalogActionOrigins, + unix_ISteamController_SteamController006_StopAnalogActionMomentum, + unix_ISteamController_SteamController006_TriggerHapticPulse, + unix_ISteamController_SteamController006_TriggerRepeatedHapticPulse, + unix_ISteamController_SteamController006_TriggerVibration, + unix_ISteamController_SteamController006_SetLEDColor, + unix_ISteamController_SteamController006_GetGamepadIndexForController, + unix_ISteamController_SteamController006_GetControllerForGamepadIndex, + unix_ISteamController_SteamController006_GetMotionData, + unix_ISteamController_SteamController006_ShowDigitalActionOrigins, + unix_ISteamController_SteamController006_ShowAnalogActionOrigins, + unix_ISteamController_SteamController006_GetStringForActionOrigin, + unix_ISteamController_SteamController006_GetGlyphForActionOrigin, + unix_ISteamController_SteamController006_GetInputTypeForHandle, + unix_ISteamController_SteamController007_Init, + unix_ISteamController_SteamController007_Shutdown, + unix_ISteamController_SteamController007_RunFrame, + unix_ISteamController_SteamController007_GetConnectedControllers, + unix_ISteamController_SteamController007_GetActionSetHandle, + unix_ISteamController_SteamController007_ActivateActionSet, + unix_ISteamController_SteamController007_GetCurrentActionSet, + unix_ISteamController_SteamController007_ActivateActionSetLayer, + unix_ISteamController_SteamController007_DeactivateActionSetLayer, + unix_ISteamController_SteamController007_DeactivateAllActionSetLayers, + unix_ISteamController_SteamController007_GetActiveActionSetLayers, + unix_ISteamController_SteamController007_GetDigitalActionHandle, + unix_ISteamController_SteamController007_GetDigitalActionData, + unix_ISteamController_SteamController007_GetDigitalActionOrigins, + unix_ISteamController_SteamController007_GetAnalogActionHandle, + unix_ISteamController_SteamController007_GetAnalogActionData, + unix_ISteamController_SteamController007_GetAnalogActionOrigins, + unix_ISteamController_SteamController007_GetGlyphForActionOrigin, + unix_ISteamController_SteamController007_GetStringForActionOrigin, + unix_ISteamController_SteamController007_StopAnalogActionMomentum, + unix_ISteamController_SteamController007_GetMotionData, + unix_ISteamController_SteamController007_TriggerHapticPulse, + unix_ISteamController_SteamController007_TriggerRepeatedHapticPulse, + unix_ISteamController_SteamController007_TriggerVibration, + unix_ISteamController_SteamController007_SetLEDColor, + unix_ISteamController_SteamController007_ShowBindingPanel, + unix_ISteamController_SteamController007_GetInputTypeForHandle, + unix_ISteamController_SteamController007_GetControllerForGamepadIndex, + unix_ISteamController_SteamController007_GetGamepadIndexForController, + unix_ISteamController_SteamController007_GetStringForXboxOrigin, + unix_ISteamController_SteamController007_GetGlyphForXboxOrigin, + unix_ISteamController_SteamController007_GetActionOriginFromXboxOrigin, + unix_ISteamController_SteamController007_TranslateActionOrigin, + unix_ISteamController_SteamController007_GetControllerBindingRevision, + unix_ISteamController_SteamController008_Init, + unix_ISteamController_SteamController008_Shutdown, + unix_ISteamController_SteamController008_RunFrame, + unix_ISteamController_SteamController008_GetConnectedControllers, + unix_ISteamController_SteamController008_GetActionSetHandle, + unix_ISteamController_SteamController008_ActivateActionSet, + unix_ISteamController_SteamController008_GetCurrentActionSet, + unix_ISteamController_SteamController008_ActivateActionSetLayer, + unix_ISteamController_SteamController008_DeactivateActionSetLayer, + unix_ISteamController_SteamController008_DeactivateAllActionSetLayers, + unix_ISteamController_SteamController008_GetActiveActionSetLayers, + unix_ISteamController_SteamController008_GetDigitalActionHandle, + unix_ISteamController_SteamController008_GetDigitalActionData, + unix_ISteamController_SteamController008_GetDigitalActionOrigins, + unix_ISteamController_SteamController008_GetAnalogActionHandle, + unix_ISteamController_SteamController008_GetAnalogActionData, + unix_ISteamController_SteamController008_GetAnalogActionOrigins, + unix_ISteamController_SteamController008_GetGlyphForActionOrigin, + unix_ISteamController_SteamController008_GetStringForActionOrigin, + unix_ISteamController_SteamController008_StopAnalogActionMomentum, + unix_ISteamController_SteamController008_GetMotionData, + unix_ISteamController_SteamController008_TriggerHapticPulse, + unix_ISteamController_SteamController008_TriggerRepeatedHapticPulse, + unix_ISteamController_SteamController008_TriggerVibration, + unix_ISteamController_SteamController008_SetLEDColor, + unix_ISteamController_SteamController008_ShowBindingPanel, + unix_ISteamController_SteamController008_GetInputTypeForHandle, + unix_ISteamController_SteamController008_GetControllerForGamepadIndex, + unix_ISteamController_SteamController008_GetGamepadIndexForController, + unix_ISteamController_SteamController008_GetStringForXboxOrigin, + unix_ISteamController_SteamController008_GetGlyphForXboxOrigin, + unix_ISteamController_SteamController008_GetActionOriginFromXboxOrigin, + unix_ISteamController_SteamController008_TranslateActionOrigin, + unix_ISteamController_SteamController008_GetControllerBindingRevision, + unix_ISteamFriends_SteamFriends001_GetPersonaName, + unix_ISteamFriends_SteamFriends001_SetPersonaName, + unix_ISteamFriends_SteamFriends001_GetPersonaState, + unix_ISteamFriends_SteamFriends001_SetPersonaState, + unix_ISteamFriends_SteamFriends001_AddFriend, + unix_ISteamFriends_SteamFriends001_RemoveFriend, + unix_ISteamFriends_SteamFriends001_HasFriend, + unix_ISteamFriends_SteamFriends001_GetFriendRelationship, + unix_ISteamFriends_SteamFriends001_GetFriendPersonaState, + unix_ISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlayed, + unix_ISteamFriends_SteamFriends001_GetFriendPersonaName, + unix_ISteamFriends_SteamFriends001_AddFriendByName, + unix_ISteamFriends_SteamFriends001_GetFriendCount, + unix_ISteamFriends_SteamFriends001_GetFriendByIndex, + unix_ISteamFriends_SteamFriends001_SendMsgToFriend, + unix_ISteamFriends_SteamFriends001_SetFriendRegValue, + unix_ISteamFriends_SteamFriends001_GetFriendRegValue, + unix_ISteamFriends_SteamFriends001_GetFriendPersonaNameHistory, + unix_ISteamFriends_SteamFriends001_GetChatMessage, + unix_ISteamFriends_SteamFriends001_SendMsgToFriend_2, + unix_ISteamFriends_SteamFriends001_GetChatIDOfChatHistoryStart, + unix_ISteamFriends_SteamFriends001_SetChatHistoryStart, + unix_ISteamFriends_SteamFriends001_ClearChatHistory, + unix_ISteamFriends_SteamFriends001_InviteFriendByEmail, + unix_ISteamFriends_SteamFriends001_GetBlockedFriendCount, + unix_ISteamFriends_SteamFriends001_GetFriendGamePlayed, + unix_ISteamFriends_SteamFriends001_GetFriendGamePlayed2, + unix_ISteamFriends_SteamFriends002_GetPersonaName, + unix_ISteamFriends_SteamFriends002_SetPersonaName, + unix_ISteamFriends_SteamFriends002_GetPersonaState, + unix_ISteamFriends_SteamFriends002_SetPersonaState, + unix_ISteamFriends_SteamFriends002_GetFriendCount, + unix_ISteamFriends_SteamFriends002_GetFriendByIndex, + unix_ISteamFriends_SteamFriends002_GetFriendRelationship, + unix_ISteamFriends_SteamFriends002_GetFriendPersonaState, + unix_ISteamFriends_SteamFriends002_GetFriendPersonaName, + unix_ISteamFriends_SteamFriends002_SetFriendRegValue, + unix_ISteamFriends_SteamFriends002_GetFriendRegValue, + unix_ISteamFriends_SteamFriends002_GetFriendGamePlayed, + unix_ISteamFriends_SteamFriends002_GetFriendPersonaNameHistory, + unix_ISteamFriends_SteamFriends002_AddFriend, + unix_ISteamFriends_SteamFriends002_RemoveFriend, + unix_ISteamFriends_SteamFriends002_HasFriend, + unix_ISteamFriends_SteamFriends002_AddFriendByName, + unix_ISteamFriends_SteamFriends002_InviteFriendByEmail, + unix_ISteamFriends_SteamFriends002_GetChatMessage, + unix_ISteamFriends_SteamFriends002_SendMsgToFriend, + unix_ISteamFriends_SteamFriends002_GetChatIDOfChatHistoryStart, + unix_ISteamFriends_SteamFriends002_SetChatHistoryStart, + unix_ISteamFriends_SteamFriends002_ClearChatHistory, + unix_ISteamFriends_SteamFriends002_GetClanCount, + unix_ISteamFriends_SteamFriends002_GetClanByIndex, + unix_ISteamFriends_SteamFriends002_GetClanName, + unix_ISteamFriends_SteamFriends002_InviteFriendToClan, + unix_ISteamFriends_SteamFriends002_AcknowledgeInviteToClan, + unix_ISteamFriends_SteamFriends002_GetFriendCountFromSource, + unix_ISteamFriends_SteamFriends002_GetFriendFromSourceByIndex, + unix_ISteamFriends_SteamFriends003_GetPersonaName, + unix_ISteamFriends_SteamFriends003_SetPersonaName, + unix_ISteamFriends_SteamFriends003_GetPersonaState, + unix_ISteamFriends_SteamFriends003_GetFriendCount, + unix_ISteamFriends_SteamFriends003_GetFriendByIndex, + unix_ISteamFriends_SteamFriends003_GetFriendRelationship, + unix_ISteamFriends_SteamFriends003_GetFriendPersonaState, + unix_ISteamFriends_SteamFriends003_GetFriendPersonaName, + unix_ISteamFriends_SteamFriends003_GetFriendAvatar, + unix_ISteamFriends_SteamFriends003_GetFriendGamePlayed, + unix_ISteamFriends_SteamFriends003_GetFriendPersonaNameHistory, + unix_ISteamFriends_SteamFriends003_HasFriend, + unix_ISteamFriends_SteamFriends003_GetClanCount, + unix_ISteamFriends_SteamFriends003_GetClanByIndex, + unix_ISteamFriends_SteamFriends003_GetClanName, + unix_ISteamFriends_SteamFriends003_GetFriendCountFromSource, + unix_ISteamFriends_SteamFriends003_GetFriendFromSourceByIndex, + unix_ISteamFriends_SteamFriends003_IsUserInSource, + unix_ISteamFriends_SteamFriends003_SetInGameVoiceSpeaking, + unix_ISteamFriends_SteamFriends003_ActivateGameOverlay, + unix_ISteamFriends_SteamFriends004_GetPersonaName, + unix_ISteamFriends_SteamFriends004_SetPersonaName, + unix_ISteamFriends_SteamFriends004_GetPersonaState, + unix_ISteamFriends_SteamFriends004_GetFriendCount, + unix_ISteamFriends_SteamFriends004_GetFriendByIndex, + unix_ISteamFriends_SteamFriends004_GetFriendRelationship, + unix_ISteamFriends_SteamFriends004_GetFriendPersonaState, + unix_ISteamFriends_SteamFriends004_GetFriendPersonaName, + unix_ISteamFriends_SteamFriends004_GetFriendAvatar, + unix_ISteamFriends_SteamFriends004_GetFriendGamePlayed, + unix_ISteamFriends_SteamFriends004_GetFriendPersonaNameHistory, + unix_ISteamFriends_SteamFriends004_HasFriend, + unix_ISteamFriends_SteamFriends004_GetClanCount, + unix_ISteamFriends_SteamFriends004_GetClanByIndex, + unix_ISteamFriends_SteamFriends004_GetClanName, + unix_ISteamFriends_SteamFriends004_GetFriendCountFromSource, + unix_ISteamFriends_SteamFriends004_GetFriendFromSourceByIndex, + unix_ISteamFriends_SteamFriends004_IsUserInSource, + unix_ISteamFriends_SteamFriends004_SetInGameVoiceSpeaking, + unix_ISteamFriends_SteamFriends004_ActivateGameOverlay, + unix_ISteamFriends_SteamFriends005_GetPersonaName, + unix_ISteamFriends_SteamFriends005_SetPersonaName, + unix_ISteamFriends_SteamFriends005_GetPersonaState, + unix_ISteamFriends_SteamFriends005_GetFriendCount, + unix_ISteamFriends_SteamFriends005_GetFriendByIndex, + unix_ISteamFriends_SteamFriends005_GetFriendRelationship, + unix_ISteamFriends_SteamFriends005_GetFriendPersonaState, + unix_ISteamFriends_SteamFriends005_GetFriendPersonaName, + unix_ISteamFriends_SteamFriends005_GetFriendAvatar, + unix_ISteamFriends_SteamFriends005_GetFriendGamePlayed, + unix_ISteamFriends_SteamFriends005_GetFriendPersonaNameHistory, + unix_ISteamFriends_SteamFriends005_HasFriend, + unix_ISteamFriends_SteamFriends005_GetClanCount, + unix_ISteamFriends_SteamFriends005_GetClanByIndex, + unix_ISteamFriends_SteamFriends005_GetClanName, + unix_ISteamFriends_SteamFriends005_GetFriendCountFromSource, + unix_ISteamFriends_SteamFriends005_GetFriendFromSourceByIndex, + unix_ISteamFriends_SteamFriends005_IsUserInSource, + unix_ISteamFriends_SteamFriends005_SetInGameVoiceSpeaking, + unix_ISteamFriends_SteamFriends005_ActivateGameOverlay, + unix_ISteamFriends_SteamFriends005_ActivateGameOverlayToUser, + unix_ISteamFriends_SteamFriends005_ActivateGameOverlayToWebPage, + unix_ISteamFriends_SteamFriends005_ActivateGameOverlayToStore, + unix_ISteamFriends_SteamFriends005_SetPlayedWith, + unix_ISteamFriends_SteamFriends006_GetPersonaName, + unix_ISteamFriends_SteamFriends006_SetPersonaName, + unix_ISteamFriends_SteamFriends006_GetPersonaState, + unix_ISteamFriends_SteamFriends006_GetFriendCount, + unix_ISteamFriends_SteamFriends006_GetFriendByIndex, + unix_ISteamFriends_SteamFriends006_GetFriendRelationship, + unix_ISteamFriends_SteamFriends006_GetFriendPersonaState, + unix_ISteamFriends_SteamFriends006_GetFriendPersonaName, + unix_ISteamFriends_SteamFriends006_GetFriendAvatar, + unix_ISteamFriends_SteamFriends006_GetFriendGamePlayed, + unix_ISteamFriends_SteamFriends006_GetFriendPersonaNameHistory, + unix_ISteamFriends_SteamFriends006_HasFriend, + unix_ISteamFriends_SteamFriends006_GetClanCount, + unix_ISteamFriends_SteamFriends006_GetClanByIndex, + unix_ISteamFriends_SteamFriends006_GetClanName, + unix_ISteamFriends_SteamFriends006_GetClanTag, + unix_ISteamFriends_SteamFriends006_GetFriendCountFromSource, + unix_ISteamFriends_SteamFriends006_GetFriendFromSourceByIndex, + unix_ISteamFriends_SteamFriends006_IsUserInSource, + unix_ISteamFriends_SteamFriends006_SetInGameVoiceSpeaking, + unix_ISteamFriends_SteamFriends006_ActivateGameOverlay, + unix_ISteamFriends_SteamFriends006_ActivateGameOverlayToUser, + unix_ISteamFriends_SteamFriends006_ActivateGameOverlayToWebPage, + unix_ISteamFriends_SteamFriends006_ActivateGameOverlayToStore, + unix_ISteamFriends_SteamFriends006_SetPlayedWith, + unix_ISteamFriends_SteamFriends006_ActivateGameOverlayInviteDialog, + unix_ISteamFriends_SteamFriends007_GetPersonaName, + unix_ISteamFriends_SteamFriends007_SetPersonaName, + unix_ISteamFriends_SteamFriends007_GetPersonaState, + unix_ISteamFriends_SteamFriends007_GetFriendCount, + unix_ISteamFriends_SteamFriends007_GetFriendByIndex, + unix_ISteamFriends_SteamFriends007_GetFriendRelationship, + unix_ISteamFriends_SteamFriends007_GetFriendPersonaState, + unix_ISteamFriends_SteamFriends007_GetFriendPersonaName, + unix_ISteamFriends_SteamFriends007_GetFriendGamePlayed, + unix_ISteamFriends_SteamFriends007_GetFriendPersonaNameHistory, + unix_ISteamFriends_SteamFriends007_HasFriend, + unix_ISteamFriends_SteamFriends007_GetClanCount, + unix_ISteamFriends_SteamFriends007_GetClanByIndex, + unix_ISteamFriends_SteamFriends007_GetClanName, + unix_ISteamFriends_SteamFriends007_GetClanTag, + unix_ISteamFriends_SteamFriends007_GetFriendCountFromSource, + unix_ISteamFriends_SteamFriends007_GetFriendFromSourceByIndex, + unix_ISteamFriends_SteamFriends007_IsUserInSource, + unix_ISteamFriends_SteamFriends007_SetInGameVoiceSpeaking, + unix_ISteamFriends_SteamFriends007_ActivateGameOverlay, + unix_ISteamFriends_SteamFriends007_ActivateGameOverlayToUser, + unix_ISteamFriends_SteamFriends007_ActivateGameOverlayToWebPage, + unix_ISteamFriends_SteamFriends007_ActivateGameOverlayToStore, + unix_ISteamFriends_SteamFriends007_SetPlayedWith, + unix_ISteamFriends_SteamFriends007_ActivateGameOverlayInviteDialog, + unix_ISteamFriends_SteamFriends007_GetSmallFriendAvatar, + unix_ISteamFriends_SteamFriends007_GetMediumFriendAvatar, + unix_ISteamFriends_SteamFriends007_GetLargeFriendAvatar, + unix_ISteamFriends_SteamFriends008_GetPersonaName, + unix_ISteamFriends_SteamFriends008_SetPersonaName, + unix_ISteamFriends_SteamFriends008_GetPersonaState, + unix_ISteamFriends_SteamFriends008_GetFriendCount, + unix_ISteamFriends_SteamFriends008_GetFriendByIndex, + unix_ISteamFriends_SteamFriends008_GetFriendRelationship, + unix_ISteamFriends_SteamFriends008_GetFriendPersonaState, + unix_ISteamFriends_SteamFriends008_GetFriendPersonaName, + unix_ISteamFriends_SteamFriends008_GetFriendGamePlayed, + unix_ISteamFriends_SteamFriends008_GetFriendPersonaNameHistory, + unix_ISteamFriends_SteamFriends008_HasFriend, + unix_ISteamFriends_SteamFriends008_GetClanCount, + unix_ISteamFriends_SteamFriends008_GetClanByIndex, + unix_ISteamFriends_SteamFriends008_GetClanName, + unix_ISteamFriends_SteamFriends008_GetClanTag, + unix_ISteamFriends_SteamFriends008_GetFriendCountFromSource, + unix_ISteamFriends_SteamFriends008_GetFriendFromSourceByIndex, + unix_ISteamFriends_SteamFriends008_IsUserInSource, + unix_ISteamFriends_SteamFriends008_SetInGameVoiceSpeaking, + unix_ISteamFriends_SteamFriends008_ActivateGameOverlay, + unix_ISteamFriends_SteamFriends008_ActivateGameOverlayToUser, + unix_ISteamFriends_SteamFriends008_ActivateGameOverlayToWebPage, + unix_ISteamFriends_SteamFriends008_ActivateGameOverlayToStore, + unix_ISteamFriends_SteamFriends008_SetPlayedWith, + unix_ISteamFriends_SteamFriends008_ActivateGameOverlayInviteDialog, + unix_ISteamFriends_SteamFriends008_GetSmallFriendAvatar, + unix_ISteamFriends_SteamFriends008_GetMediumFriendAvatar, + unix_ISteamFriends_SteamFriends008_GetLargeFriendAvatar, + unix_ISteamFriends_SteamFriends008_RequestUserInformation, + unix_ISteamFriends_SteamFriends008_RequestClanOfficerList, + unix_ISteamFriends_SteamFriends008_GetClanOwner, + unix_ISteamFriends_SteamFriends008_GetClanOfficerCount, + unix_ISteamFriends_SteamFriends008_GetClanOfficerByIndex, + unix_ISteamFriends_SteamFriends008_GetUserRestrictions, + unix_ISteamFriends_SteamFriends009_GetPersonaName, + unix_ISteamFriends_SteamFriends009_SetPersonaName, + unix_ISteamFriends_SteamFriends009_GetPersonaState, + unix_ISteamFriends_SteamFriends009_GetFriendCount, + unix_ISteamFriends_SteamFriends009_GetFriendByIndex, + unix_ISteamFriends_SteamFriends009_GetFriendRelationship, + unix_ISteamFriends_SteamFriends009_GetFriendPersonaState, + unix_ISteamFriends_SteamFriends009_GetFriendPersonaName, + unix_ISteamFriends_SteamFriends009_GetFriendGamePlayed, + unix_ISteamFriends_SteamFriends009_GetFriendPersonaNameHistory, + unix_ISteamFriends_SteamFriends009_HasFriend, + unix_ISteamFriends_SteamFriends009_GetClanCount, + unix_ISteamFriends_SteamFriends009_GetClanByIndex, + unix_ISteamFriends_SteamFriends009_GetClanName, + unix_ISteamFriends_SteamFriends009_GetClanTag, + unix_ISteamFriends_SteamFriends009_GetFriendCountFromSource, + unix_ISteamFriends_SteamFriends009_GetFriendFromSourceByIndex, + unix_ISteamFriends_SteamFriends009_IsUserInSource, + unix_ISteamFriends_SteamFriends009_SetInGameVoiceSpeaking, + unix_ISteamFriends_SteamFriends009_ActivateGameOverlay, + unix_ISteamFriends_SteamFriends009_ActivateGameOverlayToUser, + unix_ISteamFriends_SteamFriends009_ActivateGameOverlayToWebPage, + unix_ISteamFriends_SteamFriends009_ActivateGameOverlayToStore, + unix_ISteamFriends_SteamFriends009_SetPlayedWith, + unix_ISteamFriends_SteamFriends009_ActivateGameOverlayInviteDialog, + unix_ISteamFriends_SteamFriends009_GetSmallFriendAvatar, + unix_ISteamFriends_SteamFriends009_GetMediumFriendAvatar, + unix_ISteamFriends_SteamFriends009_GetLargeFriendAvatar, + unix_ISteamFriends_SteamFriends009_RequestUserInformation, + unix_ISteamFriends_SteamFriends009_RequestClanOfficerList, + unix_ISteamFriends_SteamFriends009_GetClanOwner, + unix_ISteamFriends_SteamFriends009_GetClanOfficerCount, + unix_ISteamFriends_SteamFriends009_GetClanOfficerByIndex, + unix_ISteamFriends_SteamFriends009_GetUserRestrictions, + unix_ISteamFriends_SteamFriends009_SetRichPresence, + unix_ISteamFriends_SteamFriends009_ClearRichPresence, + unix_ISteamFriends_SteamFriends009_GetFriendRichPresence, + unix_ISteamFriends_SteamFriends009_GetFriendRichPresenceKeyCount, + unix_ISteamFriends_SteamFriends009_GetFriendRichPresenceKeyByIndex, + unix_ISteamFriends_SteamFriends009_InviteUserToGame, + unix_ISteamFriends_SteamFriends009_GetCoplayFriendCount, + unix_ISteamFriends_SteamFriends009_GetCoplayFriend, + unix_ISteamFriends_SteamFriends009_GetFriendCoplayTime, + unix_ISteamFriends_SteamFriends009_GetFriendCoplayGame, + unix_ISteamFriends_SteamFriends010_GetPersonaName, + unix_ISteamFriends_SteamFriends010_SetPersonaName, + unix_ISteamFriends_SteamFriends010_GetPersonaState, + unix_ISteamFriends_SteamFriends010_GetFriendCount, + unix_ISteamFriends_SteamFriends010_GetFriendByIndex, + unix_ISteamFriends_SteamFriends010_GetFriendRelationship, + unix_ISteamFriends_SteamFriends010_GetFriendPersonaState, + unix_ISteamFriends_SteamFriends010_GetFriendPersonaName, + unix_ISteamFriends_SteamFriends010_GetFriendGamePlayed, + unix_ISteamFriends_SteamFriends010_GetFriendPersonaNameHistory, + unix_ISteamFriends_SteamFriends010_HasFriend, + unix_ISteamFriends_SteamFriends010_GetClanCount, + unix_ISteamFriends_SteamFriends010_GetClanByIndex, + unix_ISteamFriends_SteamFriends010_GetClanName, + unix_ISteamFriends_SteamFriends010_GetClanTag, + unix_ISteamFriends_SteamFriends010_GetClanActivityCounts, + unix_ISteamFriends_SteamFriends010_DownloadClanActivityCounts, + unix_ISteamFriends_SteamFriends010_GetFriendCountFromSource, + unix_ISteamFriends_SteamFriends010_GetFriendFromSourceByIndex, + unix_ISteamFriends_SteamFriends010_IsUserInSource, + unix_ISteamFriends_SteamFriends010_SetInGameVoiceSpeaking, + unix_ISteamFriends_SteamFriends010_ActivateGameOverlay, + unix_ISteamFriends_SteamFriends010_ActivateGameOverlayToUser, + unix_ISteamFriends_SteamFriends010_ActivateGameOverlayToWebPage, + unix_ISteamFriends_SteamFriends010_ActivateGameOverlayToStore, + unix_ISteamFriends_SteamFriends010_SetPlayedWith, + unix_ISteamFriends_SteamFriends010_ActivateGameOverlayInviteDialog, + unix_ISteamFriends_SteamFriends010_GetSmallFriendAvatar, + unix_ISteamFriends_SteamFriends010_GetMediumFriendAvatar, + unix_ISteamFriends_SteamFriends010_GetLargeFriendAvatar, + unix_ISteamFriends_SteamFriends010_RequestUserInformation, + unix_ISteamFriends_SteamFriends010_RequestClanOfficerList, + unix_ISteamFriends_SteamFriends010_GetClanOwner, + unix_ISteamFriends_SteamFriends010_GetClanOfficerCount, + unix_ISteamFriends_SteamFriends010_GetClanOfficerByIndex, + unix_ISteamFriends_SteamFriends010_GetUserRestrictions, + unix_ISteamFriends_SteamFriends010_SetRichPresence, + unix_ISteamFriends_SteamFriends010_ClearRichPresence, + unix_ISteamFriends_SteamFriends010_GetFriendRichPresence, + unix_ISteamFriends_SteamFriends010_GetFriendRichPresenceKeyCount, + unix_ISteamFriends_SteamFriends010_GetFriendRichPresenceKeyByIndex, + unix_ISteamFriends_SteamFriends010_InviteUserToGame, + unix_ISteamFriends_SteamFriends010_GetCoplayFriendCount, + unix_ISteamFriends_SteamFriends010_GetCoplayFriend, + unix_ISteamFriends_SteamFriends010_GetFriendCoplayTime, + unix_ISteamFriends_SteamFriends010_GetFriendCoplayGame, + unix_ISteamFriends_SteamFriends010_JoinClanChatRoom, + unix_ISteamFriends_SteamFriends010_LeaveClanChatRoom, + unix_ISteamFriends_SteamFriends010_GetClanChatMemberCount, + unix_ISteamFriends_SteamFriends010_GetChatMemberByIndex, + unix_ISteamFriends_SteamFriends010_SendClanChatMessage, + unix_ISteamFriends_SteamFriends010_GetClanChatMessage, + unix_ISteamFriends_SteamFriends010_IsClanChatAdmin, + unix_ISteamFriends_SteamFriends010_IsClanChatWindowOpenInSteam, + unix_ISteamFriends_SteamFriends010_OpenClanChatWindowInSteam, + unix_ISteamFriends_SteamFriends010_CloseClanChatWindowInSteam, + unix_ISteamFriends_SteamFriends010_SetListenForFriendsMessages, + unix_ISteamFriends_SteamFriends010_ReplyToFriendMessage, + unix_ISteamFriends_SteamFriends010_GetFriendMessage, + unix_ISteamFriends_SteamFriends011_GetPersonaName, + unix_ISteamFriends_SteamFriends011_SetPersonaName, + unix_ISteamFriends_SteamFriends011_GetPersonaState, + unix_ISteamFriends_SteamFriends011_GetFriendCount, + unix_ISteamFriends_SteamFriends011_GetFriendByIndex, + unix_ISteamFriends_SteamFriends011_GetFriendRelationship, + unix_ISteamFriends_SteamFriends011_GetFriendPersonaState, + unix_ISteamFriends_SteamFriends011_GetFriendPersonaName, + unix_ISteamFriends_SteamFriends011_GetFriendGamePlayed, + unix_ISteamFriends_SteamFriends011_GetFriendPersonaNameHistory, + unix_ISteamFriends_SteamFriends011_HasFriend, + unix_ISteamFriends_SteamFriends011_GetClanCount, + unix_ISteamFriends_SteamFriends011_GetClanByIndex, + unix_ISteamFriends_SteamFriends011_GetClanName, + unix_ISteamFriends_SteamFriends011_GetClanTag, + unix_ISteamFriends_SteamFriends011_GetClanActivityCounts, + unix_ISteamFriends_SteamFriends011_DownloadClanActivityCounts, + unix_ISteamFriends_SteamFriends011_GetFriendCountFromSource, + unix_ISteamFriends_SteamFriends011_GetFriendFromSourceByIndex, + unix_ISteamFriends_SteamFriends011_IsUserInSource, + unix_ISteamFriends_SteamFriends011_SetInGameVoiceSpeaking, + unix_ISteamFriends_SteamFriends011_ActivateGameOverlay, + unix_ISteamFriends_SteamFriends011_ActivateGameOverlayToUser, + unix_ISteamFriends_SteamFriends011_ActivateGameOverlayToWebPage, + unix_ISteamFriends_SteamFriends011_ActivateGameOverlayToStore, + unix_ISteamFriends_SteamFriends011_SetPlayedWith, + unix_ISteamFriends_SteamFriends011_ActivateGameOverlayInviteDialog, + unix_ISteamFriends_SteamFriends011_GetSmallFriendAvatar, + unix_ISteamFriends_SteamFriends011_GetMediumFriendAvatar, + unix_ISteamFriends_SteamFriends011_GetLargeFriendAvatar, + unix_ISteamFriends_SteamFriends011_RequestUserInformation, + unix_ISteamFriends_SteamFriends011_RequestClanOfficerList, + unix_ISteamFriends_SteamFriends011_GetClanOwner, + unix_ISteamFriends_SteamFriends011_GetClanOfficerCount, + unix_ISteamFriends_SteamFriends011_GetClanOfficerByIndex, + unix_ISteamFriends_SteamFriends011_GetUserRestrictions, + unix_ISteamFriends_SteamFriends011_SetRichPresence, + unix_ISteamFriends_SteamFriends011_ClearRichPresence, + unix_ISteamFriends_SteamFriends011_GetFriendRichPresence, + unix_ISteamFriends_SteamFriends011_GetFriendRichPresenceKeyCount, + unix_ISteamFriends_SteamFriends011_GetFriendRichPresenceKeyByIndex, + unix_ISteamFriends_SteamFriends011_RequestFriendRichPresence, + unix_ISteamFriends_SteamFriends011_InviteUserToGame, + unix_ISteamFriends_SteamFriends011_GetCoplayFriendCount, + unix_ISteamFriends_SteamFriends011_GetCoplayFriend, + unix_ISteamFriends_SteamFriends011_GetFriendCoplayTime, + unix_ISteamFriends_SteamFriends011_GetFriendCoplayGame, + unix_ISteamFriends_SteamFriends011_JoinClanChatRoom, + unix_ISteamFriends_SteamFriends011_LeaveClanChatRoom, + unix_ISteamFriends_SteamFriends011_GetClanChatMemberCount, + unix_ISteamFriends_SteamFriends011_GetChatMemberByIndex, + unix_ISteamFriends_SteamFriends011_SendClanChatMessage, + unix_ISteamFriends_SteamFriends011_GetClanChatMessage, + unix_ISteamFriends_SteamFriends011_IsClanChatAdmin, + unix_ISteamFriends_SteamFriends011_IsClanChatWindowOpenInSteam, + unix_ISteamFriends_SteamFriends011_OpenClanChatWindowInSteam, + unix_ISteamFriends_SteamFriends011_CloseClanChatWindowInSteam, + unix_ISteamFriends_SteamFriends011_SetListenForFriendsMessages, + unix_ISteamFriends_SteamFriends011_ReplyToFriendMessage, + unix_ISteamFriends_SteamFriends011_GetFriendMessage, + unix_ISteamFriends_SteamFriends011_GetFollowerCount, + unix_ISteamFriends_SteamFriends011_IsFollowing, + unix_ISteamFriends_SteamFriends011_EnumerateFollowingList, + unix_ISteamFriends_SteamFriends012_GetPersonaName, + unix_ISteamFriends_SteamFriends012_SetPersonaName, + unix_ISteamFriends_SteamFriends012_GetPersonaState, + unix_ISteamFriends_SteamFriends012_GetFriendCount, + unix_ISteamFriends_SteamFriends012_GetFriendByIndex, + unix_ISteamFriends_SteamFriends012_GetFriendRelationship, + unix_ISteamFriends_SteamFriends012_GetFriendPersonaState, + unix_ISteamFriends_SteamFriends012_GetFriendPersonaName, + unix_ISteamFriends_SteamFriends012_GetFriendGamePlayed, + unix_ISteamFriends_SteamFriends012_GetFriendPersonaNameHistory, + unix_ISteamFriends_SteamFriends012_HasFriend, + unix_ISteamFriends_SteamFriends012_GetClanCount, + unix_ISteamFriends_SteamFriends012_GetClanByIndex, + unix_ISteamFriends_SteamFriends012_GetClanName, + unix_ISteamFriends_SteamFriends012_GetClanTag, + unix_ISteamFriends_SteamFriends012_GetClanActivityCounts, + unix_ISteamFriends_SteamFriends012_DownloadClanActivityCounts, + unix_ISteamFriends_SteamFriends012_GetFriendCountFromSource, + unix_ISteamFriends_SteamFriends012_GetFriendFromSourceByIndex, + unix_ISteamFriends_SteamFriends012_IsUserInSource, + unix_ISteamFriends_SteamFriends012_SetInGameVoiceSpeaking, + unix_ISteamFriends_SteamFriends012_ActivateGameOverlay, + unix_ISteamFriends_SteamFriends012_ActivateGameOverlayToUser, + unix_ISteamFriends_SteamFriends012_ActivateGameOverlayToWebPage, + unix_ISteamFriends_SteamFriends012_ActivateGameOverlayToStore, + unix_ISteamFriends_SteamFriends012_SetPlayedWith, + unix_ISteamFriends_SteamFriends012_ActivateGameOverlayInviteDialog, + unix_ISteamFriends_SteamFriends012_GetSmallFriendAvatar, + unix_ISteamFriends_SteamFriends012_GetMediumFriendAvatar, + unix_ISteamFriends_SteamFriends012_GetLargeFriendAvatar, + unix_ISteamFriends_SteamFriends012_RequestUserInformation, + unix_ISteamFriends_SteamFriends012_RequestClanOfficerList, + unix_ISteamFriends_SteamFriends012_GetClanOwner, + unix_ISteamFriends_SteamFriends012_GetClanOfficerCount, + unix_ISteamFriends_SteamFriends012_GetClanOfficerByIndex, + unix_ISteamFriends_SteamFriends012_GetUserRestrictions, + unix_ISteamFriends_SteamFriends012_SetRichPresence, + unix_ISteamFriends_SteamFriends012_ClearRichPresence, + unix_ISteamFriends_SteamFriends012_GetFriendRichPresence, + unix_ISteamFriends_SteamFriends012_GetFriendRichPresenceKeyCount, + unix_ISteamFriends_SteamFriends012_GetFriendRichPresenceKeyByIndex, + unix_ISteamFriends_SteamFriends012_RequestFriendRichPresence, + unix_ISteamFriends_SteamFriends012_InviteUserToGame, + unix_ISteamFriends_SteamFriends012_GetCoplayFriendCount, + unix_ISteamFriends_SteamFriends012_GetCoplayFriend, + unix_ISteamFriends_SteamFriends012_GetFriendCoplayTime, + unix_ISteamFriends_SteamFriends012_GetFriendCoplayGame, + unix_ISteamFriends_SteamFriends012_JoinClanChatRoom, + unix_ISteamFriends_SteamFriends012_LeaveClanChatRoom, + unix_ISteamFriends_SteamFriends012_GetClanChatMemberCount, + unix_ISteamFriends_SteamFriends012_GetChatMemberByIndex, + unix_ISteamFriends_SteamFriends012_SendClanChatMessage, + unix_ISteamFriends_SteamFriends012_GetClanChatMessage, + unix_ISteamFriends_SteamFriends012_IsClanChatAdmin, + unix_ISteamFriends_SteamFriends012_IsClanChatWindowOpenInSteam, + unix_ISteamFriends_SteamFriends012_OpenClanChatWindowInSteam, + unix_ISteamFriends_SteamFriends012_CloseClanChatWindowInSteam, + unix_ISteamFriends_SteamFriends012_SetListenForFriendsMessages, + unix_ISteamFriends_SteamFriends012_ReplyToFriendMessage, + unix_ISteamFriends_SteamFriends012_GetFriendMessage, + unix_ISteamFriends_SteamFriends012_GetFollowerCount, + unix_ISteamFriends_SteamFriends012_IsFollowing, + unix_ISteamFriends_SteamFriends012_EnumerateFollowingList, + unix_ISteamFriends_SteamFriends013_GetPersonaName, + unix_ISteamFriends_SteamFriends013_SetPersonaName, + unix_ISteamFriends_SteamFriends013_GetPersonaState, + unix_ISteamFriends_SteamFriends013_GetFriendCount, + unix_ISteamFriends_SteamFriends013_GetFriendByIndex, + unix_ISteamFriends_SteamFriends013_GetFriendRelationship, + unix_ISteamFriends_SteamFriends013_GetFriendPersonaState, + unix_ISteamFriends_SteamFriends013_GetFriendPersonaName, + unix_ISteamFriends_SteamFriends013_GetFriendGamePlayed, + unix_ISteamFriends_SteamFriends013_GetFriendPersonaNameHistory, + unix_ISteamFriends_SteamFriends013_HasFriend, + unix_ISteamFriends_SteamFriends013_GetClanCount, + unix_ISteamFriends_SteamFriends013_GetClanByIndex, + unix_ISteamFriends_SteamFriends013_GetClanName, + unix_ISteamFriends_SteamFriends013_GetClanTag, + unix_ISteamFriends_SteamFriends013_GetClanActivityCounts, + unix_ISteamFriends_SteamFriends013_DownloadClanActivityCounts, + unix_ISteamFriends_SteamFriends013_GetFriendCountFromSource, + unix_ISteamFriends_SteamFriends013_GetFriendFromSourceByIndex, + unix_ISteamFriends_SteamFriends013_IsUserInSource, + unix_ISteamFriends_SteamFriends013_SetInGameVoiceSpeaking, + unix_ISteamFriends_SteamFriends013_ActivateGameOverlay, + unix_ISteamFriends_SteamFriends013_ActivateGameOverlayToUser, + unix_ISteamFriends_SteamFriends013_ActivateGameOverlayToWebPage, + unix_ISteamFriends_SteamFriends013_ActivateGameOverlayToStore, + unix_ISteamFriends_SteamFriends013_SetPlayedWith, + unix_ISteamFriends_SteamFriends013_ActivateGameOverlayInviteDialog, + unix_ISteamFriends_SteamFriends013_GetSmallFriendAvatar, + unix_ISteamFriends_SteamFriends013_GetMediumFriendAvatar, + unix_ISteamFriends_SteamFriends013_GetLargeFriendAvatar, + unix_ISteamFriends_SteamFriends013_RequestUserInformation, + unix_ISteamFriends_SteamFriends013_RequestClanOfficerList, + unix_ISteamFriends_SteamFriends013_GetClanOwner, + unix_ISteamFriends_SteamFriends013_GetClanOfficerCount, + unix_ISteamFriends_SteamFriends013_GetClanOfficerByIndex, + unix_ISteamFriends_SteamFriends013_GetUserRestrictions, + unix_ISteamFriends_SteamFriends013_SetRichPresence, + unix_ISteamFriends_SteamFriends013_ClearRichPresence, + unix_ISteamFriends_SteamFriends013_GetFriendRichPresence, + unix_ISteamFriends_SteamFriends013_GetFriendRichPresenceKeyCount, + unix_ISteamFriends_SteamFriends013_GetFriendRichPresenceKeyByIndex, + unix_ISteamFriends_SteamFriends013_RequestFriendRichPresence, + unix_ISteamFriends_SteamFriends013_InviteUserToGame, + unix_ISteamFriends_SteamFriends013_GetCoplayFriendCount, + unix_ISteamFriends_SteamFriends013_GetCoplayFriend, + unix_ISteamFriends_SteamFriends013_GetFriendCoplayTime, + unix_ISteamFriends_SteamFriends013_GetFriendCoplayGame, + unix_ISteamFriends_SteamFriends013_JoinClanChatRoom, + unix_ISteamFriends_SteamFriends013_LeaveClanChatRoom, + unix_ISteamFriends_SteamFriends013_GetClanChatMemberCount, + unix_ISteamFriends_SteamFriends013_GetChatMemberByIndex, + unix_ISteamFriends_SteamFriends013_SendClanChatMessage, + unix_ISteamFriends_SteamFriends013_GetClanChatMessage, + unix_ISteamFriends_SteamFriends013_IsClanChatAdmin, + unix_ISteamFriends_SteamFriends013_IsClanChatWindowOpenInSteam, + unix_ISteamFriends_SteamFriends013_OpenClanChatWindowInSteam, + unix_ISteamFriends_SteamFriends013_CloseClanChatWindowInSteam, + unix_ISteamFriends_SteamFriends013_SetListenForFriendsMessages, + unix_ISteamFriends_SteamFriends013_ReplyToFriendMessage, + unix_ISteamFriends_SteamFriends013_GetFriendMessage, + unix_ISteamFriends_SteamFriends013_GetFollowerCount, + unix_ISteamFriends_SteamFriends013_IsFollowing, + unix_ISteamFriends_SteamFriends013_EnumerateFollowingList, + unix_ISteamFriends_SteamFriends014_GetPersonaName, + unix_ISteamFriends_SteamFriends014_SetPersonaName, + unix_ISteamFriends_SteamFriends014_GetPersonaState, + unix_ISteamFriends_SteamFriends014_GetFriendCount, + unix_ISteamFriends_SteamFriends014_GetFriendByIndex, + unix_ISteamFriends_SteamFriends014_GetFriendRelationship, + unix_ISteamFriends_SteamFriends014_GetFriendPersonaState, + unix_ISteamFriends_SteamFriends014_GetFriendPersonaName, + unix_ISteamFriends_SteamFriends014_GetFriendGamePlayed, + unix_ISteamFriends_SteamFriends014_GetFriendPersonaNameHistory, + unix_ISteamFriends_SteamFriends014_GetPlayerNickname, + unix_ISteamFriends_SteamFriends014_HasFriend, + unix_ISteamFriends_SteamFriends014_GetClanCount, + unix_ISteamFriends_SteamFriends014_GetClanByIndex, + unix_ISteamFriends_SteamFriends014_GetClanName, + unix_ISteamFriends_SteamFriends014_GetClanTag, + unix_ISteamFriends_SteamFriends014_GetClanActivityCounts, + unix_ISteamFriends_SteamFriends014_DownloadClanActivityCounts, + unix_ISteamFriends_SteamFriends014_GetFriendCountFromSource, + unix_ISteamFriends_SteamFriends014_GetFriendFromSourceByIndex, + unix_ISteamFriends_SteamFriends014_IsUserInSource, + unix_ISteamFriends_SteamFriends014_SetInGameVoiceSpeaking, + unix_ISteamFriends_SteamFriends014_ActivateGameOverlay, + unix_ISteamFriends_SteamFriends014_ActivateGameOverlayToUser, + unix_ISteamFriends_SteamFriends014_ActivateGameOverlayToWebPage, + unix_ISteamFriends_SteamFriends014_ActivateGameOverlayToStore, + unix_ISteamFriends_SteamFriends014_SetPlayedWith, + unix_ISteamFriends_SteamFriends014_ActivateGameOverlayInviteDialog, + unix_ISteamFriends_SteamFriends014_GetSmallFriendAvatar, + unix_ISteamFriends_SteamFriends014_GetMediumFriendAvatar, + unix_ISteamFriends_SteamFriends014_GetLargeFriendAvatar, + unix_ISteamFriends_SteamFriends014_RequestUserInformation, + unix_ISteamFriends_SteamFriends014_RequestClanOfficerList, + unix_ISteamFriends_SteamFriends014_GetClanOwner, + unix_ISteamFriends_SteamFriends014_GetClanOfficerCount, + unix_ISteamFriends_SteamFriends014_GetClanOfficerByIndex, + unix_ISteamFriends_SteamFriends014_GetUserRestrictions, + unix_ISteamFriends_SteamFriends014_SetRichPresence, + unix_ISteamFriends_SteamFriends014_ClearRichPresence, + unix_ISteamFriends_SteamFriends014_GetFriendRichPresence, + unix_ISteamFriends_SteamFriends014_GetFriendRichPresenceKeyCount, + unix_ISteamFriends_SteamFriends014_GetFriendRichPresenceKeyByIndex, + unix_ISteamFriends_SteamFriends014_RequestFriendRichPresence, + unix_ISteamFriends_SteamFriends014_InviteUserToGame, + unix_ISteamFriends_SteamFriends014_GetCoplayFriendCount, + unix_ISteamFriends_SteamFriends014_GetCoplayFriend, + unix_ISteamFriends_SteamFriends014_GetFriendCoplayTime, + unix_ISteamFriends_SteamFriends014_GetFriendCoplayGame, + unix_ISteamFriends_SteamFriends014_JoinClanChatRoom, + unix_ISteamFriends_SteamFriends014_LeaveClanChatRoom, + unix_ISteamFriends_SteamFriends014_GetClanChatMemberCount, + unix_ISteamFriends_SteamFriends014_GetChatMemberByIndex, + unix_ISteamFriends_SteamFriends014_SendClanChatMessage, + unix_ISteamFriends_SteamFriends014_GetClanChatMessage, + unix_ISteamFriends_SteamFriends014_IsClanChatAdmin, + unix_ISteamFriends_SteamFriends014_IsClanChatWindowOpenInSteam, + unix_ISteamFriends_SteamFriends014_OpenClanChatWindowInSteam, + unix_ISteamFriends_SteamFriends014_CloseClanChatWindowInSteam, + unix_ISteamFriends_SteamFriends014_SetListenForFriendsMessages, + unix_ISteamFriends_SteamFriends014_ReplyToFriendMessage, + unix_ISteamFriends_SteamFriends014_GetFriendMessage, + unix_ISteamFriends_SteamFriends014_GetFollowerCount, + unix_ISteamFriends_SteamFriends014_IsFollowing, + unix_ISteamFriends_SteamFriends014_EnumerateFollowingList, + unix_ISteamFriends_SteamFriends015_GetPersonaName, + unix_ISteamFriends_SteamFriends015_SetPersonaName, + unix_ISteamFriends_SteamFriends015_GetPersonaState, + unix_ISteamFriends_SteamFriends015_GetFriendCount, + unix_ISteamFriends_SteamFriends015_GetFriendByIndex, + unix_ISteamFriends_SteamFriends015_GetFriendRelationship, + unix_ISteamFriends_SteamFriends015_GetFriendPersonaState, + unix_ISteamFriends_SteamFriends015_GetFriendPersonaName, + unix_ISteamFriends_SteamFriends015_GetFriendGamePlayed, + unix_ISteamFriends_SteamFriends015_GetFriendPersonaNameHistory, + unix_ISteamFriends_SteamFriends015_GetFriendSteamLevel, + unix_ISteamFriends_SteamFriends015_GetPlayerNickname, + unix_ISteamFriends_SteamFriends015_GetFriendsGroupCount, + unix_ISteamFriends_SteamFriends015_GetFriendsGroupIDByIndex, + unix_ISteamFriends_SteamFriends015_GetFriendsGroupName, + unix_ISteamFriends_SteamFriends015_GetFriendsGroupMembersCount, + unix_ISteamFriends_SteamFriends015_GetFriendsGroupMembersList, + unix_ISteamFriends_SteamFriends015_HasFriend, + unix_ISteamFriends_SteamFriends015_GetClanCount, + unix_ISteamFriends_SteamFriends015_GetClanByIndex, + unix_ISteamFriends_SteamFriends015_GetClanName, + unix_ISteamFriends_SteamFriends015_GetClanTag, + unix_ISteamFriends_SteamFriends015_GetClanActivityCounts, + unix_ISteamFriends_SteamFriends015_DownloadClanActivityCounts, + unix_ISteamFriends_SteamFriends015_GetFriendCountFromSource, + unix_ISteamFriends_SteamFriends015_GetFriendFromSourceByIndex, + unix_ISteamFriends_SteamFriends015_IsUserInSource, + unix_ISteamFriends_SteamFriends015_SetInGameVoiceSpeaking, + unix_ISteamFriends_SteamFriends015_ActivateGameOverlay, + unix_ISteamFriends_SteamFriends015_ActivateGameOverlayToUser, + unix_ISteamFriends_SteamFriends015_ActivateGameOverlayToWebPage, + unix_ISteamFriends_SteamFriends015_ActivateGameOverlayToStore, + unix_ISteamFriends_SteamFriends015_SetPlayedWith, + unix_ISteamFriends_SteamFriends015_ActivateGameOverlayInviteDialog, + unix_ISteamFriends_SteamFriends015_GetSmallFriendAvatar, + unix_ISteamFriends_SteamFriends015_GetMediumFriendAvatar, + unix_ISteamFriends_SteamFriends015_GetLargeFriendAvatar, + unix_ISteamFriends_SteamFriends015_RequestUserInformation, + unix_ISteamFriends_SteamFriends015_RequestClanOfficerList, + unix_ISteamFriends_SteamFriends015_GetClanOwner, + unix_ISteamFriends_SteamFriends015_GetClanOfficerCount, + unix_ISteamFriends_SteamFriends015_GetClanOfficerByIndex, + unix_ISteamFriends_SteamFriends015_GetUserRestrictions, + unix_ISteamFriends_SteamFriends015_SetRichPresence, + unix_ISteamFriends_SteamFriends015_ClearRichPresence, + unix_ISteamFriends_SteamFriends015_GetFriendRichPresence, + unix_ISteamFriends_SteamFriends015_GetFriendRichPresenceKeyCount, + unix_ISteamFriends_SteamFriends015_GetFriendRichPresenceKeyByIndex, + unix_ISteamFriends_SteamFriends015_RequestFriendRichPresence, + unix_ISteamFriends_SteamFriends015_InviteUserToGame, + unix_ISteamFriends_SteamFriends015_GetCoplayFriendCount, + unix_ISteamFriends_SteamFriends015_GetCoplayFriend, + unix_ISteamFriends_SteamFriends015_GetFriendCoplayTime, + unix_ISteamFriends_SteamFriends015_GetFriendCoplayGame, + unix_ISteamFriends_SteamFriends015_JoinClanChatRoom, + unix_ISteamFriends_SteamFriends015_LeaveClanChatRoom, + unix_ISteamFriends_SteamFriends015_GetClanChatMemberCount, + unix_ISteamFriends_SteamFriends015_GetChatMemberByIndex, + unix_ISteamFriends_SteamFriends015_SendClanChatMessage, + unix_ISteamFriends_SteamFriends015_GetClanChatMessage, + unix_ISteamFriends_SteamFriends015_IsClanChatAdmin, + unix_ISteamFriends_SteamFriends015_IsClanChatWindowOpenInSteam, + unix_ISteamFriends_SteamFriends015_OpenClanChatWindowInSteam, + unix_ISteamFriends_SteamFriends015_CloseClanChatWindowInSteam, + unix_ISteamFriends_SteamFriends015_SetListenForFriendsMessages, + unix_ISteamFriends_SteamFriends015_ReplyToFriendMessage, + unix_ISteamFriends_SteamFriends015_GetFriendMessage, + unix_ISteamFriends_SteamFriends015_GetFollowerCount, + unix_ISteamFriends_SteamFriends015_IsFollowing, + unix_ISteamFriends_SteamFriends015_EnumerateFollowingList, + unix_ISteamFriends_SteamFriends015_IsClanPublic, + unix_ISteamFriends_SteamFriends015_IsClanOfficialGameGroup, + unix_ISteamFriends_SteamFriends017_GetPersonaName, + unix_ISteamFriends_SteamFriends017_SetPersonaName, + unix_ISteamFriends_SteamFriends017_GetPersonaState, + unix_ISteamFriends_SteamFriends017_GetFriendCount, + unix_ISteamFriends_SteamFriends017_GetFriendByIndex, + unix_ISteamFriends_SteamFriends017_GetFriendRelationship, + unix_ISteamFriends_SteamFriends017_GetFriendPersonaState, + unix_ISteamFriends_SteamFriends017_GetFriendPersonaName, + unix_ISteamFriends_SteamFriends017_GetFriendGamePlayed, + unix_ISteamFriends_SteamFriends017_GetFriendPersonaNameHistory, + unix_ISteamFriends_SteamFriends017_GetFriendSteamLevel, + unix_ISteamFriends_SteamFriends017_GetPlayerNickname, + unix_ISteamFriends_SteamFriends017_GetFriendsGroupCount, + unix_ISteamFriends_SteamFriends017_GetFriendsGroupIDByIndex, + unix_ISteamFriends_SteamFriends017_GetFriendsGroupName, + unix_ISteamFriends_SteamFriends017_GetFriendsGroupMembersCount, + unix_ISteamFriends_SteamFriends017_GetFriendsGroupMembersList, + unix_ISteamFriends_SteamFriends017_HasFriend, + unix_ISteamFriends_SteamFriends017_GetClanCount, + unix_ISteamFriends_SteamFriends017_GetClanByIndex, + unix_ISteamFriends_SteamFriends017_GetClanName, + unix_ISteamFriends_SteamFriends017_GetClanTag, + unix_ISteamFriends_SteamFriends017_GetClanActivityCounts, + unix_ISteamFriends_SteamFriends017_DownloadClanActivityCounts, + unix_ISteamFriends_SteamFriends017_GetFriendCountFromSource, + unix_ISteamFriends_SteamFriends017_GetFriendFromSourceByIndex, + unix_ISteamFriends_SteamFriends017_IsUserInSource, + unix_ISteamFriends_SteamFriends017_SetInGameVoiceSpeaking, + unix_ISteamFriends_SteamFriends017_ActivateGameOverlay, + unix_ISteamFriends_SteamFriends017_ActivateGameOverlayToUser, + unix_ISteamFriends_SteamFriends017_ActivateGameOverlayToWebPage, + unix_ISteamFriends_SteamFriends017_ActivateGameOverlayToStore, + unix_ISteamFriends_SteamFriends017_SetPlayedWith, + unix_ISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialog, + unix_ISteamFriends_SteamFriends017_GetSmallFriendAvatar, + unix_ISteamFriends_SteamFriends017_GetMediumFriendAvatar, + unix_ISteamFriends_SteamFriends017_GetLargeFriendAvatar, + unix_ISteamFriends_SteamFriends017_RequestUserInformation, + unix_ISteamFriends_SteamFriends017_RequestClanOfficerList, + unix_ISteamFriends_SteamFriends017_GetClanOwner, + unix_ISteamFriends_SteamFriends017_GetClanOfficerCount, + unix_ISteamFriends_SteamFriends017_GetClanOfficerByIndex, + unix_ISteamFriends_SteamFriends017_GetUserRestrictions, + unix_ISteamFriends_SteamFriends017_SetRichPresence, + unix_ISteamFriends_SteamFriends017_ClearRichPresence, + unix_ISteamFriends_SteamFriends017_GetFriendRichPresence, + unix_ISteamFriends_SteamFriends017_GetFriendRichPresenceKeyCount, + unix_ISteamFriends_SteamFriends017_GetFriendRichPresenceKeyByIndex, + unix_ISteamFriends_SteamFriends017_RequestFriendRichPresence, + unix_ISteamFriends_SteamFriends017_InviteUserToGame, + unix_ISteamFriends_SteamFriends017_GetCoplayFriendCount, + unix_ISteamFriends_SteamFriends017_GetCoplayFriend, + unix_ISteamFriends_SteamFriends017_GetFriendCoplayTime, + unix_ISteamFriends_SteamFriends017_GetFriendCoplayGame, + unix_ISteamFriends_SteamFriends017_JoinClanChatRoom, + unix_ISteamFriends_SteamFriends017_LeaveClanChatRoom, + unix_ISteamFriends_SteamFriends017_GetClanChatMemberCount, + unix_ISteamFriends_SteamFriends017_GetChatMemberByIndex, + unix_ISteamFriends_SteamFriends017_SendClanChatMessage, + unix_ISteamFriends_SteamFriends017_GetClanChatMessage, + unix_ISteamFriends_SteamFriends017_IsClanChatAdmin, + unix_ISteamFriends_SteamFriends017_IsClanChatWindowOpenInSteam, + unix_ISteamFriends_SteamFriends017_OpenClanChatWindowInSteam, + unix_ISteamFriends_SteamFriends017_CloseClanChatWindowInSteam, + unix_ISteamFriends_SteamFriends017_SetListenForFriendsMessages, + unix_ISteamFriends_SteamFriends017_ReplyToFriendMessage, + unix_ISteamFriends_SteamFriends017_GetFriendMessage, + unix_ISteamFriends_SteamFriends017_GetFollowerCount, + unix_ISteamFriends_SteamFriends017_IsFollowing, + unix_ISteamFriends_SteamFriends017_EnumerateFollowingList, + unix_ISteamFriends_SteamFriends017_IsClanPublic, + unix_ISteamFriends_SteamFriends017_IsClanOfficialGameGroup, + unix_ISteamFriends_SteamFriends017_GetNumChatsWithUnreadPriorityMessages, + unix_ISteamFriends_SteamFriends017_ActivateGameOverlayRemotePlayTogetherInviteDialog, + unix_ISteamFriends_SteamFriends017_RegisterProtocolInOverlayBrowser, + unix_ISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialogConnectString, + unix_ISteamFriends_SteamFriends017_RequestEquippedProfileItems, + unix_ISteamFriends_SteamFriends017_BHasEquippedProfileItem, + unix_ISteamFriends_SteamFriends017_GetProfileItemPropertyString, + unix_ISteamFriends_SteamFriends017_GetProfileItemPropertyUint, + unix_ISteamGameCoordinator_SteamGameCoordinator001_SendMessage, + unix_ISteamGameCoordinator_SteamGameCoordinator001_IsMessageAvailable, + unix_ISteamGameCoordinator_SteamGameCoordinator001_RetrieveMessage, + unix_ISteamGameServer_SteamGameServer002_LogOn, + unix_ISteamGameServer_SteamGameServer002_LogOff, + unix_ISteamGameServer_SteamGameServer002_BLoggedOn, + unix_ISteamGameServer_SteamGameServer002_GSSetSpawnCount, + unix_ISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionKeyToSendToNewClient, + unix_ISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect, + unix_ISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect, + unix_ISteamGameServer_SteamGameServer002_GSRemoveUserConnect, + unix_ISteamGameServer_SteamGameServer002_GSSendUserDisconnect, + unix_ISteamGameServer_SteamGameServer002_GSSendUserStatusResponse, + unix_ISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus, + unix_ISteamGameServer_SteamGameServer002_GSUpdateStatus, + unix_ISteamGameServer_SteamGameServer002_BSecure, + unix_ISteamGameServer_SteamGameServer002_GetSteamID, + unix_ISteamGameServer_SteamGameServer002_GSSetServerType, + unix_ISteamGameServer_SteamGameServer002_GSSetServerType2, + unix_ISteamGameServer_SteamGameServer002_GSUpdateStatus2, + unix_ISteamGameServer_SteamGameServer002_GSCreateUnauthenticatedUser, + unix_ISteamGameServer_SteamGameServer002_GSSetUserData, + unix_ISteamGameServer_SteamGameServer002_GSUpdateSpectatorPort, + unix_ISteamGameServer_SteamGameServer002_GSSetGameType, + unix_ISteamGameServer_SteamGameServer003_LogOn, + unix_ISteamGameServer_SteamGameServer003_LogOff, + unix_ISteamGameServer_SteamGameServer003_BLoggedOn, + unix_ISteamGameServer_SteamGameServer003_BSecure, + unix_ISteamGameServer_SteamGameServer003_GetSteamID, + unix_ISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionKeyToSendToNewClient, + unix_ISteamGameServer_SteamGameServer003_GSSendUserConnect, + unix_ISteamGameServer_SteamGameServer003_GSRemoveUserConnect, + unix_ISteamGameServer_SteamGameServer003_GSSendUserDisconnect, + unix_ISteamGameServer_SteamGameServer003_GSSetSpawnCount, + unix_ISteamGameServer_SteamGameServer003_GSSetServerType, + unix_ISteamGameServer_SteamGameServer003_GSUpdateStatus, + unix_ISteamGameServer_SteamGameServer003_GSCreateUnauthenticatedUser, + unix_ISteamGameServer_SteamGameServer003_GSSetUserData, + unix_ISteamGameServer_SteamGameServer003_GSUpdateSpectatorPort, + unix_ISteamGameServer_SteamGameServer003_GSSetGameType, + unix_ISteamGameServer_SteamGameServer003_GSGetUserAchievementStatus, + unix_ISteamGameServer_SteamGameServer004_LogOn, + unix_ISteamGameServer_SteamGameServer004_LogOff, + unix_ISteamGameServer_SteamGameServer004_BLoggedOn, + unix_ISteamGameServer_SteamGameServer004_BSecure, + unix_ISteamGameServer_SteamGameServer004_GetSteamID, + unix_ISteamGameServer_SteamGameServer004_SendUserConnectAndAuthenticate, + unix_ISteamGameServer_SteamGameServer004_CreateUnauthenticatedUserConnection, + unix_ISteamGameServer_SteamGameServer004_SendUserDisconnect, + unix_ISteamGameServer_SteamGameServer004_BUpdateUserData, + unix_ISteamGameServer_SteamGameServer004_BSetServerType, + unix_ISteamGameServer_SteamGameServer004_UpdateServerStatus, + unix_ISteamGameServer_SteamGameServer004_UpdateSpectatorPort, + unix_ISteamGameServer_SteamGameServer004_SetGameType, + unix_ISteamGameServer_SteamGameServer004_BGetUserAchievementStatus, + unix_ISteamGameServer_SteamGameServer005_LogOn, + unix_ISteamGameServer_SteamGameServer005_LogOff, + unix_ISteamGameServer_SteamGameServer005_BLoggedOn, + unix_ISteamGameServer_SteamGameServer005_BSecure, + unix_ISteamGameServer_SteamGameServer005_GetSteamID, + unix_ISteamGameServer_SteamGameServer005_SendUserConnectAndAuthenticate, + unix_ISteamGameServer_SteamGameServer005_CreateUnauthenticatedUserConnection, + unix_ISteamGameServer_SteamGameServer005_SendUserDisconnect, + unix_ISteamGameServer_SteamGameServer005_BUpdateUserData, + unix_ISteamGameServer_SteamGameServer005_BSetServerType, + unix_ISteamGameServer_SteamGameServer005_UpdateServerStatus, + unix_ISteamGameServer_SteamGameServer005_UpdateSpectatorPort, + unix_ISteamGameServer_SteamGameServer005_SetGameType, + unix_ISteamGameServer_SteamGameServer005_BGetUserAchievementStatus, + unix_ISteamGameServer_SteamGameServer008_LogOn, + unix_ISteamGameServer_SteamGameServer008_LogOff, + unix_ISteamGameServer_SteamGameServer008_BLoggedOn, + unix_ISteamGameServer_SteamGameServer008_BSecure, + unix_ISteamGameServer_SteamGameServer008_GetSteamID, + unix_ISteamGameServer_SteamGameServer008_SendUserConnectAndAuthenticate, + unix_ISteamGameServer_SteamGameServer008_CreateUnauthenticatedUserConnection, + unix_ISteamGameServer_SteamGameServer008_SendUserDisconnect, + unix_ISteamGameServer_SteamGameServer008_BUpdateUserData, + unix_ISteamGameServer_SteamGameServer008_BSetServerType, + unix_ISteamGameServer_SteamGameServer008_UpdateServerStatus, + unix_ISteamGameServer_SteamGameServer008_UpdateSpectatorPort, + unix_ISteamGameServer_SteamGameServer008_SetGameType, + unix_ISteamGameServer_SteamGameServer008_BGetUserAchievementStatus, + unix_ISteamGameServer_SteamGameServer008_GetGameplayStats, + unix_ISteamGameServer_SteamGameServer008_RequestUserGroupStatus, + unix_ISteamGameServer_SteamGameServer008_GetPublicIP, + unix_ISteamGameServer_SteamGameServer009_LogOn, + unix_ISteamGameServer_SteamGameServer009_LogOff, + unix_ISteamGameServer_SteamGameServer009_BLoggedOn, + unix_ISteamGameServer_SteamGameServer009_BSecure, + unix_ISteamGameServer_SteamGameServer009_GetSteamID, + unix_ISteamGameServer_SteamGameServer009_SendUserConnectAndAuthenticate, + unix_ISteamGameServer_SteamGameServer009_CreateUnauthenticatedUserConnection, + unix_ISteamGameServer_SteamGameServer009_SendUserDisconnect, + unix_ISteamGameServer_SteamGameServer009_BUpdateUserData, + unix_ISteamGameServer_SteamGameServer009_BSetServerType, + unix_ISteamGameServer_SteamGameServer009_UpdateServerStatus, + unix_ISteamGameServer_SteamGameServer009_UpdateSpectatorPort, + unix_ISteamGameServer_SteamGameServer009_SetGameType, + unix_ISteamGameServer_SteamGameServer009_BGetUserAchievementStatus, + unix_ISteamGameServer_SteamGameServer009_GetGameplayStats, + unix_ISteamGameServer_SteamGameServer009_RequestUserGroupStatus, + unix_ISteamGameServer_SteamGameServer009_GetPublicIP, + unix_ISteamGameServer_SteamGameServer009_SetGameData, + unix_ISteamGameServer_SteamGameServer009_UserHasLicenseForApp, + unix_ISteamGameServer_SteamGameServer010_LogOn, + unix_ISteamGameServer_SteamGameServer010_LogOff, + unix_ISteamGameServer_SteamGameServer010_BLoggedOn, + unix_ISteamGameServer_SteamGameServer010_BSecure, + unix_ISteamGameServer_SteamGameServer010_GetSteamID, + unix_ISteamGameServer_SteamGameServer010_SendUserConnectAndAuthenticate, + unix_ISteamGameServer_SteamGameServer010_CreateUnauthenticatedUserConnection, + unix_ISteamGameServer_SteamGameServer010_SendUserDisconnect, + unix_ISteamGameServer_SteamGameServer010_BUpdateUserData, + unix_ISteamGameServer_SteamGameServer010_BSetServerType, + unix_ISteamGameServer_SteamGameServer010_UpdateServerStatus, + unix_ISteamGameServer_SteamGameServer010_UpdateSpectatorPort, + unix_ISteamGameServer_SteamGameServer010_SetGameTags, + unix_ISteamGameServer_SteamGameServer010_GetGameplayStats, + unix_ISteamGameServer_SteamGameServer010_GetServerReputation, + unix_ISteamGameServer_SteamGameServer010_RequestUserGroupStatus, + unix_ISteamGameServer_SteamGameServer010_GetPublicIP, + unix_ISteamGameServer_SteamGameServer010_SetGameData, + unix_ISteamGameServer_SteamGameServer010_UserHasLicenseForApp, + unix_ISteamGameServer_SteamGameServer010_GetAuthSessionTicket, + unix_ISteamGameServer_SteamGameServer010_BeginAuthSession, + unix_ISteamGameServer_SteamGameServer010_EndAuthSession, + unix_ISteamGameServer_SteamGameServer010_CancelAuthTicket, + unix_ISteamGameServer_SteamGameServer011_InitGameServer, + unix_ISteamGameServer_SteamGameServer011_SetProduct, + unix_ISteamGameServer_SteamGameServer011_SetGameDescription, + unix_ISteamGameServer_SteamGameServer011_SetModDir, + unix_ISteamGameServer_SteamGameServer011_SetDedicatedServer, + unix_ISteamGameServer_SteamGameServer011_LogOn, + unix_ISteamGameServer_SteamGameServer011_LogOnAnonymous, + unix_ISteamGameServer_SteamGameServer011_LogOff, + unix_ISteamGameServer_SteamGameServer011_BLoggedOn, + unix_ISteamGameServer_SteamGameServer011_BSecure, + unix_ISteamGameServer_SteamGameServer011_GetSteamID, + unix_ISteamGameServer_SteamGameServer011_WasRestartRequested, + unix_ISteamGameServer_SteamGameServer011_SetMaxPlayerCount, + unix_ISteamGameServer_SteamGameServer011_SetBotPlayerCount, + unix_ISteamGameServer_SteamGameServer011_SetServerName, + unix_ISteamGameServer_SteamGameServer011_SetMapName, + unix_ISteamGameServer_SteamGameServer011_SetPasswordProtected, + unix_ISteamGameServer_SteamGameServer011_SetSpectatorPort, + unix_ISteamGameServer_SteamGameServer011_SetSpectatorServerName, + unix_ISteamGameServer_SteamGameServer011_ClearAllKeyValues, + unix_ISteamGameServer_SteamGameServer011_SetKeyValue, + unix_ISteamGameServer_SteamGameServer011_SetGameTags, + unix_ISteamGameServer_SteamGameServer011_SetGameData, + unix_ISteamGameServer_SteamGameServer011_SetRegion, + unix_ISteamGameServer_SteamGameServer011_SendUserConnectAndAuthenticate, + unix_ISteamGameServer_SteamGameServer011_CreateUnauthenticatedUserConnection, + unix_ISteamGameServer_SteamGameServer011_SendUserDisconnect, + unix_ISteamGameServer_SteamGameServer011_BUpdateUserData, + unix_ISteamGameServer_SteamGameServer011_GetAuthSessionTicket, + unix_ISteamGameServer_SteamGameServer011_BeginAuthSession, + unix_ISteamGameServer_SteamGameServer011_EndAuthSession, + unix_ISteamGameServer_SteamGameServer011_CancelAuthTicket, + unix_ISteamGameServer_SteamGameServer011_UserHasLicenseForApp, + unix_ISteamGameServer_SteamGameServer011_RequestUserGroupStatus, + unix_ISteamGameServer_SteamGameServer011_GetGameplayStats, + unix_ISteamGameServer_SteamGameServer011_GetServerReputation, + unix_ISteamGameServer_SteamGameServer011_GetPublicIP, + unix_ISteamGameServer_SteamGameServer011_HandleIncomingPacket, + unix_ISteamGameServer_SteamGameServer011_GetNextOutgoingPacket, + unix_ISteamGameServer_SteamGameServer011_EnableHeartbeats, + unix_ISteamGameServer_SteamGameServer011_SetHeartbeatInterval, + unix_ISteamGameServer_SteamGameServer011_ForceHeartbeat, + unix_ISteamGameServer_SteamGameServer011_AssociateWithClan, + unix_ISteamGameServer_SteamGameServer011_ComputeNewPlayerCompatibility, + unix_ISteamGameServer_SteamGameServer012_InitGameServer, + unix_ISteamGameServer_SteamGameServer012_SetProduct, + unix_ISteamGameServer_SteamGameServer012_SetGameDescription, + unix_ISteamGameServer_SteamGameServer012_SetModDir, + unix_ISteamGameServer_SteamGameServer012_SetDedicatedServer, + unix_ISteamGameServer_SteamGameServer012_LogOn, + unix_ISteamGameServer_SteamGameServer012_LogOnAnonymous, + unix_ISteamGameServer_SteamGameServer012_LogOff, + unix_ISteamGameServer_SteamGameServer012_BLoggedOn, + unix_ISteamGameServer_SteamGameServer012_BSecure, + unix_ISteamGameServer_SteamGameServer012_GetSteamID, + unix_ISteamGameServer_SteamGameServer012_WasRestartRequested, + unix_ISteamGameServer_SteamGameServer012_SetMaxPlayerCount, + unix_ISteamGameServer_SteamGameServer012_SetBotPlayerCount, + unix_ISteamGameServer_SteamGameServer012_SetServerName, + unix_ISteamGameServer_SteamGameServer012_SetMapName, + unix_ISteamGameServer_SteamGameServer012_SetPasswordProtected, + unix_ISteamGameServer_SteamGameServer012_SetSpectatorPort, + unix_ISteamGameServer_SteamGameServer012_SetSpectatorServerName, + unix_ISteamGameServer_SteamGameServer012_ClearAllKeyValues, + unix_ISteamGameServer_SteamGameServer012_SetKeyValue, + unix_ISteamGameServer_SteamGameServer012_SetGameTags, + unix_ISteamGameServer_SteamGameServer012_SetGameData, + unix_ISteamGameServer_SteamGameServer012_SetRegion, + unix_ISteamGameServer_SteamGameServer012_SendUserConnectAndAuthenticate, + unix_ISteamGameServer_SteamGameServer012_CreateUnauthenticatedUserConnection, + unix_ISteamGameServer_SteamGameServer012_SendUserDisconnect, + unix_ISteamGameServer_SteamGameServer012_BUpdateUserData, + unix_ISteamGameServer_SteamGameServer012_GetAuthSessionTicket, + unix_ISteamGameServer_SteamGameServer012_BeginAuthSession, + unix_ISteamGameServer_SteamGameServer012_EndAuthSession, + unix_ISteamGameServer_SteamGameServer012_CancelAuthTicket, + unix_ISteamGameServer_SteamGameServer012_UserHasLicenseForApp, + unix_ISteamGameServer_SteamGameServer012_RequestUserGroupStatus, + unix_ISteamGameServer_SteamGameServer012_GetGameplayStats, + unix_ISteamGameServer_SteamGameServer012_GetServerReputation, + unix_ISteamGameServer_SteamGameServer012_GetPublicIP, + unix_ISteamGameServer_SteamGameServer012_HandleIncomingPacket, + unix_ISteamGameServer_SteamGameServer012_GetNextOutgoingPacket, + unix_ISteamGameServer_SteamGameServer012_EnableHeartbeats, + unix_ISteamGameServer_SteamGameServer012_SetHeartbeatInterval, + unix_ISteamGameServer_SteamGameServer012_ForceHeartbeat, + unix_ISteamGameServer_SteamGameServer012_AssociateWithClan, + unix_ISteamGameServer_SteamGameServer012_ComputeNewPlayerCompatibility, + unix_ISteamGameServer_SteamGameServer013_InitGameServer, + unix_ISteamGameServer_SteamGameServer013_SetProduct, + unix_ISteamGameServer_SteamGameServer013_SetGameDescription, + unix_ISteamGameServer_SteamGameServer013_SetModDir, + unix_ISteamGameServer_SteamGameServer013_SetDedicatedServer, + unix_ISteamGameServer_SteamGameServer013_LogOn, + unix_ISteamGameServer_SteamGameServer013_LogOnAnonymous, + unix_ISteamGameServer_SteamGameServer013_LogOff, + unix_ISteamGameServer_SteamGameServer013_BLoggedOn, + unix_ISteamGameServer_SteamGameServer013_BSecure, + unix_ISteamGameServer_SteamGameServer013_GetSteamID, + unix_ISteamGameServer_SteamGameServer013_WasRestartRequested, + unix_ISteamGameServer_SteamGameServer013_SetMaxPlayerCount, + unix_ISteamGameServer_SteamGameServer013_SetBotPlayerCount, + unix_ISteamGameServer_SteamGameServer013_SetServerName, + unix_ISteamGameServer_SteamGameServer013_SetMapName, + unix_ISteamGameServer_SteamGameServer013_SetPasswordProtected, + unix_ISteamGameServer_SteamGameServer013_SetSpectatorPort, + unix_ISteamGameServer_SteamGameServer013_SetSpectatorServerName, + unix_ISteamGameServer_SteamGameServer013_ClearAllKeyValues, + unix_ISteamGameServer_SteamGameServer013_SetKeyValue, + unix_ISteamGameServer_SteamGameServer013_SetGameTags, + unix_ISteamGameServer_SteamGameServer013_SetGameData, + unix_ISteamGameServer_SteamGameServer013_SetRegion, + unix_ISteamGameServer_SteamGameServer013_SendUserConnectAndAuthenticate, + unix_ISteamGameServer_SteamGameServer013_CreateUnauthenticatedUserConnection, + unix_ISteamGameServer_SteamGameServer013_SendUserDisconnect, + unix_ISteamGameServer_SteamGameServer013_BUpdateUserData, + unix_ISteamGameServer_SteamGameServer013_GetAuthSessionTicket, + unix_ISteamGameServer_SteamGameServer013_BeginAuthSession, + unix_ISteamGameServer_SteamGameServer013_EndAuthSession, + unix_ISteamGameServer_SteamGameServer013_CancelAuthTicket, + unix_ISteamGameServer_SteamGameServer013_UserHasLicenseForApp, + unix_ISteamGameServer_SteamGameServer013_RequestUserGroupStatus, + unix_ISteamGameServer_SteamGameServer013_GetGameplayStats, + unix_ISteamGameServer_SteamGameServer013_GetServerReputation, + unix_ISteamGameServer_SteamGameServer013_GetPublicIP, + unix_ISteamGameServer_SteamGameServer013_HandleIncomingPacket, + unix_ISteamGameServer_SteamGameServer013_GetNextOutgoingPacket, + unix_ISteamGameServer_SteamGameServer013_EnableHeartbeats, + unix_ISteamGameServer_SteamGameServer013_SetHeartbeatInterval, + unix_ISteamGameServer_SteamGameServer013_ForceHeartbeat, + unix_ISteamGameServer_SteamGameServer013_AssociateWithClan, + unix_ISteamGameServer_SteamGameServer013_ComputeNewPlayerCompatibility, + unix_ISteamGameServer_SteamGameServer014_InitGameServer, + unix_ISteamGameServer_SteamGameServer014_SetProduct, + unix_ISteamGameServer_SteamGameServer014_SetGameDescription, + unix_ISteamGameServer_SteamGameServer014_SetModDir, + unix_ISteamGameServer_SteamGameServer014_SetDedicatedServer, + unix_ISteamGameServer_SteamGameServer014_LogOn, + unix_ISteamGameServer_SteamGameServer014_LogOnAnonymous, + unix_ISteamGameServer_SteamGameServer014_LogOff, + unix_ISteamGameServer_SteamGameServer014_BLoggedOn, + unix_ISteamGameServer_SteamGameServer014_BSecure, + unix_ISteamGameServer_SteamGameServer014_GetSteamID, + unix_ISteamGameServer_SteamGameServer014_WasRestartRequested, + unix_ISteamGameServer_SteamGameServer014_SetMaxPlayerCount, + unix_ISteamGameServer_SteamGameServer014_SetBotPlayerCount, + unix_ISteamGameServer_SteamGameServer014_SetServerName, + unix_ISteamGameServer_SteamGameServer014_SetMapName, + unix_ISteamGameServer_SteamGameServer014_SetPasswordProtected, + unix_ISteamGameServer_SteamGameServer014_SetSpectatorPort, + unix_ISteamGameServer_SteamGameServer014_SetSpectatorServerName, + unix_ISteamGameServer_SteamGameServer014_ClearAllKeyValues, + unix_ISteamGameServer_SteamGameServer014_SetKeyValue, + unix_ISteamGameServer_SteamGameServer014_SetGameTags, + unix_ISteamGameServer_SteamGameServer014_SetGameData, + unix_ISteamGameServer_SteamGameServer014_SetRegion, + unix_ISteamGameServer_SteamGameServer014_SetAdvertiseServerActive, + unix_ISteamGameServer_SteamGameServer014_GetAuthSessionTicket, + unix_ISteamGameServer_SteamGameServer014_BeginAuthSession, + unix_ISteamGameServer_SteamGameServer014_EndAuthSession, + unix_ISteamGameServer_SteamGameServer014_CancelAuthTicket, + unix_ISteamGameServer_SteamGameServer014_UserHasLicenseForApp, + unix_ISteamGameServer_SteamGameServer014_RequestUserGroupStatus, + unix_ISteamGameServer_SteamGameServer014_GetGameplayStats, + unix_ISteamGameServer_SteamGameServer014_GetServerReputation, + unix_ISteamGameServer_SteamGameServer014_GetPublicIP, + unix_ISteamGameServer_SteamGameServer014_HandleIncomingPacket, + unix_ISteamGameServer_SteamGameServer014_GetNextOutgoingPacket, + unix_ISteamGameServer_SteamGameServer014_AssociateWithClan, + unix_ISteamGameServer_SteamGameServer014_ComputeNewPlayerCompatibility, + unix_ISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEPRECATED, + unix_ISteamGameServer_SteamGameServer014_CreateUnauthenticatedUserConnection, + unix_ISteamGameServer_SteamGameServer014_SendUserDisconnect_DEPRECATED, + unix_ISteamGameServer_SteamGameServer014_BUpdateUserData, + unix_ISteamGameServer_SteamGameServer014_SetMasterServerHeartbeatInterval_DEPRECATED, + unix_ISteamGameServer_SteamGameServer014_ForceMasterServerHeartbeat_DEPRECATED, + unix_ISteamGameServer_SteamGameServer015_InitGameServer, + unix_ISteamGameServer_SteamGameServer015_SetProduct, + unix_ISteamGameServer_SteamGameServer015_SetGameDescription, + unix_ISteamGameServer_SteamGameServer015_SetModDir, + unix_ISteamGameServer_SteamGameServer015_SetDedicatedServer, + unix_ISteamGameServer_SteamGameServer015_LogOn, + unix_ISteamGameServer_SteamGameServer015_LogOnAnonymous, + unix_ISteamGameServer_SteamGameServer015_LogOff, + unix_ISteamGameServer_SteamGameServer015_BLoggedOn, + unix_ISteamGameServer_SteamGameServer015_BSecure, + unix_ISteamGameServer_SteamGameServer015_GetSteamID, + unix_ISteamGameServer_SteamGameServer015_WasRestartRequested, + unix_ISteamGameServer_SteamGameServer015_SetMaxPlayerCount, + unix_ISteamGameServer_SteamGameServer015_SetBotPlayerCount, + unix_ISteamGameServer_SteamGameServer015_SetServerName, + unix_ISteamGameServer_SteamGameServer015_SetMapName, + unix_ISteamGameServer_SteamGameServer015_SetPasswordProtected, + unix_ISteamGameServer_SteamGameServer015_SetSpectatorPort, + unix_ISteamGameServer_SteamGameServer015_SetSpectatorServerName, + unix_ISteamGameServer_SteamGameServer015_ClearAllKeyValues, + unix_ISteamGameServer_SteamGameServer015_SetKeyValue, + unix_ISteamGameServer_SteamGameServer015_SetGameTags, + unix_ISteamGameServer_SteamGameServer015_SetGameData, + unix_ISteamGameServer_SteamGameServer015_SetRegion, + unix_ISteamGameServer_SteamGameServer015_SetAdvertiseServerActive, + unix_ISteamGameServer_SteamGameServer015_GetAuthSessionTicket, + unix_ISteamGameServer_SteamGameServer015_BeginAuthSession, + unix_ISteamGameServer_SteamGameServer015_EndAuthSession, + unix_ISteamGameServer_SteamGameServer015_CancelAuthTicket, + unix_ISteamGameServer_SteamGameServer015_UserHasLicenseForApp, + unix_ISteamGameServer_SteamGameServer015_RequestUserGroupStatus, + unix_ISteamGameServer_SteamGameServer015_GetGameplayStats, + unix_ISteamGameServer_SteamGameServer015_GetServerReputation, + unix_ISteamGameServer_SteamGameServer015_GetPublicIP, + unix_ISteamGameServer_SteamGameServer015_HandleIncomingPacket, + unix_ISteamGameServer_SteamGameServer015_GetNextOutgoingPacket, + unix_ISteamGameServer_SteamGameServer015_AssociateWithClan, + unix_ISteamGameServer_SteamGameServer015_ComputeNewPlayerCompatibility, + unix_ISteamGameServer_SteamGameServer015_SendUserConnectAndAuthenticate_DEPRECATED, + unix_ISteamGameServer_SteamGameServer015_CreateUnauthenticatedUserConnection, + unix_ISteamGameServer_SteamGameServer015_SendUserDisconnect_DEPRECATED, + unix_ISteamGameServer_SteamGameServer015_BUpdateUserData, + unix_ISteamGameServer_SteamGameServer015_SetMasterServerHeartbeatInterval_DEPRECATED, + unix_ISteamGameServer_SteamGameServer015_ForceMasterServerHeartbeat_DEPRECATED, + unix_ISteamGameServerStats_SteamGameServerStats001_RequestUserStats, + unix_ISteamGameServerStats_SteamGameServerStats001_GetUserStat, + unix_ISteamGameServerStats_SteamGameServerStats001_GetUserStat_2, + unix_ISteamGameServerStats_SteamGameServerStats001_GetUserAchievement, + unix_ISteamGameServerStats_SteamGameServerStats001_SetUserStat, + unix_ISteamGameServerStats_SteamGameServerStats001_SetUserStat_2, + unix_ISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRateStat, + unix_ISteamGameServerStats_SteamGameServerStats001_SetUserAchievement, + unix_ISteamGameServerStats_SteamGameServerStats001_ClearUserAchievement, + unix_ISteamGameServerStats_SteamGameServerStats001_StoreUserStats, + unix_ISteamGameStats_SteamGameStats001_GetNewSession, + unix_ISteamGameStats_SteamGameStats001_EndSession, + unix_ISteamGameStats_SteamGameStats001_AddSessionAttributeInt, + unix_ISteamGameStats_SteamGameStats001_AddSessionAttributeString, + unix_ISteamGameStats_SteamGameStats001_AddSessionAttributeFloat, + unix_ISteamGameStats_SteamGameStats001_AddNewRow, + unix_ISteamGameStats_SteamGameStats001_CommitRow, + unix_ISteamGameStats_SteamGameStats001_CommitOutstandingRows, + unix_ISteamGameStats_SteamGameStats001_AddRowAttributeInt, + unix_ISteamGameStats_SteamGameStats001_AddRowAtributeString, + unix_ISteamGameStats_SteamGameStats001_AddRowAttributeFloat, + unix_ISteamGameStats_SteamGameStats001_AddSessionAttributeInt64, + unix_ISteamGameStats_SteamGameStats001_AddRowAttributeInt64, + unix_ISteamInput_SteamInput001_Init, + unix_ISteamInput_SteamInput001_Shutdown, + unix_ISteamInput_SteamInput001_RunFrame, + unix_ISteamInput_SteamInput001_GetConnectedControllers, + unix_ISteamInput_SteamInput001_GetActionSetHandle, + unix_ISteamInput_SteamInput001_ActivateActionSet, + unix_ISteamInput_SteamInput001_GetCurrentActionSet, + unix_ISteamInput_SteamInput001_ActivateActionSetLayer, + unix_ISteamInput_SteamInput001_DeactivateActionSetLayer, + unix_ISteamInput_SteamInput001_DeactivateAllActionSetLayers, + unix_ISteamInput_SteamInput001_GetActiveActionSetLayers, + unix_ISteamInput_SteamInput001_GetDigitalActionHandle, + unix_ISteamInput_SteamInput001_GetDigitalActionData, + unix_ISteamInput_SteamInput001_GetDigitalActionOrigins, + unix_ISteamInput_SteamInput001_GetAnalogActionHandle, + unix_ISteamInput_SteamInput001_GetAnalogActionData, + unix_ISteamInput_SteamInput001_GetAnalogActionOrigins, + unix_ISteamInput_SteamInput001_GetGlyphForActionOrigin, + unix_ISteamInput_SteamInput001_GetStringForActionOrigin, + unix_ISteamInput_SteamInput001_StopAnalogActionMomentum, + unix_ISteamInput_SteamInput001_GetMotionData, + unix_ISteamInput_SteamInput001_TriggerVibration, + unix_ISteamInput_SteamInput001_SetLEDColor, + unix_ISteamInput_SteamInput001_TriggerHapticPulse, + unix_ISteamInput_SteamInput001_TriggerRepeatedHapticPulse, + unix_ISteamInput_SteamInput001_ShowBindingPanel, + unix_ISteamInput_SteamInput001_GetInputTypeForHandle, + unix_ISteamInput_SteamInput001_GetControllerForGamepadIndex, + unix_ISteamInput_SteamInput001_GetGamepadIndexForController, + unix_ISteamInput_SteamInput001_GetStringForXboxOrigin, + unix_ISteamInput_SteamInput001_GetGlyphForXboxOrigin, + unix_ISteamInput_SteamInput001_GetActionOriginFromXboxOrigin, + unix_ISteamInput_SteamInput001_TranslateActionOrigin, + unix_ISteamInput_SteamInput001_GetDeviceBindingRevision, + unix_ISteamInput_SteamInput001_GetRemotePlaySessionID, + unix_ISteamInput_SteamInput002_Init, + unix_ISteamInput_SteamInput002_Shutdown, + unix_ISteamInput_SteamInput002_RunFrame, + unix_ISteamInput_SteamInput002_GetConnectedControllers, + unix_ISteamInput_SteamInput002_GetActionSetHandle, + unix_ISteamInput_SteamInput002_ActivateActionSet, + unix_ISteamInput_SteamInput002_GetCurrentActionSet, + unix_ISteamInput_SteamInput002_ActivateActionSetLayer, + unix_ISteamInput_SteamInput002_DeactivateActionSetLayer, + unix_ISteamInput_SteamInput002_DeactivateAllActionSetLayers, + unix_ISteamInput_SteamInput002_GetActiveActionSetLayers, + unix_ISteamInput_SteamInput002_GetDigitalActionHandle, + unix_ISteamInput_SteamInput002_GetDigitalActionData, + unix_ISteamInput_SteamInput002_GetDigitalActionOrigins, + unix_ISteamInput_SteamInput002_GetAnalogActionHandle, + unix_ISteamInput_SteamInput002_GetAnalogActionData, + unix_ISteamInput_SteamInput002_GetAnalogActionOrigins, + unix_ISteamInput_SteamInput002_GetGlyphForActionOrigin, + unix_ISteamInput_SteamInput002_GetStringForActionOrigin, + unix_ISteamInput_SteamInput002_StopAnalogActionMomentum, + unix_ISteamInput_SteamInput002_GetMotionData, + unix_ISteamInput_SteamInput002_TriggerVibration, + unix_ISteamInput_SteamInput002_SetLEDColor, + unix_ISteamInput_SteamInput002_TriggerHapticPulse, + unix_ISteamInput_SteamInput002_TriggerRepeatedHapticPulse, + unix_ISteamInput_SteamInput002_ShowBindingPanel, + unix_ISteamInput_SteamInput002_GetInputTypeForHandle, + unix_ISteamInput_SteamInput002_GetControllerForGamepadIndex, + unix_ISteamInput_SteamInput002_GetGamepadIndexForController, + unix_ISteamInput_SteamInput002_GetStringForXboxOrigin, + unix_ISteamInput_SteamInput002_GetGlyphForXboxOrigin, + unix_ISteamInput_SteamInput002_GetActionOriginFromXboxOrigin, + unix_ISteamInput_SteamInput002_TranslateActionOrigin, + unix_ISteamInput_SteamInput002_GetDeviceBindingRevision, + unix_ISteamInput_SteamInput002_GetRemotePlaySessionID, + unix_ISteamInput_SteamInput005_Init, + unix_ISteamInput_SteamInput005_Shutdown, + unix_ISteamInput_SteamInput005_SetInputActionManifestFilePath, + unix_ISteamInput_SteamInput005_RunFrame, + unix_ISteamInput_SteamInput005_BWaitForData, + unix_ISteamInput_SteamInput005_BNewDataAvailable, + unix_ISteamInput_SteamInput005_GetConnectedControllers, + unix_ISteamInput_SteamInput005_EnableDeviceCallbacks, + unix_ISteamInput_SteamInput005_EnableActionEventCallbacks, + unix_ISteamInput_SteamInput005_GetActionSetHandle, + unix_ISteamInput_SteamInput005_ActivateActionSet, + unix_ISteamInput_SteamInput005_GetCurrentActionSet, + unix_ISteamInput_SteamInput005_ActivateActionSetLayer, + unix_ISteamInput_SteamInput005_DeactivateActionSetLayer, + unix_ISteamInput_SteamInput005_DeactivateAllActionSetLayers, + unix_ISteamInput_SteamInput005_GetActiveActionSetLayers, + unix_ISteamInput_SteamInput005_GetDigitalActionHandle, + unix_ISteamInput_SteamInput005_GetDigitalActionData, + unix_ISteamInput_SteamInput005_GetDigitalActionOrigins, + unix_ISteamInput_SteamInput005_GetStringForDigitalActionName, + unix_ISteamInput_SteamInput005_GetAnalogActionHandle, + unix_ISteamInput_SteamInput005_GetAnalogActionData, + unix_ISteamInput_SteamInput005_GetAnalogActionOrigins, + unix_ISteamInput_SteamInput005_GetGlyphPNGForActionOrigin, + unix_ISteamInput_SteamInput005_GetGlyphSVGForActionOrigin, + unix_ISteamInput_SteamInput005_GetGlyphForActionOrigin_Legacy, + unix_ISteamInput_SteamInput005_GetStringForActionOrigin, + unix_ISteamInput_SteamInput005_GetStringForAnalogActionName, + unix_ISteamInput_SteamInput005_StopAnalogActionMomentum, + unix_ISteamInput_SteamInput005_GetMotionData, + unix_ISteamInput_SteamInput005_TriggerVibration, + unix_ISteamInput_SteamInput005_TriggerVibrationExtended, + unix_ISteamInput_SteamInput005_TriggerSimpleHapticEvent, + unix_ISteamInput_SteamInput005_SetLEDColor, + unix_ISteamInput_SteamInput005_Legacy_TriggerHapticPulse, + unix_ISteamInput_SteamInput005_Legacy_TriggerRepeatedHapticPulse, + unix_ISteamInput_SteamInput005_ShowBindingPanel, + unix_ISteamInput_SteamInput005_GetInputTypeForHandle, + unix_ISteamInput_SteamInput005_GetControllerForGamepadIndex, + unix_ISteamInput_SteamInput005_GetGamepadIndexForController, + unix_ISteamInput_SteamInput005_GetStringForXboxOrigin, + unix_ISteamInput_SteamInput005_GetGlyphForXboxOrigin, + unix_ISteamInput_SteamInput005_GetActionOriginFromXboxOrigin, + unix_ISteamInput_SteamInput005_TranslateActionOrigin, + unix_ISteamInput_SteamInput005_GetDeviceBindingRevision, + unix_ISteamInput_SteamInput005_GetRemotePlaySessionID, + unix_ISteamInput_SteamInput005_GetSessionInputConfigurationSettings, + unix_ISteamInput_SteamInput006_Init, + unix_ISteamInput_SteamInput006_Shutdown, + unix_ISteamInput_SteamInput006_SetInputActionManifestFilePath, + unix_ISteamInput_SteamInput006_RunFrame, + unix_ISteamInput_SteamInput006_BWaitForData, + unix_ISteamInput_SteamInput006_BNewDataAvailable, + unix_ISteamInput_SteamInput006_GetConnectedControllers, + unix_ISteamInput_SteamInput006_EnableDeviceCallbacks, + unix_ISteamInput_SteamInput006_EnableActionEventCallbacks, + unix_ISteamInput_SteamInput006_GetActionSetHandle, + unix_ISteamInput_SteamInput006_ActivateActionSet, + unix_ISteamInput_SteamInput006_GetCurrentActionSet, + unix_ISteamInput_SteamInput006_ActivateActionSetLayer, + unix_ISteamInput_SteamInput006_DeactivateActionSetLayer, + unix_ISteamInput_SteamInput006_DeactivateAllActionSetLayers, + unix_ISteamInput_SteamInput006_GetActiveActionSetLayers, + unix_ISteamInput_SteamInput006_GetDigitalActionHandle, + unix_ISteamInput_SteamInput006_GetDigitalActionData, + unix_ISteamInput_SteamInput006_GetDigitalActionOrigins, + unix_ISteamInput_SteamInput006_GetStringForDigitalActionName, + unix_ISteamInput_SteamInput006_GetAnalogActionHandle, + unix_ISteamInput_SteamInput006_GetAnalogActionData, + unix_ISteamInput_SteamInput006_GetAnalogActionOrigins, + unix_ISteamInput_SteamInput006_GetGlyphPNGForActionOrigin, + unix_ISteamInput_SteamInput006_GetGlyphSVGForActionOrigin, + unix_ISteamInput_SteamInput006_GetGlyphForActionOrigin_Legacy, + unix_ISteamInput_SteamInput006_GetStringForActionOrigin, + unix_ISteamInput_SteamInput006_GetStringForAnalogActionName, + unix_ISteamInput_SteamInput006_StopAnalogActionMomentum, + unix_ISteamInput_SteamInput006_GetMotionData, + unix_ISteamInput_SteamInput006_TriggerVibration, + unix_ISteamInput_SteamInput006_TriggerVibrationExtended, + unix_ISteamInput_SteamInput006_TriggerSimpleHapticEvent, + unix_ISteamInput_SteamInput006_SetLEDColor, + unix_ISteamInput_SteamInput006_Legacy_TriggerHapticPulse, + unix_ISteamInput_SteamInput006_Legacy_TriggerRepeatedHapticPulse, + unix_ISteamInput_SteamInput006_ShowBindingPanel, + unix_ISteamInput_SteamInput006_GetInputTypeForHandle, + unix_ISteamInput_SteamInput006_GetControllerForGamepadIndex, + unix_ISteamInput_SteamInput006_GetGamepadIndexForController, + unix_ISteamInput_SteamInput006_GetStringForXboxOrigin, + unix_ISteamInput_SteamInput006_GetGlyphForXboxOrigin, + unix_ISteamInput_SteamInput006_GetActionOriginFromXboxOrigin, + unix_ISteamInput_SteamInput006_TranslateActionOrigin, + unix_ISteamInput_SteamInput006_GetDeviceBindingRevision, + unix_ISteamInput_SteamInput006_GetRemotePlaySessionID, + unix_ISteamInput_SteamInput006_GetSessionInputConfigurationSettings, + unix_ISteamInput_SteamInput006_SetDualSenseTriggerEffect, + unix_ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetActive, + unix_ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetHeartbeatInterval, + unix_ISteamMasterServerUpdater_SteamMasterServerUpdater001_HandleIncomingPacket, + unix_ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNextOutgoingPacket, + unix_ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasicServerData, + unix_ISteamMasterServerUpdater_SteamMasterServerUpdater001_ClearAllKeyValues, + unix_ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetKeyValue, + unix_ISteamMasterServerUpdater_SteamMasterServerUpdater001_NotifyShutdown, + unix_ISteamMasterServerUpdater_SteamMasterServerUpdater001_WasRestartRequested, + unix_ISteamMasterServerUpdater_SteamMasterServerUpdater001_ForceHeartbeat, + unix_ISteamMasterServerUpdater_SteamMasterServerUpdater001_AddMasterServer, + unix_ISteamMasterServerUpdater_SteamMasterServerUpdater001_RemoveMasterServer, + unix_ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNumMasterServers, + unix_ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetMasterServerAddress, + unix_ISteamGameSearch_SteamMatchGameSearch001_AddGameSearchParams, + unix_ISteamGameSearch_SteamMatchGameSearch001_SearchForGameWithLobby, + unix_ISteamGameSearch_SteamMatchGameSearch001_SearchForGameSolo, + unix_ISteamGameSearch_SteamMatchGameSearch001_AcceptGame, + unix_ISteamGameSearch_SteamMatchGameSearch001_DeclineGame, + unix_ISteamGameSearch_SteamMatchGameSearch001_RetrieveConnectionDetails, + unix_ISteamGameSearch_SteamMatchGameSearch001_EndGameSearch, + unix_ISteamGameSearch_SteamMatchGameSearch001_SetGameHostParams, + unix_ISteamGameSearch_SteamMatchGameSearch001_SetConnectionDetails, + unix_ISteamGameSearch_SteamMatchGameSearch001_RequestPlayersForGame, + unix_ISteamGameSearch_SteamMatchGameSearch001_HostConfirmGameStart, + unix_ISteamGameSearch_SteamMatchGameSearch001_CancelRequestPlayersForGame, + unix_ISteamGameSearch_SteamMatchGameSearch001_SubmitPlayerResult, + unix_ISteamGameSearch_SteamMatchGameSearch001_EndGame, + unix_ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGameCount, + unix_ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame, + unix_ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame, + unix_ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame, + unix_ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame2, + unix_ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame2, + unix_ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame2, + unix_ISteamMatchmaking_SteamMatchMaking001_RequestLobbyList, + unix_ISteamMatchmaking_SteamMatchMaking001_GetLobbyByIndex, + unix_ISteamMatchmaking_SteamMatchMaking001_CreateLobby, + unix_ISteamMatchmaking_SteamMatchMaking001_JoinLobby, + unix_ISteamMatchmaking_SteamMatchMaking001_LeaveLobby, + unix_ISteamMatchmaking_SteamMatchMaking001_InviteUserToLobby, + unix_ISteamMatchmaking_SteamMatchMaking001_GetNumLobbyMembers, + unix_ISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberByIndex, + unix_ISteamMatchmaking_SteamMatchMaking001_GetLobbyData, + unix_ISteamMatchmaking_SteamMatchMaking001_SetLobbyData, + unix_ISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberData, + unix_ISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData, + unix_ISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMsg, + unix_ISteamMatchmaking_SteamMatchMaking001_GetLobbyChatEntry, + unix_ISteamMatchmaking_SteamMatchMaking001_RequestLobbyData, + unix_ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGameCount, + unix_ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame, + unix_ISteamMatchmaking_SteamMatchMaking002_AddFavoriteGame, + unix_ISteamMatchmaking_SteamMatchMaking002_RemoveFavoriteGame, + unix_ISteamMatchmaking_SteamMatchMaking002_RequestLobbyList, + unix_ISteamMatchmaking_SteamMatchMaking002_GetLobbyByIndex, + unix_ISteamMatchmaking_SteamMatchMaking002_CreateLobby, + unix_ISteamMatchmaking_SteamMatchMaking002_JoinLobby, + unix_ISteamMatchmaking_SteamMatchMaking002_LeaveLobby, + unix_ISteamMatchmaking_SteamMatchMaking002_InviteUserToLobby, + unix_ISteamMatchmaking_SteamMatchMaking002_GetNumLobbyMembers, + unix_ISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberByIndex, + unix_ISteamMatchmaking_SteamMatchMaking002_GetLobbyData, + unix_ISteamMatchmaking_SteamMatchMaking002_SetLobbyData, + unix_ISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberData, + unix_ISteamMatchmaking_SteamMatchMaking002_SetLobbyMemberData, + unix_ISteamMatchmaking_SteamMatchMaking002_SendLobbyChatMsg, + unix_ISteamMatchmaking_SteamMatchMaking002_GetLobbyChatEntry, + unix_ISteamMatchmaking_SteamMatchMaking002_RequestLobbyData, + unix_ISteamMatchmaking_SteamMatchMaking002_SetLobbyGameServer, + unix_ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGameCount, + unix_ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame, + unix_ISteamMatchmaking_SteamMatchMaking003_AddFavoriteGame, + unix_ISteamMatchmaking_SteamMatchMaking003_RemoveFavoriteGame, + unix_ISteamMatchmaking_SteamMatchMaking003_RequestLobbyList, + unix_ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListFilter, + unix_ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListNumericalFilter, + unix_ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListSlotsAvailableFilter, + unix_ISteamMatchmaking_SteamMatchMaking003_GetLobbyByIndex, + unix_ISteamMatchmaking_SteamMatchMaking003_CreateLobby, + unix_ISteamMatchmaking_SteamMatchMaking003_JoinLobby, + unix_ISteamMatchmaking_SteamMatchMaking003_LeaveLobby, + unix_ISteamMatchmaking_SteamMatchMaking003_InviteUserToLobby, + unix_ISteamMatchmaking_SteamMatchMaking003_GetNumLobbyMembers, + unix_ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberByIndex, + unix_ISteamMatchmaking_SteamMatchMaking003_GetLobbyData, + unix_ISteamMatchmaking_SteamMatchMaking003_SetLobbyData, + unix_ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberData, + unix_ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberData, + unix_ISteamMatchmaking_SteamMatchMaking003_SendLobbyChatMsg, + unix_ISteamMatchmaking_SteamMatchMaking003_GetLobbyChatEntry, + unix_ISteamMatchmaking_SteamMatchMaking003_RequestLobbyData, + unix_ISteamMatchmaking_SteamMatchMaking003_SetLobbyGameServer, + unix_ISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer, + unix_ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberLimit, + unix_ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberLimit, + unix_ISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled, + unix_ISteamMatchmaking_SteamMatchMaking003_RequestFriendsLobbies, + unix_ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGameCount, + unix_ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame, + unix_ISteamMatchmaking_SteamMatchMaking004_AddFavoriteGame, + unix_ISteamMatchmaking_SteamMatchMaking004_RemoveFavoriteGame, + unix_ISteamMatchmaking_SteamMatchMaking004_RequestLobbyList, + unix_ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListFilter, + unix_ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListNumericalFilter, + unix_ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListSlotsAvailableFilter, + unix_ISteamMatchmaking_SteamMatchMaking004_GetLobbyByIndex, + unix_ISteamMatchmaking_SteamMatchMaking004_CreateLobby, + unix_ISteamMatchmaking_SteamMatchMaking004_JoinLobby, + unix_ISteamMatchmaking_SteamMatchMaking004_LeaveLobby, + unix_ISteamMatchmaking_SteamMatchMaking004_InviteUserToLobby, + unix_ISteamMatchmaking_SteamMatchMaking004_GetNumLobbyMembers, + unix_ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberByIndex, + unix_ISteamMatchmaking_SteamMatchMaking004_GetLobbyData, + unix_ISteamMatchmaking_SteamMatchMaking004_SetLobbyData, + unix_ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberData, + unix_ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberData, + unix_ISteamMatchmaking_SteamMatchMaking004_SendLobbyChatMsg, + unix_ISteamMatchmaking_SteamMatchMaking004_GetLobbyChatEntry, + unix_ISteamMatchmaking_SteamMatchMaking004_RequestLobbyData, + unix_ISteamMatchmaking_SteamMatchMaking004_SetLobbyGameServer, + unix_ISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer, + unix_ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberLimit, + unix_ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberLimit, + unix_ISteamMatchmaking_SteamMatchMaking004_RequestFriendsLobbies, + unix_ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGameCount, + unix_ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame, + unix_ISteamMatchmaking_SteamMatchMaking005_AddFavoriteGame, + unix_ISteamMatchmaking_SteamMatchMaking005_RemoveFavoriteGame, + unix_ISteamMatchmaking_SteamMatchMaking005_RequestLobbyList, + unix_ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListFilter, + unix_ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNumericalFilter, + unix_ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListSlotsAvailableFilter, + unix_ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNearValueFilter, + unix_ISteamMatchmaking_SteamMatchMaking005_GetLobbyByIndex, + unix_ISteamMatchmaking_SteamMatchMaking005_CreateLobby, + unix_ISteamMatchmaking_SteamMatchMaking005_JoinLobby, + unix_ISteamMatchmaking_SteamMatchMaking005_LeaveLobby, + unix_ISteamMatchmaking_SteamMatchMaking005_InviteUserToLobby, + unix_ISteamMatchmaking_SteamMatchMaking005_GetNumLobbyMembers, + unix_ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberByIndex, + unix_ISteamMatchmaking_SteamMatchMaking005_GetLobbyData, + unix_ISteamMatchmaking_SteamMatchMaking005_SetLobbyData, + unix_ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberData, + unix_ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberData, + unix_ISteamMatchmaking_SteamMatchMaking005_SendLobbyChatMsg, + unix_ISteamMatchmaking_SteamMatchMaking005_GetLobbyChatEntry, + unix_ISteamMatchmaking_SteamMatchMaking005_RequestLobbyData, + unix_ISteamMatchmaking_SteamMatchMaking005_SetLobbyGameServer, + unix_ISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer, + unix_ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberLimit, + unix_ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberLimit, + unix_ISteamMatchmaking_SteamMatchMaking005_RequestFriendsLobbies, + unix_ISteamMatchmaking_SteamMatchMaking005_SetLobbyType, + unix_ISteamMatchmaking_SteamMatchMaking005_GetLobbyOwner, + unix_ISteamMatchmaking_SteamMatchMaking005_GetLobbyDistance, + unix_ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGameCount, + unix_ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame, + unix_ISteamMatchmaking_SteamMatchMaking006_AddFavoriteGame, + unix_ISteamMatchmaking_SteamMatchMaking006_RemoveFavoriteGame, + unix_ISteamMatchmaking_SteamMatchMaking006_RequestLobbyList, + unix_ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListFilter, + unix_ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNumericalFilter, + unix_ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNearValueFilter, + unix_ISteamMatchmaking_SteamMatchMaking006_GetLobbyByIndex, + unix_ISteamMatchmaking_SteamMatchMaking006_CreateLobby, + unix_ISteamMatchmaking_SteamMatchMaking006_JoinLobby, + unix_ISteamMatchmaking_SteamMatchMaking006_LeaveLobby, + unix_ISteamMatchmaking_SteamMatchMaking006_InviteUserToLobby, + unix_ISteamMatchmaking_SteamMatchMaking006_GetNumLobbyMembers, + unix_ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberByIndex, + unix_ISteamMatchmaking_SteamMatchMaking006_GetLobbyData, + unix_ISteamMatchmaking_SteamMatchMaking006_SetLobbyData, + unix_ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberData, + unix_ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberData, + unix_ISteamMatchmaking_SteamMatchMaking006_SendLobbyChatMsg, + unix_ISteamMatchmaking_SteamMatchMaking006_GetLobbyChatEntry, + unix_ISteamMatchmaking_SteamMatchMaking006_RequestLobbyData, + unix_ISteamMatchmaking_SteamMatchMaking006_SetLobbyGameServer, + unix_ISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer, + unix_ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberLimit, + unix_ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberLimit, + unix_ISteamMatchmaking_SteamMatchMaking006_SetLobbyType, + unix_ISteamMatchmaking_SteamMatchMaking006_GetLobbyOwner, + unix_ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGameCount, + unix_ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame, + unix_ISteamMatchmaking_SteamMatchMaking007_AddFavoriteGame, + unix_ISteamMatchmaking_SteamMatchMaking007_RemoveFavoriteGame, + unix_ISteamMatchmaking_SteamMatchMaking007_RequestLobbyList, + unix_ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListStringFilter, + unix_ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNumericalFilter, + unix_ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNearValueFilter, + unix_ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListFilterSlotsAvailable, + unix_ISteamMatchmaking_SteamMatchMaking007_GetLobbyByIndex, + unix_ISteamMatchmaking_SteamMatchMaking007_CreateLobby, + unix_ISteamMatchmaking_SteamMatchMaking007_JoinLobby, + unix_ISteamMatchmaking_SteamMatchMaking007_LeaveLobby, + unix_ISteamMatchmaking_SteamMatchMaking007_InviteUserToLobby, + unix_ISteamMatchmaking_SteamMatchMaking007_GetNumLobbyMembers, + unix_ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberByIndex, + unix_ISteamMatchmaking_SteamMatchMaking007_GetLobbyData, + unix_ISteamMatchmaking_SteamMatchMaking007_SetLobbyData, + unix_ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataCount, + unix_ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex, + unix_ISteamMatchmaking_SteamMatchMaking007_DeleteLobbyData, + unix_ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberData, + unix_ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberData, + unix_ISteamMatchmaking_SteamMatchMaking007_SendLobbyChatMsg, + unix_ISteamMatchmaking_SteamMatchMaking007_GetLobbyChatEntry, + unix_ISteamMatchmaking_SteamMatchMaking007_RequestLobbyData, + unix_ISteamMatchmaking_SteamMatchMaking007_SetLobbyGameServer, + unix_ISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer, + unix_ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberLimit, + unix_ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberLimit, + unix_ISteamMatchmaking_SteamMatchMaking007_SetLobbyType, + unix_ISteamMatchmaking_SteamMatchMaking007_SetLobbyJoinable, + unix_ISteamMatchmaking_SteamMatchMaking007_GetLobbyOwner, + unix_ISteamMatchmaking_SteamMatchMaking007_SetLobbyOwner, + unix_ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGameCount, + unix_ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame, + unix_ISteamMatchmaking_SteamMatchMaking008_AddFavoriteGame, + unix_ISteamMatchmaking_SteamMatchMaking008_RemoveFavoriteGame, + unix_ISteamMatchmaking_SteamMatchMaking008_RequestLobbyList, + unix_ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListStringFilter, + unix_ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNumericalFilter, + unix_ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNearValueFilter, + unix_ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListFilterSlotsAvailable, + unix_ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListDistanceFilter, + unix_ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListResultCountFilter, + unix_ISteamMatchmaking_SteamMatchMaking008_GetLobbyByIndex, + unix_ISteamMatchmaking_SteamMatchMaking008_CreateLobby, + unix_ISteamMatchmaking_SteamMatchMaking008_JoinLobby, + unix_ISteamMatchmaking_SteamMatchMaking008_LeaveLobby, + unix_ISteamMatchmaking_SteamMatchMaking008_InviteUserToLobby, + unix_ISteamMatchmaking_SteamMatchMaking008_GetNumLobbyMembers, + unix_ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberByIndex, + unix_ISteamMatchmaking_SteamMatchMaking008_GetLobbyData, + unix_ISteamMatchmaking_SteamMatchMaking008_SetLobbyData, + unix_ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataCount, + unix_ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex, + unix_ISteamMatchmaking_SteamMatchMaking008_DeleteLobbyData, + unix_ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberData, + unix_ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberData, + unix_ISteamMatchmaking_SteamMatchMaking008_SendLobbyChatMsg, + unix_ISteamMatchmaking_SteamMatchMaking008_GetLobbyChatEntry, + unix_ISteamMatchmaking_SteamMatchMaking008_RequestLobbyData, + unix_ISteamMatchmaking_SteamMatchMaking008_SetLobbyGameServer, + unix_ISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer, + unix_ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberLimit, + unix_ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberLimit, + unix_ISteamMatchmaking_SteamMatchMaking008_SetLobbyType, + unix_ISteamMatchmaking_SteamMatchMaking008_SetLobbyJoinable, + unix_ISteamMatchmaking_SteamMatchMaking008_GetLobbyOwner, + unix_ISteamMatchmaking_SteamMatchMaking008_SetLobbyOwner, + unix_ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGameCount, + unix_ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame, + unix_ISteamMatchmaking_SteamMatchMaking009_AddFavoriteGame, + unix_ISteamMatchmaking_SteamMatchMaking009_RemoveFavoriteGame, + unix_ISteamMatchmaking_SteamMatchMaking009_RequestLobbyList, + unix_ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListStringFilter, + unix_ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNumericalFilter, + unix_ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNearValueFilter, + unix_ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListFilterSlotsAvailable, + unix_ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListDistanceFilter, + unix_ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListResultCountFilter, + unix_ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListCompatibleMembersFilter, + unix_ISteamMatchmaking_SteamMatchMaking009_GetLobbyByIndex, + unix_ISteamMatchmaking_SteamMatchMaking009_CreateLobby, + unix_ISteamMatchmaking_SteamMatchMaking009_JoinLobby, + unix_ISteamMatchmaking_SteamMatchMaking009_LeaveLobby, + unix_ISteamMatchmaking_SteamMatchMaking009_InviteUserToLobby, + unix_ISteamMatchmaking_SteamMatchMaking009_GetNumLobbyMembers, + unix_ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberByIndex, + unix_ISteamMatchmaking_SteamMatchMaking009_GetLobbyData, + unix_ISteamMatchmaking_SteamMatchMaking009_SetLobbyData, + unix_ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataCount, + unix_ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex, + unix_ISteamMatchmaking_SteamMatchMaking009_DeleteLobbyData, + unix_ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberData, + unix_ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberData, + unix_ISteamMatchmaking_SteamMatchMaking009_SendLobbyChatMsg, + unix_ISteamMatchmaking_SteamMatchMaking009_GetLobbyChatEntry, + unix_ISteamMatchmaking_SteamMatchMaking009_RequestLobbyData, + unix_ISteamMatchmaking_SteamMatchMaking009_SetLobbyGameServer, + unix_ISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer, + unix_ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberLimit, + unix_ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberLimit, + unix_ISteamMatchmaking_SteamMatchMaking009_SetLobbyType, + unix_ISteamMatchmaking_SteamMatchMaking009_SetLobbyJoinable, + unix_ISteamMatchmaking_SteamMatchMaking009_GetLobbyOwner, + unix_ISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner, + unix_ISteamMatchmaking_SteamMatchMaking009_SetLinkedLobby, + unix_ISteamMatchmakingServers_SteamMatchMakingServers001_RequestInternetServerList, + unix_ISteamMatchmakingServers_SteamMatchMakingServers001_RequestLANServerList, + unix_ISteamMatchmakingServers_SteamMatchMakingServers001_RequestFriendsServerList, + unix_ISteamMatchmakingServers_SteamMatchMakingServers001_RequestFavoritesServerList, + unix_ISteamMatchmakingServers_SteamMatchMakingServers001_RequestHistoryServerList, + unix_ISteamMatchmakingServers_SteamMatchMakingServers001_RequestSpectatorServerList, + unix_ISteamMatchmakingServers_SteamMatchMakingServers001_GetServerDetails, + unix_ISteamMatchmakingServers_SteamMatchMakingServers001_CancelQuery, + unix_ISteamMatchmakingServers_SteamMatchMakingServers001_RefreshQuery, + unix_ISteamMatchmakingServers_SteamMatchMakingServers001_IsRefreshing, + unix_ISteamMatchmakingServers_SteamMatchMakingServers001_GetServerCount, + unix_ISteamMatchmakingServers_SteamMatchMakingServers001_RefreshServer, + unix_ISteamMatchmakingServers_SteamMatchMakingServers001_PingServer, + unix_ISteamMatchmakingServers_SteamMatchMakingServers001_PlayerDetails, + unix_ISteamMatchmakingServers_SteamMatchMakingServers001_ServerRules, + unix_ISteamMatchmakingServers_SteamMatchMakingServers001_CancelServerQuery, + unix_ISteamMatchmakingServers_SteamMatchMakingServers002_RequestInternetServerList, + unix_ISteamMatchmakingServers_SteamMatchMakingServers002_RequestLANServerList, + unix_ISteamMatchmakingServers_SteamMatchMakingServers002_RequestFriendsServerList, + unix_ISteamMatchmakingServers_SteamMatchMakingServers002_RequestFavoritesServerList, + unix_ISteamMatchmakingServers_SteamMatchMakingServers002_RequestHistoryServerList, + unix_ISteamMatchmakingServers_SteamMatchMakingServers002_RequestSpectatorServerList, + unix_ISteamMatchmakingServers_SteamMatchMakingServers002_ReleaseRequest, + unix_ISteamMatchmakingServers_SteamMatchMakingServers002_GetServerDetails, + unix_ISteamMatchmakingServers_SteamMatchMakingServers002_CancelQuery, + unix_ISteamMatchmakingServers_SteamMatchMakingServers002_RefreshQuery, + unix_ISteamMatchmakingServers_SteamMatchMakingServers002_IsRefreshing, + unix_ISteamMatchmakingServers_SteamMatchMakingServers002_GetServerCount, + unix_ISteamMatchmakingServers_SteamMatchMakingServers002_RefreshServer, + unix_ISteamMatchmakingServers_SteamMatchMakingServers002_PingServer, + unix_ISteamMatchmakingServers_SteamMatchMakingServers002_PlayerDetails, + unix_ISteamMatchmakingServers_SteamMatchMakingServers002_ServerRules, + unix_ISteamMatchmakingServers_SteamMatchMakingServers002_CancelServerQuery, + unix_ISteamNetworking_SteamNetworking001_CreateListenSocket, + unix_ISteamNetworking_SteamNetworking001_CreateP2PConnectionSocket, + unix_ISteamNetworking_SteamNetworking001_CreateConnectionSocket, + unix_ISteamNetworking_SteamNetworking001_DestroySocket, + unix_ISteamNetworking_SteamNetworking001_DestroyListenSocket, + unix_ISteamNetworking_SteamNetworking001_SendDataOnSocket, + unix_ISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket, + unix_ISteamNetworking_SteamNetworking001_RetrieveDataFromSocket, + unix_ISteamNetworking_SteamNetworking001_IsDataAvailable, + unix_ISteamNetworking_SteamNetworking001_RetrieveData, + unix_ISteamNetworking_SteamNetworking001_GetSocketInfo, + unix_ISteamNetworking_SteamNetworking001_GetListenSocketInfo, + unix_ISteamNetworking_SteamNetworking002_CreateListenSocket, + unix_ISteamNetworking_SteamNetworking002_CreateP2PConnectionSocket, + unix_ISteamNetworking_SteamNetworking002_CreateConnectionSocket, + unix_ISteamNetworking_SteamNetworking002_DestroySocket, + unix_ISteamNetworking_SteamNetworking002_DestroyListenSocket, + unix_ISteamNetworking_SteamNetworking002_SendDataOnSocket, + unix_ISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket, + unix_ISteamNetworking_SteamNetworking002_RetrieveDataFromSocket, + unix_ISteamNetworking_SteamNetworking002_IsDataAvailable, + unix_ISteamNetworking_SteamNetworking002_RetrieveData, + unix_ISteamNetworking_SteamNetworking002_GetSocketInfo, + unix_ISteamNetworking_SteamNetworking002_GetListenSocketInfo, + unix_ISteamNetworking_SteamNetworking002_GetSocketConnectionType, + unix_ISteamNetworking_SteamNetworking002_GetMaxPacketSize, + unix_ISteamNetworking_SteamNetworking003_SendP2PPacket, + unix_ISteamNetworking_SteamNetworking003_IsP2PPacketAvailable, + unix_ISteamNetworking_SteamNetworking003_ReadP2PPacket, + unix_ISteamNetworking_SteamNetworking003_AcceptP2PSessionWithUser, + unix_ISteamNetworking_SteamNetworking003_CloseP2PSessionWithUser, + unix_ISteamNetworking_SteamNetworking003_GetP2PSessionState, + unix_ISteamNetworking_SteamNetworking003_CreateListenSocket, + unix_ISteamNetworking_SteamNetworking003_CreateP2PConnectionSocket, + unix_ISteamNetworking_SteamNetworking003_CreateConnectionSocket, + unix_ISteamNetworking_SteamNetworking003_DestroySocket, + unix_ISteamNetworking_SteamNetworking003_DestroyListenSocket, + unix_ISteamNetworking_SteamNetworking003_SendDataOnSocket, + unix_ISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket, + unix_ISteamNetworking_SteamNetworking003_RetrieveDataFromSocket, + unix_ISteamNetworking_SteamNetworking003_IsDataAvailable, + unix_ISteamNetworking_SteamNetworking003_RetrieveData, + unix_ISteamNetworking_SteamNetworking003_GetSocketInfo, + unix_ISteamNetworking_SteamNetworking003_GetListenSocketInfo, + unix_ISteamNetworking_SteamNetworking003_GetSocketConnectionType, + unix_ISteamNetworking_SteamNetworking003_GetMaxPacketSize, + unix_ISteamNetworking_SteamNetworking004_SendP2PPacket, + unix_ISteamNetworking_SteamNetworking004_IsP2PPacketAvailable, + unix_ISteamNetworking_SteamNetworking004_ReadP2PPacket, + unix_ISteamNetworking_SteamNetworking004_AcceptP2PSessionWithUser, + unix_ISteamNetworking_SteamNetworking004_CloseP2PSessionWithUser, + unix_ISteamNetworking_SteamNetworking004_GetP2PSessionState, + unix_ISteamNetworking_SteamNetworking004_CreateListenSocket, + unix_ISteamNetworking_SteamNetworking004_CreateP2PConnectionSocket, + unix_ISteamNetworking_SteamNetworking004_CreateConnectionSocket, + unix_ISteamNetworking_SteamNetworking004_DestroySocket, + unix_ISteamNetworking_SteamNetworking004_DestroyListenSocket, + unix_ISteamNetworking_SteamNetworking004_SendDataOnSocket, + unix_ISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket, + unix_ISteamNetworking_SteamNetworking004_RetrieveDataFromSocket, + unix_ISteamNetworking_SteamNetworking004_IsDataAvailable, + unix_ISteamNetworking_SteamNetworking004_RetrieveData, + unix_ISteamNetworking_SteamNetworking004_GetSocketInfo, + unix_ISteamNetworking_SteamNetworking004_GetListenSocketInfo, + unix_ISteamNetworking_SteamNetworking004_GetSocketConnectionType, + unix_ISteamNetworking_SteamNetworking004_GetMaxPacketSize, + unix_ISteamNetworking_SteamNetworking005_SendP2PPacket, + unix_ISteamNetworking_SteamNetworking005_IsP2PPacketAvailable, + unix_ISteamNetworking_SteamNetworking005_ReadP2PPacket, + unix_ISteamNetworking_SteamNetworking005_AcceptP2PSessionWithUser, + unix_ISteamNetworking_SteamNetworking005_CloseP2PSessionWithUser, + unix_ISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser, + unix_ISteamNetworking_SteamNetworking005_GetP2PSessionState, + unix_ISteamNetworking_SteamNetworking005_AllowP2PPacketRelay, + unix_ISteamNetworking_SteamNetworking005_CreateListenSocket, + unix_ISteamNetworking_SteamNetworking005_CreateP2PConnectionSocket, + unix_ISteamNetworking_SteamNetworking005_CreateConnectionSocket, + unix_ISteamNetworking_SteamNetworking005_DestroySocket, + unix_ISteamNetworking_SteamNetworking005_DestroyListenSocket, + unix_ISteamNetworking_SteamNetworking005_SendDataOnSocket, + unix_ISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket, + unix_ISteamNetworking_SteamNetworking005_RetrieveDataFromSocket, + unix_ISteamNetworking_SteamNetworking005_IsDataAvailable, + unix_ISteamNetworking_SteamNetworking005_RetrieveData, + unix_ISteamNetworking_SteamNetworking005_GetSocketInfo, + unix_ISteamNetworking_SteamNetworking005_GetListenSocketInfo, + unix_ISteamNetworking_SteamNetworking005_GetSocketConnectionType, + unix_ISteamNetworking_SteamNetworking005_GetMaxPacketSize, + unix_ISteamNetworking_SteamNetworking006_SendP2PPacket, + unix_ISteamNetworking_SteamNetworking006_IsP2PPacketAvailable, + unix_ISteamNetworking_SteamNetworking006_ReadP2PPacket, + unix_ISteamNetworking_SteamNetworking006_AcceptP2PSessionWithUser, + unix_ISteamNetworking_SteamNetworking006_CloseP2PSessionWithUser, + unix_ISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser, + unix_ISteamNetworking_SteamNetworking006_GetP2PSessionState, + unix_ISteamNetworking_SteamNetworking006_AllowP2PPacketRelay, + unix_ISteamNetworking_SteamNetworking006_CreateListenSocket, + unix_ISteamNetworking_SteamNetworking006_CreateP2PConnectionSocket, + unix_ISteamNetworking_SteamNetworking006_CreateConnectionSocket, + unix_ISteamNetworking_SteamNetworking006_DestroySocket, + unix_ISteamNetworking_SteamNetworking006_DestroyListenSocket, + unix_ISteamNetworking_SteamNetworking006_SendDataOnSocket, + unix_ISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket, + unix_ISteamNetworking_SteamNetworking006_RetrieveDataFromSocket, + unix_ISteamNetworking_SteamNetworking006_IsDataAvailable, + unix_ISteamNetworking_SteamNetworking006_RetrieveData, + unix_ISteamNetworking_SteamNetworking006_GetSocketInfo, + unix_ISteamNetworking_SteamNetworking006_GetListenSocketInfo, + unix_ISteamNetworking_SteamNetworking006_GetSocketConnectionType, + unix_ISteamNetworking_SteamNetworking006_GetMaxPacketSize, + unix_ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_DestroyFakeUDPPort, + unix_ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_SendMessageToFakeIP, + unix_ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ReceiveMessages, + unix_ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ScheduleCleanup, + unix_ISteamNetworkingMessages_SteamNetworkingMessages002_SendMessageToUser, + unix_ISteamNetworkingMessages_SteamNetworkingMessages002_ReceiveMessagesOnChannel, + unix_ISteamNetworkingMessages_SteamNetworkingMessages002_AcceptSessionWithUser, + unix_ISteamNetworkingMessages_SteamNetworkingMessages002_CloseSessionWithUser, + unix_ISteamNetworkingMessages_SteamNetworkingMessages002_CloseChannelWithUser, + unix_ISteamNetworkingMessages_SteamNetworkingMessages002_GetSessionConnectionInfo, + unix_ISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketIP, + unix_ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectByIPAddress, + unix_ISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketP2P, + unix_ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectP2P, + unix_ISteamNetworkingSockets_SteamNetworkingSockets002_AcceptConnection, + unix_ISteamNetworkingSockets_SteamNetworkingSockets002_CloseConnection, + unix_ISteamNetworkingSockets_SteamNetworkingSockets002_CloseListenSocket, + unix_ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionUserData, + unix_ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionUserData, + unix_ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionName, + unix_ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionName, + unix_ISteamNetworkingSockets_SteamNetworkingSockets002_SendMessageToConnection, + unix_ISteamNetworkingSockets_SteamNetworkingSockets002_FlushMessagesOnConnection, + unix_ISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnConnection, + unix_ISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnListenSocket, + unix_ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionInfo, + unix_ISteamNetworkingSockets_SteamNetworkingSockets002_GetQuickConnectionStatus, + unix_ISteamNetworkingSockets_SteamNetworkingSockets002_GetDetailedConnectionStatus, + unix_ISteamNetworkingSockets_SteamNetworkingSockets002_GetListenSocketAddress, + unix_ISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocketPair, + unix_ISteamNetworkingSockets_SteamNetworkingSockets002_GetIdentity, + unix_ISteamNetworkingSockets_SteamNetworkingSockets002_ReceivedRelayAuthTicket, + unix_ISteamNetworkingSockets_SteamNetworkingSockets002_FindRelayAuthTicketForServer, + unix_ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectToHostedDedicatedServer, + unix_ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPort, + unix_ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPOPID, + unix_ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerAddress, + unix_ISteamNetworkingSockets_SteamNetworkingSockets002_CreateHostedDedicatedServerListenSocket, + unix_ISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketIP, + unix_ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectByIPAddress, + unix_ISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketP2P, + unix_ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectP2P, + unix_ISteamNetworkingSockets_SteamNetworkingSockets004_AcceptConnection, + unix_ISteamNetworkingSockets_SteamNetworkingSockets004_CloseConnection, + unix_ISteamNetworkingSockets_SteamNetworkingSockets004_CloseListenSocket, + unix_ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionUserData, + unix_ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionUserData, + unix_ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionName, + unix_ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionName, + unix_ISteamNetworkingSockets_SteamNetworkingSockets004_SendMessageToConnection, + unix_ISteamNetworkingSockets_SteamNetworkingSockets004_FlushMessagesOnConnection, + unix_ISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnConnection, + unix_ISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnListenSocket, + unix_ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionInfo, + unix_ISteamNetworkingSockets_SteamNetworkingSockets004_GetQuickConnectionStatus, + unix_ISteamNetworkingSockets_SteamNetworkingSockets004_GetDetailedConnectionStatus, + unix_ISteamNetworkingSockets_SteamNetworkingSockets004_GetListenSocketAddress, + unix_ISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocketPair, + unix_ISteamNetworkingSockets_SteamNetworkingSockets004_GetIdentity, + unix_ISteamNetworkingSockets_SteamNetworkingSockets004_InitAuthentication, + unix_ISteamNetworkingSockets_SteamNetworkingSockets004_GetAuthenticationStatus, + unix_ISteamNetworkingSockets_SteamNetworkingSockets004_ReceivedRelayAuthTicket, + unix_ISteamNetworkingSockets_SteamNetworkingSockets004_FindRelayAuthTicketForServer, + unix_ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectToHostedDedicatedServer, + unix_ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPort, + unix_ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPOPID, + unix_ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerAddress, + unix_ISteamNetworkingSockets_SteamNetworkingSockets004_CreateHostedDedicatedServerListenSocket, + unix_ISteamNetworkingSockets_SteamNetworkingSockets004_GetGameCoordinatorServerLogin, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketIP, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectByIPAddress, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketP2P, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2P, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_AcceptConnection, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_CloseConnection, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_CloseListenSocket, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionUserData, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionUserData, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionName, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionName, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_SendMessageToConnection, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_SendMessages, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_FlushMessagesOnConnection, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnConnection, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnListenSocket, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionInfo, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_GetQuickConnectionStatus, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_GetDetailedConnectionStatus, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_GetListenSocketAddress, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocketPair, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_GetIdentity, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_InitAuthentication, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_GetAuthenticationStatus, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedRelayAuthTicket, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_FindRelayAuthTicketForServer, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectToHostedDedicatedServer, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPort, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPOPID, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerAddress, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_CreateHostedDedicatedServerListenSocket, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_GetGameCoordinatorServerLogin, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2PCustomSignaling, + unix_ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP2PCustomSignal, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketIP, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectByIPAddress, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketP2P, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2P, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_AcceptConnection, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_CloseConnection, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_CloseListenSocket, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionUserData, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionUserData, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionName, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionName, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_SendMessageToConnection, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_SendMessages, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_FlushMessagesOnConnection, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnConnection, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionInfo, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_GetQuickConnectionStatus, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_GetDetailedConnectionStatus, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_GetListenSocketAddress, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocketPair, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_GetIdentity, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_InitAuthentication, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_GetAuthenticationStatus, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_CreatePollGroup, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_DestroyPollGroup, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionPollGroup, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnPollGroup, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedRelayAuthTicket, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_FindRelayAuthTicketForServer, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectToHostedDedicatedServer, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPort, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPOPID, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerAddress, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_CreateHostedDedicatedServerListenSocket, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_GetGameCoordinatorServerLogin, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2PCustomSignaling, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP2PCustomSignal, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_GetCertificateRequest, + unix_ISteamNetworkingSockets_SteamNetworkingSockets008_SetCertificate, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketIP, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectByIPAddress, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketP2P, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2P, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_AcceptConnection, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_CloseConnection, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_CloseListenSocket, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionUserData, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionUserData, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionName, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionName, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_SendMessageToConnection, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_SendMessages, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_FlushMessagesOnConnection, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnConnection, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionInfo, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_GetQuickConnectionStatus, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_GetDetailedConnectionStatus, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_GetListenSocketAddress, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocketPair, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_GetIdentity, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_InitAuthentication, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_GetAuthenticationStatus, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_CreatePollGroup, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_DestroyPollGroup, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionPollGroup, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnPollGroup, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedRelayAuthTicket, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_FindRelayAuthTicketForServer, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectToHostedDedicatedServer, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPort, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPOPID, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerAddress, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_CreateHostedDedicatedServerListenSocket, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_GetGameCoordinatorServerLogin, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2PCustomSignaling, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2PCustomSignal, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_GetCertificateRequest, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_SetCertificate, + unix_ISteamNetworkingSockets_SteamNetworkingSockets009_RunCallbacks, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketIP, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectByIPAddress, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2P, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2P, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_AcceptConnection, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_CloseConnection, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_CloseListenSocket, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionUserData, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionUserData, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionName, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionName, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_SendMessageToConnection, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_SendMessages, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_FlushMessagesOnConnection, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnConnection, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionInfo, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionRealTimeStatus, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_GetDetailedConnectionStatus, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_GetListenSocketAddress, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_CreateSocketPair, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_ConfigureConnectionLanes, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_GetIdentity, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_InitAuthentication, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_GetAuthenticationStatus, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_CreatePollGroup, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_DestroyPollGroup, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionPollGroup, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnPollGroup, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedRelayAuthTicket, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_FindRelayAuthTicketForServer, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectToHostedDedicatedServer, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPort, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPOPID, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerAddress, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_CreateHostedDedicatedServerListenSocket, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_GetGameCoordinatorServerLogin, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2PCustomSignaling, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2PCustomSignal, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_GetCertificateRequest, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_SetCertificate, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_ResetIdentity, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_RunCallbacks, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_BeginAsyncRequestFakeIP, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_GetFakeIP, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2PFakeIP, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_GetRemoteFakeIPForConnection, + unix_ISteamNetworkingSockets_SteamNetworkingSockets012_CreateFakeUDPPort, + unix_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PRendezvous, + unix_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PConnectionFailure, + unix_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCertAsync, + unix_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetNetworkConfigJSON, + unix_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_CacheRelayTicket, + unix_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicketCount, + unix_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicket, + unix_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_PostConnectionStateMsg, + unix_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PRendezvous, + unix_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PConnectionFailure, + unix_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCertAsync, + unix_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetNetworkConfigJSON, + unix_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_CacheRelayTicket, + unix_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicketCount, + unix_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicket, + unix_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_PostConnectionStateMsg, + unix_ISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalPingLocation, + unix_ISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeBetweenTwoLocations, + unix_ISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeFromLocalHost, + unix_ISteamNetworkingUtils_SteamNetworkingUtils001_ConvertPingLocationToString, + unix_ISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLocationString, + unix_ISteamNetworkingUtils_SteamNetworkingUtils001_CheckPingDataUpToDate, + unix_ISteamNetworkingUtils_SteamNetworkingUtils001_IsPingMeasurementInProgress, + unix_ISteamNetworkingUtils_SteamNetworkingUtils001_GetPingToDataCenter, + unix_ISteamNetworkingUtils_SteamNetworkingUtils001_GetDirectPingToPOP, + unix_ISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPCount, + unix_ISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPList, + unix_ISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalTimestamp, + unix_ISteamNetworkingUtils_SteamNetworkingUtils001_SetDebugOutputFunction, + unix_ISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue, + unix_ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValue, + unix_ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo, + unix_ISteamNetworkingUtils_SteamNetworkingUtils001_GetFirstConfigValue, + unix_ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ToString, + unix_ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ParseString, + unix_ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ToString, + unix_ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ParseString, + unix_ISteamNetworkingUtils_SteamNetworkingUtils002_GetRelayNetworkStatus, + unix_ISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalPingLocation, + unix_ISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeBetweenTwoLocations, + unix_ISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeFromLocalHost, + unix_ISteamNetworkingUtils_SteamNetworkingUtils002_ConvertPingLocationToString, + unix_ISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLocationString, + unix_ISteamNetworkingUtils_SteamNetworkingUtils002_CheckPingDataUpToDate, + unix_ISteamNetworkingUtils_SteamNetworkingUtils002_GetPingToDataCenter, + unix_ISteamNetworkingUtils_SteamNetworkingUtils002_GetDirectPingToPOP, + unix_ISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPCount, + unix_ISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPList, + unix_ISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalTimestamp, + unix_ISteamNetworkingUtils_SteamNetworkingUtils002_SetDebugOutputFunction, + unix_ISteamNetworkingUtils_SteamNetworkingUtils002_SetConfigValue, + unix_ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValue, + unix_ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValueInfo, + unix_ISteamNetworkingUtils_SteamNetworkingUtils002_GetFirstConfigValue, + unix_ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ToString, + unix_ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ParseString, + unix_ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ToString, + unix_ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ParseString, + unix_ISteamNetworkingUtils_SteamNetworkingUtils003_AllocateMessage, + unix_ISteamNetworkingUtils_SteamNetworkingUtils003_GetRelayNetworkStatus, + unix_ISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalPingLocation, + unix_ISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeBetweenTwoLocations, + unix_ISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeFromLocalHost, + unix_ISteamNetworkingUtils_SteamNetworkingUtils003_ConvertPingLocationToString, + unix_ISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLocationString, + unix_ISteamNetworkingUtils_SteamNetworkingUtils003_CheckPingDataUpToDate, + unix_ISteamNetworkingUtils_SteamNetworkingUtils003_GetPingToDataCenter, + unix_ISteamNetworkingUtils_SteamNetworkingUtils003_GetDirectPingToPOP, + unix_ISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPCount, + unix_ISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPList, + unix_ISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalTimestamp, + unix_ISteamNetworkingUtils_SteamNetworkingUtils003_SetDebugOutputFunction, + unix_ISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue, + unix_ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValue, + unix_ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValueInfo, + unix_ISteamNetworkingUtils_SteamNetworkingUtils003_GetFirstConfigValue, + unix_ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ToString, + unix_ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ParseString, + unix_ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ToString, + unix_ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ParseString, + unix_ISteamNetworkingUtils_SteamNetworkingUtils004_AllocateMessage, + unix_ISteamNetworkingUtils_SteamNetworkingUtils004_GetRelayNetworkStatus, + unix_ISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalPingLocation, + unix_ISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeBetweenTwoLocations, + unix_ISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeFromLocalHost, + unix_ISteamNetworkingUtils_SteamNetworkingUtils004_ConvertPingLocationToString, + unix_ISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLocationString, + unix_ISteamNetworkingUtils_SteamNetworkingUtils004_CheckPingDataUpToDate, + unix_ISteamNetworkingUtils_SteamNetworkingUtils004_GetPingToDataCenter, + unix_ISteamNetworkingUtils_SteamNetworkingUtils004_GetDirectPingToPOP, + unix_ISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPCount, + unix_ISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPList, + unix_ISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalTimestamp, + unix_ISteamNetworkingUtils_SteamNetworkingUtils004_SetDebugOutputFunction, + unix_ISteamNetworkingUtils_SteamNetworkingUtils004_GetIPv4FakeIPType, + unix_ISteamNetworkingUtils_SteamNetworkingUtils004_GetRealIdentityForFakeIP, + unix_ISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue, + unix_ISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValue, + unix_ISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValueInfo, + unix_ISteamNetworkingUtils_SteamNetworkingUtils004_IterateGenericEditableConfigValues, + unix_ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToString, + unix_ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ParseString, + unix_ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_GetFakeIPType, + unix_ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ToString, + unix_ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ParseString, + unix_ISteamParties_SteamParties002_GetNumActiveBeacons, + unix_ISteamParties_SteamParties002_GetBeaconByIndex, + unix_ISteamParties_SteamParties002_GetBeaconDetails, + unix_ISteamParties_SteamParties002_JoinParty, + unix_ISteamParties_SteamParties002_GetNumAvailableBeaconLocations, + unix_ISteamParties_SteamParties002_GetAvailableBeaconLocations, + unix_ISteamParties_SteamParties002_CreateBeacon, + unix_ISteamParties_SteamParties002_OnReservationCompleted, + unix_ISteamParties_SteamParties002_CancelReservation, + unix_ISteamParties_SteamParties002_ChangeNumOpenSlots, + unix_ISteamParties_SteamParties002_DestroyBeacon, + unix_ISteamParties_SteamParties002_GetBeaconLocationData, + unix_ISteamUser_SteamUser004_GetHSteamUser, + unix_ISteamUser_SteamUser004_LogOn, + unix_ISteamUser_SteamUser004_LogOff, + unix_ISteamUser_SteamUser004_BLoggedOn, + unix_ISteamUser_SteamUser004_GetLogonState, + unix_ISteamUser_SteamUser004_BConnected, + unix_ISteamUser_SteamUser004_GetSteamID, + unix_ISteamUser_SteamUser004_IsVACBanned, + unix_ISteamUser_SteamUser004_RequireShowVACBannedMessage, + unix_ISteamUser_SteamUser004_AcknowledgeVACBanning, + unix_ISteamUser_SteamUser004_NClientGameIDAdd, + unix_ISteamUser_SteamUser004_RemoveClientGame, + unix_ISteamUser_SteamUser004_SetClientGameServer, + unix_ISteamUser_SteamUser004_SetSteam2Ticket, + unix_ISteamUser_SteamUser004_AddServerNetAddress, + unix_ISteamUser_SteamUser004_SetEmail, + unix_ISteamUser_SteamUser004_GetSteamGameConnectToken, + unix_ISteamUser_SteamUser004_SetRegistryString, + unix_ISteamUser_SteamUser004_GetRegistryString, + unix_ISteamUser_SteamUser004_SetRegistryInt, + unix_ISteamUser_SteamUser004_GetRegistryInt, + unix_ISteamUser_SteamUser004_InitiateGameConnection, + unix_ISteamUser_SteamUser004_TerminateGameConnection, + unix_ISteamUser_SteamUser004_SetSelfAsPrimaryChatDestination, + unix_ISteamUser_SteamUser004_IsPrimaryChatDestination, + unix_ISteamUser_SteamUser004_RequestLegacyCDKey, + unix_ISteamUser_SteamUser005_GetHSteamUser, + unix_ISteamUser_SteamUser005_LogOn, + unix_ISteamUser_SteamUser005_LogOff, + unix_ISteamUser_SteamUser005_BLoggedOn, + unix_ISteamUser_SteamUser005_GetLogonState, + unix_ISteamUser_SteamUser005_BConnected, + unix_ISteamUser_SteamUser005_GetSteamID, + unix_ISteamUser_SteamUser005_IsVACBanned, + unix_ISteamUser_SteamUser005_RequireShowVACBannedMessage, + unix_ISteamUser_SteamUser005_AcknowledgeVACBanning, + unix_ISteamUser_SteamUser005_SetSteam2Ticket, + unix_ISteamUser_SteamUser005_AddServerNetAddress, + unix_ISteamUser_SteamUser005_SetEmail, + unix_ISteamUser_SteamUser005_SetRegistryString, + unix_ISteamUser_SteamUser005_GetRegistryString, + unix_ISteamUser_SteamUser005_SetRegistryInt, + unix_ISteamUser_SteamUser005_GetRegistryInt, + unix_ISteamUser_SteamUser005_InitiateGameConnection, + unix_ISteamUser_SteamUser005_TerminateGameConnection, + unix_ISteamUser_SteamUser005_SetSelfAsPrimaryChatDestination, + unix_ISteamUser_SteamUser005_IsPrimaryChatDestination, + unix_ISteamUser_SteamUser005_RequestLegacyCDKey, + unix_ISteamUser_SteamUser005_SendGuestPassByEmail, + unix_ISteamUser_SteamUser005_SendGuestPassByAccountID, + unix_ISteamUser_SteamUser005_AckGuestPass, + unix_ISteamUser_SteamUser005_RedeemGuestPass, + unix_ISteamUser_SteamUser005_GetGuestPassToGiveCount, + unix_ISteamUser_SteamUser005_GetGuestPassToRedeemCount, + unix_ISteamUser_SteamUser005_GetGuestPassLastUpdateTime, + unix_ISteamUser_SteamUser005_GetGuestPassToGiveInfo, + unix_ISteamUser_SteamUser005_GetGuestPassToRedeemInfo, + unix_ISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress, + unix_ISteamUser_SteamUser005_GetGuestPassToRedeemSenderName, + unix_ISteamUser_SteamUser005_AcknowledgeMessageByGID, + unix_ISteamUser_SteamUser005_SetLanguage, + unix_ISteamUser_SteamUser005_TrackAppUsageEvent, + unix_ISteamUser_SteamUser005_SetAccountName, + unix_ISteamUser_SteamUser005_SetPassword, + unix_ISteamUser_SteamUser005_SetAccountCreationTime, + unix_ISteamUser_SteamUser006_GetHSteamUser, + unix_ISteamUser_SteamUser006_LogOn, + unix_ISteamUser_SteamUser006_LogOff, + unix_ISteamUser_SteamUser006_BLoggedOn, + unix_ISteamUser_SteamUser006_GetSteamID, + unix_ISteamUser_SteamUser006_SetRegistryString, + unix_ISteamUser_SteamUser006_GetRegistryString, + unix_ISteamUser_SteamUser006_SetRegistryInt, + unix_ISteamUser_SteamUser006_GetRegistryInt, + unix_ISteamUser_SteamUser006_InitiateGameConnection, + unix_ISteamUser_SteamUser006_TerminateGameConnection, + unix_ISteamUser_SteamUser006_TrackAppUsageEvent, + unix_ISteamUser_SteamUser007_GetHSteamUser, + unix_ISteamUser_SteamUser007_LogOn, + unix_ISteamUser_SteamUser007_LogOff, + unix_ISteamUser_SteamUser007_BLoggedOn, + unix_ISteamUser_SteamUser007_GetSteamID, + unix_ISteamUser_SteamUser007_SetRegistryString, + unix_ISteamUser_SteamUser007_GetRegistryString, + unix_ISteamUser_SteamUser007_SetRegistryInt, + unix_ISteamUser_SteamUser007_GetRegistryInt, + unix_ISteamUser_SteamUser007_InitiateGameConnection, + unix_ISteamUser_SteamUser007_TerminateGameConnection, + unix_ISteamUser_SteamUser007_TrackAppUsageEvent, + unix_ISteamUser_SteamUser007_RefreshSteam2Login, + unix_ISteamUser_SteamUser008_GetHSteamUser, + unix_ISteamUser_SteamUser008_BLoggedOn, + unix_ISteamUser_SteamUser008_GetSteamID, + unix_ISteamUser_SteamUser008_InitiateGameConnection, + unix_ISteamUser_SteamUser008_TerminateGameConnection, + unix_ISteamUser_SteamUser008_TrackAppUsageEvent, + unix_ISteamUser_SteamUser008_RefreshSteam2Login, + unix_ISteamUser_SteamUser009_GetHSteamUser, + unix_ISteamUser_SteamUser009_BLoggedOn, + unix_ISteamUser_SteamUser009_GetSteamID, + unix_ISteamUser_SteamUser009_InitiateGameConnection, + unix_ISteamUser_SteamUser009_TerminateGameConnection, + unix_ISteamUser_SteamUser009_TrackAppUsageEvent, + unix_ISteamUser_SteamUser009_RefreshSteam2Login, + unix_ISteamUser_SteamUser010_GetHSteamUser, + unix_ISteamUser_SteamUser010_BLoggedOn, + unix_ISteamUser_SteamUser010_GetSteamID, + unix_ISteamUser_SteamUser010_InitiateGameConnection, + unix_ISteamUser_SteamUser010_TerminateGameConnection, + unix_ISteamUser_SteamUser010_TrackAppUsageEvent, + unix_ISteamUser_SteamUser011_GetHSteamUser, + unix_ISteamUser_SteamUser011_BLoggedOn, + unix_ISteamUser_SteamUser011_GetSteamID, + unix_ISteamUser_SteamUser011_InitiateGameConnection, + unix_ISteamUser_SteamUser011_TerminateGameConnection, + unix_ISteamUser_SteamUser011_TrackAppUsageEvent, + unix_ISteamUser_SteamUser011_GetUserDataFolder, + unix_ISteamUser_SteamUser011_StartVoiceRecording, + unix_ISteamUser_SteamUser011_StopVoiceRecording, + unix_ISteamUser_SteamUser011_GetCompressedVoice, + unix_ISteamUser_SteamUser011_DecompressVoice, + unix_ISteamUser_SteamUser012_GetHSteamUser, + unix_ISteamUser_SteamUser012_BLoggedOn, + unix_ISteamUser_SteamUser012_GetSteamID, + unix_ISteamUser_SteamUser012_InitiateGameConnection, + unix_ISteamUser_SteamUser012_TerminateGameConnection, + unix_ISteamUser_SteamUser012_TrackAppUsageEvent, + unix_ISteamUser_SteamUser012_GetUserDataFolder, + unix_ISteamUser_SteamUser012_StartVoiceRecording, + unix_ISteamUser_SteamUser012_StopVoiceRecording, + unix_ISteamUser_SteamUser012_GetCompressedVoice, + unix_ISteamUser_SteamUser012_DecompressVoice, + unix_ISteamUser_SteamUser012_GetAuthSessionTicket, + unix_ISteamUser_SteamUser012_BeginAuthSession, + unix_ISteamUser_SteamUser012_EndAuthSession, + unix_ISteamUser_SteamUser012_CancelAuthTicket, + unix_ISteamUser_SteamUser012_UserHasLicenseForApp, + unix_ISteamUser_SteamUser013_GetHSteamUser, + unix_ISteamUser_SteamUser013_BLoggedOn, + unix_ISteamUser_SteamUser013_GetSteamID, + unix_ISteamUser_SteamUser013_InitiateGameConnection, + unix_ISteamUser_SteamUser013_TerminateGameConnection, + unix_ISteamUser_SteamUser013_TrackAppUsageEvent, + unix_ISteamUser_SteamUser013_GetUserDataFolder, + unix_ISteamUser_SteamUser013_StartVoiceRecording, + unix_ISteamUser_SteamUser013_StopVoiceRecording, + unix_ISteamUser_SteamUser013_GetAvailableVoice, + unix_ISteamUser_SteamUser013_GetVoice, + unix_ISteamUser_SteamUser013_DecompressVoice, + unix_ISteamUser_SteamUser013_GetAuthSessionTicket, + unix_ISteamUser_SteamUser013_BeginAuthSession, + unix_ISteamUser_SteamUser013_EndAuthSession, + unix_ISteamUser_SteamUser013_CancelAuthTicket, + unix_ISteamUser_SteamUser013_UserHasLicenseForApp, + unix_ISteamUser_SteamUser014_GetHSteamUser, + unix_ISteamUser_SteamUser014_BLoggedOn, + unix_ISteamUser_SteamUser014_GetSteamID, + unix_ISteamUser_SteamUser014_InitiateGameConnection, + unix_ISteamUser_SteamUser014_TerminateGameConnection, + unix_ISteamUser_SteamUser014_TrackAppUsageEvent, + unix_ISteamUser_SteamUser014_GetUserDataFolder, + unix_ISteamUser_SteamUser014_StartVoiceRecording, + unix_ISteamUser_SteamUser014_StopVoiceRecording, + unix_ISteamUser_SteamUser014_GetAvailableVoice, + unix_ISteamUser_SteamUser014_GetVoice, + unix_ISteamUser_SteamUser014_DecompressVoice, + unix_ISteamUser_SteamUser014_GetAuthSessionTicket, + unix_ISteamUser_SteamUser014_BeginAuthSession, + unix_ISteamUser_SteamUser014_EndAuthSession, + unix_ISteamUser_SteamUser014_CancelAuthTicket, + unix_ISteamUser_SteamUser014_UserHasLicenseForApp, + unix_ISteamUser_SteamUser014_BIsBehindNAT, + unix_ISteamUser_SteamUser014_AdvertiseGame, + unix_ISteamUser_SteamUser014_RequestEncryptedAppTicket, + unix_ISteamUser_SteamUser014_GetEncryptedAppTicket, + unix_ISteamUser_SteamUser015_GetHSteamUser, + unix_ISteamUser_SteamUser015_BLoggedOn, + unix_ISteamUser_SteamUser015_GetSteamID, + unix_ISteamUser_SteamUser015_InitiateGameConnection, + unix_ISteamUser_SteamUser015_TerminateGameConnection, + unix_ISteamUser_SteamUser015_TrackAppUsageEvent, + unix_ISteamUser_SteamUser015_GetUserDataFolder, + unix_ISteamUser_SteamUser015_StartVoiceRecording, + unix_ISteamUser_SteamUser015_StopVoiceRecording, + unix_ISteamUser_SteamUser015_GetAvailableVoice, + unix_ISteamUser_SteamUser015_GetVoice, + unix_ISteamUser_SteamUser015_DecompressVoice, + unix_ISteamUser_SteamUser015_GetVoiceOptimalSampleRate, + unix_ISteamUser_SteamUser015_GetAuthSessionTicket, + unix_ISteamUser_SteamUser015_BeginAuthSession, + unix_ISteamUser_SteamUser015_EndAuthSession, + unix_ISteamUser_SteamUser015_CancelAuthTicket, + unix_ISteamUser_SteamUser015_UserHasLicenseForApp, + unix_ISteamUser_SteamUser015_BIsBehindNAT, + unix_ISteamUser_SteamUser015_AdvertiseGame, + unix_ISteamUser_SteamUser015_RequestEncryptedAppTicket, + unix_ISteamUser_SteamUser015_GetEncryptedAppTicket, + unix_ISteamUser_SteamUser016_GetHSteamUser, + unix_ISteamUser_SteamUser016_BLoggedOn, + unix_ISteamUser_SteamUser016_GetSteamID, + unix_ISteamUser_SteamUser016_InitiateGameConnection, + unix_ISteamUser_SteamUser016_TerminateGameConnection, + unix_ISteamUser_SteamUser016_TrackAppUsageEvent, + unix_ISteamUser_SteamUser016_GetUserDataFolder, + unix_ISteamUser_SteamUser016_StartVoiceRecording, + unix_ISteamUser_SteamUser016_StopVoiceRecording, + unix_ISteamUser_SteamUser016_GetAvailableVoice, + unix_ISteamUser_SteamUser016_GetVoice, + unix_ISteamUser_SteamUser016_DecompressVoice, + unix_ISteamUser_SteamUser016_GetVoiceOptimalSampleRate, + unix_ISteamUser_SteamUser016_GetAuthSessionTicket, + unix_ISteamUser_SteamUser016_BeginAuthSession, + unix_ISteamUser_SteamUser016_EndAuthSession, + unix_ISteamUser_SteamUser016_CancelAuthTicket, + unix_ISteamUser_SteamUser016_UserHasLicenseForApp, + unix_ISteamUser_SteamUser016_BIsBehindNAT, + unix_ISteamUser_SteamUser016_AdvertiseGame, + unix_ISteamUser_SteamUser016_RequestEncryptedAppTicket, + unix_ISteamUser_SteamUser016_GetEncryptedAppTicket, + unix_ISteamUser_SteamUser017_GetHSteamUser, + unix_ISteamUser_SteamUser017_BLoggedOn, + unix_ISteamUser_SteamUser017_GetSteamID, + unix_ISteamUser_SteamUser017_InitiateGameConnection, + unix_ISteamUser_SteamUser017_TerminateGameConnection, + unix_ISteamUser_SteamUser017_TrackAppUsageEvent, + unix_ISteamUser_SteamUser017_GetUserDataFolder, + unix_ISteamUser_SteamUser017_StartVoiceRecording, + unix_ISteamUser_SteamUser017_StopVoiceRecording, + unix_ISteamUser_SteamUser017_GetAvailableVoice, + unix_ISteamUser_SteamUser017_GetVoice, + unix_ISteamUser_SteamUser017_DecompressVoice, + unix_ISteamUser_SteamUser017_GetVoiceOptimalSampleRate, + unix_ISteamUser_SteamUser017_GetAuthSessionTicket, + unix_ISteamUser_SteamUser017_BeginAuthSession, + unix_ISteamUser_SteamUser017_EndAuthSession, + unix_ISteamUser_SteamUser017_CancelAuthTicket, + unix_ISteamUser_SteamUser017_UserHasLicenseForApp, + unix_ISteamUser_SteamUser017_BIsBehindNAT, + unix_ISteamUser_SteamUser017_AdvertiseGame, + unix_ISteamUser_SteamUser017_RequestEncryptedAppTicket, + unix_ISteamUser_SteamUser017_GetEncryptedAppTicket, + unix_ISteamUser_SteamUser017_GetGameBadgeLevel, + unix_ISteamUser_SteamUser017_GetPlayerSteamLevel, + unix_ISteamUser_SteamUser018_GetHSteamUser, + unix_ISteamUser_SteamUser018_BLoggedOn, + unix_ISteamUser_SteamUser018_GetSteamID, + unix_ISteamUser_SteamUser018_InitiateGameConnection, + unix_ISteamUser_SteamUser018_TerminateGameConnection, + unix_ISteamUser_SteamUser018_TrackAppUsageEvent, + unix_ISteamUser_SteamUser018_GetUserDataFolder, + unix_ISteamUser_SteamUser018_StartVoiceRecording, + unix_ISteamUser_SteamUser018_StopVoiceRecording, + unix_ISteamUser_SteamUser018_GetAvailableVoice, + unix_ISteamUser_SteamUser018_GetVoice, + unix_ISteamUser_SteamUser018_DecompressVoice, + unix_ISteamUser_SteamUser018_GetVoiceOptimalSampleRate, + unix_ISteamUser_SteamUser018_GetAuthSessionTicket, + unix_ISteamUser_SteamUser018_BeginAuthSession, + unix_ISteamUser_SteamUser018_EndAuthSession, + unix_ISteamUser_SteamUser018_CancelAuthTicket, + unix_ISteamUser_SteamUser018_UserHasLicenseForApp, + unix_ISteamUser_SteamUser018_BIsBehindNAT, + unix_ISteamUser_SteamUser018_AdvertiseGame, + unix_ISteamUser_SteamUser018_RequestEncryptedAppTicket, + unix_ISteamUser_SteamUser018_GetEncryptedAppTicket, + unix_ISteamUser_SteamUser018_GetGameBadgeLevel, + unix_ISteamUser_SteamUser018_GetPlayerSteamLevel, + unix_ISteamUser_SteamUser018_RequestStoreAuthURL, + unix_ISteamUser_SteamUser019_GetHSteamUser, + unix_ISteamUser_SteamUser019_BLoggedOn, + unix_ISteamUser_SteamUser019_GetSteamID, + unix_ISteamUser_SteamUser019_InitiateGameConnection, + unix_ISteamUser_SteamUser019_TerminateGameConnection, + unix_ISteamUser_SteamUser019_TrackAppUsageEvent, + unix_ISteamUser_SteamUser019_GetUserDataFolder, + unix_ISteamUser_SteamUser019_StartVoiceRecording, + unix_ISteamUser_SteamUser019_StopVoiceRecording, + unix_ISteamUser_SteamUser019_GetAvailableVoice, + unix_ISteamUser_SteamUser019_GetVoice, + unix_ISteamUser_SteamUser019_DecompressVoice, + unix_ISteamUser_SteamUser019_GetVoiceOptimalSampleRate, + unix_ISteamUser_SteamUser019_GetAuthSessionTicket, + unix_ISteamUser_SteamUser019_BeginAuthSession, + unix_ISteamUser_SteamUser019_EndAuthSession, + unix_ISteamUser_SteamUser019_CancelAuthTicket, + unix_ISteamUser_SteamUser019_UserHasLicenseForApp, + unix_ISteamUser_SteamUser019_BIsBehindNAT, + unix_ISteamUser_SteamUser019_AdvertiseGame, + unix_ISteamUser_SteamUser019_RequestEncryptedAppTicket, + unix_ISteamUser_SteamUser019_GetEncryptedAppTicket, + unix_ISteamUser_SteamUser019_GetGameBadgeLevel, + unix_ISteamUser_SteamUser019_GetPlayerSteamLevel, + unix_ISteamUser_SteamUser019_RequestStoreAuthURL, + unix_ISteamUser_SteamUser019_BIsPhoneVerified, + unix_ISteamUser_SteamUser019_BIsTwoFactorEnabled, + unix_ISteamUser_SteamUser019_BIsPhoneIdentifying, + unix_ISteamUser_SteamUser019_BIsPhoneRequiringVerification, + unix_ISteamUser_SteamUser020_GetHSteamUser, + unix_ISteamUser_SteamUser020_BLoggedOn, + unix_ISteamUser_SteamUser020_GetSteamID, + unix_ISteamUser_SteamUser020_InitiateGameConnection, + unix_ISteamUser_SteamUser020_TerminateGameConnection, + unix_ISteamUser_SteamUser020_TrackAppUsageEvent, + unix_ISteamUser_SteamUser020_GetUserDataFolder, + unix_ISteamUser_SteamUser020_StartVoiceRecording, + unix_ISteamUser_SteamUser020_StopVoiceRecording, + unix_ISteamUser_SteamUser020_GetAvailableVoice, + unix_ISteamUser_SteamUser020_GetVoice, + unix_ISteamUser_SteamUser020_DecompressVoice, + unix_ISteamUser_SteamUser020_GetVoiceOptimalSampleRate, + unix_ISteamUser_SteamUser020_GetAuthSessionTicket, + unix_ISteamUser_SteamUser020_BeginAuthSession, + unix_ISteamUser_SteamUser020_EndAuthSession, + unix_ISteamUser_SteamUser020_CancelAuthTicket, + unix_ISteamUser_SteamUser020_UserHasLicenseForApp, + unix_ISteamUser_SteamUser020_BIsBehindNAT, + unix_ISteamUser_SteamUser020_AdvertiseGame, + unix_ISteamUser_SteamUser020_RequestEncryptedAppTicket, + unix_ISteamUser_SteamUser020_GetEncryptedAppTicket, + unix_ISteamUser_SteamUser020_GetGameBadgeLevel, + unix_ISteamUser_SteamUser020_GetPlayerSteamLevel, + unix_ISteamUser_SteamUser020_RequestStoreAuthURL, + unix_ISteamUser_SteamUser020_BIsPhoneVerified, + unix_ISteamUser_SteamUser020_BIsTwoFactorEnabled, + unix_ISteamUser_SteamUser020_BIsPhoneIdentifying, + unix_ISteamUser_SteamUser020_BIsPhoneRequiringVerification, + unix_ISteamUser_SteamUser020_GetMarketEligibility, + unix_ISteamUser_SteamUser020_GetDurationControl, + unix_ISteamUser_SteamUser021_GetHSteamUser, + unix_ISteamUser_SteamUser021_BLoggedOn, + unix_ISteamUser_SteamUser021_GetSteamID, + unix_ISteamUser_SteamUser021_InitiateGameConnection_DEPRECATED, + unix_ISteamUser_SteamUser021_TerminateGameConnection_DEPRECATED, + unix_ISteamUser_SteamUser021_TrackAppUsageEvent, + unix_ISteamUser_SteamUser021_GetUserDataFolder, + unix_ISteamUser_SteamUser021_StartVoiceRecording, + unix_ISteamUser_SteamUser021_StopVoiceRecording, + unix_ISteamUser_SteamUser021_GetAvailableVoice, + unix_ISteamUser_SteamUser021_GetVoice, + unix_ISteamUser_SteamUser021_DecompressVoice, + unix_ISteamUser_SteamUser021_GetVoiceOptimalSampleRate, + unix_ISteamUser_SteamUser021_GetAuthSessionTicket, + unix_ISteamUser_SteamUser021_BeginAuthSession, + unix_ISteamUser_SteamUser021_EndAuthSession, + unix_ISteamUser_SteamUser021_CancelAuthTicket, + unix_ISteamUser_SteamUser021_UserHasLicenseForApp, + unix_ISteamUser_SteamUser021_BIsBehindNAT, + unix_ISteamUser_SteamUser021_AdvertiseGame, + unix_ISteamUser_SteamUser021_RequestEncryptedAppTicket, + unix_ISteamUser_SteamUser021_GetEncryptedAppTicket, + unix_ISteamUser_SteamUser021_GetGameBadgeLevel, + unix_ISteamUser_SteamUser021_GetPlayerSteamLevel, + unix_ISteamUser_SteamUser021_RequestStoreAuthURL, + unix_ISteamUser_SteamUser021_BIsPhoneVerified, + unix_ISteamUser_SteamUser021_BIsTwoFactorEnabled, + unix_ISteamUser_SteamUser021_BIsPhoneIdentifying, + unix_ISteamUser_SteamUser021_BIsPhoneRequiringVerification, + unix_ISteamUser_SteamUser021_GetMarketEligibility, + unix_ISteamUser_SteamUser021_GetDurationControl, + unix_ISteamUser_SteamUser021_BSetDurationControlOnlineState, + unix_ISteamUser_SteamUser022_GetHSteamUser, + unix_ISteamUser_SteamUser022_BLoggedOn, + unix_ISteamUser_SteamUser022_GetSteamID, + unix_ISteamUser_SteamUser022_InitiateGameConnection_DEPRECATED, + unix_ISteamUser_SteamUser022_TerminateGameConnection_DEPRECATED, + unix_ISteamUser_SteamUser022_TrackAppUsageEvent, + unix_ISteamUser_SteamUser022_GetUserDataFolder, + unix_ISteamUser_SteamUser022_StartVoiceRecording, + unix_ISteamUser_SteamUser022_StopVoiceRecording, + unix_ISteamUser_SteamUser022_GetAvailableVoice, + unix_ISteamUser_SteamUser022_GetVoice, + unix_ISteamUser_SteamUser022_DecompressVoice, + unix_ISteamUser_SteamUser022_GetVoiceOptimalSampleRate, + unix_ISteamUser_SteamUser022_GetAuthSessionTicket, + unix_ISteamUser_SteamUser022_BeginAuthSession, + unix_ISteamUser_SteamUser022_EndAuthSession, + unix_ISteamUser_SteamUser022_CancelAuthTicket, + unix_ISteamUser_SteamUser022_UserHasLicenseForApp, + unix_ISteamUser_SteamUser022_BIsBehindNAT, + unix_ISteamUser_SteamUser022_AdvertiseGame, + unix_ISteamUser_SteamUser022_RequestEncryptedAppTicket, + unix_ISteamUser_SteamUser022_GetEncryptedAppTicket, + unix_ISteamUser_SteamUser022_GetGameBadgeLevel, + unix_ISteamUser_SteamUser022_GetPlayerSteamLevel, + unix_ISteamUser_SteamUser022_RequestStoreAuthURL, + unix_ISteamUser_SteamUser022_BIsPhoneVerified, + unix_ISteamUser_SteamUser022_BIsTwoFactorEnabled, + unix_ISteamUser_SteamUser022_BIsPhoneIdentifying, + unix_ISteamUser_SteamUser022_BIsPhoneRequiringVerification, + unix_ISteamUser_SteamUser022_GetMarketEligibility, + unix_ISteamUser_SteamUser022_GetDurationControl, + unix_ISteamUser_SteamUser022_BSetDurationControlOnlineState, + unix_ISteamUser_SteamUser023_GetHSteamUser, + unix_ISteamUser_SteamUser023_BLoggedOn, + unix_ISteamUser_SteamUser023_GetSteamID, + unix_ISteamUser_SteamUser023_InitiateGameConnection_DEPRECATED, + unix_ISteamUser_SteamUser023_TerminateGameConnection_DEPRECATED, + unix_ISteamUser_SteamUser023_TrackAppUsageEvent, + unix_ISteamUser_SteamUser023_GetUserDataFolder, + unix_ISteamUser_SteamUser023_StartVoiceRecording, + unix_ISteamUser_SteamUser023_StopVoiceRecording, + unix_ISteamUser_SteamUser023_GetAvailableVoice, + unix_ISteamUser_SteamUser023_GetVoice, + unix_ISteamUser_SteamUser023_DecompressVoice, + unix_ISteamUser_SteamUser023_GetVoiceOptimalSampleRate, + unix_ISteamUser_SteamUser023_GetAuthSessionTicket, + unix_ISteamUser_SteamUser023_GetAuthTicketForWebApi, + unix_ISteamUser_SteamUser023_BeginAuthSession, + unix_ISteamUser_SteamUser023_EndAuthSession, + unix_ISteamUser_SteamUser023_CancelAuthTicket, + unix_ISteamUser_SteamUser023_UserHasLicenseForApp, + unix_ISteamUser_SteamUser023_BIsBehindNAT, + unix_ISteamUser_SteamUser023_AdvertiseGame, + unix_ISteamUser_SteamUser023_RequestEncryptedAppTicket, + unix_ISteamUser_SteamUser023_GetEncryptedAppTicket, + unix_ISteamUser_SteamUser023_GetGameBadgeLevel, + unix_ISteamUser_SteamUser023_GetPlayerSteamLevel, + unix_ISteamUser_SteamUser023_RequestStoreAuthURL, + unix_ISteamUser_SteamUser023_BIsPhoneVerified, + unix_ISteamUser_SteamUser023_BIsTwoFactorEnabled, + unix_ISteamUser_SteamUser023_BIsPhoneIdentifying, + unix_ISteamUser_SteamUser023_BIsPhoneRequiringVerification, + unix_ISteamUser_SteamUser023_GetMarketEligibility, + unix_ISteamUser_SteamUser023_GetDurationControl, + unix_ISteamUser_SteamUser023_BSetDurationControlOnlineState, + unix_ISteamUtils_SteamUtils002_GetSecondsSinceAppActive, + unix_ISteamUtils_SteamUtils002_GetSecondsSinceComputerActive, + unix_ISteamUtils_SteamUtils002_GetConnectedUniverse, + unix_ISteamUtils_SteamUtils002_GetServerRealTime, + unix_ISteamUtils_SteamUtils002_GetIPCountry, + unix_ISteamUtils_SteamUtils002_GetImageSize, + unix_ISteamUtils_SteamUtils002_GetImageRGBA, + unix_ISteamUtils_SteamUtils002_GetCSERIPPort, + unix_ISteamUtils_SteamUtils002_GetCurrentBatteryPower, + unix_ISteamUtils_SteamUtils002_GetAppID, + unix_ISteamUtils_SteamUtils002_SetOverlayNotificationPosition, + unix_ISteamUtils_SteamUtils002_IsAPICallCompleted, + unix_ISteamUtils_SteamUtils002_GetAPICallFailureReason, + unix_ISteamUtils_SteamUtils002_GetAPICallResult, + unix_ISteamUtils_SteamUtils004_GetSecondsSinceAppActive, + unix_ISteamUtils_SteamUtils004_GetSecondsSinceComputerActive, + unix_ISteamUtils_SteamUtils004_GetConnectedUniverse, + unix_ISteamUtils_SteamUtils004_GetServerRealTime, + unix_ISteamUtils_SteamUtils004_GetIPCountry, + unix_ISteamUtils_SteamUtils004_GetImageSize, + unix_ISteamUtils_SteamUtils004_GetImageRGBA, + unix_ISteamUtils_SteamUtils004_GetCSERIPPort, + unix_ISteamUtils_SteamUtils004_GetCurrentBatteryPower, + unix_ISteamUtils_SteamUtils004_GetAppID, + unix_ISteamUtils_SteamUtils004_SetOverlayNotificationPosition, + unix_ISteamUtils_SteamUtils004_IsAPICallCompleted, + unix_ISteamUtils_SteamUtils004_GetAPICallFailureReason, + unix_ISteamUtils_SteamUtils004_GetAPICallResult, + unix_ISteamUtils_SteamUtils004_RunFrame, + unix_ISteamUtils_SteamUtils004_GetIPCCallCount, + unix_ISteamUtils_SteamUtils004_SetWarningMessageHook, + unix_ISteamUtils_SteamUtils004_IsOverlayEnabled, + unix_ISteamUtils_SteamUtils005_GetSecondsSinceAppActive, + unix_ISteamUtils_SteamUtils005_GetSecondsSinceComputerActive, + unix_ISteamUtils_SteamUtils005_GetConnectedUniverse, + unix_ISteamUtils_SteamUtils005_GetServerRealTime, + unix_ISteamUtils_SteamUtils005_GetIPCountry, + unix_ISteamUtils_SteamUtils005_GetImageSize, + unix_ISteamUtils_SteamUtils005_GetImageRGBA, + unix_ISteamUtils_SteamUtils005_GetCSERIPPort, + unix_ISteamUtils_SteamUtils005_GetCurrentBatteryPower, + unix_ISteamUtils_SteamUtils005_GetAppID, + unix_ISteamUtils_SteamUtils005_SetOverlayNotificationPosition, + unix_ISteamUtils_SteamUtils005_IsAPICallCompleted, + unix_ISteamUtils_SteamUtils005_GetAPICallFailureReason, + unix_ISteamUtils_SteamUtils005_GetAPICallResult, + unix_ISteamUtils_SteamUtils005_RunFrame, + unix_ISteamUtils_SteamUtils005_GetIPCCallCount, + unix_ISteamUtils_SteamUtils005_SetWarningMessageHook, + unix_ISteamUtils_SteamUtils005_IsOverlayEnabled, + unix_ISteamUtils_SteamUtils005_BOverlayNeedsPresent, + unix_ISteamUtils_SteamUtils005_CheckFileSignature, + unix_ISteamUtils_SteamUtils005_ShowGamepadTextInput, + unix_ISteamUtils_SteamUtils005_GetEnteredGamepadTextLength, + unix_ISteamUtils_SteamUtils005_GetEnteredGamepadTextInput, + unix_ISteamUtils_SteamUtils006_GetSecondsSinceAppActive, + unix_ISteamUtils_SteamUtils006_GetSecondsSinceComputerActive, + unix_ISteamUtils_SteamUtils006_GetConnectedUniverse, + unix_ISteamUtils_SteamUtils006_GetServerRealTime, + unix_ISteamUtils_SteamUtils006_GetIPCountry, + unix_ISteamUtils_SteamUtils006_GetImageSize, + unix_ISteamUtils_SteamUtils006_GetImageRGBA, + unix_ISteamUtils_SteamUtils006_GetCSERIPPort, + unix_ISteamUtils_SteamUtils006_GetCurrentBatteryPower, + unix_ISteamUtils_SteamUtils006_GetAppID, + unix_ISteamUtils_SteamUtils006_SetOverlayNotificationPosition, + unix_ISteamUtils_SteamUtils006_IsAPICallCompleted, + unix_ISteamUtils_SteamUtils006_GetAPICallFailureReason, + unix_ISteamUtils_SteamUtils006_GetAPICallResult, + unix_ISteamUtils_SteamUtils006_RunFrame, + unix_ISteamUtils_SteamUtils006_GetIPCCallCount, + unix_ISteamUtils_SteamUtils006_SetWarningMessageHook, + unix_ISteamUtils_SteamUtils006_IsOverlayEnabled, + unix_ISteamUtils_SteamUtils006_BOverlayNeedsPresent, + unix_ISteamUtils_SteamUtils006_CheckFileSignature, + unix_ISteamUtils_SteamUtils006_ShowGamepadTextInput, + unix_ISteamUtils_SteamUtils006_GetEnteredGamepadTextLength, + unix_ISteamUtils_SteamUtils006_GetEnteredGamepadTextInput, + unix_ISteamUtils_SteamUtils006_GetSteamUILanguage, + unix_ISteamUtils_SteamUtils006_IsSteamRunningInVR, + unix_ISteamUtils_SteamUtils007_GetSecondsSinceAppActive, + unix_ISteamUtils_SteamUtils007_GetSecondsSinceComputerActive, + unix_ISteamUtils_SteamUtils007_GetConnectedUniverse, + unix_ISteamUtils_SteamUtils007_GetServerRealTime, + unix_ISteamUtils_SteamUtils007_GetIPCountry, + unix_ISteamUtils_SteamUtils007_GetImageSize, + unix_ISteamUtils_SteamUtils007_GetImageRGBA, + unix_ISteamUtils_SteamUtils007_GetCSERIPPort, + unix_ISteamUtils_SteamUtils007_GetCurrentBatteryPower, + unix_ISteamUtils_SteamUtils007_GetAppID, + unix_ISteamUtils_SteamUtils007_SetOverlayNotificationPosition, + unix_ISteamUtils_SteamUtils007_IsAPICallCompleted, + unix_ISteamUtils_SteamUtils007_GetAPICallFailureReason, + unix_ISteamUtils_SteamUtils007_GetAPICallResult, + unix_ISteamUtils_SteamUtils007_RunFrame, + unix_ISteamUtils_SteamUtils007_GetIPCCallCount, + unix_ISteamUtils_SteamUtils007_SetWarningMessageHook, + unix_ISteamUtils_SteamUtils007_IsOverlayEnabled, + unix_ISteamUtils_SteamUtils007_BOverlayNeedsPresent, + unix_ISteamUtils_SteamUtils007_CheckFileSignature, + unix_ISteamUtils_SteamUtils007_ShowGamepadTextInput, + unix_ISteamUtils_SteamUtils007_GetEnteredGamepadTextLength, + unix_ISteamUtils_SteamUtils007_GetEnteredGamepadTextInput, + unix_ISteamUtils_SteamUtils007_GetSteamUILanguage, + unix_ISteamUtils_SteamUtils007_IsSteamRunningInVR, + unix_ISteamUtils_SteamUtils007_SetOverlayNotificationInset, + unix_ISteamUtils_SteamUtils008_GetSecondsSinceAppActive, + unix_ISteamUtils_SteamUtils008_GetSecondsSinceComputerActive, + unix_ISteamUtils_SteamUtils008_GetConnectedUniverse, + unix_ISteamUtils_SteamUtils008_GetServerRealTime, + unix_ISteamUtils_SteamUtils008_GetIPCountry, + unix_ISteamUtils_SteamUtils008_GetImageSize, + unix_ISteamUtils_SteamUtils008_GetImageRGBA, + unix_ISteamUtils_SteamUtils008_GetCSERIPPort, + unix_ISteamUtils_SteamUtils008_GetCurrentBatteryPower, + unix_ISteamUtils_SteamUtils008_GetAppID, + unix_ISteamUtils_SteamUtils008_SetOverlayNotificationPosition, + unix_ISteamUtils_SteamUtils008_IsAPICallCompleted, + unix_ISteamUtils_SteamUtils008_GetAPICallFailureReason, + unix_ISteamUtils_SteamUtils008_GetAPICallResult, + unix_ISteamUtils_SteamUtils008_RunFrame, + unix_ISteamUtils_SteamUtils008_GetIPCCallCount, + unix_ISteamUtils_SteamUtils008_SetWarningMessageHook, + unix_ISteamUtils_SteamUtils008_IsOverlayEnabled, + unix_ISteamUtils_SteamUtils008_BOverlayNeedsPresent, + unix_ISteamUtils_SteamUtils008_CheckFileSignature, + unix_ISteamUtils_SteamUtils008_ShowGamepadTextInput, + unix_ISteamUtils_SteamUtils008_GetEnteredGamepadTextLength, + unix_ISteamUtils_SteamUtils008_GetEnteredGamepadTextInput, + unix_ISteamUtils_SteamUtils008_GetSteamUILanguage, + unix_ISteamUtils_SteamUtils008_IsSteamRunningInVR, + unix_ISteamUtils_SteamUtils008_SetOverlayNotificationInset, + unix_ISteamUtils_SteamUtils008_IsSteamInBigPictureMode, + unix_ISteamUtils_SteamUtils008_StartVRDashboard, + unix_ISteamUtils_SteamUtils009_GetSecondsSinceAppActive, + unix_ISteamUtils_SteamUtils009_GetSecondsSinceComputerActive, + unix_ISteamUtils_SteamUtils009_GetConnectedUniverse, + unix_ISteamUtils_SteamUtils009_GetServerRealTime, + unix_ISteamUtils_SteamUtils009_GetIPCountry, + unix_ISteamUtils_SteamUtils009_GetImageSize, + unix_ISteamUtils_SteamUtils009_GetImageRGBA, + unix_ISteamUtils_SteamUtils009_GetCSERIPPort, + unix_ISteamUtils_SteamUtils009_GetCurrentBatteryPower, + unix_ISteamUtils_SteamUtils009_GetAppID, + unix_ISteamUtils_SteamUtils009_SetOverlayNotificationPosition, + unix_ISteamUtils_SteamUtils009_IsAPICallCompleted, + unix_ISteamUtils_SteamUtils009_GetAPICallFailureReason, + unix_ISteamUtils_SteamUtils009_GetAPICallResult, + unix_ISteamUtils_SteamUtils009_RunFrame, + unix_ISteamUtils_SteamUtils009_GetIPCCallCount, + unix_ISteamUtils_SteamUtils009_SetWarningMessageHook, + unix_ISteamUtils_SteamUtils009_IsOverlayEnabled, + unix_ISteamUtils_SteamUtils009_BOverlayNeedsPresent, + unix_ISteamUtils_SteamUtils009_CheckFileSignature, + unix_ISteamUtils_SteamUtils009_ShowGamepadTextInput, + unix_ISteamUtils_SteamUtils009_GetEnteredGamepadTextLength, + unix_ISteamUtils_SteamUtils009_GetEnteredGamepadTextInput, + unix_ISteamUtils_SteamUtils009_GetSteamUILanguage, + unix_ISteamUtils_SteamUtils009_IsSteamRunningInVR, + unix_ISteamUtils_SteamUtils009_SetOverlayNotificationInset, + unix_ISteamUtils_SteamUtils009_IsSteamInBigPictureMode, + unix_ISteamUtils_SteamUtils009_StartVRDashboard, + unix_ISteamUtils_SteamUtils009_IsVRHeadsetStreamingEnabled, + unix_ISteamUtils_SteamUtils009_SetVRHeadsetStreamingEnabled, + unix_ISteamUtils_SteamUtils009_IsSteamChinaLauncher, + unix_ISteamUtils_SteamUtils009_InitFilterText, + unix_ISteamUtils_SteamUtils009_FilterText, + unix_ISteamUtils_SteamUtils009_GetIPv6ConnectivityState, + unix_ISteamUtils_SteamUtils010_GetSecondsSinceAppActive, + unix_ISteamUtils_SteamUtils010_GetSecondsSinceComputerActive, + unix_ISteamUtils_SteamUtils010_GetConnectedUniverse, + unix_ISteamUtils_SteamUtils010_GetServerRealTime, + unix_ISteamUtils_SteamUtils010_GetIPCountry, + unix_ISteamUtils_SteamUtils010_GetImageSize, + unix_ISteamUtils_SteamUtils010_GetImageRGBA, + unix_ISteamUtils_SteamUtils010_GetCSERIPPort, + unix_ISteamUtils_SteamUtils010_GetCurrentBatteryPower, + unix_ISteamUtils_SteamUtils010_GetAppID, + unix_ISteamUtils_SteamUtils010_SetOverlayNotificationPosition, + unix_ISteamUtils_SteamUtils010_IsAPICallCompleted, + unix_ISteamUtils_SteamUtils010_GetAPICallFailureReason, + unix_ISteamUtils_SteamUtils010_GetAPICallResult, + unix_ISteamUtils_SteamUtils010_RunFrame, + unix_ISteamUtils_SteamUtils010_GetIPCCallCount, + unix_ISteamUtils_SteamUtils010_SetWarningMessageHook, + unix_ISteamUtils_SteamUtils010_IsOverlayEnabled, + unix_ISteamUtils_SteamUtils010_BOverlayNeedsPresent, + unix_ISteamUtils_SteamUtils010_CheckFileSignature, + unix_ISteamUtils_SteamUtils010_ShowGamepadTextInput, + unix_ISteamUtils_SteamUtils010_GetEnteredGamepadTextLength, + unix_ISteamUtils_SteamUtils010_GetEnteredGamepadTextInput, + unix_ISteamUtils_SteamUtils010_GetSteamUILanguage, + unix_ISteamUtils_SteamUtils010_IsSteamRunningInVR, + unix_ISteamUtils_SteamUtils010_SetOverlayNotificationInset, + unix_ISteamUtils_SteamUtils010_IsSteamInBigPictureMode, + unix_ISteamUtils_SteamUtils010_StartVRDashboard, + unix_ISteamUtils_SteamUtils010_IsVRHeadsetStreamingEnabled, + unix_ISteamUtils_SteamUtils010_SetVRHeadsetStreamingEnabled, + unix_ISteamUtils_SteamUtils010_IsSteamChinaLauncher, + unix_ISteamUtils_SteamUtils010_InitFilterText, + unix_ISteamUtils_SteamUtils010_FilterText, + unix_ISteamUtils_SteamUtils010_GetIPv6ConnectivityState, + unix_ISteamUtils_SteamUtils010_IsSteamRunningOnSteamDeck, + unix_ISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput, + unix_ISteamUtils_SteamUtils010_SetGameLauncherMode, + unix_ISteamUtils_SteamUtils010_DismissFloatingGamepadTextInput, +}; + +#ifdef __cplusplus +} /* extern "C" */ +#endif /* __cplusplus */ diff --git a/lsteamclient/winISteamAppList.c b/lsteamclient/winISteamAppList.c index c9fbfb7e..ab7daead 100644 --- a/lsteamclient/winISteamAppList.c +++ b/lsteamclient/winISteamAppList.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001.h" - DEFINE_THISCALL_WRAPPER(winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetNumInstalledApps, 4) DEFINE_THISCALL_WRAPPER(winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetInstalledApps, 12) DEFINE_THISCALL_WRAPPER(winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName, 16) @@ -13,31 +11,31 @@ DEFINE_THISCALL_WRAPPER(winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAp uint32_t __thiscall winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetNumInstalledApps(struct w_steam_iface *_this) { - struct cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetNumInstalledApps_params params = + struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetNumInstalledApps_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetNumInstalledApps( ¶ms ); + 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) { - struct cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetInstalledApps_params params = + struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetInstalledApps_params params = { .linux_side = _this->u_iface, .pvecAppID = pvecAppID, .unMaxAppIDs = unMaxAppIDs, }; TRACE("%p\n", _this); - cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetInstalledApps( ¶ms ); + STEAMCLIENT_CALL( ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetInstalledApps, ¶ms ); return params._ret; } int32_t __thiscall winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName(struct w_steam_iface *_this, uint32_t nAppID, char *pchName, int32_t cchNameMax) { - struct cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName_params params = + struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, @@ -45,13 +43,13 @@ int32_t __thiscall winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName .cchNameMax = cchNameMax, }; TRACE("%p\n", _this); - cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName( ¶ms ); + STEAMCLIENT_CALL( ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName, ¶ms ); return params._ret; } int32_t __thiscall winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInstallDir(struct w_steam_iface *_this, uint32_t nAppID, char *pchDirectory, int32_t cchNameMax) { - struct cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInstallDir_params params = + struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInstallDir_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, @@ -59,20 +57,20 @@ int32_t __thiscall winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInst .cchNameMax = cchNameMax, }; TRACE("%p\n", _this); - cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInstallDir( ¶ms ); + STEAMCLIENT_CALL( ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInstallDir, ¶ms ); params._ret = steamclient_unix_path_to_dos_path( params._ret, pchDirectory, pchDirectory, cchNameMax, 0 ); return params._ret; } int32_t __thiscall winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppBuildId(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppBuildId_params params = + struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppBuildId_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppBuildId( ¶ms ); + STEAMCLIENT_CALL( ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppBuildId, ¶ms ); return params._ret; } diff --git a/lsteamclient/winISteamAppTicket.c b/lsteamclient/winISteamAppTicket.c index 1a4bb3a6..baa8b85c 100644 --- a/lsteamclient/winISteamAppTicket.c +++ b/lsteamclient/winISteamAppTicket.c @@ -3,13 +3,11 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001.h" - 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) { - struct cppISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001_GetAppOwnershipTicketData_params params = + struct ISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001_GetAppOwnershipTicketData_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, @@ -21,7 +19,7 @@ uint32_t __thiscall winISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001_GetAp .pcbSignature = pcbSignature, }; TRACE("%p\n", _this); - cppISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001_GetAppOwnershipTicketData( ¶ms ); + STEAMCLIENT_CALL( ISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001_GetAppOwnershipTicketData, ¶ms ); return params._ret; } diff --git a/lsteamclient/winISteamApps.c b/lsteamclient/winISteamApps.c index bd58426f..f2dec58a 100644 --- a/lsteamclient/winISteamApps.c +++ b/lsteamclient/winISteamApps.c @@ -3,13 +3,11 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamApps_STEAMAPPS_INTERFACE_VERSION001.h" - 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) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION001_GetAppData_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION001_GetAppData_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, @@ -18,7 +16,7 @@ int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION001_GetAppData(struc .cchValueMax = cchValueMax, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION001_GetAppData( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION001_GetAppData, ¶ms ); return params._ret; } @@ -41,8 +39,6 @@ struct w_steam_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION001(void * return r; } -#include "cppISteamApps_STEAMAPPS_INTERFACE_VERSION002.h" - DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed, 4) DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence, 4) DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe, 4) @@ -53,79 +49,79 @@ DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscrib bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned, ¶ms ); return params._ret; } const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentGameLanguage(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentGameLanguage_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentGameLanguage_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentGameLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentGameLanguage, ¶ms ); return params._ret; } const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp(struct w_steam_iface *_this, uint32_t appID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp_params params = { .linux_side = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp, ¶ms ); return params._ret; } @@ -154,8 +150,6 @@ struct w_steam_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION002(void * return r; } -#include "cppISteamApps_STEAMAPPS_INTERFACE_VERSION003.h" - DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribed, 4) DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsLowViolence, 4) DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsCybercafe, 4) @@ -167,91 +161,91 @@ DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsDlcInsta bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribed(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribed_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribed_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribed( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribed, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsLowViolence(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsLowViolence_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsLowViolence_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsLowViolence( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsLowViolence, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsCybercafe(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsCybercafe_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsCybercafe_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsCybercafe( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsCybercafe, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsVACBanned(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsVACBanned_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsVACBanned_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsVACBanned( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsVACBanned, ¶ms ); return params._ret; } const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetCurrentGameLanguage(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetCurrentGameLanguage_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetCurrentGameLanguage_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetCurrentGameLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetCurrentGameLanguage, ¶ms ); return params._ret; } const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetAvailableGameLanguages(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetAvailableGameLanguages_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetAvailableGameLanguages_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetAvailableGameLanguages( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetAvailableGameLanguages, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp(struct w_steam_iface *_this, uint32_t appID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp_params params = { .linux_side = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsDlcInstalled(struct w_steam_iface *_this, uint32_t appID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsDlcInstalled_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsDlcInstalled_params params = { .linux_side = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsDlcInstalled( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsDlcInstalled, ¶ms ); return params._ret; } @@ -281,8 +275,6 @@ struct w_steam_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION003(void * return r; } -#include "cppISteamApps_STEAMAPPS_INTERFACE_VERSION004.h" - DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribed, 4) DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsLowViolence, 4) DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsCybercafe, 4) @@ -300,131 +292,131 @@ DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION004_UninstallDL bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribed(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribed_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribed_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribed( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribed, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsLowViolence(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsLowViolence_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsLowViolence_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsLowViolence( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsLowViolence, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsCybercafe(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsCybercafe_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsCybercafe_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsCybercafe( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsCybercafe, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsVACBanned(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsVACBanned_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsVACBanned_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsVACBanned( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsVACBanned, ¶ms ); return params._ret; } const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetCurrentGameLanguage(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetCurrentGameLanguage_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetCurrentGameLanguage_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetCurrentGameLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetCurrentGameLanguage, ¶ms ); return params._ret; } const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetAvailableGameLanguages(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetAvailableGameLanguages_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetAvailableGameLanguages_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetAvailableGameLanguages( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetAvailableGameLanguages, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedApp(struct w_steam_iface *_this, uint32_t appID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedApp_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedApp_params params = { .linux_side = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedApp( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedApp, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsDlcInstalled(struct w_steam_iface *_this, uint32_t appID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsDlcInstalled_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsDlcInstalled_params params = { .linux_side = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsDlcInstalled( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsDlcInstalled, ¶ms ); return params._ret; } uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetEarliestPurchaseUnixTime(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetEarliestPurchaseUnixTime_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetEarliestPurchaseUnixTime_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetEarliestPurchaseUnixTime( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetEarliestPurchaseUnixTime, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedFromFreeWeekend(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedFromFreeWeekend_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedFromFreeWeekend_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedFromFreeWeekend( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedFromFreeWeekend, ¶ms ); return params._ret; } int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetDLCCount(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetDLCCount_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetDLCCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetDLCCount( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetDLCCount, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByIndex(struct w_steam_iface *_this, int32_t iDLC, uint32_t *pAppID, bool *pbAvailable, char *pchName, int32_t cchNameBufferSize) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByIndex_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByIndex_params params = { .linux_side = _this->u_iface, .iDLC = iDLC, @@ -434,30 +426,30 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByIndex( .cchNameBufferSize = cchNameBufferSize, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByIndex, ¶ms ); return params._ret; } void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_InstallDLC(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_InstallDLC_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_InstallDLC_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_InstallDLC( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION004_InstallDLC, ¶ms ); } void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_UninstallDLC(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_UninstallDLC_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_UninstallDLC_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_UninstallDLC( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION004_UninstallDLC, ¶ms ); } extern vtable_ptr winISteamApps_STEAMAPPS_INTERFACE_VERSION004_vtable; @@ -492,8 +484,6 @@ struct w_steam_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION004(void * return r; } -#include "cppISteamApps_STEAMAPPS_INTERFACE_VERSION005.h" - DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribed, 4) DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsLowViolence, 4) DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsCybercafe, 4) @@ -517,131 +507,131 @@ DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsAppInsta bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribed(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribed_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribed_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribed( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribed, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsLowViolence(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsLowViolence_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsLowViolence_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsLowViolence( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsLowViolence, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsCybercafe(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsCybercafe_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsCybercafe_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsCybercafe( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsCybercafe, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsVACBanned(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsVACBanned_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsVACBanned_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsVACBanned( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsVACBanned, ¶ms ); return params._ret; } const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentGameLanguage(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentGameLanguage_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentGameLanguage_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentGameLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentGameLanguage, ¶ms ); return params._ret; } const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAvailableGameLanguages(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAvailableGameLanguages_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAvailableGameLanguages_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAvailableGameLanguages( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAvailableGameLanguages, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedApp(struct w_steam_iface *_this, uint32_t appID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedApp_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedApp_params params = { .linux_side = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedApp( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedApp, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsDlcInstalled(struct w_steam_iface *_this, uint32_t appID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsDlcInstalled_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsDlcInstalled_params params = { .linux_side = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsDlcInstalled( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsDlcInstalled, ¶ms ); return params._ret; } uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetEarliestPurchaseUnixTime(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetEarliestPurchaseUnixTime_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetEarliestPurchaseUnixTime_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetEarliestPurchaseUnixTime( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetEarliestPurchaseUnixTime, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedFromFreeWeekend(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedFromFreeWeekend_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedFromFreeWeekend_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedFromFreeWeekend( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedFromFreeWeekend, ¶ms ); return params._ret; } int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetDLCCount(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetDLCCount_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetDLCCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetDLCCount( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetDLCCount, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BGetDLCDataByIndex(struct w_steam_iface *_this, int32_t iDLC, uint32_t *pAppID, bool *pbAvailable, char *pchName, int32_t cchNameBufferSize) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BGetDLCDataByIndex_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BGetDLCDataByIndex_params params = { .linux_side = _this->u_iface, .iDLC = iDLC, @@ -651,84 +641,84 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BGetDLCDataByIndex( .cchNameBufferSize = cchNameBufferSize, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BGetDLCDataByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BGetDLCDataByIndex, ¶ms ); return params._ret; } void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_InstallDLC(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_InstallDLC_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_InstallDLC_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_InstallDLC( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_InstallDLC, ¶ms ); } void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_UninstallDLC(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_UninstallDLC_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_UninstallDLC_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_UninstallDLC( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_UninstallDLC, ¶ms ); } void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_RequestAppProofOfPurchaseKey(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_RequestAppProofOfPurchaseKey_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_RequestAppProofOfPurchaseKey_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_RequestAppProofOfPurchaseKey( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_RequestAppProofOfPurchaseKey, ¶ms ); } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaName(struct w_steam_iface *_this, char *pchName, int32_t cchNameBufferSize) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaName_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaName_params params = { .linux_side = _this->u_iface, .pchName = pchName, .cchNameBufferSize = cchNameBufferSize, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaName( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaName, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_MarkContentCorrupt(struct w_steam_iface *_this, bool bMissingFilesOnly) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_MarkContentCorrupt_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_MarkContentCorrupt_params params = { .linux_side = _this->u_iface, .bMissingFilesOnly = bMissingFilesOnly, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_MarkContentCorrupt( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_MarkContentCorrupt, ¶ms ); return params._ret; } uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetInstalledDepots(struct w_steam_iface *_this, uint32_t *pvecDepots, uint32_t cMaxDepots) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetInstalledDepots_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetInstalledDepots_params params = { .linux_side = _this->u_iface, .pvecDepots = pvecDepots, .cMaxDepots = cMaxDepots, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetInstalledDepots( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetInstalledDepots, ¶ms ); return params._ret; } uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAppInstallDir(struct w_steam_iface *_this, uint32_t appID, char *pchFolder, uint32_t cchFolderBufferSize) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAppInstallDir_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAppInstallDir_params params = { .linux_side = _this->u_iface, .appID = appID, @@ -736,20 +726,20 @@ uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAppInstallDi .cchFolderBufferSize = cchFolderBufferSize, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAppInstallDir( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAppInstallDir, ¶ms ); params._ret = steamclient_unix_path_to_dos_path( params._ret, pchFolder, pchFolder, cchFolderBufferSize, 0 ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsAppInstalled(struct w_steam_iface *_this, uint32_t appID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsAppInstalled_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsAppInstalled_params params = { .linux_side = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsAppInstalled( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsAppInstalled, ¶ms ); return params._ret; } @@ -791,8 +781,6 @@ struct w_steam_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION005(void * return r; } -#include "cppISteamApps_STEAMAPPS_INTERFACE_VERSION006.h" - DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribed, 4) DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsLowViolence, 4) DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsCybercafe, 4) @@ -818,131 +806,131 @@ DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetLaunchQu bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribed(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribed_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribed_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribed( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribed, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsLowViolence(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsLowViolence_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsLowViolence_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsLowViolence( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsLowViolence, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsCybercafe(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsCybercafe_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsCybercafe_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsCybercafe( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsCybercafe, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsVACBanned(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsVACBanned_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsVACBanned_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsVACBanned( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsVACBanned, ¶ms ); return params._ret; } const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentGameLanguage(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentGameLanguage_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentGameLanguage_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentGameLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentGameLanguage, ¶ms ); return params._ret; } const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAvailableGameLanguages(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAvailableGameLanguages_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAvailableGameLanguages_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAvailableGameLanguages( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAvailableGameLanguages, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedApp(struct w_steam_iface *_this, uint32_t appID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedApp_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedApp_params params = { .linux_side = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedApp( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedApp, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsDlcInstalled(struct w_steam_iface *_this, uint32_t appID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsDlcInstalled_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsDlcInstalled_params params = { .linux_side = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsDlcInstalled( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsDlcInstalled, ¶ms ); return params._ret; } uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetEarliestPurchaseUnixTime(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetEarliestPurchaseUnixTime_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetEarliestPurchaseUnixTime_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetEarliestPurchaseUnixTime( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetEarliestPurchaseUnixTime, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedFromFreeWeekend(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedFromFreeWeekend_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedFromFreeWeekend_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedFromFreeWeekend( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedFromFreeWeekend, ¶ms ); return params._ret; } int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetDLCCount(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetDLCCount_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetDLCCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetDLCCount( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetDLCCount, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BGetDLCDataByIndex(struct w_steam_iface *_this, int32_t iDLC, uint32_t *pAppID, bool *pbAvailable, char *pchName, int32_t cchNameBufferSize) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BGetDLCDataByIndex_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BGetDLCDataByIndex_params params = { .linux_side = _this->u_iface, .iDLC = iDLC, @@ -952,71 +940,71 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BGetDLCDataByIndex( .cchNameBufferSize = cchNameBufferSize, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BGetDLCDataByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BGetDLCDataByIndex, ¶ms ); return params._ret; } void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_InstallDLC(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_InstallDLC_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_InstallDLC_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_InstallDLC( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_InstallDLC, ¶ms ); } void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_UninstallDLC(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_UninstallDLC_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_UninstallDLC_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_UninstallDLC( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_UninstallDLC, ¶ms ); } void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_RequestAppProofOfPurchaseKey(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_RequestAppProofOfPurchaseKey_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_RequestAppProofOfPurchaseKey_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_RequestAppProofOfPurchaseKey( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_RequestAppProofOfPurchaseKey, ¶ms ); } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaName(struct w_steam_iface *_this, char *pchName, int32_t cchNameBufferSize) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaName_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaName_params params = { .linux_side = _this->u_iface, .pchName = pchName, .cchNameBufferSize = cchNameBufferSize, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaName( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaName, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_MarkContentCorrupt(struct w_steam_iface *_this, bool bMissingFilesOnly) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_MarkContentCorrupt_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_MarkContentCorrupt_params params = { .linux_side = _this->u_iface, .bMissingFilesOnly = bMissingFilesOnly, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_MarkContentCorrupt( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_MarkContentCorrupt, ¶ms ); 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) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetInstalledDepots_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetInstalledDepots_params params = { .linux_side = _this->u_iface, .appID = appID, @@ -1024,13 +1012,13 @@ uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetInstalledDep .cMaxDepots = cMaxDepots, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetInstalledDepots( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetInstalledDepots, ¶ms ); return params._ret; } uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppInstallDir(struct w_steam_iface *_this, uint32_t appID, char *pchFolder, uint32_t cchFolderBufferSize) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppInstallDir_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppInstallDir_params params = { .linux_side = _this->u_iface, .appID = appID, @@ -1038,44 +1026,44 @@ uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppInstallDi .cchFolderBufferSize = cchFolderBufferSize, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppInstallDir( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppInstallDir, ¶ms ); params._ret = steamclient_unix_path_to_dos_path( params._ret, pchFolder, pchFolder, cchFolderBufferSize, 0 ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsAppInstalled(struct w_steam_iface *_this, uint32_t appID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsAppInstalled_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsAppInstalled_params params = { .linux_side = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsAppInstalled( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsAppInstalled, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppOwner(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppOwner_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppOwner_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppOwner( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppOwner, ¶ms ); return params._ret; } const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetLaunchQueryParam(struct w_steam_iface *_this, const char *pchKey) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetLaunchQueryParam_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetLaunchQueryParam_params params = { .linux_side = _this->u_iface, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetLaunchQueryParam( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetLaunchQueryParam, ¶ms ); return params._ret; } @@ -1119,8 +1107,6 @@ struct w_steam_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION006(void * return r; } -#include "cppISteamApps_STEAMAPPS_INTERFACE_VERSION007.h" - DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribed, 4) DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsLowViolence, 4) DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsCybercafe, 4) @@ -1148,131 +1134,131 @@ DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppBuild bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribed(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribed_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribed_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribed( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribed, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsLowViolence(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsLowViolence_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsLowViolence_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsLowViolence( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsLowViolence, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsCybercafe(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsCybercafe_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsCybercafe_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsCybercafe( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsCybercafe, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsVACBanned(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsVACBanned_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsVACBanned_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsVACBanned( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsVACBanned, ¶ms ); return params._ret; } const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentGameLanguage(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentGameLanguage_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentGameLanguage_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentGameLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentGameLanguage, ¶ms ); return params._ret; } const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAvailableGameLanguages(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAvailableGameLanguages_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAvailableGameLanguages_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAvailableGameLanguages( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAvailableGameLanguages, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedApp(struct w_steam_iface *_this, uint32_t appID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedApp_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedApp_params params = { .linux_side = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedApp( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedApp, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsDlcInstalled(struct w_steam_iface *_this, uint32_t appID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsDlcInstalled_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsDlcInstalled_params params = { .linux_side = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsDlcInstalled( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsDlcInstalled, ¶ms ); return params._ret; } uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetEarliestPurchaseUnixTime(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetEarliestPurchaseUnixTime_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetEarliestPurchaseUnixTime_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetEarliestPurchaseUnixTime( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetEarliestPurchaseUnixTime, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedFromFreeWeekend(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedFromFreeWeekend_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedFromFreeWeekend_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedFromFreeWeekend( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedFromFreeWeekend, ¶ms ); return params._ret; } int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDLCCount(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDLCCount_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDLCCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDLCCount( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDLCCount, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BGetDLCDataByIndex(struct w_steam_iface *_this, int32_t iDLC, uint32_t *pAppID, bool *pbAvailable, char *pchName, int32_t cchNameBufferSize) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BGetDLCDataByIndex_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BGetDLCDataByIndex_params params = { .linux_side = _this->u_iface, .iDLC = iDLC, @@ -1282,71 +1268,71 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BGetDLCDataByIndex( .cchNameBufferSize = cchNameBufferSize, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BGetDLCDataByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BGetDLCDataByIndex, ¶ms ); return params._ret; } void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_InstallDLC(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_InstallDLC_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_InstallDLC_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_InstallDLC( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_InstallDLC, ¶ms ); } void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_UninstallDLC(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_UninstallDLC_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_UninstallDLC_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_UninstallDLC( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_UninstallDLC, ¶ms ); } void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_RequestAppProofOfPurchaseKey(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_RequestAppProofOfPurchaseKey_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_RequestAppProofOfPurchaseKey_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_RequestAppProofOfPurchaseKey( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_RequestAppProofOfPurchaseKey, ¶ms ); } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName(struct w_steam_iface *_this, char *pchName, int32_t cchNameBufferSize) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName_params params = { .linux_side = _this->u_iface, .pchName = pchName, .cchNameBufferSize = cchNameBufferSize, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_MarkContentCorrupt(struct w_steam_iface *_this, bool bMissingFilesOnly) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_MarkContentCorrupt_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_MarkContentCorrupt_params params = { .linux_side = _this->u_iface, .bMissingFilesOnly = bMissingFilesOnly, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_MarkContentCorrupt( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_MarkContentCorrupt, ¶ms ); 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) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetInstalledDepots_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetInstalledDepots_params params = { .linux_side = _this->u_iface, .appID = appID, @@ -1354,13 +1340,13 @@ uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetInstalledDep .cMaxDepots = cMaxDepots, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetInstalledDepots( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetInstalledDepots, ¶ms ); return params._ret; } uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppInstallDir(struct w_steam_iface *_this, uint32_t appID, char *pchFolder, uint32_t cchFolderBufferSize) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppInstallDir_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppInstallDir_params params = { .linux_side = _this->u_iface, .appID = appID, @@ -1368,50 +1354,50 @@ uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppInstallDi .cchFolderBufferSize = cchFolderBufferSize, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppInstallDir( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppInstallDir, ¶ms ); params._ret = steamclient_unix_path_to_dos_path( params._ret, pchFolder, pchFolder, cchFolderBufferSize, 0 ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsAppInstalled(struct w_steam_iface *_this, uint32_t appID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsAppInstalled_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsAppInstalled_params params = { .linux_side = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsAppInstalled( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsAppInstalled, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppOwner(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppOwner_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppOwner_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppOwner( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppOwner, ¶ms ); return params._ret; } const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetLaunchQueryParam(struct w_steam_iface *_this, const char *pchKey) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetLaunchQueryParam_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetLaunchQueryParam_params params = { .linux_side = _this->u_iface, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetLaunchQueryParam( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetLaunchQueryParam, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress(struct w_steam_iface *_this, uint32_t nAppID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, @@ -1419,18 +1405,18 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgr .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress, ¶ms ); return params._ret; } int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppBuildId(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppBuildId_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppBuildId_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppBuildId( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppBuildId, ¶ms ); return params._ret; } @@ -1476,8 +1462,6 @@ struct w_steam_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION007(void * return r; } -#include "cppISteamApps_STEAMAPPS_INTERFACE_VERSION008.h" - DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribed, 4) DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsLowViolence, 4) DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsCybercafe, 4) @@ -1511,131 +1495,131 @@ DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetDlcConte bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribed(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribed_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribed_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribed( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribed, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsLowViolence(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsLowViolence_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsLowViolence_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsLowViolence( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsLowViolence, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsCybercafe(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsCybercafe_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsCybercafe_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsCybercafe( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsCybercafe, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsVACBanned(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsVACBanned_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsVACBanned_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsVACBanned( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsVACBanned, ¶ms ); return params._ret; } const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentGameLanguage(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentGameLanguage_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentGameLanguage_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentGameLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentGameLanguage, ¶ms ); return params._ret; } const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAvailableGameLanguages(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAvailableGameLanguages_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAvailableGameLanguages_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAvailableGameLanguages( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAvailableGameLanguages, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedApp(struct w_steam_iface *_this, uint32_t appID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedApp_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedApp_params params = { .linux_side = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedApp( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedApp, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsDlcInstalled(struct w_steam_iface *_this, uint32_t appID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsDlcInstalled_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsDlcInstalled_params params = { .linux_side = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsDlcInstalled( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsDlcInstalled, ¶ms ); return params._ret; } uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetEarliestPurchaseUnixTime(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetEarliestPurchaseUnixTime_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetEarliestPurchaseUnixTime_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetEarliestPurchaseUnixTime( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetEarliestPurchaseUnixTime, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFreeWeekend(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFreeWeekend_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFreeWeekend_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFreeWeekend( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFreeWeekend, ¶ms ); return params._ret; } int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDLCCount(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDLCCount_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDLCCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDLCCount( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDLCCount, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BGetDLCDataByIndex(struct w_steam_iface *_this, int32_t iDLC, uint32_t *pAppID, bool *pbAvailable, char *pchName, int32_t cchNameBufferSize) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BGetDLCDataByIndex_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BGetDLCDataByIndex_params params = { .linux_side = _this->u_iface, .iDLC = iDLC, @@ -1645,71 +1629,71 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BGetDLCDataByIndex( .cchNameBufferSize = cchNameBufferSize, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BGetDLCDataByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BGetDLCDataByIndex, ¶ms ); return params._ret; } void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_InstallDLC(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_InstallDLC_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_InstallDLC_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_InstallDLC( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_InstallDLC, ¶ms ); } void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_UninstallDLC(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_UninstallDLC_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_UninstallDLC_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_UninstallDLC( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_UninstallDLC, ¶ms ); } void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAppProofOfPurchaseKey(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAppProofOfPurchaseKey_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAppProofOfPurchaseKey_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAppProofOfPurchaseKey( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAppProofOfPurchaseKey, ¶ms ); } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaName(struct w_steam_iface *_this, char *pchName, int32_t cchNameBufferSize) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaName_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaName_params params = { .linux_side = _this->u_iface, .pchName = pchName, .cchNameBufferSize = cchNameBufferSize, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaName( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaName, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_MarkContentCorrupt(struct w_steam_iface *_this, bool bMissingFilesOnly) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_MarkContentCorrupt_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_MarkContentCorrupt_params params = { .linux_side = _this->u_iface, .bMissingFilesOnly = bMissingFilesOnly, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_MarkContentCorrupt( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_MarkContentCorrupt, ¶ms ); 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) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetInstalledDepots_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetInstalledDepots_params params = { .linux_side = _this->u_iface, .appID = appID, @@ -1717,13 +1701,13 @@ uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetInstalledDep .cMaxDepots = cMaxDepots, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetInstalledDepots( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetInstalledDepots, ¶ms ); return params._ret; } uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppInstallDir(struct w_steam_iface *_this, uint32_t appID, char *pchFolder, uint32_t cchFolderBufferSize) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppInstallDir_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppInstallDir_params params = { .linux_side = _this->u_iface, .appID = appID, @@ -1731,50 +1715,50 @@ uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppInstallDi .cchFolderBufferSize = cchFolderBufferSize, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppInstallDir( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppInstallDir, ¶ms ); params._ret = steamclient_unix_path_to_dos_path( params._ret, pchFolder, pchFolder, cchFolderBufferSize, 0 ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsAppInstalled(struct w_steam_iface *_this, uint32_t appID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsAppInstalled_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsAppInstalled_params params = { .linux_side = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsAppInstalled( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsAppInstalled, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppOwner(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppOwner_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppOwner_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppOwner( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppOwner, ¶ms ); return params._ret; } const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchQueryParam(struct w_steam_iface *_this, const char *pchKey) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchQueryParam_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchQueryParam_params params = { .linux_side = _this->u_iface, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchQueryParam( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchQueryParam, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDlcDownloadProgress(struct w_steam_iface *_this, uint32_t nAppID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDlcDownloadProgress_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDlcDownloadProgress_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, @@ -1782,91 +1766,91 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDlcDownloadProgr .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDlcDownloadProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDlcDownloadProgress, ¶ms ); return params._ret; } int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppBuildId(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppBuildId_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppBuildId_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppBuildId( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppBuildId, ¶ms ); return params._ret; } void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAllProofOfPurchaseKeys(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAllProofOfPurchaseKeys_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAllProofOfPurchaseKeys_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAllProofOfPurchaseKeys( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAllProofOfPurchaseKeys, ¶ms ); } uint64_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetFileDetails(struct w_steam_iface *_this, const char *pszFileName) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetFileDetails_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetFileDetails_params params = { .linux_side = _this->u_iface, .pszFileName = pszFileName, }; params.pszFileName = steamclient_dos_to_unix_path( pszFileName, 0 ); TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetFileDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetFileDetails, ¶ms ); steamclient_free_path( params.pszFileName ); return params._ret; } int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchCommandLine(struct w_steam_iface *_this, char *pszCommandLine, int32_t cubCommandLine) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchCommandLine_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchCommandLine_params params = { .linux_side = _this->u_iface, .pszCommandLine = pszCommandLine, .cubCommandLine = cubCommandLine, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchCommandLine( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchCommandLine, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFamilySharing(struct w_steam_iface *_this) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFamilySharing_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFamilySharing_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFamilySharing( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFamilySharing, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial(struct w_steam_iface *_this, uint32_t *punSecondsAllowed, uint32_t *punSecondsPlayed) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial_params params = { .linux_side = _this->u_iface, .punSecondsAllowed = punSecondsAllowed, .punSecondsPlayed = punSecondsPlayed, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial, ¶ms ); return params._ret; } bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetDlcContext(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetDlcContext_params params = + struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetDlcContext_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetDlcContext( ¶ms ); + STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetDlcContext, ¶ms ); return params._ret; } diff --git a/lsteamclient/winISteamClient.c b/lsteamclient/winISteamClient.c index 6be163a4..927416af 100644 --- a/lsteamclient/winISteamClient.c +++ b/lsteamclient/winISteamClient.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamClient_SteamClient006.h" - DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient006_CreateSteamPipe, 4) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient006_BReleaseSteamPipe, 8) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient006_CreateGlobalUser, 8) @@ -29,78 +27,78 @@ DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient006_GetIPCCallCount, 4) int32_t __thiscall winISteamClient_SteamClient006_CreateSteamPipe(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient006_CreateSteamPipe_params params = + struct ISteamClient_SteamClient006_CreateSteamPipe_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient006_CreateSteamPipe( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient006_CreateSteamPipe, ¶ms ); return params._ret; } bool __thiscall winISteamClient_SteamClient006_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) { - struct cppISteamClient_SteamClient006_BReleaseSteamPipe_params params = + struct ISteamClient_SteamClient006_BReleaseSteamPipe_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient006_BReleaseSteamPipe( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient006_BReleaseSteamPipe, ¶ms ); return params._ret; } int32_t __thiscall winISteamClient_SteamClient006_CreateGlobalUser(struct w_steam_iface *_this, int32_t *phSteamPipe) { - struct cppISteamClient_SteamClient006_CreateGlobalUser_params params = + struct ISteamClient_SteamClient006_CreateGlobalUser_params params = { .linux_side = _this->u_iface, .phSteamPipe = phSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient006_CreateGlobalUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient006_CreateGlobalUser, ¶ms ); return params._ret; } int32_t __thiscall winISteamClient_SteamClient006_ConnectToGlobalUser(struct w_steam_iface *_this, int32_t hSteamPipe) { - struct cppISteamClient_SteamClient006_ConnectToGlobalUser_params params = + struct ISteamClient_SteamClient006_ConnectToGlobalUser_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient006_ConnectToGlobalUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient006_ConnectToGlobalUser, ¶ms ); return params._ret; } int32_t __thiscall winISteamClient_SteamClient006_CreateLocalUser(struct w_steam_iface *_this, int32_t *phSteamPipe) { - struct cppISteamClient_SteamClient006_CreateLocalUser_params params = + struct ISteamClient_SteamClient006_CreateLocalUser_params params = { .linux_side = _this->u_iface, .phSteamPipe = phSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient006_CreateLocalUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient006_CreateLocalUser, ¶ms ); return params._ret; } void __thiscall winISteamClient_SteamClient006_ReleaseUser(struct w_steam_iface *_this, int32_t hSteamPipe, int32_t hUser) { - struct cppISteamClient_SteamClient006_ReleaseUser_params params = + struct ISteamClient_SteamClient006_ReleaseUser_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, .hUser = hUser, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient006_ReleaseUser( ¶ms ); + 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) { - struct cppISteamClient_SteamClient006_GetISteamUser_params params = + struct ISteamClient_SteamClient006_GetISteamUser_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -108,26 +106,26 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient006_GetISteamUser(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient006_GetISteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient006_GetISteamUser, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void * __thiscall winISteamClient_SteamClient006_GetIVAC(struct w_steam_iface *_this, int32_t hSteamUser) { - struct cppISteamClient_SteamClient006_GetIVAC_params params = + struct ISteamClient_SteamClient006_GetIVAC_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient006_GetIVAC( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient006_GetIVAC, ¶ms ); return params._ret; } void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient006_GetISteamGameServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient006_GetISteamGameServer_params params = + struct ISteamClient_SteamClient006_GetISteamGameServer_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -135,38 +133,38 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient006_GetISteamG .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient006_GetISteamGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient006_GetISteamGameServer, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient006_SetLocalIPBinding(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort) { - struct cppISteamClient_SteamClient006_SetLocalIPBinding_params params = + struct ISteamClient_SteamClient006_SetLocalIPBinding_params params = { .linux_side = _this->u_iface, .unIP = unIP, .usPort = usPort, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient006_SetLocalIPBinding( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient006_SetLocalIPBinding, ¶ms ); } const char * __thiscall winISteamClient_SteamClient006_GetUniverseName(struct w_steam_iface *_this, uint32_t eUniverse) { - struct cppISteamClient_SteamClient006_GetUniverseName_params params = + struct ISteamClient_SteamClient006_GetUniverseName_params params = { .linux_side = _this->u_iface, .eUniverse = eUniverse, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient006_GetUniverseName( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient006_GetUniverseName, ¶ms ); return params._ret; } void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient006_GetISteamFriends(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient006_GetISteamFriends_params params = + struct ISteamClient_SteamClient006_GetISteamFriends_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -174,28 +172,28 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient006_GetISteamFrie .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient006_GetISteamFriends( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient006_GetISteamFriends, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient006_GetISteamUtils(struct w_steam_iface *_this, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient006_GetISteamUtils_params params = + struct ISteamClient_SteamClient006_GetISteamUtils_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient006_GetISteamUtils( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient006_GetISteamUtils, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void * __thiscall winISteamClient_SteamClient006_GetISteamBilling(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient006_GetISteamBilling_params params = + struct ISteamClient_SteamClient006_GetISteamBilling_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -203,13 +201,13 @@ void * __thiscall winISteamClient_SteamClient006_GetISteamBilling(struct w_steam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient006_GetISteamBilling( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient006_GetISteamBilling, ¶ms ); return params._ret; } void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient006_GetISteamMatchmaking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient006_GetISteamMatchmaking_params params = + struct ISteamClient_SteamClient006_GetISteamMatchmaking_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -217,14 +215,14 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient006_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient006_GetISteamMatchmaking( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient006_GetISteamMatchmaking, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient006_GetISteamApps(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient006_GetISteamApps_params params = + struct ISteamClient_SteamClient006_GetISteamApps_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -232,14 +230,14 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient006_GetISteamApps(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient006_GetISteamApps( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient006_GetISteamApps, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamContentServer*/ * __thiscall winISteamClient_SteamClient006_GetISteamContentServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient006_GetISteamContentServer_params params = + struct ISteamClient_SteamClient006_GetISteamContentServer_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -247,14 +245,14 @@ void /*ISteamContentServer*/ * __thiscall winISteamClient_SteamClient006_GetISte .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient006_GetISteamContentServer( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient006_GetISteamContentServer, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient006_GetISteamMasterServerUpdater(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient006_GetISteamMasterServerUpdater_params params = + struct ISteamClient_SteamClient006_GetISteamMasterServerUpdater_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -262,14 +260,14 @@ void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient006_G .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient006_GetISteamMasterServerUpdater( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient006_GetISteamMasterServerUpdater, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient006_GetISteamMatchmakingServers(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient006_GetISteamMatchmakingServers_params params = + struct ISteamClient_SteamClient006_GetISteamMatchmakingServers_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -277,29 +275,29 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient006_Ge .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient006_GetISteamMatchmakingServers( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient006_GetISteamMatchmakingServers, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient006_RunFrame(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient006_RunFrame_params params = + struct ISteamClient_SteamClient006_RunFrame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient006_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient006_RunFrame, ¶ms ); } uint32_t __thiscall winISteamClient_SteamClient006_GetIPCCallCount(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient006_GetIPCCallCount_params params = + struct ISteamClient_SteamClient006_GetIPCCallCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient006_GetIPCCallCount( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient006_GetIPCCallCount, ¶ms ); return params._ret; } @@ -342,8 +340,6 @@ struct w_steam_iface *create_winISteamClient_SteamClient006(void *u_iface) return r; } -#include "cppISteamClient_SteamClient007.h" - DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient007_CreateSteamPipe, 4) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient007_BReleaseSteamPipe, 8) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient007_ConnectToGlobalUser, 8) @@ -369,66 +365,66 @@ DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient007_GetISteamRemoteStorage, 1 int32_t __thiscall winISteamClient_SteamClient007_CreateSteamPipe(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient007_CreateSteamPipe_params params = + struct ISteamClient_SteamClient007_CreateSteamPipe_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient007_CreateSteamPipe( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient007_CreateSteamPipe, ¶ms ); return params._ret; } bool __thiscall winISteamClient_SteamClient007_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) { - struct cppISteamClient_SteamClient007_BReleaseSteamPipe_params params = + struct ISteamClient_SteamClient007_BReleaseSteamPipe_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient007_BReleaseSteamPipe( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient007_BReleaseSteamPipe, ¶ms ); return params._ret; } int32_t __thiscall winISteamClient_SteamClient007_ConnectToGlobalUser(struct w_steam_iface *_this, int32_t hSteamPipe) { - struct cppISteamClient_SteamClient007_ConnectToGlobalUser_params params = + struct ISteamClient_SteamClient007_ConnectToGlobalUser_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient007_ConnectToGlobalUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient007_ConnectToGlobalUser, ¶ms ); return params._ret; } int32_t __thiscall winISteamClient_SteamClient007_CreateLocalUser(struct w_steam_iface *_this, int32_t *phSteamPipe) { - struct cppISteamClient_SteamClient007_CreateLocalUser_params params = + struct ISteamClient_SteamClient007_CreateLocalUser_params params = { .linux_side = _this->u_iface, .phSteamPipe = phSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient007_CreateLocalUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient007_CreateLocalUser, ¶ms ); return params._ret; } void __thiscall winISteamClient_SteamClient007_ReleaseUser(struct w_steam_iface *_this, int32_t hSteamPipe, int32_t hUser) { - struct cppISteamClient_SteamClient007_ReleaseUser_params params = + struct ISteamClient_SteamClient007_ReleaseUser_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, .hUser = hUser, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient007_ReleaseUser( ¶ms ); + 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) { - struct cppISteamClient_SteamClient007_GetISteamUser_params params = + struct ISteamClient_SteamClient007_GetISteamUser_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -436,14 +432,14 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient007_GetISteamUser(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient007_GetISteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient007_GetISteamUser, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient007_GetISteamGameServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient007_GetISteamGameServer_params params = + struct ISteamClient_SteamClient007_GetISteamGameServer_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -451,26 +447,26 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient007_GetISteamG .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient007_GetISteamGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient007_GetISteamGameServer, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient007_SetLocalIPBinding(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort) { - struct cppISteamClient_SteamClient007_SetLocalIPBinding_params params = + struct ISteamClient_SteamClient007_SetLocalIPBinding_params params = { .linux_side = _this->u_iface, .unIP = unIP, .usPort = usPort, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient007_SetLocalIPBinding( ¶ms ); + 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) { - struct cppISteamClient_SteamClient007_GetISteamFriends_params params = + struct ISteamClient_SteamClient007_GetISteamFriends_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -478,28 +474,28 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient007_GetISteamFrie .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient007_GetISteamFriends( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient007_GetISteamFriends, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient007_GetISteamUtils(struct w_steam_iface *_this, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient007_GetISteamUtils_params params = + struct ISteamClient_SteamClient007_GetISteamUtils_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient007_GetISteamUtils( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient007_GetISteamUtils, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient007_GetISteamMatchmaking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient007_GetISteamMatchmaking_params params = + struct ISteamClient_SteamClient007_GetISteamMatchmaking_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -507,14 +503,14 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient007_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient007_GetISteamMatchmaking( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient007_GetISteamMatchmaking, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamContentServer*/ * __thiscall winISteamClient_SteamClient007_GetISteamContentServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient007_GetISteamContentServer_params params = + struct ISteamClient_SteamClient007_GetISteamContentServer_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -522,14 +518,14 @@ void /*ISteamContentServer*/ * __thiscall winISteamClient_SteamClient007_GetISte .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient007_GetISteamContentServer( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient007_GetISteamContentServer, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient007_GetISteamMasterServerUpdater(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient007_GetISteamMasterServerUpdater_params params = + struct ISteamClient_SteamClient007_GetISteamMasterServerUpdater_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -537,14 +533,14 @@ void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient007_G .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient007_GetISteamMasterServerUpdater( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient007_GetISteamMasterServerUpdater, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient007_GetISteamMatchmakingServers(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient007_GetISteamMatchmakingServers_params params = + struct ISteamClient_SteamClient007_GetISteamMatchmakingServers_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -552,14 +548,14 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient007_Ge .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient007_GetISteamMatchmakingServers( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient007_GetISteamMatchmakingServers, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void * __thiscall winISteamClient_SteamClient007_GetISteamGenericInterface(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient007_GetISteamGenericInterface_params params = + struct ISteamClient_SteamClient007_GetISteamGenericInterface_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -567,35 +563,35 @@ void * __thiscall winISteamClient_SteamClient007_GetISteamGenericInterface(struc .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient007_GetISteamGenericInterface( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient007_GetISteamGenericInterface, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient007_RunFrame(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient007_RunFrame_params params = + struct ISteamClient_SteamClient007_RunFrame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient007_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient007_RunFrame, ¶ms ); } uint32_t __thiscall winISteamClient_SteamClient007_GetIPCCallCount(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient007_GetIPCCallCount_params params = + struct ISteamClient_SteamClient007_GetIPCCallCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient007_GetIPCCallCount( ¶ms ); + 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) { - struct cppISteamClient_SteamClient007_GetISteamUserStats_params params = + struct ISteamClient_SteamClient007_GetISteamUserStats_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -603,14 +599,14 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient007_GetISteamUs .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient007_GetISteamUserStats( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient007_GetISteamUserStats, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient007_GetISteamApps(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient007_GetISteamApps_params params = + struct ISteamClient_SteamClient007_GetISteamApps_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -618,14 +614,14 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient007_GetISteamApps(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient007_GetISteamApps( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient007_GetISteamApps, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient007_GetISteamNetworking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient007_GetISteamNetworking_params params = + struct ISteamClient_SteamClient007_GetISteamNetworking_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -633,25 +629,25 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient007_GetISteamN .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient007_GetISteamNetworking( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient007_GetISteamNetworking, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient007_SetWarningMessageHook(struct w_steam_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) { - struct cppISteamClient_SteamClient007_SetWarningMessageHook_params params = + struct ISteamClient_SteamClient007_SetWarningMessageHook_params params = { .linux_side = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient007_SetWarningMessageHook( ¶ms ); + 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) { - struct cppISteamClient_SteamClient007_GetISteamRemoteStorage_params params = + struct ISteamClient_SteamClient007_GetISteamRemoteStorage_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -659,7 +655,7 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient007_GetISte .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient007_GetISteamRemoteStorage( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient007_GetISteamRemoteStorage, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } @@ -704,8 +700,6 @@ struct w_steam_iface *create_winISteamClient_SteamClient007(void *u_iface) return r; } -#include "cppISteamClient_SteamClient008.h" - DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient008_CreateSteamPipe, 4) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient008_BReleaseSteamPipe, 8) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient008_ConnectToGlobalUser, 8) @@ -730,67 +724,67 @@ DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient008_SetWarningMessageHook, 8) int32_t __thiscall winISteamClient_SteamClient008_CreateSteamPipe(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient008_CreateSteamPipe_params params = + struct ISteamClient_SteamClient008_CreateSteamPipe_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient008_CreateSteamPipe( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient008_CreateSteamPipe, ¶ms ); return params._ret; } bool __thiscall winISteamClient_SteamClient008_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) { - struct cppISteamClient_SteamClient008_BReleaseSteamPipe_params params = + struct ISteamClient_SteamClient008_BReleaseSteamPipe_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient008_BReleaseSteamPipe( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient008_BReleaseSteamPipe, ¶ms ); return params._ret; } int32_t __thiscall winISteamClient_SteamClient008_ConnectToGlobalUser(struct w_steam_iface *_this, int32_t hSteamPipe) { - struct cppISteamClient_SteamClient008_ConnectToGlobalUser_params params = + struct ISteamClient_SteamClient008_ConnectToGlobalUser_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient008_ConnectToGlobalUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient008_ConnectToGlobalUser, ¶ms ); return params._ret; } int32_t __thiscall winISteamClient_SteamClient008_CreateLocalUser(struct w_steam_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) { - struct cppISteamClient_SteamClient008_CreateLocalUser_params params = + struct ISteamClient_SteamClient008_CreateLocalUser_params params = { .linux_side = _this->u_iface, .phSteamPipe = phSteamPipe, .eAccountType = eAccountType, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient008_CreateLocalUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient008_CreateLocalUser, ¶ms ); return params._ret; } void __thiscall winISteamClient_SteamClient008_ReleaseUser(struct w_steam_iface *_this, int32_t hSteamPipe, int32_t hUser) { - struct cppISteamClient_SteamClient008_ReleaseUser_params params = + struct ISteamClient_SteamClient008_ReleaseUser_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, .hUser = hUser, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient008_ReleaseUser( ¶ms ); + 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) { - struct cppISteamClient_SteamClient008_GetISteamUser_params params = + struct ISteamClient_SteamClient008_GetISteamUser_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -798,14 +792,14 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient008_GetISteamUser(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient008_GetISteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient008_GetISteamUser, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient008_GetISteamGameServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient008_GetISteamGameServer_params params = + struct ISteamClient_SteamClient008_GetISteamGameServer_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -813,26 +807,26 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient008_GetISteamG .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient008_GetISteamGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient008_GetISteamGameServer, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient008_SetLocalIPBinding(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort) { - struct cppISteamClient_SteamClient008_SetLocalIPBinding_params params = + struct ISteamClient_SteamClient008_SetLocalIPBinding_params params = { .linux_side = _this->u_iface, .unIP = unIP, .usPort = usPort, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient008_SetLocalIPBinding( ¶ms ); + 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) { - struct cppISteamClient_SteamClient008_GetISteamFriends_params params = + struct ISteamClient_SteamClient008_GetISteamFriends_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -840,28 +834,28 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient008_GetISteamFrie .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient008_GetISteamFriends( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient008_GetISteamFriends, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient008_GetISteamUtils(struct w_steam_iface *_this, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient008_GetISteamUtils_params params = + struct ISteamClient_SteamClient008_GetISteamUtils_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient008_GetISteamUtils( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient008_GetISteamUtils, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient008_GetISteamMatchmaking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient008_GetISteamMatchmaking_params params = + struct ISteamClient_SteamClient008_GetISteamMatchmaking_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -869,14 +863,14 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient008_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient008_GetISteamMatchmaking( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient008_GetISteamMatchmaking, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient008_GetISteamMasterServerUpdater(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient008_GetISteamMasterServerUpdater_params params = + struct ISteamClient_SteamClient008_GetISteamMasterServerUpdater_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -884,14 +878,14 @@ void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient008_G .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient008_GetISteamMasterServerUpdater( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient008_GetISteamMasterServerUpdater, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient008_GetISteamMatchmakingServers(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient008_GetISteamMatchmakingServers_params params = + struct ISteamClient_SteamClient008_GetISteamMatchmakingServers_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -899,14 +893,14 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient008_Ge .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient008_GetISteamMatchmakingServers( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient008_GetISteamMatchmakingServers, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void * __thiscall winISteamClient_SteamClient008_GetISteamGenericInterface(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient008_GetISteamGenericInterface_params params = + struct ISteamClient_SteamClient008_GetISteamGenericInterface_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -914,14 +908,14 @@ void * __thiscall winISteamClient_SteamClient008_GetISteamGenericInterface(struc .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient008_GetISteamGenericInterface( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient008_GetISteamGenericInterface, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient008_GetISteamUserStats(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient008_GetISteamUserStats_params params = + struct ISteamClient_SteamClient008_GetISteamUserStats_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -929,14 +923,14 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient008_GetISteamUs .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient008_GetISteamUserStats( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient008_GetISteamUserStats, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient008_GetISteamApps(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient008_GetISteamApps_params params = + struct ISteamClient_SteamClient008_GetISteamApps_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -944,14 +938,14 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient008_GetISteamApps(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient008_GetISteamApps( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient008_GetISteamApps, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient008_GetISteamNetworking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient008_GetISteamNetworking_params params = + struct ISteamClient_SteamClient008_GetISteamNetworking_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -959,14 +953,14 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient008_GetISteamN .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient008_GetISteamNetworking( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient008_GetISteamNetworking, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient008_GetISteamRemoteStorage(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient008_GetISteamRemoteStorage_params params = + struct ISteamClient_SteamClient008_GetISteamRemoteStorage_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -974,41 +968,41 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient008_GetISte .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient008_GetISteamRemoteStorage( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient008_GetISteamRemoteStorage, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient008_RunFrame(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient008_RunFrame_params params = + struct ISteamClient_SteamClient008_RunFrame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient008_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient008_RunFrame, ¶ms ); } uint32_t __thiscall winISteamClient_SteamClient008_GetIPCCallCount(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient008_GetIPCCallCount_params params = + struct ISteamClient_SteamClient008_GetIPCCallCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient008_GetIPCCallCount( ¶ms ); + 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 *)) { - struct cppISteamClient_SteamClient008_SetWarningMessageHook_params params = + struct ISteamClient_SteamClient008_SetWarningMessageHook_params params = { .linux_side = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient008_SetWarningMessageHook( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient008_SetWarningMessageHook, ¶ms ); } extern vtable_ptr winISteamClient_SteamClient008_vtable; @@ -1050,8 +1044,6 @@ struct w_steam_iface *create_winISteamClient_SteamClient008(void *u_iface) return r; } -#include "cppISteamClient_SteamClient009.h" - DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient009_CreateSteamPipe, 4) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient009_BReleaseSteamPipe, 8) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient009_ConnectToGlobalUser, 8) @@ -1077,67 +1069,67 @@ DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient009_SetWarningMessageHook, 8) int32_t __thiscall winISteamClient_SteamClient009_CreateSteamPipe(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient009_CreateSteamPipe_params params = + struct ISteamClient_SteamClient009_CreateSteamPipe_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient009_CreateSteamPipe( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient009_CreateSteamPipe, ¶ms ); return params._ret; } bool __thiscall winISteamClient_SteamClient009_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) { - struct cppISteamClient_SteamClient009_BReleaseSteamPipe_params params = + struct ISteamClient_SteamClient009_BReleaseSteamPipe_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient009_BReleaseSteamPipe( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient009_BReleaseSteamPipe, ¶ms ); return params._ret; } int32_t __thiscall winISteamClient_SteamClient009_ConnectToGlobalUser(struct w_steam_iface *_this, int32_t hSteamPipe) { - struct cppISteamClient_SteamClient009_ConnectToGlobalUser_params params = + struct ISteamClient_SteamClient009_ConnectToGlobalUser_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient009_ConnectToGlobalUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient009_ConnectToGlobalUser, ¶ms ); return params._ret; } int32_t __thiscall winISteamClient_SteamClient009_CreateLocalUser(struct w_steam_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) { - struct cppISteamClient_SteamClient009_CreateLocalUser_params params = + struct ISteamClient_SteamClient009_CreateLocalUser_params params = { .linux_side = _this->u_iface, .phSteamPipe = phSteamPipe, .eAccountType = eAccountType, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient009_CreateLocalUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient009_CreateLocalUser, ¶ms ); return params._ret; } void __thiscall winISteamClient_SteamClient009_ReleaseUser(struct w_steam_iface *_this, int32_t hSteamPipe, int32_t hUser) { - struct cppISteamClient_SteamClient009_ReleaseUser_params params = + struct ISteamClient_SteamClient009_ReleaseUser_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, .hUser = hUser, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient009_ReleaseUser( ¶ms ); + 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) { - struct cppISteamClient_SteamClient009_GetISteamUser_params params = + struct ISteamClient_SteamClient009_GetISteamUser_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -1145,14 +1137,14 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient009_GetISteamUser(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient009_GetISteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient009_GetISteamUser, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient009_GetISteamGameServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient009_GetISteamGameServer_params params = + struct ISteamClient_SteamClient009_GetISteamGameServer_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -1160,26 +1152,26 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient009_GetISteamG .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient009_GetISteamGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient009_GetISteamGameServer, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient009_SetLocalIPBinding(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort) { - struct cppISteamClient_SteamClient009_SetLocalIPBinding_params params = + struct ISteamClient_SteamClient009_SetLocalIPBinding_params params = { .linux_side = _this->u_iface, .unIP = unIP, .usPort = usPort, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient009_SetLocalIPBinding( ¶ms ); + 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) { - struct cppISteamClient_SteamClient009_GetISteamFriends_params params = + struct ISteamClient_SteamClient009_GetISteamFriends_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -1187,28 +1179,28 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient009_GetISteamFrie .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient009_GetISteamFriends( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient009_GetISteamFriends, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient009_GetISteamUtils(struct w_steam_iface *_this, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient009_GetISteamUtils_params params = + struct ISteamClient_SteamClient009_GetISteamUtils_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient009_GetISteamUtils( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient009_GetISteamUtils, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient009_GetISteamMatchmaking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient009_GetISteamMatchmaking_params params = + struct ISteamClient_SteamClient009_GetISteamMatchmaking_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -1216,14 +1208,14 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient009_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient009_GetISteamMatchmaking( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient009_GetISteamMatchmaking, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient009_GetISteamMasterServerUpdater(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient009_GetISteamMasterServerUpdater_params params = + struct ISteamClient_SteamClient009_GetISteamMasterServerUpdater_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -1231,14 +1223,14 @@ void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient009_G .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient009_GetISteamMasterServerUpdater( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient009_GetISteamMasterServerUpdater, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient009_GetISteamMatchmakingServers(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient009_GetISteamMatchmakingServers_params params = + struct ISteamClient_SteamClient009_GetISteamMatchmakingServers_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -1246,14 +1238,14 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient009_Ge .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient009_GetISteamMatchmakingServers( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient009_GetISteamMatchmakingServers, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void * __thiscall winISteamClient_SteamClient009_GetISteamGenericInterface(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient009_GetISteamGenericInterface_params params = + struct ISteamClient_SteamClient009_GetISteamGenericInterface_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -1261,14 +1253,14 @@ void * __thiscall winISteamClient_SteamClient009_GetISteamGenericInterface(struc .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient009_GetISteamGenericInterface( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient009_GetISteamGenericInterface, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient009_GetISteamUserStats(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient009_GetISteamUserStats_params params = + struct ISteamClient_SteamClient009_GetISteamUserStats_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -1276,14 +1268,14 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient009_GetISteamUs .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient009_GetISteamUserStats( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient009_GetISteamUserStats, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient009_GetISteamGameServerStats(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient009_GetISteamGameServerStats_params params = + struct ISteamClient_SteamClient009_GetISteamGameServerStats_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -1291,14 +1283,14 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient009_GetIS .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient009_GetISteamGameServerStats( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient009_GetISteamGameServerStats, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient009_GetISteamApps(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient009_GetISteamApps_params params = + struct ISteamClient_SteamClient009_GetISteamApps_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -1306,14 +1298,14 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient009_GetISteamApps(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient009_GetISteamApps( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient009_GetISteamApps, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient009_GetISteamNetworking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient009_GetISteamNetworking_params params = + struct ISteamClient_SteamClient009_GetISteamNetworking_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -1321,14 +1313,14 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient009_GetISteamN .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient009_GetISteamNetworking( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient009_GetISteamNetworking, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient009_GetISteamRemoteStorage(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient009_GetISteamRemoteStorage_params params = + struct ISteamClient_SteamClient009_GetISteamRemoteStorage_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -1336,41 +1328,41 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient009_GetISte .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient009_GetISteamRemoteStorage( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient009_GetISteamRemoteStorage, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient009_RunFrame(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient009_RunFrame_params params = + struct ISteamClient_SteamClient009_RunFrame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient009_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient009_RunFrame, ¶ms ); } uint32_t __thiscall winISteamClient_SteamClient009_GetIPCCallCount(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient009_GetIPCCallCount_params params = + struct ISteamClient_SteamClient009_GetIPCCallCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient009_GetIPCCallCount( ¶ms ); + 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 *)) { - struct cppISteamClient_SteamClient009_SetWarningMessageHook_params params = + struct ISteamClient_SteamClient009_SetWarningMessageHook_params params = { .linux_side = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient009_SetWarningMessageHook( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient009_SetWarningMessageHook, ¶ms ); } extern vtable_ptr winISteamClient_SteamClient009_vtable; @@ -1413,8 +1405,6 @@ struct w_steam_iface *create_winISteamClient_SteamClient009(void *u_iface) return r; } -#include "cppISteamClient_SteamClient010.h" - DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient010_CreateSteamPipe, 4) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient010_BReleaseSteamPipe, 8) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient010_ConnectToGlobalUser, 8) @@ -1442,67 +1432,67 @@ DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient010_GetISteamHTTP, 16) int32_t __thiscall winISteamClient_SteamClient010_CreateSteamPipe(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient010_CreateSteamPipe_params params = + struct ISteamClient_SteamClient010_CreateSteamPipe_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient010_CreateSteamPipe( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient010_CreateSteamPipe, ¶ms ); return params._ret; } bool __thiscall winISteamClient_SteamClient010_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) { - struct cppISteamClient_SteamClient010_BReleaseSteamPipe_params params = + struct ISteamClient_SteamClient010_BReleaseSteamPipe_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient010_BReleaseSteamPipe( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient010_BReleaseSteamPipe, ¶ms ); return params._ret; } int32_t __thiscall winISteamClient_SteamClient010_ConnectToGlobalUser(struct w_steam_iface *_this, int32_t hSteamPipe) { - struct cppISteamClient_SteamClient010_ConnectToGlobalUser_params params = + struct ISteamClient_SteamClient010_ConnectToGlobalUser_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient010_ConnectToGlobalUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient010_ConnectToGlobalUser, ¶ms ); return params._ret; } int32_t __thiscall winISteamClient_SteamClient010_CreateLocalUser(struct w_steam_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) { - struct cppISteamClient_SteamClient010_CreateLocalUser_params params = + struct ISteamClient_SteamClient010_CreateLocalUser_params params = { .linux_side = _this->u_iface, .phSteamPipe = phSteamPipe, .eAccountType = eAccountType, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient010_CreateLocalUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient010_CreateLocalUser, ¶ms ); return params._ret; } void __thiscall winISteamClient_SteamClient010_ReleaseUser(struct w_steam_iface *_this, int32_t hSteamPipe, int32_t hUser) { - struct cppISteamClient_SteamClient010_ReleaseUser_params params = + struct ISteamClient_SteamClient010_ReleaseUser_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, .hUser = hUser, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient010_ReleaseUser( ¶ms ); + 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) { - struct cppISteamClient_SteamClient010_GetISteamUser_params params = + struct ISteamClient_SteamClient010_GetISteamUser_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -1510,14 +1500,14 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient010_GetISteamUser(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient010_GetISteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient010_GetISteamUser, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient010_GetISteamGameServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient010_GetISteamGameServer_params params = + struct ISteamClient_SteamClient010_GetISteamGameServer_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -1525,26 +1515,26 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient010_GetISteamG .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient010_GetISteamGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient010_GetISteamGameServer, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient010_SetLocalIPBinding(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort) { - struct cppISteamClient_SteamClient010_SetLocalIPBinding_params params = + struct ISteamClient_SteamClient010_SetLocalIPBinding_params params = { .linux_side = _this->u_iface, .unIP = unIP, .usPort = usPort, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient010_SetLocalIPBinding( ¶ms ); + 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) { - struct cppISteamClient_SteamClient010_GetISteamFriends_params params = + struct ISteamClient_SteamClient010_GetISteamFriends_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -1552,28 +1542,28 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient010_GetISteamFrie .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient010_GetISteamFriends( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient010_GetISteamFriends, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient010_GetISteamUtils(struct w_steam_iface *_this, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient010_GetISteamUtils_params params = + struct ISteamClient_SteamClient010_GetISteamUtils_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient010_GetISteamUtils( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient010_GetISteamUtils, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient010_GetISteamMatchmaking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient010_GetISteamMatchmaking_params params = + struct ISteamClient_SteamClient010_GetISteamMatchmaking_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -1581,14 +1571,14 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient010_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient010_GetISteamMatchmaking( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient010_GetISteamMatchmaking, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient010_GetISteamMasterServerUpdater(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient010_GetISteamMasterServerUpdater_params params = + struct ISteamClient_SteamClient010_GetISteamMasterServerUpdater_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -1596,14 +1586,14 @@ void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient010_G .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient010_GetISteamMasterServerUpdater( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient010_GetISteamMasterServerUpdater, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient010_GetISteamMatchmakingServers(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient010_GetISteamMatchmakingServers_params params = + struct ISteamClient_SteamClient010_GetISteamMatchmakingServers_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -1611,14 +1601,14 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient010_Ge .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient010_GetISteamMatchmakingServers( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient010_GetISteamMatchmakingServers, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void * __thiscall winISteamClient_SteamClient010_GetISteamGenericInterface(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient010_GetISteamGenericInterface_params params = + struct ISteamClient_SteamClient010_GetISteamGenericInterface_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -1626,14 +1616,14 @@ void * __thiscall winISteamClient_SteamClient010_GetISteamGenericInterface(struc .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient010_GetISteamGenericInterface( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient010_GetISteamGenericInterface, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient010_GetISteamUserStats(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient010_GetISteamUserStats_params params = + struct ISteamClient_SteamClient010_GetISteamUserStats_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -1641,14 +1631,14 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient010_GetISteamUs .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient010_GetISteamUserStats( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient010_GetISteamUserStats, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient010_GetISteamGameServerStats(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient010_GetISteamGameServerStats_params params = + struct ISteamClient_SteamClient010_GetISteamGameServerStats_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -1656,14 +1646,14 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient010_GetIS .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient010_GetISteamGameServerStats( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient010_GetISteamGameServerStats, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient010_GetISteamApps(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient010_GetISteamApps_params params = + struct ISteamClient_SteamClient010_GetISteamApps_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -1671,14 +1661,14 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient010_GetISteamApps(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient010_GetISteamApps( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient010_GetISteamApps, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient010_GetISteamNetworking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient010_GetISteamNetworking_params params = + struct ISteamClient_SteamClient010_GetISteamNetworking_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -1686,14 +1676,14 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient010_GetISteamN .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient010_GetISteamNetworking( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient010_GetISteamNetworking, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient010_GetISteamRemoteStorage(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient010_GetISteamRemoteStorage_params params = + struct ISteamClient_SteamClient010_GetISteamRemoteStorage_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -1701,57 +1691,57 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient010_GetISte .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient010_GetISteamRemoteStorage( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient010_GetISteamRemoteStorage, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient010_RunFrame(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient010_RunFrame_params params = + struct ISteamClient_SteamClient010_RunFrame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient010_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient010_RunFrame, ¶ms ); } uint32_t __thiscall winISteamClient_SteamClient010_GetIPCCallCount(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient010_GetIPCCallCount_params params = + struct ISteamClient_SteamClient010_GetIPCCallCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient010_GetIPCCallCount( ¶ms ); + 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 *)) { - struct cppISteamClient_SteamClient010_SetWarningMessageHook_params params = + struct ISteamClient_SteamClient010_SetWarningMessageHook_params params = { .linux_side = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient010_SetWarningMessageHook( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient010_SetWarningMessageHook, ¶ms ); } bool __thiscall winISteamClient_SteamClient010_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient010_BShutdownIfAllPipesClosed_params params = + struct ISteamClient_SteamClient010_BShutdownIfAllPipesClosed_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient010_BShutdownIfAllPipesClosed( ¶ms ); + 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) { - struct cppISteamClient_SteamClient010_GetISteamHTTP_params params = + struct ISteamClient_SteamClient010_GetISteamHTTP_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -1759,7 +1749,7 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient010_GetISteamHTTP(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient010_GetISteamHTTP( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient010_GetISteamHTTP, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } @@ -1806,8 +1796,6 @@ struct w_steam_iface *create_winISteamClient_SteamClient010(void *u_iface) return r; } -#include "cppISteamClient_SteamClient011.h" - DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient011_CreateSteamPipe, 4) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient011_BReleaseSteamPipe, 8) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient011_ConnectToGlobalUser, 8) @@ -1836,67 +1824,67 @@ DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient011_GetISteamHTTP, 16) int32_t __thiscall winISteamClient_SteamClient011_CreateSteamPipe(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient011_CreateSteamPipe_params params = + struct ISteamClient_SteamClient011_CreateSteamPipe_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient011_CreateSteamPipe( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient011_CreateSteamPipe, ¶ms ); return params._ret; } bool __thiscall winISteamClient_SteamClient011_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) { - struct cppISteamClient_SteamClient011_BReleaseSteamPipe_params params = + struct ISteamClient_SteamClient011_BReleaseSteamPipe_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient011_BReleaseSteamPipe( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient011_BReleaseSteamPipe, ¶ms ); return params._ret; } int32_t __thiscall winISteamClient_SteamClient011_ConnectToGlobalUser(struct w_steam_iface *_this, int32_t hSteamPipe) { - struct cppISteamClient_SteamClient011_ConnectToGlobalUser_params params = + struct ISteamClient_SteamClient011_ConnectToGlobalUser_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient011_ConnectToGlobalUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient011_ConnectToGlobalUser, ¶ms ); return params._ret; } int32_t __thiscall winISteamClient_SteamClient011_CreateLocalUser(struct w_steam_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) { - struct cppISteamClient_SteamClient011_CreateLocalUser_params params = + struct ISteamClient_SteamClient011_CreateLocalUser_params params = { .linux_side = _this->u_iface, .phSteamPipe = phSteamPipe, .eAccountType = eAccountType, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient011_CreateLocalUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient011_CreateLocalUser, ¶ms ); return params._ret; } void __thiscall winISteamClient_SteamClient011_ReleaseUser(struct w_steam_iface *_this, int32_t hSteamPipe, int32_t hUser) { - struct cppISteamClient_SteamClient011_ReleaseUser_params params = + struct ISteamClient_SteamClient011_ReleaseUser_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, .hUser = hUser, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient011_ReleaseUser( ¶ms ); + 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) { - struct cppISteamClient_SteamClient011_GetISteamUser_params params = + struct ISteamClient_SteamClient011_GetISteamUser_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -1904,14 +1892,14 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient011_GetISteamUser(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient011_GetISteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient011_GetISteamUser, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient011_GetISteamGameServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient011_GetISteamGameServer_params params = + struct ISteamClient_SteamClient011_GetISteamGameServer_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -1919,26 +1907,26 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient011_GetISteamG .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient011_GetISteamGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient011_GetISteamGameServer, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient011_SetLocalIPBinding(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort) { - struct cppISteamClient_SteamClient011_SetLocalIPBinding_params params = + struct ISteamClient_SteamClient011_SetLocalIPBinding_params params = { .linux_side = _this->u_iface, .unIP = unIP, .usPort = usPort, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient011_SetLocalIPBinding( ¶ms ); + 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) { - struct cppISteamClient_SteamClient011_GetISteamFriends_params params = + struct ISteamClient_SteamClient011_GetISteamFriends_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -1946,28 +1934,28 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient011_GetISteamFrie .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient011_GetISteamFriends( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient011_GetISteamFriends, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient011_GetISteamUtils(struct w_steam_iface *_this, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient011_GetISteamUtils_params params = + struct ISteamClient_SteamClient011_GetISteamUtils_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient011_GetISteamUtils( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient011_GetISteamUtils, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient011_GetISteamMatchmaking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient011_GetISteamMatchmaking_params params = + struct ISteamClient_SteamClient011_GetISteamMatchmaking_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -1975,14 +1963,14 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient011_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient011_GetISteamMatchmaking( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient011_GetISteamMatchmaking, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient011_GetISteamMasterServerUpdater(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient011_GetISteamMasterServerUpdater_params params = + struct ISteamClient_SteamClient011_GetISteamMasterServerUpdater_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -1990,14 +1978,14 @@ void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient011_G .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient011_GetISteamMasterServerUpdater( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient011_GetISteamMasterServerUpdater, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient011_GetISteamMatchmakingServers(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient011_GetISteamMatchmakingServers_params params = + struct ISteamClient_SteamClient011_GetISteamMatchmakingServers_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -2005,14 +1993,14 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient011_Ge .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient011_GetISteamMatchmakingServers( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient011_GetISteamMatchmakingServers, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void * __thiscall winISteamClient_SteamClient011_GetISteamGenericInterface(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient011_GetISteamGenericInterface_params params = + struct ISteamClient_SteamClient011_GetISteamGenericInterface_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -2020,14 +2008,14 @@ void * __thiscall winISteamClient_SteamClient011_GetISteamGenericInterface(struc .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient011_GetISteamGenericInterface( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient011_GetISteamGenericInterface, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient011_GetISteamUserStats(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient011_GetISteamUserStats_params params = + struct ISteamClient_SteamClient011_GetISteamUserStats_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -2035,14 +2023,14 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient011_GetISteamUs .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient011_GetISteamUserStats( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient011_GetISteamUserStats, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient011_GetISteamGameServerStats(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient011_GetISteamGameServerStats_params params = + struct ISteamClient_SteamClient011_GetISteamGameServerStats_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -2050,14 +2038,14 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient011_GetIS .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient011_GetISteamGameServerStats( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient011_GetISteamGameServerStats, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient011_GetISteamApps(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient011_GetISteamApps_params params = + struct ISteamClient_SteamClient011_GetISteamApps_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -2065,14 +2053,14 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient011_GetISteamApps(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient011_GetISteamApps( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient011_GetISteamApps, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient011_GetISteamNetworking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient011_GetISteamNetworking_params params = + struct ISteamClient_SteamClient011_GetISteamNetworking_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -2080,14 +2068,14 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient011_GetISteamN .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient011_GetISteamNetworking( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient011_GetISteamNetworking, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient011_GetISteamRemoteStorage(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient011_GetISteamRemoteStorage_params params = + struct ISteamClient_SteamClient011_GetISteamRemoteStorage_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -2095,14 +2083,14 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient011_GetISte .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient011_GetISteamRemoteStorage( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient011_GetISteamRemoteStorage, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient011_GetISteamScreenshots(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient011_GetISteamScreenshots_params params = + struct ISteamClient_SteamClient011_GetISteamScreenshots_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -2110,57 +2098,57 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient011_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient011_GetISteamScreenshots( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient011_GetISteamScreenshots, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient011_RunFrame(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient011_RunFrame_params params = + struct ISteamClient_SteamClient011_RunFrame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient011_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient011_RunFrame, ¶ms ); } uint32_t __thiscall winISteamClient_SteamClient011_GetIPCCallCount(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient011_GetIPCCallCount_params params = + struct ISteamClient_SteamClient011_GetIPCCallCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient011_GetIPCCallCount( ¶ms ); + 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 *)) { - struct cppISteamClient_SteamClient011_SetWarningMessageHook_params params = + struct ISteamClient_SteamClient011_SetWarningMessageHook_params params = { .linux_side = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient011_SetWarningMessageHook( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient011_SetWarningMessageHook, ¶ms ); } bool __thiscall winISteamClient_SteamClient011_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient011_BShutdownIfAllPipesClosed_params params = + struct ISteamClient_SteamClient011_BShutdownIfAllPipesClosed_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient011_BShutdownIfAllPipesClosed( ¶ms ); + 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) { - struct cppISteamClient_SteamClient011_GetISteamHTTP_params params = + struct ISteamClient_SteamClient011_GetISteamHTTP_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -2168,7 +2156,7 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient011_GetISteamHTTP(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient011_GetISteamHTTP( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient011_GetISteamHTTP, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } @@ -2216,8 +2204,6 @@ struct w_steam_iface *create_winISteamClient_SteamClient011(void *u_iface) return r; } -#include "cppISteamClient_SteamClient012.h" - DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient012_CreateSteamPipe, 4) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient012_BReleaseSteamPipe, 8) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient012_ConnectToGlobalUser, 8) @@ -2248,67 +2234,67 @@ DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient012_GetISteamUGC, 16) int32_t __thiscall winISteamClient_SteamClient012_CreateSteamPipe(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient012_CreateSteamPipe_params params = + struct ISteamClient_SteamClient012_CreateSteamPipe_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient012_CreateSteamPipe( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient012_CreateSteamPipe, ¶ms ); return params._ret; } bool __thiscall winISteamClient_SteamClient012_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) { - struct cppISteamClient_SteamClient012_BReleaseSteamPipe_params params = + struct ISteamClient_SteamClient012_BReleaseSteamPipe_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient012_BReleaseSteamPipe( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient012_BReleaseSteamPipe, ¶ms ); return params._ret; } int32_t __thiscall winISteamClient_SteamClient012_ConnectToGlobalUser(struct w_steam_iface *_this, int32_t hSteamPipe) { - struct cppISteamClient_SteamClient012_ConnectToGlobalUser_params params = + struct ISteamClient_SteamClient012_ConnectToGlobalUser_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient012_ConnectToGlobalUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient012_ConnectToGlobalUser, ¶ms ); return params._ret; } int32_t __thiscall winISteamClient_SteamClient012_CreateLocalUser(struct w_steam_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) { - struct cppISteamClient_SteamClient012_CreateLocalUser_params params = + struct ISteamClient_SteamClient012_CreateLocalUser_params params = { .linux_side = _this->u_iface, .phSteamPipe = phSteamPipe, .eAccountType = eAccountType, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient012_CreateLocalUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient012_CreateLocalUser, ¶ms ); return params._ret; } void __thiscall winISteamClient_SteamClient012_ReleaseUser(struct w_steam_iface *_this, int32_t hSteamPipe, int32_t hUser) { - struct cppISteamClient_SteamClient012_ReleaseUser_params params = + struct ISteamClient_SteamClient012_ReleaseUser_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, .hUser = hUser, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient012_ReleaseUser( ¶ms ); + 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) { - struct cppISteamClient_SteamClient012_GetISteamUser_params params = + struct ISteamClient_SteamClient012_GetISteamUser_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -2316,14 +2302,14 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient012_GetISteamUser(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient012_GetISteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamUser, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient012_GetISteamGameServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient012_GetISteamGameServer_params params = + struct ISteamClient_SteamClient012_GetISteamGameServer_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -2331,26 +2317,26 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient012_GetISteamG .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient012_GetISteamGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamGameServer, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient012_SetLocalIPBinding(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort) { - struct cppISteamClient_SteamClient012_SetLocalIPBinding_params params = + struct ISteamClient_SteamClient012_SetLocalIPBinding_params params = { .linux_side = _this->u_iface, .unIP = unIP, .usPort = usPort, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient012_SetLocalIPBinding( ¶ms ); + 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) { - struct cppISteamClient_SteamClient012_GetISteamFriends_params params = + struct ISteamClient_SteamClient012_GetISteamFriends_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -2358,28 +2344,28 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient012_GetISteamFrie .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient012_GetISteamFriends( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamFriends, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient012_GetISteamUtils(struct w_steam_iface *_this, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient012_GetISteamUtils_params params = + struct ISteamClient_SteamClient012_GetISteamUtils_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient012_GetISteamUtils( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamUtils, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient012_GetISteamMatchmaking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient012_GetISteamMatchmaking_params params = + struct ISteamClient_SteamClient012_GetISteamMatchmaking_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -2387,14 +2373,14 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient012_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient012_GetISteamMatchmaking( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamMatchmaking, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient012_GetISteamMatchmakingServers(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient012_GetISteamMatchmakingServers_params params = + struct ISteamClient_SteamClient012_GetISteamMatchmakingServers_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -2402,14 +2388,14 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient012_Ge .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient012_GetISteamMatchmakingServers( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamMatchmakingServers, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void * __thiscall winISteamClient_SteamClient012_GetISteamGenericInterface(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient012_GetISteamGenericInterface_params params = + struct ISteamClient_SteamClient012_GetISteamGenericInterface_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -2417,14 +2403,14 @@ void * __thiscall winISteamClient_SteamClient012_GetISteamGenericInterface(struc .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient012_GetISteamGenericInterface( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamGenericInterface, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient012_GetISteamUserStats(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient012_GetISteamUserStats_params params = + struct ISteamClient_SteamClient012_GetISteamUserStats_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -2432,14 +2418,14 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient012_GetISteamUs .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient012_GetISteamUserStats( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamUserStats, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient012_GetISteamGameServerStats(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient012_GetISteamGameServerStats_params params = + struct ISteamClient_SteamClient012_GetISteamGameServerStats_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -2447,14 +2433,14 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient012_GetIS .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient012_GetISteamGameServerStats( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamGameServerStats, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient012_GetISteamApps(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient012_GetISteamApps_params params = + struct ISteamClient_SteamClient012_GetISteamApps_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -2462,14 +2448,14 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient012_GetISteamApps(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient012_GetISteamApps( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamApps, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient012_GetISteamNetworking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient012_GetISteamNetworking_params params = + struct ISteamClient_SteamClient012_GetISteamNetworking_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -2477,14 +2463,14 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient012_GetISteamN .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient012_GetISteamNetworking( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamNetworking, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient012_GetISteamRemoteStorage(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient012_GetISteamRemoteStorage_params params = + struct ISteamClient_SteamClient012_GetISteamRemoteStorage_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -2492,14 +2478,14 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient012_GetISte .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient012_GetISteamRemoteStorage( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamRemoteStorage, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient012_GetISteamScreenshots(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient012_GetISteamScreenshots_params params = + struct ISteamClient_SteamClient012_GetISteamScreenshots_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -2507,57 +2493,57 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient012_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient012_GetISteamScreenshots( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamScreenshots, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient012_RunFrame(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient012_RunFrame_params params = + struct ISteamClient_SteamClient012_RunFrame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient012_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient012_RunFrame, ¶ms ); } uint32_t __thiscall winISteamClient_SteamClient012_GetIPCCallCount(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient012_GetIPCCallCount_params params = + struct ISteamClient_SteamClient012_GetIPCCallCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient012_GetIPCCallCount( ¶ms ); + 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 *)) { - struct cppISteamClient_SteamClient012_SetWarningMessageHook_params params = + struct ISteamClient_SteamClient012_SetWarningMessageHook_params params = { .linux_side = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient012_SetWarningMessageHook( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient012_SetWarningMessageHook, ¶ms ); } bool __thiscall winISteamClient_SteamClient012_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient012_BShutdownIfAllPipesClosed_params params = + struct ISteamClient_SteamClient012_BShutdownIfAllPipesClosed_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient012_BShutdownIfAllPipesClosed( ¶ms ); + 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) { - struct cppISteamClient_SteamClient012_GetISteamHTTP_params params = + struct ISteamClient_SteamClient012_GetISteamHTTP_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -2565,14 +2551,14 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient012_GetISteamHTTP(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient012_GetISteamHTTP( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamHTTP, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient012_GetISteamUnifiedMessages(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient012_GetISteamUnifiedMessages_params params = + struct ISteamClient_SteamClient012_GetISteamUnifiedMessages_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -2580,14 +2566,14 @@ void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient012_GetIS .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient012_GetISteamUnifiedMessages( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamUnifiedMessages, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamController*/ * __thiscall winISteamClient_SteamClient012_GetISteamController(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient012_GetISteamController_params params = + struct ISteamClient_SteamClient012_GetISteamController_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -2595,14 +2581,14 @@ void /*ISteamController*/ * __thiscall winISteamClient_SteamClient012_GetISteamC .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient012_GetISteamController( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamController, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient012_GetISteamUGC(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient012_GetISteamUGC_params params = + struct ISteamClient_SteamClient012_GetISteamUGC_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -2610,7 +2596,7 @@ void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient012_GetISteamUGC(stru .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient012_GetISteamUGC( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamUGC, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } @@ -2660,8 +2646,6 @@ struct w_steam_iface *create_winISteamClient_SteamClient012(void *u_iface) return r; } -#include "cppISteamClient_SteamClient013.h" - DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient013_CreateSteamPipe, 4) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient013_BReleaseSteamPipe, 8) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient013_ConnectToGlobalUser, 8) @@ -2695,67 +2679,67 @@ DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient013_GetISteamAppList, 16) int32_t __thiscall winISteamClient_SteamClient013_CreateSteamPipe(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient013_CreateSteamPipe_params params = + struct ISteamClient_SteamClient013_CreateSteamPipe_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient013_CreateSteamPipe( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient013_CreateSteamPipe, ¶ms ); return params._ret; } bool __thiscall winISteamClient_SteamClient013_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) { - struct cppISteamClient_SteamClient013_BReleaseSteamPipe_params params = + struct ISteamClient_SteamClient013_BReleaseSteamPipe_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient013_BReleaseSteamPipe( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient013_BReleaseSteamPipe, ¶ms ); return params._ret; } int32_t __thiscall winISteamClient_SteamClient013_ConnectToGlobalUser(struct w_steam_iface *_this, int32_t hSteamPipe) { - struct cppISteamClient_SteamClient013_ConnectToGlobalUser_params params = + struct ISteamClient_SteamClient013_ConnectToGlobalUser_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient013_ConnectToGlobalUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient013_ConnectToGlobalUser, ¶ms ); return params._ret; } int32_t __thiscall winISteamClient_SteamClient013_CreateLocalUser(struct w_steam_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) { - struct cppISteamClient_SteamClient013_CreateLocalUser_params params = + struct ISteamClient_SteamClient013_CreateLocalUser_params params = { .linux_side = _this->u_iface, .phSteamPipe = phSteamPipe, .eAccountType = eAccountType, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient013_CreateLocalUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient013_CreateLocalUser, ¶ms ); return params._ret; } void __thiscall winISteamClient_SteamClient013_ReleaseUser(struct w_steam_iface *_this, int32_t hSteamPipe, int32_t hUser) { - struct cppISteamClient_SteamClient013_ReleaseUser_params params = + struct ISteamClient_SteamClient013_ReleaseUser_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, .hUser = hUser, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient013_ReleaseUser( ¶ms ); + 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) { - struct cppISteamClient_SteamClient013_GetISteamUser_params params = + struct ISteamClient_SteamClient013_GetISteamUser_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -2763,14 +2747,14 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient013_GetISteamUser(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient013_GetISteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamUser, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient013_GetISteamGameServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient013_GetISteamGameServer_params params = + struct ISteamClient_SteamClient013_GetISteamGameServer_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -2778,26 +2762,26 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient013_GetISteamG .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient013_GetISteamGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamGameServer, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient013_SetLocalIPBinding(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort) { - struct cppISteamClient_SteamClient013_SetLocalIPBinding_params params = + struct ISteamClient_SteamClient013_SetLocalIPBinding_params params = { .linux_side = _this->u_iface, .unIP = unIP, .usPort = usPort, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient013_SetLocalIPBinding( ¶ms ); + 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) { - struct cppISteamClient_SteamClient013_GetISteamFriends_params params = + struct ISteamClient_SteamClient013_GetISteamFriends_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -2805,28 +2789,28 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient013_GetISteamFrie .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient013_GetISteamFriends( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamFriends, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient013_GetISteamUtils(struct w_steam_iface *_this, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient013_GetISteamUtils_params params = + struct ISteamClient_SteamClient013_GetISteamUtils_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient013_GetISteamUtils( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamUtils, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient013_GetISteamMatchmaking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient013_GetISteamMatchmaking_params params = + struct ISteamClient_SteamClient013_GetISteamMatchmaking_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -2834,14 +2818,14 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient013_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient013_GetISteamMatchmaking( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamMatchmaking, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient013_GetISteamMatchmakingServers(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient013_GetISteamMatchmakingServers_params params = + struct ISteamClient_SteamClient013_GetISteamMatchmakingServers_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -2849,14 +2833,14 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient013_Ge .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient013_GetISteamMatchmakingServers( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamMatchmakingServers, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void * __thiscall winISteamClient_SteamClient013_GetISteamGenericInterface(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient013_GetISteamGenericInterface_params params = + struct ISteamClient_SteamClient013_GetISteamGenericInterface_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -2864,14 +2848,14 @@ void * __thiscall winISteamClient_SteamClient013_GetISteamGenericInterface(struc .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient013_GetISteamGenericInterface( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamGenericInterface, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient013_GetISteamUserStats(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient013_GetISteamUserStats_params params = + struct ISteamClient_SteamClient013_GetISteamUserStats_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -2879,14 +2863,14 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient013_GetISteamUs .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient013_GetISteamUserStats( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamUserStats, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient013_GetISteamGameServerStats(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient013_GetISteamGameServerStats_params params = + struct ISteamClient_SteamClient013_GetISteamGameServerStats_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -2894,14 +2878,14 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient013_GetIS .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient013_GetISteamGameServerStats( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamGameServerStats, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient013_GetISteamApps(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient013_GetISteamApps_params params = + struct ISteamClient_SteamClient013_GetISteamApps_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -2909,14 +2893,14 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient013_GetISteamApps(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient013_GetISteamApps( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamApps, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient013_GetISteamNetworking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient013_GetISteamNetworking_params params = + struct ISteamClient_SteamClient013_GetISteamNetworking_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -2924,14 +2908,14 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient013_GetISteamN .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient013_GetISteamNetworking( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamNetworking, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient013_GetISteamRemoteStorage(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient013_GetISteamRemoteStorage_params params = + struct ISteamClient_SteamClient013_GetISteamRemoteStorage_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -2939,14 +2923,14 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient013_GetISte .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient013_GetISteamRemoteStorage( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamRemoteStorage, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient013_GetISteamScreenshots(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient013_GetISteamScreenshots_params params = + struct ISteamClient_SteamClient013_GetISteamScreenshots_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -2954,57 +2938,57 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient013_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient013_GetISteamScreenshots( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamScreenshots, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient013_RunFrame(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient013_RunFrame_params params = + struct ISteamClient_SteamClient013_RunFrame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient013_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient013_RunFrame, ¶ms ); } uint32_t __thiscall winISteamClient_SteamClient013_GetIPCCallCount(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient013_GetIPCCallCount_params params = + struct ISteamClient_SteamClient013_GetIPCCallCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient013_GetIPCCallCount( ¶ms ); + 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 *)) { - struct cppISteamClient_SteamClient013_SetWarningMessageHook_params params = + struct ISteamClient_SteamClient013_SetWarningMessageHook_params params = { .linux_side = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient013_SetWarningMessageHook( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient013_SetWarningMessageHook, ¶ms ); } bool __thiscall winISteamClient_SteamClient013_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient013_BShutdownIfAllPipesClosed_params params = + struct ISteamClient_SteamClient013_BShutdownIfAllPipesClosed_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient013_BShutdownIfAllPipesClosed( ¶ms ); + 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) { - struct cppISteamClient_SteamClient013_GetISteamHTTP_params params = + struct ISteamClient_SteamClient013_GetISteamHTTP_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -3012,14 +2996,14 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient013_GetISteamHTTP(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient013_GetISteamHTTP( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamHTTP, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient013_GetISteamUnifiedMessages(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient013_GetISteamUnifiedMessages_params params = + struct ISteamClient_SteamClient013_GetISteamUnifiedMessages_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -3027,14 +3011,14 @@ void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient013_GetIS .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient013_GetISteamUnifiedMessages( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamUnifiedMessages, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamController*/ * __thiscall winISteamClient_SteamClient013_GetISteamController(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient013_GetISteamController_params params = + struct ISteamClient_SteamClient013_GetISteamController_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -3042,14 +3026,14 @@ void /*ISteamController*/ * __thiscall winISteamClient_SteamClient013_GetISteamC .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient013_GetISteamController( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamController, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient013_GetISteamUGC(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient013_GetISteamUGC_params params = + struct ISteamClient_SteamClient013_GetISteamUGC_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -3057,14 +3041,14 @@ void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient013_GetISteamUGC(stru .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient013_GetISteamUGC( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamUGC, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void * __thiscall winISteamClient_SteamClient013_GetISteamInventory(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient013_GetISteamInventory_params params = + struct ISteamClient_SteamClient013_GetISteamInventory_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -3072,13 +3056,13 @@ void * __thiscall winISteamClient_SteamClient013_GetISteamInventory(struct w_ste .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient013_GetISteamInventory( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamInventory, ¶ms ); return params._ret; } void * __thiscall winISteamClient_SteamClient013_GetISteamVideo(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient013_GetISteamVideo_params params = + struct ISteamClient_SteamClient013_GetISteamVideo_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -3086,13 +3070,13 @@ void * __thiscall winISteamClient_SteamClient013_GetISteamVideo(struct w_steam_i .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient013_GetISteamVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamVideo, ¶ms ); return params._ret; } void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient013_GetISteamAppList(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient013_GetISteamAppList_params params = + struct ISteamClient_SteamClient013_GetISteamAppList_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -3100,7 +3084,7 @@ void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient013_GetISteamAppL .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient013_GetISteamAppList( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamAppList, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } @@ -3153,8 +3137,6 @@ struct w_steam_iface *create_winISteamClient_SteamClient013(void *u_iface) return r; } -#include "cppISteamClient_SteamClient014.h" - DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient014_CreateSteamPipe, 4) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient014_BReleaseSteamPipe, 8) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient014_ConnectToGlobalUser, 8) @@ -3187,67 +3169,67 @@ DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient014_GetISteamMusic, 16) int32_t __thiscall winISteamClient_SteamClient014_CreateSteamPipe(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient014_CreateSteamPipe_params params = + struct ISteamClient_SteamClient014_CreateSteamPipe_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient014_CreateSteamPipe( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient014_CreateSteamPipe, ¶ms ); return params._ret; } bool __thiscall winISteamClient_SteamClient014_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) { - struct cppISteamClient_SteamClient014_BReleaseSteamPipe_params params = + struct ISteamClient_SteamClient014_BReleaseSteamPipe_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient014_BReleaseSteamPipe( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient014_BReleaseSteamPipe, ¶ms ); return params._ret; } int32_t __thiscall winISteamClient_SteamClient014_ConnectToGlobalUser(struct w_steam_iface *_this, int32_t hSteamPipe) { - struct cppISteamClient_SteamClient014_ConnectToGlobalUser_params params = + struct ISteamClient_SteamClient014_ConnectToGlobalUser_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient014_ConnectToGlobalUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient014_ConnectToGlobalUser, ¶ms ); return params._ret; } int32_t __thiscall winISteamClient_SteamClient014_CreateLocalUser(struct w_steam_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) { - struct cppISteamClient_SteamClient014_CreateLocalUser_params params = + struct ISteamClient_SteamClient014_CreateLocalUser_params params = { .linux_side = _this->u_iface, .phSteamPipe = phSteamPipe, .eAccountType = eAccountType, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient014_CreateLocalUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient014_CreateLocalUser, ¶ms ); return params._ret; } void __thiscall winISteamClient_SteamClient014_ReleaseUser(struct w_steam_iface *_this, int32_t hSteamPipe, int32_t hUser) { - struct cppISteamClient_SteamClient014_ReleaseUser_params params = + struct ISteamClient_SteamClient014_ReleaseUser_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, .hUser = hUser, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient014_ReleaseUser( ¶ms ); + 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) { - struct cppISteamClient_SteamClient014_GetISteamUser_params params = + struct ISteamClient_SteamClient014_GetISteamUser_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -3255,14 +3237,14 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient014_GetISteamUser(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient014_GetISteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamUser, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient014_GetISteamGameServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient014_GetISteamGameServer_params params = + struct ISteamClient_SteamClient014_GetISteamGameServer_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -3270,26 +3252,26 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient014_GetISteamG .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient014_GetISteamGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamGameServer, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient014_SetLocalIPBinding(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort) { - struct cppISteamClient_SteamClient014_SetLocalIPBinding_params params = + struct ISteamClient_SteamClient014_SetLocalIPBinding_params params = { .linux_side = _this->u_iface, .unIP = unIP, .usPort = usPort, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient014_SetLocalIPBinding( ¶ms ); + 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) { - struct cppISteamClient_SteamClient014_GetISteamFriends_params params = + struct ISteamClient_SteamClient014_GetISteamFriends_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -3297,28 +3279,28 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient014_GetISteamFrie .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient014_GetISteamFriends( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamFriends, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient014_GetISteamUtils(struct w_steam_iface *_this, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient014_GetISteamUtils_params params = + struct ISteamClient_SteamClient014_GetISteamUtils_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient014_GetISteamUtils( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamUtils, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient014_GetISteamMatchmaking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient014_GetISteamMatchmaking_params params = + struct ISteamClient_SteamClient014_GetISteamMatchmaking_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -3326,14 +3308,14 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient014_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient014_GetISteamMatchmaking( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamMatchmaking, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient014_GetISteamMatchmakingServers(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient014_GetISteamMatchmakingServers_params params = + struct ISteamClient_SteamClient014_GetISteamMatchmakingServers_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -3341,14 +3323,14 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient014_Ge .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient014_GetISteamMatchmakingServers( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamMatchmakingServers, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void * __thiscall winISteamClient_SteamClient014_GetISteamGenericInterface(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient014_GetISteamGenericInterface_params params = + struct ISteamClient_SteamClient014_GetISteamGenericInterface_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -3356,14 +3338,14 @@ void * __thiscall winISteamClient_SteamClient014_GetISteamGenericInterface(struc .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient014_GetISteamGenericInterface( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamGenericInterface, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient014_GetISteamUserStats(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient014_GetISteamUserStats_params params = + struct ISteamClient_SteamClient014_GetISteamUserStats_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -3371,14 +3353,14 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient014_GetISteamUs .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient014_GetISteamUserStats( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamUserStats, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient014_GetISteamGameServerStats(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient014_GetISteamGameServerStats_params params = + struct ISteamClient_SteamClient014_GetISteamGameServerStats_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -3386,14 +3368,14 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient014_GetIS .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient014_GetISteamGameServerStats( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamGameServerStats, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient014_GetISteamApps(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient014_GetISteamApps_params params = + struct ISteamClient_SteamClient014_GetISteamApps_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -3401,14 +3383,14 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient014_GetISteamApps(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient014_GetISteamApps( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamApps, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient014_GetISteamNetworking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient014_GetISteamNetworking_params params = + struct ISteamClient_SteamClient014_GetISteamNetworking_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -3416,14 +3398,14 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient014_GetISteamN .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient014_GetISteamNetworking( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamNetworking, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient014_GetISteamRemoteStorage(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient014_GetISteamRemoteStorage_params params = + struct ISteamClient_SteamClient014_GetISteamRemoteStorage_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -3431,14 +3413,14 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient014_GetISte .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient014_GetISteamRemoteStorage( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamRemoteStorage, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient014_GetISteamScreenshots(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient014_GetISteamScreenshots_params params = + struct ISteamClient_SteamClient014_GetISteamScreenshots_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -3446,57 +3428,57 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient014_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient014_GetISteamScreenshots( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamScreenshots, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient014_RunFrame(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient014_RunFrame_params params = + struct ISteamClient_SteamClient014_RunFrame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient014_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient014_RunFrame, ¶ms ); } uint32_t __thiscall winISteamClient_SteamClient014_GetIPCCallCount(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient014_GetIPCCallCount_params params = + struct ISteamClient_SteamClient014_GetIPCCallCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient014_GetIPCCallCount( ¶ms ); + 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 *)) { - struct cppISteamClient_SteamClient014_SetWarningMessageHook_params params = + struct ISteamClient_SteamClient014_SetWarningMessageHook_params params = { .linux_side = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient014_SetWarningMessageHook( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient014_SetWarningMessageHook, ¶ms ); } bool __thiscall winISteamClient_SteamClient014_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient014_BShutdownIfAllPipesClosed_params params = + struct ISteamClient_SteamClient014_BShutdownIfAllPipesClosed_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient014_BShutdownIfAllPipesClosed( ¶ms ); + 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) { - struct cppISteamClient_SteamClient014_GetISteamHTTP_params params = + struct ISteamClient_SteamClient014_GetISteamHTTP_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -3504,14 +3486,14 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient014_GetISteamHTTP(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient014_GetISteamHTTP( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamHTTP, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient014_GetISteamUnifiedMessages(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient014_GetISteamUnifiedMessages_params params = + struct ISteamClient_SteamClient014_GetISteamUnifiedMessages_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -3519,14 +3501,14 @@ void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient014_GetIS .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient014_GetISteamUnifiedMessages( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamUnifiedMessages, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamController*/ * __thiscall winISteamClient_SteamClient014_GetISteamController(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient014_GetISteamController_params params = + struct ISteamClient_SteamClient014_GetISteamController_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -3534,14 +3516,14 @@ void /*ISteamController*/ * __thiscall winISteamClient_SteamClient014_GetISteamC .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient014_GetISteamController( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamController, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient014_GetISteamUGC(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient014_GetISteamUGC_params params = + struct ISteamClient_SteamClient014_GetISteamUGC_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -3549,14 +3531,14 @@ void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient014_GetISteamUGC(stru .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient014_GetISteamUGC( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamUGC, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient014_GetISteamAppList(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient014_GetISteamAppList_params params = + struct ISteamClient_SteamClient014_GetISteamAppList_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -3564,14 +3546,14 @@ void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient014_GetISteamAppL .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient014_GetISteamAppList( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamAppList, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient014_GetISteamMusic(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient014_GetISteamMusic_params params = + struct ISteamClient_SteamClient014_GetISteamMusic_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -3579,7 +3561,7 @@ void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient014_GetISteamMusic( .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient014_GetISteamMusic( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamMusic, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } @@ -3631,8 +3613,6 @@ struct w_steam_iface *create_winISteamClient_SteamClient014(void *u_iface) return r; } -#include "cppISteamClient_SteamClient015.h" - DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient015_CreateSteamPipe, 4) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient015_BReleaseSteamPipe, 8) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient015_ConnectToGlobalUser, 8) @@ -3666,67 +3646,67 @@ DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient015_GetISteamMusicRemote, 16) int32_t __thiscall winISteamClient_SteamClient015_CreateSteamPipe(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient015_CreateSteamPipe_params params = + struct ISteamClient_SteamClient015_CreateSteamPipe_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient015_CreateSteamPipe( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient015_CreateSteamPipe, ¶ms ); return params._ret; } bool __thiscall winISteamClient_SteamClient015_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) { - struct cppISteamClient_SteamClient015_BReleaseSteamPipe_params params = + struct ISteamClient_SteamClient015_BReleaseSteamPipe_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient015_BReleaseSteamPipe( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient015_BReleaseSteamPipe, ¶ms ); return params._ret; } int32_t __thiscall winISteamClient_SteamClient015_ConnectToGlobalUser(struct w_steam_iface *_this, int32_t hSteamPipe) { - struct cppISteamClient_SteamClient015_ConnectToGlobalUser_params params = + struct ISteamClient_SteamClient015_ConnectToGlobalUser_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient015_ConnectToGlobalUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient015_ConnectToGlobalUser, ¶ms ); return params._ret; } int32_t __thiscall winISteamClient_SteamClient015_CreateLocalUser(struct w_steam_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) { - struct cppISteamClient_SteamClient015_CreateLocalUser_params params = + struct ISteamClient_SteamClient015_CreateLocalUser_params params = { .linux_side = _this->u_iface, .phSteamPipe = phSteamPipe, .eAccountType = eAccountType, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient015_CreateLocalUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient015_CreateLocalUser, ¶ms ); return params._ret; } void __thiscall winISteamClient_SteamClient015_ReleaseUser(struct w_steam_iface *_this, int32_t hSteamPipe, int32_t hUser) { - struct cppISteamClient_SteamClient015_ReleaseUser_params params = + struct ISteamClient_SteamClient015_ReleaseUser_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, .hUser = hUser, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient015_ReleaseUser( ¶ms ); + 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) { - struct cppISteamClient_SteamClient015_GetISteamUser_params params = + struct ISteamClient_SteamClient015_GetISteamUser_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -3734,14 +3714,14 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient015_GetISteamUser(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient015_GetISteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamUser, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient015_GetISteamGameServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient015_GetISteamGameServer_params params = + struct ISteamClient_SteamClient015_GetISteamGameServer_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -3749,26 +3729,26 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient015_GetISteamG .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient015_GetISteamGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamGameServer, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient015_SetLocalIPBinding(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort) { - struct cppISteamClient_SteamClient015_SetLocalIPBinding_params params = + struct ISteamClient_SteamClient015_SetLocalIPBinding_params params = { .linux_side = _this->u_iface, .unIP = unIP, .usPort = usPort, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient015_SetLocalIPBinding( ¶ms ); + 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) { - struct cppISteamClient_SteamClient015_GetISteamFriends_params params = + struct ISteamClient_SteamClient015_GetISteamFriends_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -3776,28 +3756,28 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient015_GetISteamFrie .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient015_GetISteamFriends( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamFriends, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient015_GetISteamUtils(struct w_steam_iface *_this, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient015_GetISteamUtils_params params = + struct ISteamClient_SteamClient015_GetISteamUtils_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient015_GetISteamUtils( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamUtils, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient015_GetISteamMatchmaking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient015_GetISteamMatchmaking_params params = + struct ISteamClient_SteamClient015_GetISteamMatchmaking_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -3805,14 +3785,14 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient015_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient015_GetISteamMatchmaking( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamMatchmaking, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient015_GetISteamMatchmakingServers(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient015_GetISteamMatchmakingServers_params params = + struct ISteamClient_SteamClient015_GetISteamMatchmakingServers_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -3820,14 +3800,14 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient015_Ge .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient015_GetISteamMatchmakingServers( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamMatchmakingServers, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void * __thiscall winISteamClient_SteamClient015_GetISteamGenericInterface(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient015_GetISteamGenericInterface_params params = + struct ISteamClient_SteamClient015_GetISteamGenericInterface_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -3835,14 +3815,14 @@ void * __thiscall winISteamClient_SteamClient015_GetISteamGenericInterface(struc .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient015_GetISteamGenericInterface( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamGenericInterface, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient015_GetISteamUserStats(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient015_GetISteamUserStats_params params = + struct ISteamClient_SteamClient015_GetISteamUserStats_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -3850,14 +3830,14 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient015_GetISteamUs .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient015_GetISteamUserStats( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamUserStats, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient015_GetISteamGameServerStats(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient015_GetISteamGameServerStats_params params = + struct ISteamClient_SteamClient015_GetISteamGameServerStats_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -3865,14 +3845,14 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient015_GetIS .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient015_GetISteamGameServerStats( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamGameServerStats, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient015_GetISteamApps(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient015_GetISteamApps_params params = + struct ISteamClient_SteamClient015_GetISteamApps_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -3880,14 +3860,14 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient015_GetISteamApps(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient015_GetISteamApps( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamApps, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient015_GetISteamNetworking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient015_GetISteamNetworking_params params = + struct ISteamClient_SteamClient015_GetISteamNetworking_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -3895,14 +3875,14 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient015_GetISteamN .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient015_GetISteamNetworking( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamNetworking, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient015_GetISteamRemoteStorage(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient015_GetISteamRemoteStorage_params params = + struct ISteamClient_SteamClient015_GetISteamRemoteStorage_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -3910,14 +3890,14 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient015_GetISte .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient015_GetISteamRemoteStorage( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamRemoteStorage, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient015_GetISteamScreenshots(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient015_GetISteamScreenshots_params params = + struct ISteamClient_SteamClient015_GetISteamScreenshots_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -3925,57 +3905,57 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient015_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient015_GetISteamScreenshots( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamScreenshots, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient015_RunFrame(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient015_RunFrame_params params = + struct ISteamClient_SteamClient015_RunFrame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient015_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient015_RunFrame, ¶ms ); } uint32_t __thiscall winISteamClient_SteamClient015_GetIPCCallCount(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient015_GetIPCCallCount_params params = + struct ISteamClient_SteamClient015_GetIPCCallCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient015_GetIPCCallCount( ¶ms ); + 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 *)) { - struct cppISteamClient_SteamClient015_SetWarningMessageHook_params params = + struct ISteamClient_SteamClient015_SetWarningMessageHook_params params = { .linux_side = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient015_SetWarningMessageHook( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient015_SetWarningMessageHook, ¶ms ); } bool __thiscall winISteamClient_SteamClient015_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient015_BShutdownIfAllPipesClosed_params params = + struct ISteamClient_SteamClient015_BShutdownIfAllPipesClosed_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient015_BShutdownIfAllPipesClosed( ¶ms ); + 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) { - struct cppISteamClient_SteamClient015_GetISteamHTTP_params params = + struct ISteamClient_SteamClient015_GetISteamHTTP_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -3983,14 +3963,14 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient015_GetISteamHTTP(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient015_GetISteamHTTP( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamHTTP, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient015_GetISteamUnifiedMessages(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient015_GetISteamUnifiedMessages_params params = + struct ISteamClient_SteamClient015_GetISteamUnifiedMessages_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -3998,14 +3978,14 @@ void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient015_GetIS .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient015_GetISteamUnifiedMessages( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamUnifiedMessages, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamController*/ * __thiscall winISteamClient_SteamClient015_GetISteamController(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient015_GetISteamController_params params = + struct ISteamClient_SteamClient015_GetISteamController_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -4013,14 +3993,14 @@ void /*ISteamController*/ * __thiscall winISteamClient_SteamClient015_GetISteamC .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient015_GetISteamController( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamController, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient015_GetISteamUGC(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient015_GetISteamUGC_params params = + struct ISteamClient_SteamClient015_GetISteamUGC_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -4028,14 +4008,14 @@ void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient015_GetISteamUGC(stru .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient015_GetISteamUGC( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamUGC, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient015_GetISteamAppList(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient015_GetISteamAppList_params params = + struct ISteamClient_SteamClient015_GetISteamAppList_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -4043,14 +4023,14 @@ void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient015_GetISteamAppL .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient015_GetISteamAppList( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamAppList, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient015_GetISteamMusic(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient015_GetISteamMusic_params params = + struct ISteamClient_SteamClient015_GetISteamMusic_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -4058,14 +4038,14 @@ void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient015_GetISteamMusic( .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient015_GetISteamMusic( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamMusic, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient015_GetISteamMusicRemote(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient015_GetISteamMusicRemote_params params = + struct ISteamClient_SteamClient015_GetISteamMusicRemote_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -4073,7 +4053,7 @@ void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient015_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient015_GetISteamMusicRemote( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamMusicRemote, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } @@ -4126,8 +4106,6 @@ struct w_steam_iface *create_winISteamClient_SteamClient015(void *u_iface) return r; } -#include "cppISteamClient_SteamClient016.h" - DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient016_CreateSteamPipe, 4) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient016_BReleaseSteamPipe, 8) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient016_ConnectToGlobalUser, 8) @@ -4165,67 +4143,67 @@ DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient016_Set_SteamAPI_CCheckCallba int32_t __thiscall winISteamClient_SteamClient016_CreateSteamPipe(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient016_CreateSteamPipe_params params = + struct ISteamClient_SteamClient016_CreateSteamPipe_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_CreateSteamPipe( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient016_CreateSteamPipe, ¶ms ); return params._ret; } bool __thiscall winISteamClient_SteamClient016_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) { - struct cppISteamClient_SteamClient016_BReleaseSteamPipe_params params = + struct ISteamClient_SteamClient016_BReleaseSteamPipe_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_BReleaseSteamPipe( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient016_BReleaseSteamPipe, ¶ms ); return params._ret; } int32_t __thiscall winISteamClient_SteamClient016_ConnectToGlobalUser(struct w_steam_iface *_this, int32_t hSteamPipe) { - struct cppISteamClient_SteamClient016_ConnectToGlobalUser_params params = + struct ISteamClient_SteamClient016_ConnectToGlobalUser_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_ConnectToGlobalUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient016_ConnectToGlobalUser, ¶ms ); return params._ret; } int32_t __thiscall winISteamClient_SteamClient016_CreateLocalUser(struct w_steam_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) { - struct cppISteamClient_SteamClient016_CreateLocalUser_params params = + struct ISteamClient_SteamClient016_CreateLocalUser_params params = { .linux_side = _this->u_iface, .phSteamPipe = phSteamPipe, .eAccountType = eAccountType, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_CreateLocalUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient016_CreateLocalUser, ¶ms ); return params._ret; } void __thiscall winISteamClient_SteamClient016_ReleaseUser(struct w_steam_iface *_this, int32_t hSteamPipe, int32_t hUser) { - struct cppISteamClient_SteamClient016_ReleaseUser_params params = + struct ISteamClient_SteamClient016_ReleaseUser_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, .hUser = hUser, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_ReleaseUser( ¶ms ); + 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) { - struct cppISteamClient_SteamClient016_GetISteamUser_params params = + struct ISteamClient_SteamClient016_GetISteamUser_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -4233,14 +4211,14 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient016_GetISteamUser(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_GetISteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamUser, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient016_GetISteamGameServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient016_GetISteamGameServer_params params = + struct ISteamClient_SteamClient016_GetISteamGameServer_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -4248,26 +4226,26 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient016_GetISteamG .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_GetISteamGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamGameServer, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient016_SetLocalIPBinding(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort) { - struct cppISteamClient_SteamClient016_SetLocalIPBinding_params params = + struct ISteamClient_SteamClient016_SetLocalIPBinding_params params = { .linux_side = _this->u_iface, .unIP = unIP, .usPort = usPort, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_SetLocalIPBinding( ¶ms ); + 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) { - struct cppISteamClient_SteamClient016_GetISteamFriends_params params = + struct ISteamClient_SteamClient016_GetISteamFriends_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -4275,28 +4253,28 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient016_GetISteamFrie .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_GetISteamFriends( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamFriends, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient016_GetISteamUtils(struct w_steam_iface *_this, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient016_GetISteamUtils_params params = + struct ISteamClient_SteamClient016_GetISteamUtils_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_GetISteamUtils( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamUtils, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient016_GetISteamMatchmaking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient016_GetISteamMatchmaking_params params = + struct ISteamClient_SteamClient016_GetISteamMatchmaking_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -4304,14 +4282,14 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient016_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_GetISteamMatchmaking( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamMatchmaking, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient016_GetISteamMatchmakingServers(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient016_GetISteamMatchmakingServers_params params = + struct ISteamClient_SteamClient016_GetISteamMatchmakingServers_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -4319,14 +4297,14 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient016_Ge .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_GetISteamMatchmakingServers( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamMatchmakingServers, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void * __thiscall winISteamClient_SteamClient016_GetISteamGenericInterface(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient016_GetISteamGenericInterface_params params = + struct ISteamClient_SteamClient016_GetISteamGenericInterface_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -4334,14 +4312,14 @@ void * __thiscall winISteamClient_SteamClient016_GetISteamGenericInterface(struc .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_GetISteamGenericInterface( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamGenericInterface, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient016_GetISteamUserStats(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient016_GetISteamUserStats_params params = + struct ISteamClient_SteamClient016_GetISteamUserStats_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -4349,14 +4327,14 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient016_GetISteamUs .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_GetISteamUserStats( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamUserStats, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient016_GetISteamGameServerStats(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient016_GetISteamGameServerStats_params params = + struct ISteamClient_SteamClient016_GetISteamGameServerStats_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -4364,14 +4342,14 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient016_GetIS .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_GetISteamGameServerStats( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamGameServerStats, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient016_GetISteamApps(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient016_GetISteamApps_params params = + struct ISteamClient_SteamClient016_GetISteamApps_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -4379,14 +4357,14 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient016_GetISteamApps(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_GetISteamApps( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamApps, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient016_GetISteamNetworking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient016_GetISteamNetworking_params params = + struct ISteamClient_SteamClient016_GetISteamNetworking_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -4394,14 +4372,14 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient016_GetISteamN .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_GetISteamNetworking( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamNetworking, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient016_GetISteamRemoteStorage(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient016_GetISteamRemoteStorage_params params = + struct ISteamClient_SteamClient016_GetISteamRemoteStorage_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -4409,14 +4387,14 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient016_GetISte .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_GetISteamRemoteStorage( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamRemoteStorage, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient016_GetISteamScreenshots(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient016_GetISteamScreenshots_params params = + struct ISteamClient_SteamClient016_GetISteamScreenshots_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -4424,57 +4402,57 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient016_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_GetISteamScreenshots( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamScreenshots, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient016_RunFrame(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient016_RunFrame_params params = + struct ISteamClient_SteamClient016_RunFrame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient016_RunFrame, ¶ms ); } uint32_t __thiscall winISteamClient_SteamClient016_GetIPCCallCount(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient016_GetIPCCallCount_params params = + struct ISteamClient_SteamClient016_GetIPCCallCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_GetIPCCallCount( ¶ms ); + 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 *)) { - struct cppISteamClient_SteamClient016_SetWarningMessageHook_params params = + struct ISteamClient_SteamClient016_SetWarningMessageHook_params params = { .linux_side = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_SetWarningMessageHook( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient016_SetWarningMessageHook, ¶ms ); } bool __thiscall winISteamClient_SteamClient016_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient016_BShutdownIfAllPipesClosed_params params = + struct ISteamClient_SteamClient016_BShutdownIfAllPipesClosed_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_BShutdownIfAllPipesClosed( ¶ms ); + 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) { - struct cppISteamClient_SteamClient016_GetISteamHTTP_params params = + struct ISteamClient_SteamClient016_GetISteamHTTP_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -4482,14 +4460,14 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient016_GetISteamHTTP(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_GetISteamHTTP( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamHTTP, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient016_GetISteamUnifiedMessages(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient016_GetISteamUnifiedMessages_params params = + struct ISteamClient_SteamClient016_GetISteamUnifiedMessages_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -4497,14 +4475,14 @@ void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient016_GetIS .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_GetISteamUnifiedMessages( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamUnifiedMessages, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamController*/ * __thiscall winISteamClient_SteamClient016_GetISteamController(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient016_GetISteamController_params params = + struct ISteamClient_SteamClient016_GetISteamController_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -4512,14 +4490,14 @@ void /*ISteamController*/ * __thiscall winISteamClient_SteamClient016_GetISteamC .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_GetISteamController( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamController, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient016_GetISteamUGC(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient016_GetISteamUGC_params params = + struct ISteamClient_SteamClient016_GetISteamUGC_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -4527,14 +4505,14 @@ void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient016_GetISteamUGC(stru .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_GetISteamUGC( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamUGC, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient016_GetISteamAppList(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient016_GetISteamAppList_params params = + struct ISteamClient_SteamClient016_GetISteamAppList_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -4542,14 +4520,14 @@ void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient016_GetISteamAppL .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_GetISteamAppList( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamAppList, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient016_GetISteamMusic(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient016_GetISteamMusic_params params = + struct ISteamClient_SteamClient016_GetISteamMusic_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -4557,14 +4535,14 @@ void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient016_GetISteamMusic( .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_GetISteamMusic( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamMusic, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient016_GetISteamMusicRemote(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient016_GetISteamMusicRemote_params params = + struct ISteamClient_SteamClient016_GetISteamMusicRemote_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -4572,14 +4550,14 @@ void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient016_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_GetISteamMusicRemote( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamMusicRemote, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient016_GetISteamHTMLSurface(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient016_GetISteamHTMLSurface_params params = + struct ISteamClient_SteamClient016_GetISteamHTMLSurface_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -4587,42 +4565,42 @@ void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient016_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_GetISteamHTMLSurface( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamHTMLSurface, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient016_Set_SteamAPI_CPostAPIResultInProcess(struct w_steam_iface *_this, void (*W_STDCALL func)(uint64_t, void *, uint32_t, int32_t)) { - struct cppISteamClient_SteamClient016_Set_SteamAPI_CPostAPIResultInProcess_params params = + struct ISteamClient_SteamClient016_Set_SteamAPI_CPostAPIResultInProcess_params params = { .linux_side = _this->u_iface, .func = func, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_Set_SteamAPI_CPostAPIResultInProcess( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient016_Set_SteamAPI_CPostAPIResultInProcess, ¶ms ); } void __thiscall winISteamClient_SteamClient016_Remove_SteamAPI_CPostAPIResultInProcess(struct w_steam_iface *_this, void (*W_STDCALL func)(uint64_t, void *, uint32_t, int32_t)) { - struct cppISteamClient_SteamClient016_Remove_SteamAPI_CPostAPIResultInProcess_params params = + struct ISteamClient_SteamClient016_Remove_SteamAPI_CPostAPIResultInProcess_params params = { .linux_side = _this->u_iface, .func = func, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_Remove_SteamAPI_CPostAPIResultInProcess( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient016_Remove_SteamAPI_CPostAPIResultInProcess, ¶ms ); } void __thiscall winISteamClient_SteamClient016_Set_SteamAPI_CCheckCallbackRegisteredInProcess(struct w_steam_iface *_this, uint32_t (*W_STDCALL func)(int32_t)) { - struct cppISteamClient_SteamClient016_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params params = + struct ISteamClient_SteamClient016_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params params = { .linux_side = _this->u_iface, .func = func, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient016_Set_SteamAPI_CCheckCallbackRegisteredInProcess( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient016_Set_SteamAPI_CCheckCallbackRegisteredInProcess, ¶ms ); } extern vtable_ptr winISteamClient_SteamClient016_vtable; @@ -4677,8 +4655,6 @@ struct w_steam_iface *create_winISteamClient_SteamClient016(void *u_iface) return r; } -#include "cppISteamClient_SteamClient017.h" - DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient017_CreateSteamPipe, 4) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient017_BReleaseSteamPipe, 8) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient017_ConnectToGlobalUser, 8) @@ -4719,67 +4695,67 @@ DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient017_GetISteamParentalSettings int32_t __thiscall winISteamClient_SteamClient017_CreateSteamPipe(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient017_CreateSteamPipe_params params = + struct ISteamClient_SteamClient017_CreateSteamPipe_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_CreateSteamPipe( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_CreateSteamPipe, ¶ms ); return params._ret; } bool __thiscall winISteamClient_SteamClient017_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) { - struct cppISteamClient_SteamClient017_BReleaseSteamPipe_params params = + struct ISteamClient_SteamClient017_BReleaseSteamPipe_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_BReleaseSteamPipe( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_BReleaseSteamPipe, ¶ms ); return params._ret; } int32_t __thiscall winISteamClient_SteamClient017_ConnectToGlobalUser(struct w_steam_iface *_this, int32_t hSteamPipe) { - struct cppISteamClient_SteamClient017_ConnectToGlobalUser_params params = + struct ISteamClient_SteamClient017_ConnectToGlobalUser_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_ConnectToGlobalUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_ConnectToGlobalUser, ¶ms ); return params._ret; } int32_t __thiscall winISteamClient_SteamClient017_CreateLocalUser(struct w_steam_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) { - struct cppISteamClient_SteamClient017_CreateLocalUser_params params = + struct ISteamClient_SteamClient017_CreateLocalUser_params params = { .linux_side = _this->u_iface, .phSteamPipe = phSteamPipe, .eAccountType = eAccountType, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_CreateLocalUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_CreateLocalUser, ¶ms ); return params._ret; } void __thiscall winISteamClient_SteamClient017_ReleaseUser(struct w_steam_iface *_this, int32_t hSteamPipe, int32_t hUser) { - struct cppISteamClient_SteamClient017_ReleaseUser_params params = + struct ISteamClient_SteamClient017_ReleaseUser_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, .hUser = hUser, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_ReleaseUser( ¶ms ); + 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) { - struct cppISteamClient_SteamClient017_GetISteamUser_params params = + struct ISteamClient_SteamClient017_GetISteamUser_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -4787,14 +4763,14 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient017_GetISteamUser(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_GetISteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamUser, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient017_GetISteamGameServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient017_GetISteamGameServer_params params = + struct ISteamClient_SteamClient017_GetISteamGameServer_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -4802,26 +4778,26 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient017_GetISteamG .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_GetISteamGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamGameServer, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient017_SetLocalIPBinding(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort) { - struct cppISteamClient_SteamClient017_SetLocalIPBinding_params params = + struct ISteamClient_SteamClient017_SetLocalIPBinding_params params = { .linux_side = _this->u_iface, .unIP = unIP, .usPort = usPort, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_SetLocalIPBinding( ¶ms ); + 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) { - struct cppISteamClient_SteamClient017_GetISteamFriends_params params = + struct ISteamClient_SteamClient017_GetISteamFriends_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -4829,28 +4805,28 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient017_GetISteamFrie .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_GetISteamFriends( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamFriends, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient017_GetISteamUtils(struct w_steam_iface *_this, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient017_GetISteamUtils_params params = + struct ISteamClient_SteamClient017_GetISteamUtils_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_GetISteamUtils( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamUtils, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient017_GetISteamMatchmaking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient017_GetISteamMatchmaking_params params = + struct ISteamClient_SteamClient017_GetISteamMatchmaking_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -4858,14 +4834,14 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient017_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_GetISteamMatchmaking( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamMatchmaking, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient017_GetISteamMatchmakingServers(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient017_GetISteamMatchmakingServers_params params = + struct ISteamClient_SteamClient017_GetISteamMatchmakingServers_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -4873,14 +4849,14 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient017_Ge .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_GetISteamMatchmakingServers( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamMatchmakingServers, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void * __thiscall winISteamClient_SteamClient017_GetISteamGenericInterface(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient017_GetISteamGenericInterface_params params = + struct ISteamClient_SteamClient017_GetISteamGenericInterface_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -4888,14 +4864,14 @@ void * __thiscall winISteamClient_SteamClient017_GetISteamGenericInterface(struc .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_GetISteamGenericInterface( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamGenericInterface, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient017_GetISteamUserStats(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient017_GetISteamUserStats_params params = + struct ISteamClient_SteamClient017_GetISteamUserStats_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -4903,14 +4879,14 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient017_GetISteamUs .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_GetISteamUserStats( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamUserStats, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient017_GetISteamGameServerStats(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient017_GetISteamGameServerStats_params params = + struct ISteamClient_SteamClient017_GetISteamGameServerStats_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -4918,14 +4894,14 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient017_GetIS .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_GetISteamGameServerStats( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamGameServerStats, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient017_GetISteamApps(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient017_GetISteamApps_params params = + struct ISteamClient_SteamClient017_GetISteamApps_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -4933,14 +4909,14 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient017_GetISteamApps(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_GetISteamApps( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamApps, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient017_GetISteamNetworking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient017_GetISteamNetworking_params params = + struct ISteamClient_SteamClient017_GetISteamNetworking_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -4948,14 +4924,14 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient017_GetISteamN .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_GetISteamNetworking( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamNetworking, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient017_GetISteamRemoteStorage(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient017_GetISteamRemoteStorage_params params = + struct ISteamClient_SteamClient017_GetISteamRemoteStorage_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -4963,14 +4939,14 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient017_GetISte .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_GetISteamRemoteStorage( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamRemoteStorage, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient017_GetISteamScreenshots(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient017_GetISteamScreenshots_params params = + struct ISteamClient_SteamClient017_GetISteamScreenshots_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -4978,57 +4954,57 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient017_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_GetISteamScreenshots( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamScreenshots, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient017_RunFrame(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient017_RunFrame_params params = + struct ISteamClient_SteamClient017_RunFrame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_RunFrame, ¶ms ); } uint32_t __thiscall winISteamClient_SteamClient017_GetIPCCallCount(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient017_GetIPCCallCount_params params = + struct ISteamClient_SteamClient017_GetIPCCallCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_GetIPCCallCount( ¶ms ); + 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 *)) { - struct cppISteamClient_SteamClient017_SetWarningMessageHook_params params = + struct ISteamClient_SteamClient017_SetWarningMessageHook_params params = { .linux_side = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_SetWarningMessageHook( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_SetWarningMessageHook, ¶ms ); } bool __thiscall winISteamClient_SteamClient017_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient017_BShutdownIfAllPipesClosed_params params = + struct ISteamClient_SteamClient017_BShutdownIfAllPipesClosed_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_BShutdownIfAllPipesClosed( ¶ms ); + 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) { - struct cppISteamClient_SteamClient017_GetISteamHTTP_params params = + struct ISteamClient_SteamClient017_GetISteamHTTP_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -5036,14 +5012,14 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient017_GetISteamHTTP(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_GetISteamHTTP( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamHTTP, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void * __thiscall winISteamClient_SteamClient017_DEPRECATED_GetISteamUnifiedMessages(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient017_DEPRECATED_GetISteamUnifiedMessages_params params = + struct ISteamClient_SteamClient017_DEPRECATED_GetISteamUnifiedMessages_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -5051,13 +5027,13 @@ void * __thiscall winISteamClient_SteamClient017_DEPRECATED_GetISteamUnifiedMess .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_DEPRECATED_GetISteamUnifiedMessages( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_DEPRECATED_GetISteamUnifiedMessages, ¶ms ); return params._ret; } void /*ISteamController*/ * __thiscall winISteamClient_SteamClient017_GetISteamController(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient017_GetISteamController_params params = + struct ISteamClient_SteamClient017_GetISteamController_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -5065,14 +5041,14 @@ void /*ISteamController*/ * __thiscall winISteamClient_SteamClient017_GetISteamC .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_GetISteamController( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamController, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient017_GetISteamUGC(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient017_GetISteamUGC_params params = + struct ISteamClient_SteamClient017_GetISteamUGC_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -5080,14 +5056,14 @@ void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient017_GetISteamUGC(stru .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_GetISteamUGC( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamUGC, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient017_GetISteamAppList(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient017_GetISteamAppList_params params = + struct ISteamClient_SteamClient017_GetISteamAppList_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -5095,14 +5071,14 @@ void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient017_GetISteamAppL .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_GetISteamAppList( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamAppList, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient017_GetISteamMusic(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient017_GetISteamMusic_params params = + struct ISteamClient_SteamClient017_GetISteamMusic_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -5110,14 +5086,14 @@ void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient017_GetISteamMusic( .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_GetISteamMusic( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamMusic, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient017_GetISteamMusicRemote(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient017_GetISteamMusicRemote_params params = + struct ISteamClient_SteamClient017_GetISteamMusicRemote_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -5125,14 +5101,14 @@ void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient017_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_GetISteamMusicRemote( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamMusicRemote, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient017_GetISteamHTMLSurface(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient017_GetISteamHTMLSurface_params params = + struct ISteamClient_SteamClient017_GetISteamHTMLSurface_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -5140,47 +5116,47 @@ void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient017_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_GetISteamHTMLSurface( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamHTMLSurface, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient017_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess(struct w_steam_iface *_this, void (*W_STDCALL _a)(void)) { - struct cppISteamClient_SteamClient017_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params params = + struct ISteamClient_SteamClient017_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params params = { .linux_side = _this->u_iface, ._a = _a, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess, ¶ms ); } void __thiscall winISteamClient_SteamClient017_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess(struct w_steam_iface *_this, void (*W_STDCALL _a)(void)) { - struct cppISteamClient_SteamClient017_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params params = + struct ISteamClient_SteamClient017_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params params = { .linux_side = _this->u_iface, ._a = _a, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess, ¶ms ); } void __thiscall winISteamClient_SteamClient017_Set_SteamAPI_CCheckCallbackRegisteredInProcess(struct w_steam_iface *_this, uint32_t (*W_STDCALL func)(int32_t)) { - struct cppISteamClient_SteamClient017_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params params = + struct ISteamClient_SteamClient017_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params params = { .linux_side = _this->u_iface, .func = func, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_Set_SteamAPI_CCheckCallbackRegisteredInProcess( ¶ms ); + 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) { - struct cppISteamClient_SteamClient017_GetISteamInventory_params params = + struct ISteamClient_SteamClient017_GetISteamInventory_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -5188,14 +5164,14 @@ void /*ISteamInventory*/ * __thiscall winISteamClient_SteamClient017_GetISteamIn .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_GetISteamInventory( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamInventory, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient017_GetISteamVideo(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient017_GetISteamVideo_params params = + struct ISteamClient_SteamClient017_GetISteamVideo_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -5203,14 +5179,14 @@ void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient017_GetISteamVideo( .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_GetISteamVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamVideo, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient017_GetISteamParentalSettings(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient017_GetISteamParentalSettings_params params = + struct ISteamClient_SteamClient017_GetISteamParentalSettings_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -5218,7 +5194,7 @@ void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient017_GetI .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient017_GetISteamParentalSettings( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamParentalSettings, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } @@ -5278,8 +5254,6 @@ struct w_steam_iface *create_winISteamClient_SteamClient017(void *u_iface) return r; } -#include "cppISteamClient_SteamClient018.h" - DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient018_CreateSteamPipe, 4) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient018_BReleaseSteamPipe, 8) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient018_ConnectToGlobalUser, 8) @@ -5323,67 +5297,67 @@ DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient018_GetISteamParties, 16) int32_t __thiscall winISteamClient_SteamClient018_CreateSteamPipe(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient018_CreateSteamPipe_params params = + struct ISteamClient_SteamClient018_CreateSteamPipe_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_CreateSteamPipe( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_CreateSteamPipe, ¶ms ); return params._ret; } bool __thiscall winISteamClient_SteamClient018_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) { - struct cppISteamClient_SteamClient018_BReleaseSteamPipe_params params = + struct ISteamClient_SteamClient018_BReleaseSteamPipe_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_BReleaseSteamPipe( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_BReleaseSteamPipe, ¶ms ); return params._ret; } int32_t __thiscall winISteamClient_SteamClient018_ConnectToGlobalUser(struct w_steam_iface *_this, int32_t hSteamPipe) { - struct cppISteamClient_SteamClient018_ConnectToGlobalUser_params params = + struct ISteamClient_SteamClient018_ConnectToGlobalUser_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_ConnectToGlobalUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_ConnectToGlobalUser, ¶ms ); return params._ret; } int32_t __thiscall winISteamClient_SteamClient018_CreateLocalUser(struct w_steam_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) { - struct cppISteamClient_SteamClient018_CreateLocalUser_params params = + struct ISteamClient_SteamClient018_CreateLocalUser_params params = { .linux_side = _this->u_iface, .phSteamPipe = phSteamPipe, .eAccountType = eAccountType, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_CreateLocalUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_CreateLocalUser, ¶ms ); return params._ret; } void __thiscall winISteamClient_SteamClient018_ReleaseUser(struct w_steam_iface *_this, int32_t hSteamPipe, int32_t hUser) { - struct cppISteamClient_SteamClient018_ReleaseUser_params params = + struct ISteamClient_SteamClient018_ReleaseUser_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, .hUser = hUser, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_ReleaseUser( ¶ms ); + 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) { - struct cppISteamClient_SteamClient018_GetISteamUser_params params = + struct ISteamClient_SteamClient018_GetISteamUser_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -5391,14 +5365,14 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient018_GetISteamUser(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_GetISteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamUser, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient018_GetISteamGameServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient018_GetISteamGameServer_params params = + struct ISteamClient_SteamClient018_GetISteamGameServer_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -5406,26 +5380,26 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient018_GetISteamG .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_GetISteamGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamGameServer, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient018_SetLocalIPBinding(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort) { - struct cppISteamClient_SteamClient018_SetLocalIPBinding_params params = + struct ISteamClient_SteamClient018_SetLocalIPBinding_params params = { .linux_side = _this->u_iface, .unIP = unIP, .usPort = usPort, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_SetLocalIPBinding( ¶ms ); + 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) { - struct cppISteamClient_SteamClient018_GetISteamFriends_params params = + struct ISteamClient_SteamClient018_GetISteamFriends_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -5433,28 +5407,28 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient018_GetISteamFrie .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_GetISteamFriends( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamFriends, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient018_GetISteamUtils(struct w_steam_iface *_this, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient018_GetISteamUtils_params params = + struct ISteamClient_SteamClient018_GetISteamUtils_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_GetISteamUtils( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamUtils, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient018_GetISteamMatchmaking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient018_GetISteamMatchmaking_params params = + struct ISteamClient_SteamClient018_GetISteamMatchmaking_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -5462,14 +5436,14 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient018_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_GetISteamMatchmaking( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamMatchmaking, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient018_GetISteamMatchmakingServers(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient018_GetISteamMatchmakingServers_params params = + struct ISteamClient_SteamClient018_GetISteamMatchmakingServers_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -5477,14 +5451,14 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient018_Ge .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_GetISteamMatchmakingServers( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamMatchmakingServers, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void * __thiscall winISteamClient_SteamClient018_GetISteamGenericInterface(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient018_GetISteamGenericInterface_params params = + struct ISteamClient_SteamClient018_GetISteamGenericInterface_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -5492,14 +5466,14 @@ void * __thiscall winISteamClient_SteamClient018_GetISteamGenericInterface(struc .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_GetISteamGenericInterface( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamGenericInterface, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient018_GetISteamUserStats(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient018_GetISteamUserStats_params params = + struct ISteamClient_SteamClient018_GetISteamUserStats_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -5507,14 +5481,14 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient018_GetISteamUs .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_GetISteamUserStats( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamUserStats, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient018_GetISteamGameServerStats(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient018_GetISteamGameServerStats_params params = + struct ISteamClient_SteamClient018_GetISteamGameServerStats_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -5522,14 +5496,14 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient018_GetIS .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_GetISteamGameServerStats( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamGameServerStats, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient018_GetISteamApps(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient018_GetISteamApps_params params = + struct ISteamClient_SteamClient018_GetISteamApps_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -5537,14 +5511,14 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient018_GetISteamApps(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_GetISteamApps( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamApps, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient018_GetISteamNetworking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient018_GetISteamNetworking_params params = + struct ISteamClient_SteamClient018_GetISteamNetworking_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -5552,14 +5526,14 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient018_GetISteamN .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_GetISteamNetworking( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamNetworking, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient018_GetISteamRemoteStorage(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient018_GetISteamRemoteStorage_params params = + struct ISteamClient_SteamClient018_GetISteamRemoteStorage_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -5567,14 +5541,14 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient018_GetISte .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_GetISteamRemoteStorage( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamRemoteStorage, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient018_GetISteamScreenshots(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient018_GetISteamScreenshots_params params = + struct ISteamClient_SteamClient018_GetISteamScreenshots_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -5582,14 +5556,14 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient018_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_GetISteamScreenshots( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamScreenshots, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamGameSearch*/ * __thiscall winISteamClient_SteamClient018_GetISteamGameSearch(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient018_GetISteamGameSearch_params params = + struct ISteamClient_SteamClient018_GetISteamGameSearch_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -5597,57 +5571,57 @@ void /*ISteamGameSearch*/ * __thiscall winISteamClient_SteamClient018_GetISteamG .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_GetISteamGameSearch( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamGameSearch, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient018_RunFrame(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient018_RunFrame_params params = + struct ISteamClient_SteamClient018_RunFrame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_RunFrame, ¶ms ); } uint32_t __thiscall winISteamClient_SteamClient018_GetIPCCallCount(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient018_GetIPCCallCount_params params = + struct ISteamClient_SteamClient018_GetIPCCallCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_GetIPCCallCount( ¶ms ); + 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 *)) { - struct cppISteamClient_SteamClient018_SetWarningMessageHook_params params = + struct ISteamClient_SteamClient018_SetWarningMessageHook_params params = { .linux_side = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_SetWarningMessageHook( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_SetWarningMessageHook, ¶ms ); } bool __thiscall winISteamClient_SteamClient018_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient018_BShutdownIfAllPipesClosed_params params = + struct ISteamClient_SteamClient018_BShutdownIfAllPipesClosed_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_BShutdownIfAllPipesClosed( ¶ms ); + 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) { - struct cppISteamClient_SteamClient018_GetISteamHTTP_params params = + struct ISteamClient_SteamClient018_GetISteamHTTP_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -5655,14 +5629,14 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient018_GetISteamHTTP(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_GetISteamHTTP( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamHTTP, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void * __thiscall winISteamClient_SteamClient018_DEPRECATED_GetISteamUnifiedMessages(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient018_DEPRECATED_GetISteamUnifiedMessages_params params = + struct ISteamClient_SteamClient018_DEPRECATED_GetISteamUnifiedMessages_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -5670,13 +5644,13 @@ void * __thiscall winISteamClient_SteamClient018_DEPRECATED_GetISteamUnifiedMess .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_DEPRECATED_GetISteamUnifiedMessages( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_DEPRECATED_GetISteamUnifiedMessages, ¶ms ); return params._ret; } void /*ISteamController*/ * __thiscall winISteamClient_SteamClient018_GetISteamController(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient018_GetISteamController_params params = + struct ISteamClient_SteamClient018_GetISteamController_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -5684,14 +5658,14 @@ void /*ISteamController*/ * __thiscall winISteamClient_SteamClient018_GetISteamC .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_GetISteamController( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamController, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient018_GetISteamUGC(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient018_GetISteamUGC_params params = + struct ISteamClient_SteamClient018_GetISteamUGC_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -5699,14 +5673,14 @@ void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient018_GetISteamUGC(stru .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_GetISteamUGC( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamUGC, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient018_GetISteamAppList(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient018_GetISteamAppList_params params = + struct ISteamClient_SteamClient018_GetISteamAppList_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -5714,14 +5688,14 @@ void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient018_GetISteamAppL .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_GetISteamAppList( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamAppList, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient018_GetISteamMusic(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient018_GetISteamMusic_params params = + struct ISteamClient_SteamClient018_GetISteamMusic_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -5729,14 +5703,14 @@ void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient018_GetISteamMusic( .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_GetISteamMusic( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamMusic, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient018_GetISteamMusicRemote(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient018_GetISteamMusicRemote_params params = + struct ISteamClient_SteamClient018_GetISteamMusicRemote_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -5744,14 +5718,14 @@ void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient018_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_GetISteamMusicRemote( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamMusicRemote, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient018_GetISteamHTMLSurface(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient018_GetISteamHTMLSurface_params params = + struct ISteamClient_SteamClient018_GetISteamHTMLSurface_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -5759,47 +5733,47 @@ void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient018_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_GetISteamHTMLSurface( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamHTMLSurface, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient018_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess(struct w_steam_iface *_this, void (*W_STDCALL _a)(void)) { - struct cppISteamClient_SteamClient018_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params params = + struct ISteamClient_SteamClient018_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params params = { .linux_side = _this->u_iface, ._a = _a, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess, ¶ms ); } void __thiscall winISteamClient_SteamClient018_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess(struct w_steam_iface *_this, void (*W_STDCALL _a)(void)) { - struct cppISteamClient_SteamClient018_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params params = + struct ISteamClient_SteamClient018_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params params = { .linux_side = _this->u_iface, ._a = _a, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess, ¶ms ); } void __thiscall winISteamClient_SteamClient018_Set_SteamAPI_CCheckCallbackRegisteredInProcess(struct w_steam_iface *_this, uint32_t (*W_STDCALL func)(int32_t)) { - struct cppISteamClient_SteamClient018_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params params = + struct ISteamClient_SteamClient018_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params params = { .linux_side = _this->u_iface, .func = func, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_Set_SteamAPI_CCheckCallbackRegisteredInProcess( ¶ms ); + 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) { - struct cppISteamClient_SteamClient018_GetISteamInventory_params params = + struct ISteamClient_SteamClient018_GetISteamInventory_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -5807,14 +5781,14 @@ void /*ISteamInventory*/ * __thiscall winISteamClient_SteamClient018_GetISteamIn .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_GetISteamInventory( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamInventory, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient018_GetISteamVideo(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient018_GetISteamVideo_params params = + struct ISteamClient_SteamClient018_GetISteamVideo_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -5822,14 +5796,14 @@ void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient018_GetISteamVideo( .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_GetISteamVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamVideo, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient018_GetISteamParentalSettings(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient018_GetISteamParentalSettings_params params = + struct ISteamClient_SteamClient018_GetISteamParentalSettings_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -5837,14 +5811,14 @@ void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient018_GetI .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_GetISteamParentalSettings( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamParentalSettings, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamInput*/ * __thiscall winISteamClient_SteamClient018_GetISteamInput(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient018_GetISteamInput_params params = + struct ISteamClient_SteamClient018_GetISteamInput_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -5852,14 +5826,14 @@ void /*ISteamInput*/ * __thiscall winISteamClient_SteamClient018_GetISteamInput( .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_GetISteamInput( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamInput, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamParties*/ * __thiscall winISteamClient_SteamClient018_GetISteamParties(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient018_GetISteamParties_params params = + struct ISteamClient_SteamClient018_GetISteamParties_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -5867,7 +5841,7 @@ void /*ISteamParties*/ * __thiscall winISteamClient_SteamClient018_GetISteamPart .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient018_GetISteamParties( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamParties, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } @@ -5930,8 +5904,6 @@ struct w_steam_iface *create_winISteamClient_SteamClient018(void *u_iface) return r; } -#include "cppISteamClient_SteamClient019.h" - DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient019_CreateSteamPipe, 4) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient019_BReleaseSteamPipe, 8) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient019_ConnectToGlobalUser, 8) @@ -5976,67 +5948,67 @@ DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient019_GetISteamRemotePlay, 16) int32_t __thiscall winISteamClient_SteamClient019_CreateSteamPipe(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient019_CreateSteamPipe_params params = + struct ISteamClient_SteamClient019_CreateSteamPipe_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_CreateSteamPipe( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_CreateSteamPipe, ¶ms ); return params._ret; } bool __thiscall winISteamClient_SteamClient019_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) { - struct cppISteamClient_SteamClient019_BReleaseSteamPipe_params params = + struct ISteamClient_SteamClient019_BReleaseSteamPipe_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_BReleaseSteamPipe( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_BReleaseSteamPipe, ¶ms ); return params._ret; } int32_t __thiscall winISteamClient_SteamClient019_ConnectToGlobalUser(struct w_steam_iface *_this, int32_t hSteamPipe) { - struct cppISteamClient_SteamClient019_ConnectToGlobalUser_params params = + struct ISteamClient_SteamClient019_ConnectToGlobalUser_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_ConnectToGlobalUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_ConnectToGlobalUser, ¶ms ); return params._ret; } int32_t __thiscall winISteamClient_SteamClient019_CreateLocalUser(struct w_steam_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) { - struct cppISteamClient_SteamClient019_CreateLocalUser_params params = + struct ISteamClient_SteamClient019_CreateLocalUser_params params = { .linux_side = _this->u_iface, .phSteamPipe = phSteamPipe, .eAccountType = eAccountType, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_CreateLocalUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_CreateLocalUser, ¶ms ); return params._ret; } void __thiscall winISteamClient_SteamClient019_ReleaseUser(struct w_steam_iface *_this, int32_t hSteamPipe, int32_t hUser) { - struct cppISteamClient_SteamClient019_ReleaseUser_params params = + struct ISteamClient_SteamClient019_ReleaseUser_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, .hUser = hUser, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_ReleaseUser( ¶ms ); + 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) { - struct cppISteamClient_SteamClient019_GetISteamUser_params params = + struct ISteamClient_SteamClient019_GetISteamUser_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -6044,14 +6016,14 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient019_GetISteamUser(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_GetISteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamUser, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient019_GetISteamGameServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient019_GetISteamGameServer_params params = + struct ISteamClient_SteamClient019_GetISteamGameServer_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -6059,26 +6031,26 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient019_GetISteamG .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_GetISteamGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamGameServer, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient019_SetLocalIPBinding(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort) { - struct cppISteamClient_SteamClient019_SetLocalIPBinding_params params = + struct ISteamClient_SteamClient019_SetLocalIPBinding_params params = { .linux_side = _this->u_iface, .unIP = unIP, .usPort = usPort, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_SetLocalIPBinding( ¶ms ); + 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) { - struct cppISteamClient_SteamClient019_GetISteamFriends_params params = + struct ISteamClient_SteamClient019_GetISteamFriends_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -6086,28 +6058,28 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient019_GetISteamFrie .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_GetISteamFriends( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamFriends, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient019_GetISteamUtils(struct w_steam_iface *_this, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient019_GetISteamUtils_params params = + struct ISteamClient_SteamClient019_GetISteamUtils_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_GetISteamUtils( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamUtils, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient019_GetISteamMatchmaking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient019_GetISteamMatchmaking_params params = + struct ISteamClient_SteamClient019_GetISteamMatchmaking_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -6115,14 +6087,14 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient019_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_GetISteamMatchmaking( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamMatchmaking, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient019_GetISteamMatchmakingServers(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient019_GetISteamMatchmakingServers_params params = + struct ISteamClient_SteamClient019_GetISteamMatchmakingServers_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -6130,14 +6102,14 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient019_Ge .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_GetISteamMatchmakingServers( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamMatchmakingServers, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void * __thiscall winISteamClient_SteamClient019_GetISteamGenericInterface(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient019_GetISteamGenericInterface_params params = + struct ISteamClient_SteamClient019_GetISteamGenericInterface_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -6145,14 +6117,14 @@ void * __thiscall winISteamClient_SteamClient019_GetISteamGenericInterface(struc .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_GetISteamGenericInterface( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamGenericInterface, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient019_GetISteamUserStats(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient019_GetISteamUserStats_params params = + struct ISteamClient_SteamClient019_GetISteamUserStats_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -6160,14 +6132,14 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient019_GetISteamUs .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_GetISteamUserStats( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamUserStats, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient019_GetISteamGameServerStats(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient019_GetISteamGameServerStats_params params = + struct ISteamClient_SteamClient019_GetISteamGameServerStats_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -6175,14 +6147,14 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient019_GetIS .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_GetISteamGameServerStats( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamGameServerStats, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient019_GetISteamApps(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient019_GetISteamApps_params params = + struct ISteamClient_SteamClient019_GetISteamApps_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -6190,14 +6162,14 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient019_GetISteamApps(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_GetISteamApps( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamApps, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient019_GetISteamNetworking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient019_GetISteamNetworking_params params = + struct ISteamClient_SteamClient019_GetISteamNetworking_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -6205,14 +6177,14 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient019_GetISteamN .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_GetISteamNetworking( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamNetworking, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient019_GetISteamRemoteStorage(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient019_GetISteamRemoteStorage_params params = + struct ISteamClient_SteamClient019_GetISteamRemoteStorage_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -6220,14 +6192,14 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient019_GetISte .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_GetISteamRemoteStorage( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamRemoteStorage, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient019_GetISteamScreenshots(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient019_GetISteamScreenshots_params params = + struct ISteamClient_SteamClient019_GetISteamScreenshots_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -6235,14 +6207,14 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient019_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_GetISteamScreenshots( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamScreenshots, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamGameSearch*/ * __thiscall winISteamClient_SteamClient019_GetISteamGameSearch(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient019_GetISteamGameSearch_params params = + struct ISteamClient_SteamClient019_GetISteamGameSearch_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -6250,57 +6222,57 @@ void /*ISteamGameSearch*/ * __thiscall winISteamClient_SteamClient019_GetISteamG .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_GetISteamGameSearch( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamGameSearch, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient019_RunFrame(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient019_RunFrame_params params = + struct ISteamClient_SteamClient019_RunFrame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_RunFrame, ¶ms ); } uint32_t __thiscall winISteamClient_SteamClient019_GetIPCCallCount(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient019_GetIPCCallCount_params params = + struct ISteamClient_SteamClient019_GetIPCCallCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_GetIPCCallCount( ¶ms ); + 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 *)) { - struct cppISteamClient_SteamClient019_SetWarningMessageHook_params params = + struct ISteamClient_SteamClient019_SetWarningMessageHook_params params = { .linux_side = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_SetWarningMessageHook( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_SetWarningMessageHook, ¶ms ); } bool __thiscall winISteamClient_SteamClient019_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient019_BShutdownIfAllPipesClosed_params params = + struct ISteamClient_SteamClient019_BShutdownIfAllPipesClosed_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_BShutdownIfAllPipesClosed( ¶ms ); + 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) { - struct cppISteamClient_SteamClient019_GetISteamHTTP_params params = + struct ISteamClient_SteamClient019_GetISteamHTTP_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -6308,14 +6280,14 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient019_GetISteamHTTP(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_GetISteamHTTP( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamHTTP, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void * __thiscall winISteamClient_SteamClient019_DEPRECATED_GetISteamUnifiedMessages(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient019_DEPRECATED_GetISteamUnifiedMessages_params params = + struct ISteamClient_SteamClient019_DEPRECATED_GetISteamUnifiedMessages_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -6323,13 +6295,13 @@ void * __thiscall winISteamClient_SteamClient019_DEPRECATED_GetISteamUnifiedMess .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_DEPRECATED_GetISteamUnifiedMessages( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_DEPRECATED_GetISteamUnifiedMessages, ¶ms ); return params._ret; } void /*ISteamController*/ * __thiscall winISteamClient_SteamClient019_GetISteamController(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient019_GetISteamController_params params = + struct ISteamClient_SteamClient019_GetISteamController_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -6337,14 +6309,14 @@ void /*ISteamController*/ * __thiscall winISteamClient_SteamClient019_GetISteamC .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_GetISteamController( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamController, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient019_GetISteamUGC(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient019_GetISteamUGC_params params = + struct ISteamClient_SteamClient019_GetISteamUGC_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -6352,14 +6324,14 @@ void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient019_GetISteamUGC(stru .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_GetISteamUGC( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamUGC, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient019_GetISteamAppList(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient019_GetISteamAppList_params params = + struct ISteamClient_SteamClient019_GetISteamAppList_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -6367,14 +6339,14 @@ void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient019_GetISteamAppL .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_GetISteamAppList( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamAppList, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient019_GetISteamMusic(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient019_GetISteamMusic_params params = + struct ISteamClient_SteamClient019_GetISteamMusic_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -6382,14 +6354,14 @@ void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient019_GetISteamMusic( .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_GetISteamMusic( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamMusic, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient019_GetISteamMusicRemote(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient019_GetISteamMusicRemote_params params = + struct ISteamClient_SteamClient019_GetISteamMusicRemote_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -6397,14 +6369,14 @@ void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient019_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_GetISteamMusicRemote( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamMusicRemote, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient019_GetISteamHTMLSurface(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient019_GetISteamHTMLSurface_params params = + struct ISteamClient_SteamClient019_GetISteamHTMLSurface_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -6412,47 +6384,47 @@ void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient019_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_GetISteamHTMLSurface( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamHTMLSurface, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient019_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess(struct w_steam_iface *_this, void (*W_STDCALL _a)(void)) { - struct cppISteamClient_SteamClient019_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params params = + struct ISteamClient_SteamClient019_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params params = { .linux_side = _this->u_iface, ._a = _a, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess, ¶ms ); } void __thiscall winISteamClient_SteamClient019_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess(struct w_steam_iface *_this, void (*W_STDCALL _a)(void)) { - struct cppISteamClient_SteamClient019_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params params = + struct ISteamClient_SteamClient019_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params params = { .linux_side = _this->u_iface, ._a = _a, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess, ¶ms ); } void __thiscall winISteamClient_SteamClient019_Set_SteamAPI_CCheckCallbackRegisteredInProcess(struct w_steam_iface *_this, uint32_t (*W_STDCALL func)(int32_t)) { - struct cppISteamClient_SteamClient019_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params params = + struct ISteamClient_SteamClient019_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params params = { .linux_side = _this->u_iface, .func = func, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_Set_SteamAPI_CCheckCallbackRegisteredInProcess( ¶ms ); + 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) { - struct cppISteamClient_SteamClient019_GetISteamInventory_params params = + struct ISteamClient_SteamClient019_GetISteamInventory_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -6460,14 +6432,14 @@ void /*ISteamInventory*/ * __thiscall winISteamClient_SteamClient019_GetISteamIn .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_GetISteamInventory( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamInventory, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient019_GetISteamVideo(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient019_GetISteamVideo_params params = + struct ISteamClient_SteamClient019_GetISteamVideo_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -6475,14 +6447,14 @@ void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient019_GetISteamVideo( .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_GetISteamVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamVideo, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient019_GetISteamParentalSettings(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient019_GetISteamParentalSettings_params params = + struct ISteamClient_SteamClient019_GetISteamParentalSettings_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -6490,14 +6462,14 @@ void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient019_GetI .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_GetISteamParentalSettings( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamParentalSettings, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamInput*/ * __thiscall winISteamClient_SteamClient019_GetISteamInput(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient019_GetISteamInput_params params = + struct ISteamClient_SteamClient019_GetISteamInput_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -6505,14 +6477,14 @@ void /*ISteamInput*/ * __thiscall winISteamClient_SteamClient019_GetISteamInput( .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_GetISteamInput( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamInput, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamParties*/ * __thiscall winISteamClient_SteamClient019_GetISteamParties(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient019_GetISteamParties_params params = + struct ISteamClient_SteamClient019_GetISteamParties_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -6520,14 +6492,14 @@ void /*ISteamParties*/ * __thiscall winISteamClient_SteamClient019_GetISteamPart .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_GetISteamParties( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamParties, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamRemotePlay*/ * __thiscall winISteamClient_SteamClient019_GetISteamRemotePlay(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient019_GetISteamRemotePlay_params params = + struct ISteamClient_SteamClient019_GetISteamRemotePlay_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -6535,7 +6507,7 @@ void /*ISteamRemotePlay*/ * __thiscall winISteamClient_SteamClient019_GetISteamR .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient019_GetISteamRemotePlay( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamRemotePlay, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } @@ -6599,8 +6571,6 @@ struct w_steam_iface *create_winISteamClient_SteamClient019(void *u_iface) return r; } -#include "cppISteamClient_SteamClient020.h" - DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient020_CreateSteamPipe, 4) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient020_BReleaseSteamPipe, 8) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient020_ConnectToGlobalUser, 8) @@ -6646,67 +6616,67 @@ DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient020_DestroyAllInterfaces, 4) int32_t __thiscall winISteamClient_SteamClient020_CreateSteamPipe(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient020_CreateSteamPipe_params params = + struct ISteamClient_SteamClient020_CreateSteamPipe_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_CreateSteamPipe( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_CreateSteamPipe, ¶ms ); return params._ret; } bool __thiscall winISteamClient_SteamClient020_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) { - struct cppISteamClient_SteamClient020_BReleaseSteamPipe_params params = + struct ISteamClient_SteamClient020_BReleaseSteamPipe_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_BReleaseSteamPipe( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_BReleaseSteamPipe, ¶ms ); return params._ret; } int32_t __thiscall winISteamClient_SteamClient020_ConnectToGlobalUser(struct w_steam_iface *_this, int32_t hSteamPipe) { - struct cppISteamClient_SteamClient020_ConnectToGlobalUser_params params = + struct ISteamClient_SteamClient020_ConnectToGlobalUser_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_ConnectToGlobalUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_ConnectToGlobalUser, ¶ms ); return params._ret; } int32_t __thiscall winISteamClient_SteamClient020_CreateLocalUser(struct w_steam_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) { - struct cppISteamClient_SteamClient020_CreateLocalUser_params params = + struct ISteamClient_SteamClient020_CreateLocalUser_params params = { .linux_side = _this->u_iface, .phSteamPipe = phSteamPipe, .eAccountType = eAccountType, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_CreateLocalUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_CreateLocalUser, ¶ms ); return params._ret; } void __thiscall winISteamClient_SteamClient020_ReleaseUser(struct w_steam_iface *_this, int32_t hSteamPipe, int32_t hUser) { - struct cppISteamClient_SteamClient020_ReleaseUser_params params = + struct ISteamClient_SteamClient020_ReleaseUser_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, .hUser = hUser, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_ReleaseUser( ¶ms ); + 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) { - struct cppISteamClient_SteamClient020_GetISteamUser_params params = + struct ISteamClient_SteamClient020_GetISteamUser_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -6714,14 +6684,14 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient020_GetISteamUser(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_GetISteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamUser, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient020_GetISteamGameServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient020_GetISteamGameServer_params params = + struct ISteamClient_SteamClient020_GetISteamGameServer_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -6729,26 +6699,26 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient020_GetISteamG .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_GetISteamGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamGameServer, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient020_SetLocalIPBinding(struct w_steam_iface *_this, const SteamIPAddress_t *unIP, uint16_t usPort) { - struct cppISteamClient_SteamClient020_SetLocalIPBinding_params params = + struct ISteamClient_SteamClient020_SetLocalIPBinding_params params = { .linux_side = _this->u_iface, .unIP = unIP, .usPort = usPort, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_SetLocalIPBinding( ¶ms ); + 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) { - struct cppISteamClient_SteamClient020_GetISteamFriends_params params = + struct ISteamClient_SteamClient020_GetISteamFriends_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -6756,28 +6726,28 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient020_GetISteamFrie .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_GetISteamFriends( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamFriends, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient020_GetISteamUtils(struct w_steam_iface *_this, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient020_GetISteamUtils_params params = + struct ISteamClient_SteamClient020_GetISteamUtils_params params = { .linux_side = _this->u_iface, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_GetISteamUtils( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamUtils, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient020_GetISteamMatchmaking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient020_GetISteamMatchmaking_params params = + struct ISteamClient_SteamClient020_GetISteamMatchmaking_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -6785,14 +6755,14 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient020_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_GetISteamMatchmaking( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamMatchmaking, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient020_GetISteamMatchmakingServers(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient020_GetISteamMatchmakingServers_params params = + struct ISteamClient_SteamClient020_GetISteamMatchmakingServers_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -6800,14 +6770,14 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient020_Ge .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_GetISteamMatchmakingServers( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamMatchmakingServers, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void * __thiscall winISteamClient_SteamClient020_GetISteamGenericInterface(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient020_GetISteamGenericInterface_params params = + struct ISteamClient_SteamClient020_GetISteamGenericInterface_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -6815,14 +6785,14 @@ void * __thiscall winISteamClient_SteamClient020_GetISteamGenericInterface(struc .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_GetISteamGenericInterface( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamGenericInterface, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient020_GetISteamUserStats(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient020_GetISteamUserStats_params params = + struct ISteamClient_SteamClient020_GetISteamUserStats_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -6830,14 +6800,14 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient020_GetISteamUs .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_GetISteamUserStats( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamUserStats, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient020_GetISteamGameServerStats(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient020_GetISteamGameServerStats_params params = + struct ISteamClient_SteamClient020_GetISteamGameServerStats_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -6845,14 +6815,14 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient020_GetIS .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_GetISteamGameServerStats( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamGameServerStats, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient020_GetISteamApps(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient020_GetISteamApps_params params = + struct ISteamClient_SteamClient020_GetISteamApps_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -6860,14 +6830,14 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient020_GetISteamApps(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_GetISteamApps( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamApps, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient020_GetISteamNetworking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient020_GetISteamNetworking_params params = + struct ISteamClient_SteamClient020_GetISteamNetworking_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -6875,14 +6845,14 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient020_GetISteamN .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_GetISteamNetworking( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamNetworking, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient020_GetISteamRemoteStorage(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient020_GetISteamRemoteStorage_params params = + struct ISteamClient_SteamClient020_GetISteamRemoteStorage_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -6890,14 +6860,14 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient020_GetISte .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_GetISteamRemoteStorage( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamRemoteStorage, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient020_GetISteamScreenshots(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient020_GetISteamScreenshots_params params = + struct ISteamClient_SteamClient020_GetISteamScreenshots_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -6905,14 +6875,14 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient020_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_GetISteamScreenshots( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamScreenshots, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamGameSearch*/ * __thiscall winISteamClient_SteamClient020_GetISteamGameSearch(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient020_GetISteamGameSearch_params params = + struct ISteamClient_SteamClient020_GetISteamGameSearch_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -6920,57 +6890,57 @@ void /*ISteamGameSearch*/ * __thiscall winISteamClient_SteamClient020_GetISteamG .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_GetISteamGameSearch( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamGameSearch, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient020_RunFrame(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient020_RunFrame_params params = + struct ISteamClient_SteamClient020_RunFrame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_RunFrame, ¶ms ); } uint32_t __thiscall winISteamClient_SteamClient020_GetIPCCallCount(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient020_GetIPCCallCount_params params = + struct ISteamClient_SteamClient020_GetIPCCallCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_GetIPCCallCount( ¶ms ); + 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 *)) { - struct cppISteamClient_SteamClient020_SetWarningMessageHook_params params = + struct ISteamClient_SteamClient020_SetWarningMessageHook_params params = { .linux_side = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_SetWarningMessageHook( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_SetWarningMessageHook, ¶ms ); } bool __thiscall winISteamClient_SteamClient020_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient020_BShutdownIfAllPipesClosed_params params = + struct ISteamClient_SteamClient020_BShutdownIfAllPipesClosed_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_BShutdownIfAllPipesClosed( ¶ms ); + 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) { - struct cppISteamClient_SteamClient020_GetISteamHTTP_params params = + struct ISteamClient_SteamClient020_GetISteamHTTP_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -6978,14 +6948,14 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient020_GetISteamHTTP(st .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_GetISteamHTTP( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamHTTP, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void * __thiscall winISteamClient_SteamClient020_DEPRECATED_GetISteamUnifiedMessages(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient020_DEPRECATED_GetISteamUnifiedMessages_params params = + struct ISteamClient_SteamClient020_DEPRECATED_GetISteamUnifiedMessages_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -6993,13 +6963,13 @@ void * __thiscall winISteamClient_SteamClient020_DEPRECATED_GetISteamUnifiedMess .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_DEPRECATED_GetISteamUnifiedMessages( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_DEPRECATED_GetISteamUnifiedMessages, ¶ms ); return params._ret; } void /*ISteamController*/ * __thiscall winISteamClient_SteamClient020_GetISteamController(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient020_GetISteamController_params params = + struct ISteamClient_SteamClient020_GetISteamController_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -7007,14 +6977,14 @@ void /*ISteamController*/ * __thiscall winISteamClient_SteamClient020_GetISteamC .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_GetISteamController( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamController, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient020_GetISteamUGC(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient020_GetISteamUGC_params params = + struct ISteamClient_SteamClient020_GetISteamUGC_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -7022,14 +6992,14 @@ void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient020_GetISteamUGC(stru .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_GetISteamUGC( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamUGC, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient020_GetISteamAppList(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient020_GetISteamAppList_params params = + struct ISteamClient_SteamClient020_GetISteamAppList_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -7037,14 +7007,14 @@ void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient020_GetISteamAppL .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_GetISteamAppList( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamAppList, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient020_GetISteamMusic(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient020_GetISteamMusic_params params = + struct ISteamClient_SteamClient020_GetISteamMusic_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -7052,14 +7022,14 @@ void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient020_GetISteamMusic( .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_GetISteamMusic( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamMusic, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient020_GetISteamMusicRemote(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient020_GetISteamMusicRemote_params params = + struct ISteamClient_SteamClient020_GetISteamMusicRemote_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -7067,14 +7037,14 @@ void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient020_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_GetISteamMusicRemote( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamMusicRemote, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient020_GetISteamHTMLSurface(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient020_GetISteamHTMLSurface_params params = + struct ISteamClient_SteamClient020_GetISteamHTMLSurface_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -7082,47 +7052,47 @@ void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient020_GetISteam .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_GetISteamHTMLSurface( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamHTMLSurface, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient020_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess(struct w_steam_iface *_this, void (*W_STDCALL _a)(void)) { - struct cppISteamClient_SteamClient020_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params params = + struct ISteamClient_SteamClient020_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params params = { .linux_side = _this->u_iface, ._a = _a, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess, ¶ms ); } void __thiscall winISteamClient_SteamClient020_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess(struct w_steam_iface *_this, void (*W_STDCALL _a)(void)) { - struct cppISteamClient_SteamClient020_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params params = + struct ISteamClient_SteamClient020_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params params = { .linux_side = _this->u_iface, ._a = _a, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess( ¶ms ); + 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)) { - struct cppISteamClient_SteamClient020_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params params = + struct ISteamClient_SteamClient020_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params params = { .linux_side = _this->u_iface, .func = func, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_Set_SteamAPI_CCheckCallbackRegisteredInProcess( ¶ms ); + 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) { - struct cppISteamClient_SteamClient020_GetISteamInventory_params params = + struct ISteamClient_SteamClient020_GetISteamInventory_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -7130,14 +7100,14 @@ void /*ISteamInventory*/ * __thiscall winISteamClient_SteamClient020_GetISteamIn .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_GetISteamInventory( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamInventory, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient020_GetISteamVideo(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient020_GetISteamVideo_params params = + struct ISteamClient_SteamClient020_GetISteamVideo_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -7145,14 +7115,14 @@ void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient020_GetISteamVideo( .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_GetISteamVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamVideo, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient020_GetISteamParentalSettings(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient020_GetISteamParentalSettings_params params = + struct ISteamClient_SteamClient020_GetISteamParentalSettings_params params = { .linux_side = _this->u_iface, .hSteamuser = hSteamuser, @@ -7160,14 +7130,14 @@ void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient020_GetI .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_GetISteamParentalSettings( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamParentalSettings, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamInput*/ * __thiscall winISteamClient_SteamClient020_GetISteamInput(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient020_GetISteamInput_params params = + struct ISteamClient_SteamClient020_GetISteamInput_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -7175,14 +7145,14 @@ void /*ISteamInput*/ * __thiscall winISteamClient_SteamClient020_GetISteamInput( .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_GetISteamInput( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamInput, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamParties*/ * __thiscall winISteamClient_SteamClient020_GetISteamParties(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient020_GetISteamParties_params params = + struct ISteamClient_SteamClient020_GetISteamParties_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -7190,14 +7160,14 @@ void /*ISteamParties*/ * __thiscall winISteamClient_SteamClient020_GetISteamPart .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_GetISteamParties( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamParties, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void /*ISteamRemotePlay*/ * __thiscall winISteamClient_SteamClient020_GetISteamRemotePlay(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { - struct cppISteamClient_SteamClient020_GetISteamRemotePlay_params params = + struct ISteamClient_SteamClient020_GetISteamRemotePlay_params params = { .linux_side = _this->u_iface, .hSteamUser = hSteamUser, @@ -7205,19 +7175,19 @@ void /*ISteamRemotePlay*/ * __thiscall winISteamClient_SteamClient020_GetISteamR .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_GetISteamRemotePlay( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamRemotePlay, ¶ms ); params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } void __thiscall winISteamClient_SteamClient020_DestroyAllInterfaces(struct w_steam_iface *_this) { - struct cppISteamClient_SteamClient020_DestroyAllInterfaces_params params = + struct ISteamClient_SteamClient020_DestroyAllInterfaces_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamClient_SteamClient020_DestroyAllInterfaces( ¶ms ); + STEAMCLIENT_CALL( ISteamClient_SteamClient020_DestroyAllInterfaces, ¶ms ); } extern vtable_ptr winISteamClient_SteamClient020_vtable; diff --git a/lsteamclient/winISteamController.c b/lsteamclient/winISteamController.c index 755586fe..cb801e34 100644 --- a/lsteamclient/winISteamController.c +++ b/lsteamclient/winISteamController.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION.h" - DEFINE_THISCALL_WRAPPER(winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Init, 8) DEFINE_THISCALL_WRAPPER(winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Shutdown, 4) DEFINE_THISCALL_WRAPPER(winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_RunFrame, 4) @@ -14,55 +12,55 @@ DEFINE_THISCALL_WRAPPER(winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Se bool __thiscall winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Init(struct w_steam_iface *_this, const char *pchAbsolutePathToControllerConfigVDF) { - struct cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Init_params params = + struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Init_params params = { .linux_side = _this->u_iface, .pchAbsolutePathToControllerConfigVDF = pchAbsolutePathToControllerConfigVDF, }; params.pchAbsolutePathToControllerConfigVDF = steamclient_dos_to_unix_path( pchAbsolutePathToControllerConfigVDF, 0 ); TRACE("%p\n", _this); - cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Init( ¶ms ); + STEAMCLIENT_CALL( ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Init, ¶ms ); steamclient_free_path( params.pchAbsolutePathToControllerConfigVDF ); return params._ret; } bool __thiscall winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Shutdown(struct w_steam_iface *_this) { - struct cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Shutdown_params params = + struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Shutdown_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Shutdown( ¶ms ); + STEAMCLIENT_CALL( ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Shutdown, ¶ms ); return params._ret; } void __thiscall winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_RunFrame(struct w_steam_iface *_this) { - struct cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_RunFrame_params params = + struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_RunFrame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_RunFrame, ¶ms ); } bool __thiscall winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_GetControllerState(struct w_steam_iface *_this, uint32_t unControllerIndex, SteamControllerState001_t *pState) { - struct cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_GetControllerState_params params = + struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_GetControllerState_params params = { .linux_side = _this->u_iface, .unControllerIndex = unControllerIndex, .pState = pState, }; TRACE("%p\n", _this); - cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_GetControllerState( ¶ms ); + STEAMCLIENT_CALL( ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_GetControllerState, ¶ms ); return params._ret; } void __thiscall winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_TriggerHapticPulse(struct w_steam_iface *_this, uint32_t unControllerIndex, uint32_t eTargetPad, uint16_t usDurationMicroSec) { - struct cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_TriggerHapticPulse_params params = + struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_TriggerHapticPulse_params params = { .linux_side = _this->u_iface, .unControllerIndex = unControllerIndex, @@ -70,18 +68,18 @@ void __thiscall winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_TriggerHap .usDurationMicroSec = usDurationMicroSec, }; TRACE("%p\n", _this); - cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_TriggerHapticPulse( ¶ms ); + STEAMCLIENT_CALL( ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_TriggerHapticPulse, ¶ms ); } void __thiscall winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_SetOverrideMode(struct w_steam_iface *_this, const char *pchMode) { - struct cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_SetOverrideMode_params params = + struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_SetOverrideMode_params params = { .linux_side = _this->u_iface, .pchMode = pchMode, }; TRACE("%p\n", _this); - cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION_SetOverrideMode( ¶ms ); + STEAMCLIENT_CALL( ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_SetOverrideMode, ¶ms ); } extern vtable_ptr winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_vtable; @@ -108,8 +106,6 @@ struct w_steam_iface *create_winISteamController_STEAMCONTROLLER_INTERFACE_VERSI return r; } -#include "cppISteamController_SteamController003.h" - DEFINE_THISCALL_WRAPPER(winISteamController_SteamController003_Init, 4) DEFINE_THISCALL_WRAPPER(winISteamController_SteamController003_Shutdown, 4) DEFINE_THISCALL_WRAPPER(winISteamController_SteamController003_RunFrame, 4) @@ -130,111 +126,111 @@ DEFINE_THISCALL_WRAPPER(winISteamController_SteamController003_TriggerRepeatedHa bool __thiscall winISteamController_SteamController003_Init(struct w_steam_iface *_this) { - struct cppISteamController_SteamController003_Init_params params = + struct ISteamController_SteamController003_Init_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamController_SteamController003_Init( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController003_Init, ¶ms ); return params._ret; } bool __thiscall winISteamController_SteamController003_Shutdown(struct w_steam_iface *_this) { - struct cppISteamController_SteamController003_Shutdown_params params = + struct ISteamController_SteamController003_Shutdown_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamController_SteamController003_Shutdown( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController003_Shutdown, ¶ms ); return params._ret; } void __thiscall winISteamController_SteamController003_RunFrame(struct w_steam_iface *_this) { - struct cppISteamController_SteamController003_RunFrame_params params = + struct ISteamController_SteamController003_RunFrame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamController_SteamController003_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController003_RunFrame, ¶ms ); } int32_t __thiscall winISteamController_SteamController003_GetConnectedControllers(struct w_steam_iface *_this, uint64_t *handlesOut) { - struct cppISteamController_SteamController003_GetConnectedControllers_params params = + struct ISteamController_SteamController003_GetConnectedControllers_params params = { .linux_side = _this->u_iface, .handlesOut = handlesOut, }; TRACE("%p\n", _this); - cppISteamController_SteamController003_GetConnectedControllers( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController003_GetConnectedControllers, ¶ms ); return params._ret; } bool __thiscall winISteamController_SteamController003_ShowBindingPanel(struct w_steam_iface *_this, uint64_t controllerHandle) { - struct cppISteamController_SteamController003_ShowBindingPanel_params params = + struct ISteamController_SteamController003_ShowBindingPanel_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController003_ShowBindingPanel( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController003_ShowBindingPanel, ¶ms ); return params._ret; } uint64_t __thiscall winISteamController_SteamController003_GetActionSetHandle(struct w_steam_iface *_this, const char *pszActionSetName) { - struct cppISteamController_SteamController003_GetActionSetHandle_params params = + struct ISteamController_SteamController003_GetActionSetHandle_params params = { .linux_side = _this->u_iface, .pszActionSetName = pszActionSetName, }; TRACE("%p\n", _this); - cppISteamController_SteamController003_GetActionSetHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController003_GetActionSetHandle, ¶ms ); return params._ret; } void __thiscall winISteamController_SteamController003_ActivateActionSet(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle) { - struct cppISteamController_SteamController003_ActivateActionSet_params params = + struct ISteamController_SteamController003_ActivateActionSet_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, .actionSetHandle = actionSetHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController003_ActivateActionSet( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController003_ActivateActionSet, ¶ms ); } uint64_t __thiscall winISteamController_SteamController003_GetCurrentActionSet(struct w_steam_iface *_this, uint64_t controllerHandle) { - struct cppISteamController_SteamController003_GetCurrentActionSet_params params = + struct ISteamController_SteamController003_GetCurrentActionSet_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController003_GetCurrentActionSet( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController003_GetCurrentActionSet, ¶ms ); return params._ret; } uint64_t __thiscall winISteamController_SteamController003_GetDigitalActionHandle(struct w_steam_iface *_this, const char *pszActionName) { - struct cppISteamController_SteamController003_GetDigitalActionHandle_params params = + struct ISteamController_SteamController003_GetDigitalActionHandle_params params = { .linux_side = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); - cppISteamController_SteamController003_GetDigitalActionHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController003_GetDigitalActionHandle, ¶ms ); return params._ret; } ControllerDigitalActionData_t * __thiscall winISteamController_SteamController003_GetDigitalActionData(struct w_steam_iface *_this, ControllerDigitalActionData_t *_ret, uint64_t controllerHandle, uint64_t digitalActionHandle) { - struct cppISteamController_SteamController003_GetDigitalActionData_params params = + struct ISteamController_SteamController003_GetDigitalActionData_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -242,13 +238,13 @@ ControllerDigitalActionData_t * __thiscall winISteamController_SteamController00 .digitalActionHandle = digitalActionHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController003_GetDigitalActionData( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController003_GetDigitalActionData, ¶ms ); 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) { - struct cppISteamController_SteamController003_GetDigitalActionOrigins_params params = + struct ISteamController_SteamController003_GetDigitalActionOrigins_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -257,25 +253,25 @@ int32_t __thiscall winISteamController_SteamController003_GetDigitalActionOrigin .originsOut = originsOut, }; TRACE("%p\n", _this); - cppISteamController_SteamController003_GetDigitalActionOrigins( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController003_GetDigitalActionOrigins, ¶ms ); return params._ret; } uint64_t __thiscall winISteamController_SteamController003_GetAnalogActionHandle(struct w_steam_iface *_this, const char *pszActionName) { - struct cppISteamController_SteamController003_GetAnalogActionHandle_params params = + struct ISteamController_SteamController003_GetAnalogActionHandle_params params = { .linux_side = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); - cppISteamController_SteamController003_GetAnalogActionHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController003_GetAnalogActionHandle, ¶ms ); return params._ret; } ControllerAnalogActionData_t * __thiscall winISteamController_SteamController003_GetAnalogActionData(struct w_steam_iface *_this, ControllerAnalogActionData_t *_ret, uint64_t controllerHandle, uint64_t analogActionHandle) { - struct cppISteamController_SteamController003_GetAnalogActionData_params params = + struct ISteamController_SteamController003_GetAnalogActionData_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -283,13 +279,13 @@ ControllerAnalogActionData_t * __thiscall winISteamController_SteamController003 .analogActionHandle = analogActionHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController003_GetAnalogActionData( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController003_GetAnalogActionData, ¶ms ); 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) { - struct cppISteamController_SteamController003_GetAnalogActionOrigins_params params = + struct ISteamController_SteamController003_GetAnalogActionOrigins_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -298,25 +294,25 @@ int32_t __thiscall winISteamController_SteamController003_GetAnalogActionOrigins .originsOut = originsOut, }; TRACE("%p\n", _this); - cppISteamController_SteamController003_GetAnalogActionOrigins( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController003_GetAnalogActionOrigins, ¶ms ); return params._ret; } void __thiscall winISteamController_SteamController003_StopAnalogActionMomentum(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t eAction) { - struct cppISteamController_SteamController003_StopAnalogActionMomentum_params params = + struct ISteamController_SteamController003_StopAnalogActionMomentum_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, .eAction = eAction, }; TRACE("%p\n", _this); - cppISteamController_SteamController003_StopAnalogActionMomentum( ¶ms ); + 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) { - struct cppISteamController_SteamController003_TriggerHapticPulse_params params = + struct ISteamController_SteamController003_TriggerHapticPulse_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -324,12 +320,12 @@ void __thiscall winISteamController_SteamController003_TriggerHapticPulse(struct .usDurationMicroSec = usDurationMicroSec, }; TRACE("%p\n", _this); - cppISteamController_SteamController003_TriggerHapticPulse( ¶ms ); + 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) { - struct cppISteamController_SteamController003_TriggerRepeatedHapticPulse_params params = + struct ISteamController_SteamController003_TriggerRepeatedHapticPulse_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -340,7 +336,7 @@ void __thiscall winISteamController_SteamController003_TriggerRepeatedHapticPuls .nFlags = nFlags, }; TRACE("%p\n", _this); - cppISteamController_SteamController003_TriggerRepeatedHapticPulse( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController003_TriggerRepeatedHapticPulse, ¶ms ); } extern vtable_ptr winISteamController_SteamController003_vtable; @@ -378,8 +374,6 @@ struct w_steam_iface *create_winISteamController_SteamController003(void *u_ifac return r; } -#include "cppISteamController_SteamController004.h" - DEFINE_THISCALL_WRAPPER(winISteamController_SteamController004_Init, 4) DEFINE_THISCALL_WRAPPER(winISteamController_SteamController004_Shutdown, 4) DEFINE_THISCALL_WRAPPER(winISteamController_SteamController004_RunFrame, 4) @@ -405,111 +399,111 @@ DEFINE_THISCALL_WRAPPER(winISteamController_SteamController004_ShowAnalogActionO bool __thiscall winISteamController_SteamController004_Init(struct w_steam_iface *_this) { - struct cppISteamController_SteamController004_Init_params params = + struct ISteamController_SteamController004_Init_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamController_SteamController004_Init( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController004_Init, ¶ms ); return params._ret; } bool __thiscall winISteamController_SteamController004_Shutdown(struct w_steam_iface *_this) { - struct cppISteamController_SteamController004_Shutdown_params params = + struct ISteamController_SteamController004_Shutdown_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamController_SteamController004_Shutdown( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController004_Shutdown, ¶ms ); return params._ret; } void __thiscall winISteamController_SteamController004_RunFrame(struct w_steam_iface *_this) { - struct cppISteamController_SteamController004_RunFrame_params params = + struct ISteamController_SteamController004_RunFrame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamController_SteamController004_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController004_RunFrame, ¶ms ); } int32_t __thiscall winISteamController_SteamController004_GetConnectedControllers(struct w_steam_iface *_this, uint64_t *handlesOut) { - struct cppISteamController_SteamController004_GetConnectedControllers_params params = + struct ISteamController_SteamController004_GetConnectedControllers_params params = { .linux_side = _this->u_iface, .handlesOut = handlesOut, }; TRACE("%p\n", _this); - cppISteamController_SteamController004_GetConnectedControllers( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController004_GetConnectedControllers, ¶ms ); return params._ret; } bool __thiscall winISteamController_SteamController004_ShowBindingPanel(struct w_steam_iface *_this, uint64_t controllerHandle) { - struct cppISteamController_SteamController004_ShowBindingPanel_params params = + struct ISteamController_SteamController004_ShowBindingPanel_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController004_ShowBindingPanel( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController004_ShowBindingPanel, ¶ms ); return params._ret; } uint64_t __thiscall winISteamController_SteamController004_GetActionSetHandle(struct w_steam_iface *_this, const char *pszActionSetName) { - struct cppISteamController_SteamController004_GetActionSetHandle_params params = + struct ISteamController_SteamController004_GetActionSetHandle_params params = { .linux_side = _this->u_iface, .pszActionSetName = pszActionSetName, }; TRACE("%p\n", _this); - cppISteamController_SteamController004_GetActionSetHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController004_GetActionSetHandle, ¶ms ); return params._ret; } void __thiscall winISteamController_SteamController004_ActivateActionSet(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle) { - struct cppISteamController_SteamController004_ActivateActionSet_params params = + struct ISteamController_SteamController004_ActivateActionSet_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, .actionSetHandle = actionSetHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController004_ActivateActionSet( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController004_ActivateActionSet, ¶ms ); } uint64_t __thiscall winISteamController_SteamController004_GetCurrentActionSet(struct w_steam_iface *_this, uint64_t controllerHandle) { - struct cppISteamController_SteamController004_GetCurrentActionSet_params params = + struct ISteamController_SteamController004_GetCurrentActionSet_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController004_GetCurrentActionSet( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController004_GetCurrentActionSet, ¶ms ); return params._ret; } uint64_t __thiscall winISteamController_SteamController004_GetDigitalActionHandle(struct w_steam_iface *_this, const char *pszActionName) { - struct cppISteamController_SteamController004_GetDigitalActionHandle_params params = + struct ISteamController_SteamController004_GetDigitalActionHandle_params params = { .linux_side = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); - cppISteamController_SteamController004_GetDigitalActionHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController004_GetDigitalActionHandle, ¶ms ); return params._ret; } ControllerDigitalActionData_t * __thiscall winISteamController_SteamController004_GetDigitalActionData(struct w_steam_iface *_this, ControllerDigitalActionData_t *_ret, uint64_t controllerHandle, uint64_t digitalActionHandle) { - struct cppISteamController_SteamController004_GetDigitalActionData_params params = + struct ISteamController_SteamController004_GetDigitalActionData_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -517,13 +511,13 @@ ControllerDigitalActionData_t * __thiscall winISteamController_SteamController00 .digitalActionHandle = digitalActionHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController004_GetDigitalActionData( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController004_GetDigitalActionData, ¶ms ); 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) { - struct cppISteamController_SteamController004_GetDigitalActionOrigins_params params = + struct ISteamController_SteamController004_GetDigitalActionOrigins_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -532,25 +526,25 @@ int32_t __thiscall winISteamController_SteamController004_GetDigitalActionOrigin .originsOut = originsOut, }; TRACE("%p\n", _this); - cppISteamController_SteamController004_GetDigitalActionOrigins( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController004_GetDigitalActionOrigins, ¶ms ); return params._ret; } uint64_t __thiscall winISteamController_SteamController004_GetAnalogActionHandle(struct w_steam_iface *_this, const char *pszActionName) { - struct cppISteamController_SteamController004_GetAnalogActionHandle_params params = + struct ISteamController_SteamController004_GetAnalogActionHandle_params params = { .linux_side = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); - cppISteamController_SteamController004_GetAnalogActionHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController004_GetAnalogActionHandle, ¶ms ); return params._ret; } ControllerAnalogActionData_t * __thiscall winISteamController_SteamController004_GetAnalogActionData(struct w_steam_iface *_this, ControllerAnalogActionData_t *_ret, uint64_t controllerHandle, uint64_t analogActionHandle) { - struct cppISteamController_SteamController004_GetAnalogActionData_params params = + struct ISteamController_SteamController004_GetAnalogActionData_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -558,13 +552,13 @@ ControllerAnalogActionData_t * __thiscall winISteamController_SteamController004 .analogActionHandle = analogActionHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController004_GetAnalogActionData( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController004_GetAnalogActionData, ¶ms ); 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) { - struct cppISteamController_SteamController004_GetAnalogActionOrigins_params params = + struct ISteamController_SteamController004_GetAnalogActionOrigins_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -573,25 +567,25 @@ int32_t __thiscall winISteamController_SteamController004_GetAnalogActionOrigins .originsOut = originsOut, }; TRACE("%p\n", _this); - cppISteamController_SteamController004_GetAnalogActionOrigins( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController004_GetAnalogActionOrigins, ¶ms ); return params._ret; } void __thiscall winISteamController_SteamController004_StopAnalogActionMomentum(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t eAction) { - struct cppISteamController_SteamController004_StopAnalogActionMomentum_params params = + struct ISteamController_SteamController004_StopAnalogActionMomentum_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, .eAction = eAction, }; TRACE("%p\n", _this); - cppISteamController_SteamController004_StopAnalogActionMomentum( ¶ms ); + 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) { - struct cppISteamController_SteamController004_TriggerHapticPulse_params params = + struct ISteamController_SteamController004_TriggerHapticPulse_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -599,12 +593,12 @@ void __thiscall winISteamController_SteamController004_TriggerHapticPulse(struct .usDurationMicroSec = usDurationMicroSec, }; TRACE("%p\n", _this); - cppISteamController_SteamController004_TriggerHapticPulse( ¶ms ); + 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) { - struct cppISteamController_SteamController004_TriggerRepeatedHapticPulse_params params = + struct ISteamController_SteamController004_TriggerRepeatedHapticPulse_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -615,49 +609,49 @@ void __thiscall winISteamController_SteamController004_TriggerRepeatedHapticPuls .nFlags = nFlags, }; TRACE("%p\n", _this); - cppISteamController_SteamController004_TriggerRepeatedHapticPulse( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController004_TriggerRepeatedHapticPulse, ¶ms ); } int32_t __thiscall winISteamController_SteamController004_GetGamepadIndexForController(struct w_steam_iface *_this, uint64_t ulControllerHandle) { - struct cppISteamController_SteamController004_GetGamepadIndexForController_params params = + struct ISteamController_SteamController004_GetGamepadIndexForController_params params = { .linux_side = _this->u_iface, .ulControllerHandle = ulControllerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController004_GetGamepadIndexForController( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController004_GetGamepadIndexForController, ¶ms ); return params._ret; } uint64_t __thiscall winISteamController_SteamController004_GetControllerForGamepadIndex(struct w_steam_iface *_this, int32_t nIndex) { - struct cppISteamController_SteamController004_GetControllerForGamepadIndex_params params = + struct ISteamController_SteamController004_GetControllerForGamepadIndex_params params = { .linux_side = _this->u_iface, .nIndex = nIndex, }; TRACE("%p\n", _this); - cppISteamController_SteamController004_GetControllerForGamepadIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController004_GetControllerForGamepadIndex, ¶ms ); return params._ret; } ControllerMotionData_t * __thiscall winISteamController_SteamController004_GetMotionData(struct w_steam_iface *_this, ControllerMotionData_t *_ret, uint64_t controllerHandle) { - struct cppISteamController_SteamController004_GetMotionData_params params = + struct ISteamController_SteamController004_GetMotionData_params params = { .linux_side = _this->u_iface, ._ret = _ret, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController004_GetMotionData( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController004_GetMotionData, ¶ms ); return params._ret; } bool __thiscall winISteamController_SteamController004_ShowDigitalActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t digitalActionHandle, float flScale, float flXPosition, float flYPosition) { - struct cppISteamController_SteamController004_ShowDigitalActionOrigins_params params = + struct ISteamController_SteamController004_ShowDigitalActionOrigins_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -667,13 +661,13 @@ bool __thiscall winISteamController_SteamController004_ShowDigitalActionOrigins( .flYPosition = flYPosition, }; TRACE("%p\n", _this); - cppISteamController_SteamController004_ShowDigitalActionOrigins( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController004_ShowDigitalActionOrigins, ¶ms ); return params._ret; } bool __thiscall winISteamController_SteamController004_ShowAnalogActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t analogActionHandle, float flScale, float flXPosition, float flYPosition) { - struct cppISteamController_SteamController004_ShowAnalogActionOrigins_params params = + struct ISteamController_SteamController004_ShowAnalogActionOrigins_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -683,7 +677,7 @@ bool __thiscall winISteamController_SteamController004_ShowAnalogActionOrigins(s .flYPosition = flYPosition, }; TRACE("%p\n", _this); - cppISteamController_SteamController004_ShowAnalogActionOrigins( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController004_ShowAnalogActionOrigins, ¶ms ); return params._ret; } @@ -727,8 +721,6 @@ struct w_steam_iface *create_winISteamController_SteamController004(void *u_ifac return r; } -#include "cppISteamController_SteamController005.h" - DEFINE_THISCALL_WRAPPER(winISteamController_SteamController005_Init, 4) DEFINE_THISCALL_WRAPPER(winISteamController_SteamController005_Shutdown, 4) DEFINE_THISCALL_WRAPPER(winISteamController_SteamController005_RunFrame, 4) @@ -758,111 +750,111 @@ DEFINE_THISCALL_WRAPPER(winISteamController_SteamController005_GetGlyphForAction bool __thiscall winISteamController_SteamController005_Init(struct w_steam_iface *_this) { - struct cppISteamController_SteamController005_Init_params params = + struct ISteamController_SteamController005_Init_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamController_SteamController005_Init( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController005_Init, ¶ms ); return params._ret; } bool __thiscall winISteamController_SteamController005_Shutdown(struct w_steam_iface *_this) { - struct cppISteamController_SteamController005_Shutdown_params params = + struct ISteamController_SteamController005_Shutdown_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamController_SteamController005_Shutdown( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController005_Shutdown, ¶ms ); return params._ret; } void __thiscall winISteamController_SteamController005_RunFrame(struct w_steam_iface *_this) { - struct cppISteamController_SteamController005_RunFrame_params params = + struct ISteamController_SteamController005_RunFrame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamController_SteamController005_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController005_RunFrame, ¶ms ); } int32_t __thiscall winISteamController_SteamController005_GetConnectedControllers(struct w_steam_iface *_this, uint64_t *handlesOut) { - struct cppISteamController_SteamController005_GetConnectedControllers_params params = + struct ISteamController_SteamController005_GetConnectedControllers_params params = { .linux_side = _this->u_iface, .handlesOut = handlesOut, }; TRACE("%p\n", _this); - cppISteamController_SteamController005_GetConnectedControllers( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController005_GetConnectedControllers, ¶ms ); return params._ret; } bool __thiscall winISteamController_SteamController005_ShowBindingPanel(struct w_steam_iface *_this, uint64_t controllerHandle) { - struct cppISteamController_SteamController005_ShowBindingPanel_params params = + struct ISteamController_SteamController005_ShowBindingPanel_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController005_ShowBindingPanel( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController005_ShowBindingPanel, ¶ms ); return params._ret; } uint64_t __thiscall winISteamController_SteamController005_GetActionSetHandle(struct w_steam_iface *_this, const char *pszActionSetName) { - struct cppISteamController_SteamController005_GetActionSetHandle_params params = + struct ISteamController_SteamController005_GetActionSetHandle_params params = { .linux_side = _this->u_iface, .pszActionSetName = pszActionSetName, }; TRACE("%p\n", _this); - cppISteamController_SteamController005_GetActionSetHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController005_GetActionSetHandle, ¶ms ); return params._ret; } void __thiscall winISteamController_SteamController005_ActivateActionSet(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle) { - struct cppISteamController_SteamController005_ActivateActionSet_params params = + struct ISteamController_SteamController005_ActivateActionSet_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, .actionSetHandle = actionSetHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController005_ActivateActionSet( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController005_ActivateActionSet, ¶ms ); } uint64_t __thiscall winISteamController_SteamController005_GetCurrentActionSet(struct w_steam_iface *_this, uint64_t controllerHandle) { - struct cppISteamController_SteamController005_GetCurrentActionSet_params params = + struct ISteamController_SteamController005_GetCurrentActionSet_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController005_GetCurrentActionSet( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController005_GetCurrentActionSet, ¶ms ); return params._ret; } uint64_t __thiscall winISteamController_SteamController005_GetDigitalActionHandle(struct w_steam_iface *_this, const char *pszActionName) { - struct cppISteamController_SteamController005_GetDigitalActionHandle_params params = + struct ISteamController_SteamController005_GetDigitalActionHandle_params params = { .linux_side = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); - cppISteamController_SteamController005_GetDigitalActionHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController005_GetDigitalActionHandle, ¶ms ); return params._ret; } ControllerDigitalActionData_t * __thiscall winISteamController_SteamController005_GetDigitalActionData(struct w_steam_iface *_this, ControllerDigitalActionData_t *_ret, uint64_t controllerHandle, uint64_t digitalActionHandle) { - struct cppISteamController_SteamController005_GetDigitalActionData_params params = + struct ISteamController_SteamController005_GetDigitalActionData_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -870,13 +862,13 @@ ControllerDigitalActionData_t * __thiscall winISteamController_SteamController00 .digitalActionHandle = digitalActionHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController005_GetDigitalActionData( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController005_GetDigitalActionData, ¶ms ); 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) { - struct cppISteamController_SteamController005_GetDigitalActionOrigins_params params = + struct ISteamController_SteamController005_GetDigitalActionOrigins_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -885,25 +877,25 @@ int32_t __thiscall winISteamController_SteamController005_GetDigitalActionOrigin .originsOut = originsOut, }; TRACE("%p\n", _this); - cppISteamController_SteamController005_GetDigitalActionOrigins( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController005_GetDigitalActionOrigins, ¶ms ); return params._ret; } uint64_t __thiscall winISteamController_SteamController005_GetAnalogActionHandle(struct w_steam_iface *_this, const char *pszActionName) { - struct cppISteamController_SteamController005_GetAnalogActionHandle_params params = + struct ISteamController_SteamController005_GetAnalogActionHandle_params params = { .linux_side = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); - cppISteamController_SteamController005_GetAnalogActionHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController005_GetAnalogActionHandle, ¶ms ); return params._ret; } ControllerAnalogActionData_t * __thiscall winISteamController_SteamController005_GetAnalogActionData(struct w_steam_iface *_this, ControllerAnalogActionData_t *_ret, uint64_t controllerHandle, uint64_t analogActionHandle) { - struct cppISteamController_SteamController005_GetAnalogActionData_params params = + struct ISteamController_SteamController005_GetAnalogActionData_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -911,13 +903,13 @@ ControllerAnalogActionData_t * __thiscall winISteamController_SteamController005 .analogActionHandle = analogActionHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController005_GetAnalogActionData( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController005_GetAnalogActionData, ¶ms ); 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) { - struct cppISteamController_SteamController005_GetAnalogActionOrigins_params params = + struct ISteamController_SteamController005_GetAnalogActionOrigins_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -926,25 +918,25 @@ int32_t __thiscall winISteamController_SteamController005_GetAnalogActionOrigins .originsOut = originsOut, }; TRACE("%p\n", _this); - cppISteamController_SteamController005_GetAnalogActionOrigins( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController005_GetAnalogActionOrigins, ¶ms ); return params._ret; } void __thiscall winISteamController_SteamController005_StopAnalogActionMomentum(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t eAction) { - struct cppISteamController_SteamController005_StopAnalogActionMomentum_params params = + struct ISteamController_SteamController005_StopAnalogActionMomentum_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, .eAction = eAction, }; TRACE("%p\n", _this); - cppISteamController_SteamController005_StopAnalogActionMomentum( ¶ms ); + 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) { - struct cppISteamController_SteamController005_TriggerHapticPulse_params params = + struct ISteamController_SteamController005_TriggerHapticPulse_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -952,12 +944,12 @@ void __thiscall winISteamController_SteamController005_TriggerHapticPulse(struct .usDurationMicroSec = usDurationMicroSec, }; TRACE("%p\n", _this); - cppISteamController_SteamController005_TriggerHapticPulse( ¶ms ); + 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) { - struct cppISteamController_SteamController005_TriggerRepeatedHapticPulse_params params = + struct ISteamController_SteamController005_TriggerRepeatedHapticPulse_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -968,12 +960,12 @@ void __thiscall winISteamController_SteamController005_TriggerRepeatedHapticPuls .nFlags = nFlags, }; TRACE("%p\n", _this); - cppISteamController_SteamController005_TriggerRepeatedHapticPulse( ¶ms ); + 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) { - struct cppISteamController_SteamController005_TriggerVibration_params params = + struct ISteamController_SteamController005_TriggerVibration_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -981,12 +973,12 @@ void __thiscall winISteamController_SteamController005_TriggerVibration(struct w .usRightSpeed = usRightSpeed, }; TRACE("%p\n", _this); - cppISteamController_SteamController005_TriggerVibration( ¶ms ); + 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) { - struct cppISteamController_SteamController005_SetLEDColor_params params = + struct ISteamController_SteamController005_SetLEDColor_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -996,49 +988,49 @@ void __thiscall winISteamController_SteamController005_SetLEDColor(struct w_stea .nFlags = nFlags, }; TRACE("%p\n", _this); - cppISteamController_SteamController005_SetLEDColor( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController005_SetLEDColor, ¶ms ); } int32_t __thiscall winISteamController_SteamController005_GetGamepadIndexForController(struct w_steam_iface *_this, uint64_t ulControllerHandle) { - struct cppISteamController_SteamController005_GetGamepadIndexForController_params params = + struct ISteamController_SteamController005_GetGamepadIndexForController_params params = { .linux_side = _this->u_iface, .ulControllerHandle = ulControllerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController005_GetGamepadIndexForController( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController005_GetGamepadIndexForController, ¶ms ); return params._ret; } uint64_t __thiscall winISteamController_SteamController005_GetControllerForGamepadIndex(struct w_steam_iface *_this, int32_t nIndex) { - struct cppISteamController_SteamController005_GetControllerForGamepadIndex_params params = + struct ISteamController_SteamController005_GetControllerForGamepadIndex_params params = { .linux_side = _this->u_iface, .nIndex = nIndex, }; TRACE("%p\n", _this); - cppISteamController_SteamController005_GetControllerForGamepadIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController005_GetControllerForGamepadIndex, ¶ms ); return params._ret; } ControllerMotionData_t * __thiscall winISteamController_SteamController005_GetMotionData(struct w_steam_iface *_this, ControllerMotionData_t *_ret, uint64_t controllerHandle) { - struct cppISteamController_SteamController005_GetMotionData_params params = + struct ISteamController_SteamController005_GetMotionData_params params = { .linux_side = _this->u_iface, ._ret = _ret, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController005_GetMotionData( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController005_GetMotionData, ¶ms ); return params._ret; } bool __thiscall winISteamController_SteamController005_ShowDigitalActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t digitalActionHandle, float flScale, float flXPosition, float flYPosition) { - struct cppISteamController_SteamController005_ShowDigitalActionOrigins_params params = + struct ISteamController_SteamController005_ShowDigitalActionOrigins_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -1048,13 +1040,13 @@ bool __thiscall winISteamController_SteamController005_ShowDigitalActionOrigins( .flYPosition = flYPosition, }; TRACE("%p\n", _this); - cppISteamController_SteamController005_ShowDigitalActionOrigins( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController005_ShowDigitalActionOrigins, ¶ms ); return params._ret; } bool __thiscall winISteamController_SteamController005_ShowAnalogActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t analogActionHandle, float flScale, float flXPosition, float flYPosition) { - struct cppISteamController_SteamController005_ShowAnalogActionOrigins_params params = + struct ISteamController_SteamController005_ShowAnalogActionOrigins_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -1064,19 +1056,19 @@ bool __thiscall winISteamController_SteamController005_ShowAnalogActionOrigins(s .flYPosition = flYPosition, }; TRACE("%p\n", _this); - cppISteamController_SteamController005_ShowAnalogActionOrigins( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController005_ShowAnalogActionOrigins, ¶ms ); return params._ret; } const char * __thiscall winISteamController_SteamController005_GetStringForActionOrigin(struct w_steam_iface *_this, uint32_t eOrigin) { - struct cppISteamController_SteamController005_GetStringForActionOrigin_params params = + struct ISteamController_SteamController005_GetStringForActionOrigin_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, }; TRACE("%p\n", _this); - cppISteamController_SteamController005_GetStringForActionOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController005_GetStringForActionOrigin, ¶ms ); return params._ret; } @@ -1124,8 +1116,6 @@ struct w_steam_iface *create_winISteamController_SteamController005(void *u_ifac return r; } -#include "cppISteamController_SteamController006.h" - DEFINE_THISCALL_WRAPPER(winISteamController_SteamController006_Init, 4) DEFINE_THISCALL_WRAPPER(winISteamController_SteamController006_Shutdown, 4) DEFINE_THISCALL_WRAPPER(winISteamController_SteamController006_RunFrame, 4) @@ -1160,159 +1150,159 @@ DEFINE_THISCALL_WRAPPER(winISteamController_SteamController006_GetInputTypeForHa bool __thiscall winISteamController_SteamController006_Init(struct w_steam_iface *_this) { - struct cppISteamController_SteamController006_Init_params params = + struct ISteamController_SteamController006_Init_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamController_SteamController006_Init( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController006_Init, ¶ms ); return params._ret; } bool __thiscall winISteamController_SteamController006_Shutdown(struct w_steam_iface *_this) { - struct cppISteamController_SteamController006_Shutdown_params params = + struct ISteamController_SteamController006_Shutdown_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamController_SteamController006_Shutdown( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController006_Shutdown, ¶ms ); return params._ret; } void __thiscall winISteamController_SteamController006_RunFrame(struct w_steam_iface *_this) { - struct cppISteamController_SteamController006_RunFrame_params params = + struct ISteamController_SteamController006_RunFrame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamController_SteamController006_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController006_RunFrame, ¶ms ); } int32_t __thiscall winISteamController_SteamController006_GetConnectedControllers(struct w_steam_iface *_this, uint64_t *handlesOut) { - struct cppISteamController_SteamController006_GetConnectedControllers_params params = + struct ISteamController_SteamController006_GetConnectedControllers_params params = { .linux_side = _this->u_iface, .handlesOut = handlesOut, }; TRACE("%p\n", _this); - cppISteamController_SteamController006_GetConnectedControllers( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController006_GetConnectedControllers, ¶ms ); return params._ret; } bool __thiscall winISteamController_SteamController006_ShowBindingPanel(struct w_steam_iface *_this, uint64_t controllerHandle) { - struct cppISteamController_SteamController006_ShowBindingPanel_params params = + struct ISteamController_SteamController006_ShowBindingPanel_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController006_ShowBindingPanel( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController006_ShowBindingPanel, ¶ms ); return params._ret; } uint64_t __thiscall winISteamController_SteamController006_GetActionSetHandle(struct w_steam_iface *_this, const char *pszActionSetName) { - struct cppISteamController_SteamController006_GetActionSetHandle_params params = + struct ISteamController_SteamController006_GetActionSetHandle_params params = { .linux_side = _this->u_iface, .pszActionSetName = pszActionSetName, }; TRACE("%p\n", _this); - cppISteamController_SteamController006_GetActionSetHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController006_GetActionSetHandle, ¶ms ); return params._ret; } void __thiscall winISteamController_SteamController006_ActivateActionSet(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle) { - struct cppISteamController_SteamController006_ActivateActionSet_params params = + struct ISteamController_SteamController006_ActivateActionSet_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, .actionSetHandle = actionSetHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController006_ActivateActionSet( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController006_ActivateActionSet, ¶ms ); } uint64_t __thiscall winISteamController_SteamController006_GetCurrentActionSet(struct w_steam_iface *_this, uint64_t controllerHandle) { - struct cppISteamController_SteamController006_GetCurrentActionSet_params params = + struct ISteamController_SteamController006_GetCurrentActionSet_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController006_GetCurrentActionSet( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController006_GetCurrentActionSet, ¶ms ); return params._ret; } void __thiscall winISteamController_SteamController006_ActivateActionSetLayer(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetLayerHandle) { - struct cppISteamController_SteamController006_ActivateActionSetLayer_params params = + struct ISteamController_SteamController006_ActivateActionSetLayer_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, .actionSetLayerHandle = actionSetLayerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController006_ActivateActionSetLayer( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController006_ActivateActionSetLayer, ¶ms ); } void __thiscall winISteamController_SteamController006_DeactivateActionSetLayer(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetLayerHandle) { - struct cppISteamController_SteamController006_DeactivateActionSetLayer_params params = + struct ISteamController_SteamController006_DeactivateActionSetLayer_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, .actionSetLayerHandle = actionSetLayerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController006_DeactivateActionSetLayer( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController006_DeactivateActionSetLayer, ¶ms ); } void __thiscall winISteamController_SteamController006_DeactivateAllActionSetLayers(struct w_steam_iface *_this, uint64_t controllerHandle) { - struct cppISteamController_SteamController006_DeactivateAllActionSetLayers_params params = + struct ISteamController_SteamController006_DeactivateAllActionSetLayers_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController006_DeactivateAllActionSetLayers( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController006_DeactivateAllActionSetLayers, ¶ms ); } int32_t __thiscall winISteamController_SteamController006_GetActiveActionSetLayers(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t *handlesOut) { - struct cppISteamController_SteamController006_GetActiveActionSetLayers_params params = + struct ISteamController_SteamController006_GetActiveActionSetLayers_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, .handlesOut = handlesOut, }; TRACE("%p\n", _this); - cppISteamController_SteamController006_GetActiveActionSetLayers( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController006_GetActiveActionSetLayers, ¶ms ); return params._ret; } uint64_t __thiscall winISteamController_SteamController006_GetDigitalActionHandle(struct w_steam_iface *_this, const char *pszActionName) { - struct cppISteamController_SteamController006_GetDigitalActionHandle_params params = + struct ISteamController_SteamController006_GetDigitalActionHandle_params params = { .linux_side = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); - cppISteamController_SteamController006_GetDigitalActionHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController006_GetDigitalActionHandle, ¶ms ); return params._ret; } ControllerDigitalActionData_t * __thiscall winISteamController_SteamController006_GetDigitalActionData(struct w_steam_iface *_this, ControllerDigitalActionData_t *_ret, uint64_t controllerHandle, uint64_t digitalActionHandle) { - struct cppISteamController_SteamController006_GetDigitalActionData_params params = + struct ISteamController_SteamController006_GetDigitalActionData_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -1320,13 +1310,13 @@ ControllerDigitalActionData_t * __thiscall winISteamController_SteamController00 .digitalActionHandle = digitalActionHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController006_GetDigitalActionData( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController006_GetDigitalActionData, ¶ms ); 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) { - struct cppISteamController_SteamController006_GetDigitalActionOrigins_params params = + struct ISteamController_SteamController006_GetDigitalActionOrigins_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -1335,25 +1325,25 @@ int32_t __thiscall winISteamController_SteamController006_GetDigitalActionOrigin .originsOut = originsOut, }; TRACE("%p\n", _this); - cppISteamController_SteamController006_GetDigitalActionOrigins( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController006_GetDigitalActionOrigins, ¶ms ); return params._ret; } uint64_t __thiscall winISteamController_SteamController006_GetAnalogActionHandle(struct w_steam_iface *_this, const char *pszActionName) { - struct cppISteamController_SteamController006_GetAnalogActionHandle_params params = + struct ISteamController_SteamController006_GetAnalogActionHandle_params params = { .linux_side = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); - cppISteamController_SteamController006_GetAnalogActionHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController006_GetAnalogActionHandle, ¶ms ); return params._ret; } ControllerAnalogActionData_t * __thiscall winISteamController_SteamController006_GetAnalogActionData(struct w_steam_iface *_this, ControllerAnalogActionData_t *_ret, uint64_t controllerHandle, uint64_t analogActionHandle) { - struct cppISteamController_SteamController006_GetAnalogActionData_params params = + struct ISteamController_SteamController006_GetAnalogActionData_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -1361,13 +1351,13 @@ ControllerAnalogActionData_t * __thiscall winISteamController_SteamController006 .analogActionHandle = analogActionHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController006_GetAnalogActionData( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController006_GetAnalogActionData, ¶ms ); 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) { - struct cppISteamController_SteamController006_GetAnalogActionOrigins_params params = + struct ISteamController_SteamController006_GetAnalogActionOrigins_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -1376,25 +1366,25 @@ int32_t __thiscall winISteamController_SteamController006_GetAnalogActionOrigins .originsOut = originsOut, }; TRACE("%p\n", _this); - cppISteamController_SteamController006_GetAnalogActionOrigins( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController006_GetAnalogActionOrigins, ¶ms ); return params._ret; } void __thiscall winISteamController_SteamController006_StopAnalogActionMomentum(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t eAction) { - struct cppISteamController_SteamController006_StopAnalogActionMomentum_params params = + struct ISteamController_SteamController006_StopAnalogActionMomentum_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, .eAction = eAction, }; TRACE("%p\n", _this); - cppISteamController_SteamController006_StopAnalogActionMomentum( ¶ms ); + 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) { - struct cppISteamController_SteamController006_TriggerHapticPulse_params params = + struct ISteamController_SteamController006_TriggerHapticPulse_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -1402,12 +1392,12 @@ void __thiscall winISteamController_SteamController006_TriggerHapticPulse(struct .usDurationMicroSec = usDurationMicroSec, }; TRACE("%p\n", _this); - cppISteamController_SteamController006_TriggerHapticPulse( ¶ms ); + 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) { - struct cppISteamController_SteamController006_TriggerRepeatedHapticPulse_params params = + struct ISteamController_SteamController006_TriggerRepeatedHapticPulse_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -1418,12 +1408,12 @@ void __thiscall winISteamController_SteamController006_TriggerRepeatedHapticPuls .nFlags = nFlags, }; TRACE("%p\n", _this); - cppISteamController_SteamController006_TriggerRepeatedHapticPulse( ¶ms ); + 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) { - struct cppISteamController_SteamController006_TriggerVibration_params params = + struct ISteamController_SteamController006_TriggerVibration_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -1431,12 +1421,12 @@ void __thiscall winISteamController_SteamController006_TriggerVibration(struct w .usRightSpeed = usRightSpeed, }; TRACE("%p\n", _this); - cppISteamController_SteamController006_TriggerVibration( ¶ms ); + 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) { - struct cppISteamController_SteamController006_SetLEDColor_params params = + struct ISteamController_SteamController006_SetLEDColor_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -1446,49 +1436,49 @@ void __thiscall winISteamController_SteamController006_SetLEDColor(struct w_stea .nFlags = nFlags, }; TRACE("%p\n", _this); - cppISteamController_SteamController006_SetLEDColor( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController006_SetLEDColor, ¶ms ); } int32_t __thiscall winISteamController_SteamController006_GetGamepadIndexForController(struct w_steam_iface *_this, uint64_t ulControllerHandle) { - struct cppISteamController_SteamController006_GetGamepadIndexForController_params params = + struct ISteamController_SteamController006_GetGamepadIndexForController_params params = { .linux_side = _this->u_iface, .ulControllerHandle = ulControllerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController006_GetGamepadIndexForController( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController006_GetGamepadIndexForController, ¶ms ); return params._ret; } uint64_t __thiscall winISteamController_SteamController006_GetControllerForGamepadIndex(struct w_steam_iface *_this, int32_t nIndex) { - struct cppISteamController_SteamController006_GetControllerForGamepadIndex_params params = + struct ISteamController_SteamController006_GetControllerForGamepadIndex_params params = { .linux_side = _this->u_iface, .nIndex = nIndex, }; TRACE("%p\n", _this); - cppISteamController_SteamController006_GetControllerForGamepadIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController006_GetControllerForGamepadIndex, ¶ms ); return params._ret; } ControllerMotionData_t * __thiscall winISteamController_SteamController006_GetMotionData(struct w_steam_iface *_this, ControllerMotionData_t *_ret, uint64_t controllerHandle) { - struct cppISteamController_SteamController006_GetMotionData_params params = + struct ISteamController_SteamController006_GetMotionData_params params = { .linux_side = _this->u_iface, ._ret = _ret, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController006_GetMotionData( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController006_GetMotionData, ¶ms ); return params._ret; } bool __thiscall winISteamController_SteamController006_ShowDigitalActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t digitalActionHandle, float flScale, float flXPosition, float flYPosition) { - struct cppISteamController_SteamController006_ShowDigitalActionOrigins_params params = + struct ISteamController_SteamController006_ShowDigitalActionOrigins_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -1498,13 +1488,13 @@ bool __thiscall winISteamController_SteamController006_ShowDigitalActionOrigins( .flYPosition = flYPosition, }; TRACE("%p\n", _this); - cppISteamController_SteamController006_ShowDigitalActionOrigins( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController006_ShowDigitalActionOrigins, ¶ms ); return params._ret; } bool __thiscall winISteamController_SteamController006_ShowAnalogActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t analogActionHandle, float flScale, float flXPosition, float flYPosition) { - struct cppISteamController_SteamController006_ShowAnalogActionOrigins_params params = + struct ISteamController_SteamController006_ShowAnalogActionOrigins_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -1514,31 +1504,31 @@ bool __thiscall winISteamController_SteamController006_ShowAnalogActionOrigins(s .flYPosition = flYPosition, }; TRACE("%p\n", _this); - cppISteamController_SteamController006_ShowAnalogActionOrigins( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController006_ShowAnalogActionOrigins, ¶ms ); return params._ret; } const char * __thiscall winISteamController_SteamController006_GetStringForActionOrigin(struct w_steam_iface *_this, uint32_t eOrigin) { - struct cppISteamController_SteamController006_GetStringForActionOrigin_params params = + struct ISteamController_SteamController006_GetStringForActionOrigin_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, }; TRACE("%p\n", _this); - cppISteamController_SteamController006_GetStringForActionOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController006_GetStringForActionOrigin, ¶ms ); return params._ret; } uint32_t __thiscall winISteamController_SteamController006_GetInputTypeForHandle(struct w_steam_iface *_this, uint64_t controllerHandle) { - struct cppISteamController_SteamController006_GetInputTypeForHandle_params params = + struct ISteamController_SteamController006_GetInputTypeForHandle_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController006_GetInputTypeForHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController006_GetInputTypeForHandle, ¶ms ); return params._ret; } @@ -1591,8 +1581,6 @@ struct w_steam_iface *create_winISteamController_SteamController006(void *u_ifac return r; } -#include "cppISteamController_SteamController007.h" - DEFINE_THISCALL_WRAPPER(winISteamController_SteamController007_Init, 4) DEFINE_THISCALL_WRAPPER(winISteamController_SteamController007_Shutdown, 4) DEFINE_THISCALL_WRAPPER(winISteamController_SteamController007_RunFrame, 4) @@ -1630,147 +1618,147 @@ DEFINE_THISCALL_WRAPPER(winISteamController_SteamController007_GetControllerBind bool __thiscall winISteamController_SteamController007_Init(struct w_steam_iface *_this) { - struct cppISteamController_SteamController007_Init_params params = + struct ISteamController_SteamController007_Init_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_Init( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController007_Init, ¶ms ); return params._ret; } bool __thiscall winISteamController_SteamController007_Shutdown(struct w_steam_iface *_this) { - struct cppISteamController_SteamController007_Shutdown_params params = + struct ISteamController_SteamController007_Shutdown_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_Shutdown( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController007_Shutdown, ¶ms ); return params._ret; } void __thiscall winISteamController_SteamController007_RunFrame(struct w_steam_iface *_this) { - struct cppISteamController_SteamController007_RunFrame_params params = + struct ISteamController_SteamController007_RunFrame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController007_RunFrame, ¶ms ); } int32_t __thiscall winISteamController_SteamController007_GetConnectedControllers(struct w_steam_iface *_this, uint64_t *handlesOut) { - struct cppISteamController_SteamController007_GetConnectedControllers_params params = + struct ISteamController_SteamController007_GetConnectedControllers_params params = { .linux_side = _this->u_iface, .handlesOut = handlesOut, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_GetConnectedControllers( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController007_GetConnectedControllers, ¶ms ); return params._ret; } uint64_t __thiscall winISteamController_SteamController007_GetActionSetHandle(struct w_steam_iface *_this, const char *pszActionSetName) { - struct cppISteamController_SteamController007_GetActionSetHandle_params params = + struct ISteamController_SteamController007_GetActionSetHandle_params params = { .linux_side = _this->u_iface, .pszActionSetName = pszActionSetName, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_GetActionSetHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController007_GetActionSetHandle, ¶ms ); return params._ret; } void __thiscall winISteamController_SteamController007_ActivateActionSet(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle) { - struct cppISteamController_SteamController007_ActivateActionSet_params params = + struct ISteamController_SteamController007_ActivateActionSet_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, .actionSetHandle = actionSetHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_ActivateActionSet( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController007_ActivateActionSet, ¶ms ); } uint64_t __thiscall winISteamController_SteamController007_GetCurrentActionSet(struct w_steam_iface *_this, uint64_t controllerHandle) { - struct cppISteamController_SteamController007_GetCurrentActionSet_params params = + struct ISteamController_SteamController007_GetCurrentActionSet_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_GetCurrentActionSet( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController007_GetCurrentActionSet, ¶ms ); return params._ret; } void __thiscall winISteamController_SteamController007_ActivateActionSetLayer(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetLayerHandle) { - struct cppISteamController_SteamController007_ActivateActionSetLayer_params params = + struct ISteamController_SteamController007_ActivateActionSetLayer_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, .actionSetLayerHandle = actionSetLayerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_ActivateActionSetLayer( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController007_ActivateActionSetLayer, ¶ms ); } void __thiscall winISteamController_SteamController007_DeactivateActionSetLayer(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetLayerHandle) { - struct cppISteamController_SteamController007_DeactivateActionSetLayer_params params = + struct ISteamController_SteamController007_DeactivateActionSetLayer_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, .actionSetLayerHandle = actionSetLayerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_DeactivateActionSetLayer( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController007_DeactivateActionSetLayer, ¶ms ); } void __thiscall winISteamController_SteamController007_DeactivateAllActionSetLayers(struct w_steam_iface *_this, uint64_t controllerHandle) { - struct cppISteamController_SteamController007_DeactivateAllActionSetLayers_params params = + struct ISteamController_SteamController007_DeactivateAllActionSetLayers_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_DeactivateAllActionSetLayers( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController007_DeactivateAllActionSetLayers, ¶ms ); } int32_t __thiscall winISteamController_SteamController007_GetActiveActionSetLayers(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t *handlesOut) { - struct cppISteamController_SteamController007_GetActiveActionSetLayers_params params = + struct ISteamController_SteamController007_GetActiveActionSetLayers_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, .handlesOut = handlesOut, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_GetActiveActionSetLayers( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController007_GetActiveActionSetLayers, ¶ms ); return params._ret; } uint64_t __thiscall winISteamController_SteamController007_GetDigitalActionHandle(struct w_steam_iface *_this, const char *pszActionName) { - struct cppISteamController_SteamController007_GetDigitalActionHandle_params params = + struct ISteamController_SteamController007_GetDigitalActionHandle_params params = { .linux_side = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_GetDigitalActionHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController007_GetDigitalActionHandle, ¶ms ); return params._ret; } InputDigitalActionData_t * __thiscall winISteamController_SteamController007_GetDigitalActionData(struct w_steam_iface *_this, InputDigitalActionData_t *_ret, uint64_t controllerHandle, uint64_t digitalActionHandle) { - struct cppISteamController_SteamController007_GetDigitalActionData_params params = + struct ISteamController_SteamController007_GetDigitalActionData_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -1778,13 +1766,13 @@ InputDigitalActionData_t * __thiscall winISteamController_SteamController007_Get .digitalActionHandle = digitalActionHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_GetDigitalActionData( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController007_GetDigitalActionData, ¶ms ); 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) { - struct cppISteamController_SteamController007_GetDigitalActionOrigins_params params = + struct ISteamController_SteamController007_GetDigitalActionOrigins_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -1793,25 +1781,25 @@ int32_t __thiscall winISteamController_SteamController007_GetDigitalActionOrigin .originsOut = originsOut, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_GetDigitalActionOrigins( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController007_GetDigitalActionOrigins, ¶ms ); return params._ret; } uint64_t __thiscall winISteamController_SteamController007_GetAnalogActionHandle(struct w_steam_iface *_this, const char *pszActionName) { - struct cppISteamController_SteamController007_GetAnalogActionHandle_params params = + struct ISteamController_SteamController007_GetAnalogActionHandle_params params = { .linux_side = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_GetAnalogActionHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController007_GetAnalogActionHandle, ¶ms ); return params._ret; } InputAnalogActionData_t * __thiscall winISteamController_SteamController007_GetAnalogActionData(struct w_steam_iface *_this, InputAnalogActionData_t *_ret, uint64_t controllerHandle, uint64_t analogActionHandle) { - struct cppISteamController_SteamController007_GetAnalogActionData_params params = + struct ISteamController_SteamController007_GetAnalogActionData_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -1819,13 +1807,13 @@ InputAnalogActionData_t * __thiscall winISteamController_SteamController007_GetA .analogActionHandle = analogActionHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_GetAnalogActionData( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController007_GetAnalogActionData, ¶ms ); 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) { - struct cppISteamController_SteamController007_GetAnalogActionOrigins_params params = + struct ISteamController_SteamController007_GetAnalogActionOrigins_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -1834,50 +1822,50 @@ int32_t __thiscall winISteamController_SteamController007_GetAnalogActionOrigins .originsOut = originsOut, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_GetAnalogActionOrigins( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController007_GetAnalogActionOrigins, ¶ms ); return params._ret; } const char * __thiscall winISteamController_SteamController007_GetStringForActionOrigin(struct w_steam_iface *_this, uint32_t eOrigin) { - struct cppISteamController_SteamController007_GetStringForActionOrigin_params params = + struct ISteamController_SteamController007_GetStringForActionOrigin_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_GetStringForActionOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController007_GetStringForActionOrigin, ¶ms ); return params._ret; } void __thiscall winISteamController_SteamController007_StopAnalogActionMomentum(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t eAction) { - struct cppISteamController_SteamController007_StopAnalogActionMomentum_params params = + struct ISteamController_SteamController007_StopAnalogActionMomentum_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, .eAction = eAction, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_StopAnalogActionMomentum( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController007_StopAnalogActionMomentum, ¶ms ); } InputMotionData_t * __thiscall winISteamController_SteamController007_GetMotionData(struct w_steam_iface *_this, InputMotionData_t *_ret, uint64_t controllerHandle) { - struct cppISteamController_SteamController007_GetMotionData_params params = + struct ISteamController_SteamController007_GetMotionData_params params = { .linux_side = _this->u_iface, ._ret = _ret, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_GetMotionData( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController007_GetMotionData, ¶ms ); return params._ret; } void __thiscall winISteamController_SteamController007_TriggerHapticPulse(struct w_steam_iface *_this, uint64_t controllerHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec) { - struct cppISteamController_SteamController007_TriggerHapticPulse_params params = + struct ISteamController_SteamController007_TriggerHapticPulse_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -1885,12 +1873,12 @@ void __thiscall winISteamController_SteamController007_TriggerHapticPulse(struct .usDurationMicroSec = usDurationMicroSec, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_TriggerHapticPulse( ¶ms ); + 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) { - struct cppISteamController_SteamController007_TriggerRepeatedHapticPulse_params params = + struct ISteamController_SteamController007_TriggerRepeatedHapticPulse_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -1901,12 +1889,12 @@ void __thiscall winISteamController_SteamController007_TriggerRepeatedHapticPuls .nFlags = nFlags, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_TriggerRepeatedHapticPulse( ¶ms ); + 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) { - struct cppISteamController_SteamController007_TriggerVibration_params params = + struct ISteamController_SteamController007_TriggerVibration_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -1914,12 +1902,12 @@ void __thiscall winISteamController_SteamController007_TriggerVibration(struct w .usRightSpeed = usRightSpeed, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_TriggerVibration( ¶ms ); + 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) { - struct cppISteamController_SteamController007_SetLEDColor_params params = + struct ISteamController_SteamController007_SetLEDColor_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -1929,98 +1917,98 @@ void __thiscall winISteamController_SteamController007_SetLEDColor(struct w_stea .nFlags = nFlags, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_SetLEDColor( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController007_SetLEDColor, ¶ms ); } bool __thiscall winISteamController_SteamController007_ShowBindingPanel(struct w_steam_iface *_this, uint64_t controllerHandle) { - struct cppISteamController_SteamController007_ShowBindingPanel_params params = + struct ISteamController_SteamController007_ShowBindingPanel_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_ShowBindingPanel( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController007_ShowBindingPanel, ¶ms ); return params._ret; } uint32_t __thiscall winISteamController_SteamController007_GetInputTypeForHandle(struct w_steam_iface *_this, uint64_t controllerHandle) { - struct cppISteamController_SteamController007_GetInputTypeForHandle_params params = + struct ISteamController_SteamController007_GetInputTypeForHandle_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_GetInputTypeForHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController007_GetInputTypeForHandle, ¶ms ); return params._ret; } uint64_t __thiscall winISteamController_SteamController007_GetControllerForGamepadIndex(struct w_steam_iface *_this, int32_t nIndex) { - struct cppISteamController_SteamController007_GetControllerForGamepadIndex_params params = + struct ISteamController_SteamController007_GetControllerForGamepadIndex_params params = { .linux_side = _this->u_iface, .nIndex = nIndex, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_GetControllerForGamepadIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController007_GetControllerForGamepadIndex, ¶ms ); return params._ret; } int32_t __thiscall winISteamController_SteamController007_GetGamepadIndexForController(struct w_steam_iface *_this, uint64_t ulControllerHandle) { - struct cppISteamController_SteamController007_GetGamepadIndexForController_params params = + struct ISteamController_SteamController007_GetGamepadIndexForController_params params = { .linux_side = _this->u_iface, .ulControllerHandle = ulControllerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_GetGamepadIndexForController( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController007_GetGamepadIndexForController, ¶ms ); return params._ret; } const char * __thiscall winISteamController_SteamController007_GetStringForXboxOrigin(struct w_steam_iface *_this, uint32_t eOrigin) { - struct cppISteamController_SteamController007_GetStringForXboxOrigin_params params = + struct ISteamController_SteamController007_GetStringForXboxOrigin_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_GetStringForXboxOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController007_GetStringForXboxOrigin, ¶ms ); return params._ret; } uint32_t __thiscall winISteamController_SteamController007_GetActionOriginFromXboxOrigin(struct w_steam_iface *_this, uint64_t controllerHandle, uint32_t eOrigin) { - struct cppISteamController_SteamController007_GetActionOriginFromXboxOrigin_params params = + struct ISteamController_SteamController007_GetActionOriginFromXboxOrigin_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, .eOrigin = eOrigin, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_GetActionOriginFromXboxOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController007_GetActionOriginFromXboxOrigin, ¶ms ); return params._ret; } uint32_t __thiscall winISteamController_SteamController007_TranslateActionOrigin(struct w_steam_iface *_this, uint32_t eDestinationInputType, uint32_t eSourceOrigin) { - struct cppISteamController_SteamController007_TranslateActionOrigin_params params = + struct ISteamController_SteamController007_TranslateActionOrigin_params params = { .linux_side = _this->u_iface, .eDestinationInputType = eDestinationInputType, .eSourceOrigin = eSourceOrigin, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_TranslateActionOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController007_TranslateActionOrigin, ¶ms ); return params._ret; } bool __thiscall winISteamController_SteamController007_GetControllerBindingRevision(struct w_steam_iface *_this, uint64_t controllerHandle, int32_t *pMajor, int32_t *pMinor) { - struct cppISteamController_SteamController007_GetControllerBindingRevision_params params = + struct ISteamController_SteamController007_GetControllerBindingRevision_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -2028,7 +2016,7 @@ bool __thiscall winISteamController_SteamController007_GetControllerBindingRevis .pMinor = pMinor, }; TRACE("%p\n", _this); - cppISteamController_SteamController007_GetControllerBindingRevision( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController007_GetControllerBindingRevision, ¶ms ); return params._ret; } @@ -2084,8 +2072,6 @@ struct w_steam_iface *create_winISteamController_SteamController007(void *u_ifac return r; } -#include "cppISteamController_SteamController008.h" - DEFINE_THISCALL_WRAPPER(winISteamController_SteamController008_Init, 4) DEFINE_THISCALL_WRAPPER(winISteamController_SteamController008_Shutdown, 4) DEFINE_THISCALL_WRAPPER(winISteamController_SteamController008_RunFrame, 4) @@ -2123,147 +2109,147 @@ DEFINE_THISCALL_WRAPPER(winISteamController_SteamController008_GetControllerBind bool __thiscall winISteamController_SteamController008_Init(struct w_steam_iface *_this) { - struct cppISteamController_SteamController008_Init_params params = + struct ISteamController_SteamController008_Init_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_Init( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController008_Init, ¶ms ); return params._ret; } bool __thiscall winISteamController_SteamController008_Shutdown(struct w_steam_iface *_this) { - struct cppISteamController_SteamController008_Shutdown_params params = + struct ISteamController_SteamController008_Shutdown_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_Shutdown( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController008_Shutdown, ¶ms ); return params._ret; } void __thiscall winISteamController_SteamController008_RunFrame(struct w_steam_iface *_this) { - struct cppISteamController_SteamController008_RunFrame_params params = + struct ISteamController_SteamController008_RunFrame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController008_RunFrame, ¶ms ); } int32_t __thiscall winISteamController_SteamController008_GetConnectedControllers(struct w_steam_iface *_this, uint64_t *handlesOut) { - struct cppISteamController_SteamController008_GetConnectedControllers_params params = + struct ISteamController_SteamController008_GetConnectedControllers_params params = { .linux_side = _this->u_iface, .handlesOut = handlesOut, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_GetConnectedControllers( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController008_GetConnectedControllers, ¶ms ); return params._ret; } uint64_t __thiscall winISteamController_SteamController008_GetActionSetHandle(struct w_steam_iface *_this, const char *pszActionSetName) { - struct cppISteamController_SteamController008_GetActionSetHandle_params params = + struct ISteamController_SteamController008_GetActionSetHandle_params params = { .linux_side = _this->u_iface, .pszActionSetName = pszActionSetName, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_GetActionSetHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController008_GetActionSetHandle, ¶ms ); return params._ret; } void __thiscall winISteamController_SteamController008_ActivateActionSet(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle) { - struct cppISteamController_SteamController008_ActivateActionSet_params params = + struct ISteamController_SteamController008_ActivateActionSet_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, .actionSetHandle = actionSetHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_ActivateActionSet( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController008_ActivateActionSet, ¶ms ); } uint64_t __thiscall winISteamController_SteamController008_GetCurrentActionSet(struct w_steam_iface *_this, uint64_t controllerHandle) { - struct cppISteamController_SteamController008_GetCurrentActionSet_params params = + struct ISteamController_SteamController008_GetCurrentActionSet_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_GetCurrentActionSet( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController008_GetCurrentActionSet, ¶ms ); return params._ret; } void __thiscall winISteamController_SteamController008_ActivateActionSetLayer(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetLayerHandle) { - struct cppISteamController_SteamController008_ActivateActionSetLayer_params params = + struct ISteamController_SteamController008_ActivateActionSetLayer_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, .actionSetLayerHandle = actionSetLayerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_ActivateActionSetLayer( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController008_ActivateActionSetLayer, ¶ms ); } void __thiscall winISteamController_SteamController008_DeactivateActionSetLayer(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetLayerHandle) { - struct cppISteamController_SteamController008_DeactivateActionSetLayer_params params = + struct ISteamController_SteamController008_DeactivateActionSetLayer_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, .actionSetLayerHandle = actionSetLayerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_DeactivateActionSetLayer( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController008_DeactivateActionSetLayer, ¶ms ); } void __thiscall winISteamController_SteamController008_DeactivateAllActionSetLayers(struct w_steam_iface *_this, uint64_t controllerHandle) { - struct cppISteamController_SteamController008_DeactivateAllActionSetLayers_params params = + struct ISteamController_SteamController008_DeactivateAllActionSetLayers_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_DeactivateAllActionSetLayers( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController008_DeactivateAllActionSetLayers, ¶ms ); } int32_t __thiscall winISteamController_SteamController008_GetActiveActionSetLayers(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t *handlesOut) { - struct cppISteamController_SteamController008_GetActiveActionSetLayers_params params = + struct ISteamController_SteamController008_GetActiveActionSetLayers_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, .handlesOut = handlesOut, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_GetActiveActionSetLayers( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController008_GetActiveActionSetLayers, ¶ms ); return params._ret; } uint64_t __thiscall winISteamController_SteamController008_GetDigitalActionHandle(struct w_steam_iface *_this, const char *pszActionName) { - struct cppISteamController_SteamController008_GetDigitalActionHandle_params params = + struct ISteamController_SteamController008_GetDigitalActionHandle_params params = { .linux_side = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_GetDigitalActionHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController008_GetDigitalActionHandle, ¶ms ); return params._ret; } InputDigitalActionData_t * __thiscall winISteamController_SteamController008_GetDigitalActionData(struct w_steam_iface *_this, InputDigitalActionData_t *_ret, uint64_t controllerHandle, uint64_t digitalActionHandle) { - struct cppISteamController_SteamController008_GetDigitalActionData_params params = + struct ISteamController_SteamController008_GetDigitalActionData_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -2271,13 +2257,13 @@ InputDigitalActionData_t * __thiscall winISteamController_SteamController008_Get .digitalActionHandle = digitalActionHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_GetDigitalActionData( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController008_GetDigitalActionData, ¶ms ); 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) { - struct cppISteamController_SteamController008_GetDigitalActionOrigins_params params = + struct ISteamController_SteamController008_GetDigitalActionOrigins_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -2286,25 +2272,25 @@ int32_t __thiscall winISteamController_SteamController008_GetDigitalActionOrigin .originsOut = originsOut, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_GetDigitalActionOrigins( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController008_GetDigitalActionOrigins, ¶ms ); return params._ret; } uint64_t __thiscall winISteamController_SteamController008_GetAnalogActionHandle(struct w_steam_iface *_this, const char *pszActionName) { - struct cppISteamController_SteamController008_GetAnalogActionHandle_params params = + struct ISteamController_SteamController008_GetAnalogActionHandle_params params = { .linux_side = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_GetAnalogActionHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController008_GetAnalogActionHandle, ¶ms ); return params._ret; } InputAnalogActionData_t * __thiscall winISteamController_SteamController008_GetAnalogActionData(struct w_steam_iface *_this, InputAnalogActionData_t *_ret, uint64_t controllerHandle, uint64_t analogActionHandle) { - struct cppISteamController_SteamController008_GetAnalogActionData_params params = + struct ISteamController_SteamController008_GetAnalogActionData_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -2312,13 +2298,13 @@ InputAnalogActionData_t * __thiscall winISteamController_SteamController008_GetA .analogActionHandle = analogActionHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_GetAnalogActionData( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController008_GetAnalogActionData, ¶ms ); 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) { - struct cppISteamController_SteamController008_GetAnalogActionOrigins_params params = + struct ISteamController_SteamController008_GetAnalogActionOrigins_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -2327,50 +2313,50 @@ int32_t __thiscall winISteamController_SteamController008_GetAnalogActionOrigins .originsOut = originsOut, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_GetAnalogActionOrigins( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController008_GetAnalogActionOrigins, ¶ms ); return params._ret; } const char * __thiscall winISteamController_SteamController008_GetStringForActionOrigin(struct w_steam_iface *_this, uint32_t eOrigin) { - struct cppISteamController_SteamController008_GetStringForActionOrigin_params params = + struct ISteamController_SteamController008_GetStringForActionOrigin_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_GetStringForActionOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController008_GetStringForActionOrigin, ¶ms ); return params._ret; } void __thiscall winISteamController_SteamController008_StopAnalogActionMomentum(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t eAction) { - struct cppISteamController_SteamController008_StopAnalogActionMomentum_params params = + struct ISteamController_SteamController008_StopAnalogActionMomentum_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, .eAction = eAction, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_StopAnalogActionMomentum( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController008_StopAnalogActionMomentum, ¶ms ); } InputMotionData_t * __thiscall winISteamController_SteamController008_GetMotionData(struct w_steam_iface *_this, InputMotionData_t *_ret, uint64_t controllerHandle) { - struct cppISteamController_SteamController008_GetMotionData_params params = + struct ISteamController_SteamController008_GetMotionData_params params = { .linux_side = _this->u_iface, ._ret = _ret, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_GetMotionData( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController008_GetMotionData, ¶ms ); return params._ret; } void __thiscall winISteamController_SteamController008_TriggerHapticPulse(struct w_steam_iface *_this, uint64_t controllerHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec) { - struct cppISteamController_SteamController008_TriggerHapticPulse_params params = + struct ISteamController_SteamController008_TriggerHapticPulse_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -2378,12 +2364,12 @@ void __thiscall winISteamController_SteamController008_TriggerHapticPulse(struct .usDurationMicroSec = usDurationMicroSec, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_TriggerHapticPulse( ¶ms ); + 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) { - struct cppISteamController_SteamController008_TriggerRepeatedHapticPulse_params params = + struct ISteamController_SteamController008_TriggerRepeatedHapticPulse_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -2394,12 +2380,12 @@ void __thiscall winISteamController_SteamController008_TriggerRepeatedHapticPuls .nFlags = nFlags, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_TriggerRepeatedHapticPulse( ¶ms ); + 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) { - struct cppISteamController_SteamController008_TriggerVibration_params params = + struct ISteamController_SteamController008_TriggerVibration_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -2407,12 +2393,12 @@ void __thiscall winISteamController_SteamController008_TriggerVibration(struct w .usRightSpeed = usRightSpeed, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_TriggerVibration( ¶ms ); + 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) { - struct cppISteamController_SteamController008_SetLEDColor_params params = + struct ISteamController_SteamController008_SetLEDColor_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -2422,98 +2408,98 @@ void __thiscall winISteamController_SteamController008_SetLEDColor(struct w_stea .nFlags = nFlags, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_SetLEDColor( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController008_SetLEDColor, ¶ms ); } bool __thiscall winISteamController_SteamController008_ShowBindingPanel(struct w_steam_iface *_this, uint64_t controllerHandle) { - struct cppISteamController_SteamController008_ShowBindingPanel_params params = + struct ISteamController_SteamController008_ShowBindingPanel_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_ShowBindingPanel( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController008_ShowBindingPanel, ¶ms ); return params._ret; } uint32_t __thiscall winISteamController_SteamController008_GetInputTypeForHandle(struct w_steam_iface *_this, uint64_t controllerHandle) { - struct cppISteamController_SteamController008_GetInputTypeForHandle_params params = + struct ISteamController_SteamController008_GetInputTypeForHandle_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_GetInputTypeForHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController008_GetInputTypeForHandle, ¶ms ); return params._ret; } uint64_t __thiscall winISteamController_SteamController008_GetControllerForGamepadIndex(struct w_steam_iface *_this, int32_t nIndex) { - struct cppISteamController_SteamController008_GetControllerForGamepadIndex_params params = + struct ISteamController_SteamController008_GetControllerForGamepadIndex_params params = { .linux_side = _this->u_iface, .nIndex = nIndex, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_GetControllerForGamepadIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController008_GetControllerForGamepadIndex, ¶ms ); return params._ret; } int32_t __thiscall winISteamController_SteamController008_GetGamepadIndexForController(struct w_steam_iface *_this, uint64_t ulControllerHandle) { - struct cppISteamController_SteamController008_GetGamepadIndexForController_params params = + struct ISteamController_SteamController008_GetGamepadIndexForController_params params = { .linux_side = _this->u_iface, .ulControllerHandle = ulControllerHandle, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_GetGamepadIndexForController( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController008_GetGamepadIndexForController, ¶ms ); return params._ret; } const char * __thiscall winISteamController_SteamController008_GetStringForXboxOrigin(struct w_steam_iface *_this, uint32_t eOrigin) { - struct cppISteamController_SteamController008_GetStringForXboxOrigin_params params = + struct ISteamController_SteamController008_GetStringForXboxOrigin_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_GetStringForXboxOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController008_GetStringForXboxOrigin, ¶ms ); return params._ret; } uint32_t __thiscall winISteamController_SteamController008_GetActionOriginFromXboxOrigin(struct w_steam_iface *_this, uint64_t controllerHandle, uint32_t eOrigin) { - struct cppISteamController_SteamController008_GetActionOriginFromXboxOrigin_params params = + struct ISteamController_SteamController008_GetActionOriginFromXboxOrigin_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, .eOrigin = eOrigin, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_GetActionOriginFromXboxOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController008_GetActionOriginFromXboxOrigin, ¶ms ); return params._ret; } uint32_t __thiscall winISteamController_SteamController008_TranslateActionOrigin(struct w_steam_iface *_this, uint32_t eDestinationInputType, uint32_t eSourceOrigin) { - struct cppISteamController_SteamController008_TranslateActionOrigin_params params = + struct ISteamController_SteamController008_TranslateActionOrigin_params params = { .linux_side = _this->u_iface, .eDestinationInputType = eDestinationInputType, .eSourceOrigin = eSourceOrigin, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_TranslateActionOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController008_TranslateActionOrigin, ¶ms ); return params._ret; } bool __thiscall winISteamController_SteamController008_GetControllerBindingRevision(struct w_steam_iface *_this, uint64_t controllerHandle, int32_t *pMajor, int32_t *pMinor) { - struct cppISteamController_SteamController008_GetControllerBindingRevision_params params = + struct ISteamController_SteamController008_GetControllerBindingRevision_params params = { .linux_side = _this->u_iface, .controllerHandle = controllerHandle, @@ -2521,7 +2507,7 @@ bool __thiscall winISteamController_SteamController008_GetControllerBindingRevis .pMinor = pMinor, }; TRACE("%p\n", _this); - cppISteamController_SteamController008_GetControllerBindingRevision( ¶ms ); + STEAMCLIENT_CALL( ISteamController_SteamController008_GetControllerBindingRevision, ¶ms ); return params._ret; } diff --git a/lsteamclient/winISteamFriends.c b/lsteamclient/winISteamFriends.c index 8f9d0aca..396588d5 100644 --- a/lsteamclient/winISteamFriends.c +++ b/lsteamclient/winISteamFriends.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamFriends_SteamFriends001.h" - DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends001_GetPersonaName, 4) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends001_SetPersonaName, 8) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends001_GetPersonaState, 4) @@ -35,111 +33,111 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends001_GetFriendGamePlayed2, 2 const char * __thiscall winISteamFriends_SteamFriends001_GetPersonaName(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends001_GetPersonaName_params params = + struct ISteamFriends_SteamFriends001_GetPersonaName_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends001_GetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_GetPersonaName, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends001_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) { - struct cppISteamFriends_SteamFriends001_SetPersonaName_params params = + struct ISteamFriends_SteamFriends001_SetPersonaName_params params = { .linux_side = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends001_SetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_SetPersonaName, ¶ms ); } uint32_t __thiscall winISteamFriends_SteamFriends001_GetPersonaState(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends001_GetPersonaState_params params = + struct ISteamFriends_SteamFriends001_GetPersonaState_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends001_GetPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_GetPersonaState, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends001_SetPersonaState(struct w_steam_iface *_this, uint32_t ePersonaState) { - struct cppISteamFriends_SteamFriends001_SetPersonaState_params params = + struct ISteamFriends_SteamFriends001_SetPersonaState_params params = { .linux_side = _this->u_iface, .ePersonaState = ePersonaState, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends001_SetPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_SetPersonaState, ¶ms ); } bool __thiscall winISteamFriends_SteamFriends001_AddFriend(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends001_AddFriend_params params = + struct ISteamFriends_SteamFriends001_AddFriend_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends001_AddFriend( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_AddFriend, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends001_RemoveFriend(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends001_RemoveFriend_params params = + struct ISteamFriends_SteamFriends001_RemoveFriend_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends001_RemoveFriend( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_RemoveFriend, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends001_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends001_HasFriend_params params = + struct ISteamFriends_SteamFriends001_HasFriend_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends001_HasFriend( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_HasFriend, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends001_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends001_GetFriendRelationship_params params = + struct ISteamFriends_SteamFriends001_GetFriendRelationship_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends001_GetFriendRelationship( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_GetFriendRelationship, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends001_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends001_GetFriendPersonaState_params params = + struct ISteamFriends_SteamFriends001_GetFriendPersonaState_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends001_GetFriendPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_GetFriendPersonaState, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t *pnGameID, uint32_t *punGameIP, uint16_t *pusGamePort) { - struct cppISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlayed_params params = + struct ISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlayed_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, @@ -148,61 +146,61 @@ bool __thiscall winISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlayed( .pusGamePort = pusGamePort, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlayed( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlayed, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends001_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends001_GetFriendPersonaName_params params = + struct ISteamFriends_SteamFriends001_GetFriendPersonaName_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends001_GetFriendPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_GetFriendPersonaName, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends001_AddFriendByName(struct w_steam_iface *_this, const char *pchEmailOrAccountName) { - struct cppISteamFriends_SteamFriends001_AddFriendByName_params params = + struct ISteamFriends_SteamFriends001_AddFriendByName_params params = { .linux_side = _this->u_iface, .pchEmailOrAccountName = pchEmailOrAccountName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends001_AddFriendByName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_AddFriendByName, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends001_GetFriendCount(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends001_GetFriendCount_params params = + struct ISteamFriends_SteamFriends001_GetFriendCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends001_GetFriendCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_GetFriendCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends001_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend) { - struct cppISteamFriends_SteamFriends001_GetFriendByIndex_params params = + struct ISteamFriends_SteamFriends001_GetFriendByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iFriend = iFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends001_GetFriendByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_GetFriendByIndex, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends001_SendMsgToFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, uint32_t eChatEntryType, const char *pchMsgBody) { - struct cppISteamFriends_SteamFriends001_SendMsgToFriend_params params = + struct ISteamFriends_SteamFriends001_SendMsgToFriend_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, @@ -210,12 +208,12 @@ void __thiscall winISteamFriends_SteamFriends001_SendMsgToFriend(struct w_steam_ .pchMsgBody = pchMsgBody, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends001_SendMsgToFriend( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_SendMsgToFriend, ¶ms ); } void __thiscall winISteamFriends_SteamFriends001_SetFriendRegValue(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchKey, const char *pchValue) { - struct cppISteamFriends_SteamFriends001_SetFriendRegValue_params params = + struct ISteamFriends_SteamFriends001_SetFriendRegValue_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, @@ -223,38 +221,38 @@ void __thiscall winISteamFriends_SteamFriends001_SetFriendRegValue(struct w_stea .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends001_SetFriendRegValue( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_SetFriendRegValue, ¶ms ); } const char * __thiscall winISteamFriends_SteamFriends001_GetFriendRegValue(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchKey) { - struct cppISteamFriends_SteamFriends001_GetFriendRegValue_params params = + struct ISteamFriends_SteamFriends001_GetFriendRegValue_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends001_GetFriendRegValue( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_GetFriendRegValue, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends001_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { - struct cppISteamFriends_SteamFriends001_GetFriendPersonaNameHistory_params params = + struct ISteamFriends_SteamFriends001_GetFriendPersonaNameHistory_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends001_GetFriendPersonaNameHistory( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_GetFriendPersonaNameHistory, ¶ms ); 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) { - struct cppISteamFriends_SteamFriends001_GetChatMessage_params params = + struct ISteamFriends_SteamFriends001_GetChatMessage_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, @@ -264,13 +262,13 @@ int32_t __thiscall winISteamFriends_SteamFriends001_GetChatMessage(struct w_stea .peChatEntryType = peChatEntryType, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends001_GetChatMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_GetChatMessage, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends001_SendMsgToFriend_2(struct w_steam_iface *_this, CSteamID steamIDFriend, uint32_t eChatEntryType, const void *pvMsgBody, int32_t cubMsgBody) { - struct cppISteamFriends_SteamFriends001_SendMsgToFriend_2_params params = + struct ISteamFriends_SteamFriends001_SendMsgToFriend_2_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, @@ -279,71 +277,71 @@ bool __thiscall winISteamFriends_SteamFriends001_SendMsgToFriend_2(struct w_stea .cubMsgBody = cubMsgBody, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends001_SendMsgToFriend_2( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_SendMsgToFriend_2, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends001_GetChatIDOfChatHistoryStart(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends001_GetChatIDOfChatHistoryStart_params params = + struct ISteamFriends_SteamFriends001_GetChatIDOfChatHistoryStart_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends001_GetChatIDOfChatHistoryStart( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_GetChatIDOfChatHistoryStart, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends001_SetChatHistoryStart(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iChatID) { - struct cppISteamFriends_SteamFriends001_SetChatHistoryStart_params params = + struct ISteamFriends_SteamFriends001_SetChatHistoryStart_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iChatID = iChatID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends001_SetChatHistoryStart( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_SetChatHistoryStart, ¶ms ); } void __thiscall winISteamFriends_SteamFriends001_ClearChatHistory(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends001_ClearChatHistory_params params = + struct ISteamFriends_SteamFriends001_ClearChatHistory_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends001_ClearChatHistory( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_ClearChatHistory, ¶ms ); } bool __thiscall winISteamFriends_SteamFriends001_InviteFriendByEmail(struct w_steam_iface *_this, const char *pchEmailAccount) { - struct cppISteamFriends_SteamFriends001_InviteFriendByEmail_params params = + struct ISteamFriends_SteamFriends001_InviteFriendByEmail_params params = { .linux_side = _this->u_iface, .pchEmailAccount = pchEmailAccount, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends001_InviteFriendByEmail( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_InviteFriendByEmail, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends001_GetBlockedFriendCount(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends001_GetBlockedFriendCount_params params = + struct ISteamFriends_SteamFriends001_GetBlockedFriendCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends001_GetBlockedFriendCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_GetBlockedFriendCount, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends001_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, uint64_t *pulGameID, uint32_t *punGameIP, uint16_t *pusGamePort) { - struct cppISteamFriends_SteamFriends001_GetFriendGamePlayed_params params = + struct ISteamFriends_SteamFriends001_GetFriendGamePlayed_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, @@ -352,13 +350,13 @@ bool __thiscall winISteamFriends_SteamFriends001_GetFriendGamePlayed(struct w_st .pusGamePort = pusGamePort, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends001_GetFriendGamePlayed( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_GetFriendGamePlayed, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends001_GetFriendGamePlayed2(struct w_steam_iface *_this, CSteamID steamIDFriend, uint64_t *pulGameID, uint32_t *punGameIP, uint16_t *pusGamePort, uint16_t *pusQueryPort) { - struct cppISteamFriends_SteamFriends001_GetFriendGamePlayed2_params params = + struct ISteamFriends_SteamFriends001_GetFriendGamePlayed2_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, @@ -368,7 +366,7 @@ bool __thiscall winISteamFriends_SteamFriends001_GetFriendGamePlayed2(struct w_s .pusQueryPort = pusQueryPort, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends001_GetFriendGamePlayed2( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_GetFriendGamePlayed2, ¶ms ); return params._ret; } @@ -417,8 +415,6 @@ struct w_steam_iface *create_winISteamFriends_SteamFriends001(void *u_iface) return r; } -#include "cppISteamFriends_SteamFriends002.h" - DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends002_GetPersonaName, 4) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends002_SetPersonaName, 8) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends002_GetPersonaState, 4) @@ -452,63 +448,63 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends002_GetFriendFromSourceByIn const char * __thiscall winISteamFriends_SteamFriends002_GetPersonaName(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends002_GetPersonaName_params params = + struct ISteamFriends_SteamFriends002_GetPersonaName_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends002_GetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_GetPersonaName, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends002_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) { - struct cppISteamFriends_SteamFriends002_SetPersonaName_params params = + struct ISteamFriends_SteamFriends002_SetPersonaName_params params = { .linux_side = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends002_SetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_SetPersonaName, ¶ms ); } uint32_t __thiscall winISteamFriends_SteamFriends002_GetPersonaState(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends002_GetPersonaState_params params = + struct ISteamFriends_SteamFriends002_GetPersonaState_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends002_GetPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_GetPersonaState, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends002_SetPersonaState(struct w_steam_iface *_this, uint32_t ePersonaState) { - struct cppISteamFriends_SteamFriends002_SetPersonaState_params params = + struct ISteamFriends_SteamFriends002_SetPersonaState_params params = { .linux_side = _this->u_iface, .ePersonaState = ePersonaState, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends002_SetPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_SetPersonaState, ¶ms ); } int32_t __thiscall winISteamFriends_SteamFriends002_GetFriendCount(struct w_steam_iface *_this, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends002_GetFriendCount_params params = + struct ISteamFriends_SteamFriends002_GetFriendCount_params params = { .linux_side = _this->u_iface, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends002_GetFriendCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_GetFriendCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends002_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends002_GetFriendByIndex_params params = + struct ISteamFriends_SteamFriends002_GetFriendByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -516,49 +512,49 @@ CSteamID * __thiscall winISteamFriends_SteamFriends002_GetFriendByIndex(struct w .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends002_GetFriendByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_GetFriendByIndex, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends002_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends002_GetFriendRelationship_params params = + struct ISteamFriends_SteamFriends002_GetFriendRelationship_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends002_GetFriendRelationship( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_GetFriendRelationship, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends002_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends002_GetFriendPersonaState_params params = + struct ISteamFriends_SteamFriends002_GetFriendPersonaState_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends002_GetFriendPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_GetFriendPersonaState, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends002_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends002_GetFriendPersonaName_params params = + struct ISteamFriends_SteamFriends002_GetFriendPersonaName_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends002_GetFriendPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_GetFriendPersonaName, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends002_SetFriendRegValue(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchKey, const char *pchValue) { - struct cppISteamFriends_SteamFriends002_SetFriendRegValue_params params = + struct ISteamFriends_SteamFriends002_SetFriendRegValue_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, @@ -566,25 +562,25 @@ void __thiscall winISteamFriends_SteamFriends002_SetFriendRegValue(struct w_stea .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends002_SetFriendRegValue( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_SetFriendRegValue, ¶ms ); } const char * __thiscall winISteamFriends_SteamFriends002_GetFriendRegValue(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchKey) { - struct cppISteamFriends_SteamFriends002_GetFriendRegValue_params params = + struct ISteamFriends_SteamFriends002_GetFriendRegValue_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends002_GetFriendRegValue( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_GetFriendRegValue, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends002_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, uint64_t *pulGameID, uint32_t *punGameIP, uint16_t *pusGamePort, uint16_t *pusQueryPort) { - struct cppISteamFriends_SteamFriends002_GetFriendGamePlayed_params params = + struct ISteamFriends_SteamFriends002_GetFriendGamePlayed_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, @@ -594,87 +590,87 @@ bool __thiscall winISteamFriends_SteamFriends002_GetFriendGamePlayed(struct w_st .pusQueryPort = pusQueryPort, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends002_GetFriendGamePlayed( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_GetFriendGamePlayed, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends002_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { - struct cppISteamFriends_SteamFriends002_GetFriendPersonaNameHistory_params params = + struct ISteamFriends_SteamFriends002_GetFriendPersonaNameHistory_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends002_GetFriendPersonaNameHistory( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_GetFriendPersonaNameHistory, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends002_AddFriend(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends002_AddFriend_params params = + struct ISteamFriends_SteamFriends002_AddFriend_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends002_AddFriend( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_AddFriend, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends002_RemoveFriend(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends002_RemoveFriend_params params = + struct ISteamFriends_SteamFriends002_RemoveFriend_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends002_RemoveFriend( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_RemoveFriend, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends002_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends002_HasFriend_params params = + struct ISteamFriends_SteamFriends002_HasFriend_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends002_HasFriend( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_HasFriend, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends002_AddFriendByName(struct w_steam_iface *_this, const char *pchEmailOrAccountName) { - struct cppISteamFriends_SteamFriends002_AddFriendByName_params params = + struct ISteamFriends_SteamFriends002_AddFriendByName_params params = { .linux_side = _this->u_iface, .pchEmailOrAccountName = pchEmailOrAccountName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends002_AddFriendByName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_AddFriendByName, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends002_InviteFriendByEmail(struct w_steam_iface *_this, const char *pchEmailAccount) { - struct cppISteamFriends_SteamFriends002_InviteFriendByEmail_params params = + struct ISteamFriends_SteamFriends002_InviteFriendByEmail_params params = { .linux_side = _this->u_iface, .pchEmailAccount = pchEmailAccount, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends002_InviteFriendByEmail( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_InviteFriendByEmail, ¶ms ); 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) { - struct cppISteamFriends_SteamFriends002_GetChatMessage_params params = + struct ISteamFriends_SteamFriends002_GetChatMessage_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, @@ -684,13 +680,13 @@ int32_t __thiscall winISteamFriends_SteamFriends002_GetChatMessage(struct w_stea .peChatEntryType = peChatEntryType, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends002_GetChatMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_GetChatMessage, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends002_SendMsgToFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, uint32_t eChatEntryType, const void *pvMsgBody, int32_t cubMsgBody) { - struct cppISteamFriends_SteamFriends002_SendMsgToFriend_params params = + struct ISteamFriends_SteamFriends002_SendMsgToFriend_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, @@ -699,122 +695,122 @@ bool __thiscall winISteamFriends_SteamFriends002_SendMsgToFriend(struct w_steam_ .cubMsgBody = cubMsgBody, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends002_SendMsgToFriend( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_SendMsgToFriend, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends002_GetChatIDOfChatHistoryStart(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends002_GetChatIDOfChatHistoryStart_params params = + struct ISteamFriends_SteamFriends002_GetChatIDOfChatHistoryStart_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends002_GetChatIDOfChatHistoryStart( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_GetChatIDOfChatHistoryStart, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends002_SetChatHistoryStart(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iChatID) { - struct cppISteamFriends_SteamFriends002_SetChatHistoryStart_params params = + struct ISteamFriends_SteamFriends002_SetChatHistoryStart_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iChatID = iChatID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends002_SetChatHistoryStart( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_SetChatHistoryStart, ¶ms ); } void __thiscall winISteamFriends_SteamFriends002_ClearChatHistory(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends002_ClearChatHistory_params params = + struct ISteamFriends_SteamFriends002_ClearChatHistory_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends002_ClearChatHistory( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_ClearChatHistory, ¶ms ); } int32_t __thiscall winISteamFriends_SteamFriends002_GetClanCount(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends002_GetClanCount_params params = + struct ISteamFriends_SteamFriends002_GetClanCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends002_GetClanCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_GetClanCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends002_GetClanByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iClan) { - struct cppISteamFriends_SteamFriends002_GetClanByIndex_params params = + struct ISteamFriends_SteamFriends002_GetClanByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iClan = iClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends002_GetClanByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_GetClanByIndex, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends002_GetClanName(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends002_GetClanName_params params = + struct ISteamFriends_SteamFriends002_GetClanName_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends002_GetClanName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_GetClanName, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends002_InviteFriendToClan(struct w_steam_iface *_this, CSteamID steamIDFriend, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends002_InviteFriendToClan_params params = + struct ISteamFriends_SteamFriends002_InviteFriendToClan_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends002_InviteFriendToClan( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_InviteFriendToClan, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends002_AcknowledgeInviteToClan(struct w_steam_iface *_this, CSteamID steamIDClan, bool bAcceptOrDenyClanInvite) { - struct cppISteamFriends_SteamFriends002_AcknowledgeInviteToClan_params params = + struct ISteamFriends_SteamFriends002_AcknowledgeInviteToClan_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, .bAcceptOrDenyClanInvite = bAcceptOrDenyClanInvite, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends002_AcknowledgeInviteToClan( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_AcknowledgeInviteToClan, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends002_GetFriendCountFromSource(struct w_steam_iface *_this, CSteamID steamIDSource) { - struct cppISteamFriends_SteamFriends002_GetFriendCountFromSource_params params = + struct ISteamFriends_SteamFriends002_GetFriendCountFromSource_params params = { .linux_side = _this->u_iface, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends002_GetFriendCountFromSource( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_GetFriendCountFromSource, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends002_GetFriendFromSourceByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) { - struct cppISteamFriends_SteamFriends002_GetFriendFromSourceByIndex_params params = + struct ISteamFriends_SteamFriends002_GetFriendFromSourceByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -822,7 +818,7 @@ CSteamID * __thiscall winISteamFriends_SteamFriends002_GetFriendFromSourceByInde .iFriend = iFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends002_GetFriendFromSourceByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_GetFriendFromSourceByIndex, ¶ms ); return params._ret; } @@ -874,8 +870,6 @@ struct w_steam_iface *create_winISteamFriends_SteamFriends002(void *u_iface) return r; } -#include "cppISteamFriends_SteamFriends003.h" - DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends003_GetPersonaName, 4) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends003_SetPersonaName, 8) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends003_GetPersonaState, 4) @@ -899,52 +893,52 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends003_ActivateGameOverlay, 8) const char * __thiscall winISteamFriends_SteamFriends003_GetPersonaName(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends003_GetPersonaName_params params = + struct ISteamFriends_SteamFriends003_GetPersonaName_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends003_GetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends003_GetPersonaName, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends003_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) { - struct cppISteamFriends_SteamFriends003_SetPersonaName_params params = + struct ISteamFriends_SteamFriends003_SetPersonaName_params params = { .linux_side = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends003_SetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends003_SetPersonaName, ¶ms ); } uint32_t __thiscall winISteamFriends_SteamFriends003_GetPersonaState(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends003_GetPersonaState_params params = + struct ISteamFriends_SteamFriends003_GetPersonaState_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends003_GetPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends003_GetPersonaState, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends003_GetFriendCount(struct w_steam_iface *_this, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends003_GetFriendCount_params params = + struct ISteamFriends_SteamFriends003_GetFriendCount_params params = { .linux_side = _this->u_iface, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends003_GetFriendCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends003_GetFriendCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends003_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends003_GetFriendByIndex_params params = + struct ISteamFriends_SteamFriends003_GetFriendByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -952,61 +946,61 @@ CSteamID * __thiscall winISteamFriends_SteamFriends003_GetFriendByIndex(struct w .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends003_GetFriendByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends003_GetFriendByIndex, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends003_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends003_GetFriendRelationship_params params = + struct ISteamFriends_SteamFriends003_GetFriendRelationship_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends003_GetFriendRelationship( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends003_GetFriendRelationship, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends003_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends003_GetFriendPersonaState_params params = + struct ISteamFriends_SteamFriends003_GetFriendPersonaState_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends003_GetFriendPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends003_GetFriendPersonaState, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends003_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends003_GetFriendPersonaName_params params = + struct ISteamFriends_SteamFriends003_GetFriendPersonaName_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends003_GetFriendPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends003_GetFriendPersonaName, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends003_GetFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends003_GetFriendAvatar_params params = + struct ISteamFriends_SteamFriends003_GetFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends003_GetFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends003_GetFriendAvatar, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends003_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, uint64_t *pulGameID, uint32_t *punGameIP, uint16_t *pusGamePort, uint16_t *pusQueryPort) { - struct cppISteamFriends_SteamFriends003_GetFriendGamePlayed_params params = + struct ISteamFriends_SteamFriends003_GetFriendGamePlayed_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, @@ -1016,87 +1010,87 @@ bool __thiscall winISteamFriends_SteamFriends003_GetFriendGamePlayed(struct w_st .pusQueryPort = pusQueryPort, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends003_GetFriendGamePlayed( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends003_GetFriendGamePlayed, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends003_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { - struct cppISteamFriends_SteamFriends003_GetFriendPersonaNameHistory_params params = + struct ISteamFriends_SteamFriends003_GetFriendPersonaNameHistory_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends003_GetFriendPersonaNameHistory( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends003_GetFriendPersonaNameHistory, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends003_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends003_HasFriend_params params = + struct ISteamFriends_SteamFriends003_HasFriend_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends003_HasFriend( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends003_HasFriend, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends003_GetClanCount(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends003_GetClanCount_params params = + struct ISteamFriends_SteamFriends003_GetClanCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends003_GetClanCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends003_GetClanCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends003_GetClanByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iClan) { - struct cppISteamFriends_SteamFriends003_GetClanByIndex_params params = + struct ISteamFriends_SteamFriends003_GetClanByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iClan = iClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends003_GetClanByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends003_GetClanByIndex, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends003_GetClanName(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends003_GetClanName_params params = + struct ISteamFriends_SteamFriends003_GetClanName_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends003_GetClanName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends003_GetClanName, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends003_GetFriendCountFromSource(struct w_steam_iface *_this, CSteamID steamIDSource) { - struct cppISteamFriends_SteamFriends003_GetFriendCountFromSource_params params = + struct ISteamFriends_SteamFriends003_GetFriendCountFromSource_params params = { .linux_side = _this->u_iface, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends003_GetFriendCountFromSource( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends003_GetFriendCountFromSource, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends003_GetFriendFromSourceByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) { - struct cppISteamFriends_SteamFriends003_GetFriendFromSourceByIndex_params params = + struct ISteamFriends_SteamFriends003_GetFriendFromSourceByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -1104,44 +1098,44 @@ CSteamID * __thiscall winISteamFriends_SteamFriends003_GetFriendFromSourceByInde .iFriend = iFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends003_GetFriendFromSourceByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends003_GetFriendFromSourceByIndex, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends003_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { - struct cppISteamFriends_SteamFriends003_IsUserInSource_params params = + struct ISteamFriends_SteamFriends003_IsUserInSource_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends003_IsUserInSource( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends003_IsUserInSource, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends003_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, bool bSpeaking) { - struct cppISteamFriends_SteamFriends003_SetInGameVoiceSpeaking_params params = + struct ISteamFriends_SteamFriends003_SetInGameVoiceSpeaking_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .bSpeaking = bSpeaking, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends003_SetInGameVoiceSpeaking( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends003_SetInGameVoiceSpeaking, ¶ms ); } void __thiscall winISteamFriends_SteamFriends003_ActivateGameOverlay(struct w_steam_iface *_this, const char *pchDialog) { - struct cppISteamFriends_SteamFriends003_ActivateGameOverlay_params params = + struct ISteamFriends_SteamFriends003_ActivateGameOverlay_params params = { .linux_side = _this->u_iface, .pchDialog = pchDialog, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends003_ActivateGameOverlay( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends003_ActivateGameOverlay, ¶ms ); } extern vtable_ptr winISteamFriends_SteamFriends003_vtable; @@ -1182,8 +1176,6 @@ struct w_steam_iface *create_winISteamFriends_SteamFriends003(void *u_iface) return r; } -#include "cppISteamFriends_SteamFriends004.h" - DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends004_GetPersonaName, 4) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends004_SetPersonaName, 8) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends004_GetPersonaState, 4) @@ -1207,52 +1199,52 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends004_ActivateGameOverlay, 8) const char * __thiscall winISteamFriends_SteamFriends004_GetPersonaName(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends004_GetPersonaName_params params = + struct ISteamFriends_SteamFriends004_GetPersonaName_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends004_GetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends004_GetPersonaName, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends004_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) { - struct cppISteamFriends_SteamFriends004_SetPersonaName_params params = + struct ISteamFriends_SteamFriends004_SetPersonaName_params params = { .linux_side = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends004_SetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends004_SetPersonaName, ¶ms ); } uint32_t __thiscall winISteamFriends_SteamFriends004_GetPersonaState(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends004_GetPersonaState_params params = + struct ISteamFriends_SteamFriends004_GetPersonaState_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends004_GetPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends004_GetPersonaState, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends004_GetFriendCount(struct w_steam_iface *_this, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends004_GetFriendCount_params params = + struct ISteamFriends_SteamFriends004_GetFriendCount_params params = { .linux_side = _this->u_iface, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends004_GetFriendCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends004_GetFriendCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends004_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends004_GetFriendByIndex_params params = + struct ISteamFriends_SteamFriends004_GetFriendByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -1260,62 +1252,62 @@ CSteamID * __thiscall winISteamFriends_SteamFriends004_GetFriendByIndex(struct w .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends004_GetFriendByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends004_GetFriendByIndex, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends004_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends004_GetFriendRelationship_params params = + struct ISteamFriends_SteamFriends004_GetFriendRelationship_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends004_GetFriendRelationship( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends004_GetFriendRelationship, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends004_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends004_GetFriendPersonaState_params params = + struct ISteamFriends_SteamFriends004_GetFriendPersonaState_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends004_GetFriendPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends004_GetFriendPersonaState, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends004_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends004_GetFriendPersonaName_params params = + struct ISteamFriends_SteamFriends004_GetFriendPersonaName_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends004_GetFriendPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends004_GetFriendPersonaName, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends004_GetFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t eAvatarSize) { - struct cppISteamFriends_SteamFriends004_GetFriendAvatar_params params = + struct ISteamFriends_SteamFriends004_GetFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .eAvatarSize = eAvatarSize, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends004_GetFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends004_GetFriendAvatar, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends004_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, uint64_t *pulGameID, uint32_t *punGameIP, uint16_t *pusGamePort, uint16_t *pusQueryPort) { - struct cppISteamFriends_SteamFriends004_GetFriendGamePlayed_params params = + struct ISteamFriends_SteamFriends004_GetFriendGamePlayed_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, @@ -1325,87 +1317,87 @@ bool __thiscall winISteamFriends_SteamFriends004_GetFriendGamePlayed(struct w_st .pusQueryPort = pusQueryPort, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends004_GetFriendGamePlayed( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends004_GetFriendGamePlayed, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends004_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { - struct cppISteamFriends_SteamFriends004_GetFriendPersonaNameHistory_params params = + struct ISteamFriends_SteamFriends004_GetFriendPersonaNameHistory_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends004_GetFriendPersonaNameHistory( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends004_GetFriendPersonaNameHistory, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends004_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends004_HasFriend_params params = + struct ISteamFriends_SteamFriends004_HasFriend_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends004_HasFriend( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends004_HasFriend, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends004_GetClanCount(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends004_GetClanCount_params params = + struct ISteamFriends_SteamFriends004_GetClanCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends004_GetClanCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends004_GetClanCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends004_GetClanByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iClan) { - struct cppISteamFriends_SteamFriends004_GetClanByIndex_params params = + struct ISteamFriends_SteamFriends004_GetClanByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iClan = iClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends004_GetClanByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends004_GetClanByIndex, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends004_GetClanName(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends004_GetClanName_params params = + struct ISteamFriends_SteamFriends004_GetClanName_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends004_GetClanName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends004_GetClanName, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends004_GetFriendCountFromSource(struct w_steam_iface *_this, CSteamID steamIDSource) { - struct cppISteamFriends_SteamFriends004_GetFriendCountFromSource_params params = + struct ISteamFriends_SteamFriends004_GetFriendCountFromSource_params params = { .linux_side = _this->u_iface, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends004_GetFriendCountFromSource( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends004_GetFriendCountFromSource, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends004_GetFriendFromSourceByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) { - struct cppISteamFriends_SteamFriends004_GetFriendFromSourceByIndex_params params = + struct ISteamFriends_SteamFriends004_GetFriendFromSourceByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -1413,44 +1405,44 @@ CSteamID * __thiscall winISteamFriends_SteamFriends004_GetFriendFromSourceByInde .iFriend = iFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends004_GetFriendFromSourceByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends004_GetFriendFromSourceByIndex, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends004_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { - struct cppISteamFriends_SteamFriends004_IsUserInSource_params params = + struct ISteamFriends_SteamFriends004_IsUserInSource_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends004_IsUserInSource( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends004_IsUserInSource, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends004_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, bool bSpeaking) { - struct cppISteamFriends_SteamFriends004_SetInGameVoiceSpeaking_params params = + struct ISteamFriends_SteamFriends004_SetInGameVoiceSpeaking_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .bSpeaking = bSpeaking, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends004_SetInGameVoiceSpeaking( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends004_SetInGameVoiceSpeaking, ¶ms ); } void __thiscall winISteamFriends_SteamFriends004_ActivateGameOverlay(struct w_steam_iface *_this, const char *pchDialog) { - struct cppISteamFriends_SteamFriends004_ActivateGameOverlay_params params = + struct ISteamFriends_SteamFriends004_ActivateGameOverlay_params params = { .linux_side = _this->u_iface, .pchDialog = pchDialog, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends004_ActivateGameOverlay( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends004_ActivateGameOverlay, ¶ms ); } extern vtable_ptr winISteamFriends_SteamFriends004_vtable; @@ -1491,8 +1483,6 @@ struct w_steam_iface *create_winISteamFriends_SteamFriends004(void *u_iface) return r; } -#include "cppISteamFriends_SteamFriends005.h" - DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends005_GetPersonaName, 4) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends005_SetPersonaName, 8) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends005_GetPersonaState, 4) @@ -1520,52 +1510,52 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends005_SetPlayedWith, 12) const char * __thiscall winISteamFriends_SteamFriends005_GetPersonaName(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends005_GetPersonaName_params params = + struct ISteamFriends_SteamFriends005_GetPersonaName_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends005_GetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_GetPersonaName, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends005_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) { - struct cppISteamFriends_SteamFriends005_SetPersonaName_params params = + struct ISteamFriends_SteamFriends005_SetPersonaName_params params = { .linux_side = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends005_SetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_SetPersonaName, ¶ms ); } uint32_t __thiscall winISteamFriends_SteamFriends005_GetPersonaState(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends005_GetPersonaState_params params = + struct ISteamFriends_SteamFriends005_GetPersonaState_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends005_GetPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_GetPersonaState, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends005_GetFriendCount(struct w_steam_iface *_this, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends005_GetFriendCount_params params = + struct ISteamFriends_SteamFriends005_GetFriendCount_params params = { .linux_side = _this->u_iface, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends005_GetFriendCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_GetFriendCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends005_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends005_GetFriendByIndex_params params = + struct ISteamFriends_SteamFriends005_GetFriendByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -1573,149 +1563,149 @@ CSteamID * __thiscall winISteamFriends_SteamFriends005_GetFriendByIndex(struct w .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends005_GetFriendByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_GetFriendByIndex, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends005_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends005_GetFriendRelationship_params params = + struct ISteamFriends_SteamFriends005_GetFriendRelationship_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends005_GetFriendRelationship( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_GetFriendRelationship, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends005_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends005_GetFriendPersonaState_params params = + struct ISteamFriends_SteamFriends005_GetFriendPersonaState_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends005_GetFriendPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_GetFriendPersonaState, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends005_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends005_GetFriendPersonaName_params params = + struct ISteamFriends_SteamFriends005_GetFriendPersonaName_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends005_GetFriendPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_GetFriendPersonaName, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends005_GetFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t eAvatarSize) { - struct cppISteamFriends_SteamFriends005_GetFriendAvatar_params params = + struct ISteamFriends_SteamFriends005_GetFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .eAvatarSize = eAvatarSize, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends005_GetFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_GetFriendAvatar, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends005_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { - struct cppISteamFriends_SteamFriends005_GetFriendGamePlayed_params params = + struct ISteamFriends_SteamFriends005_GetFriendGamePlayed_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pFriendGameInfo = pFriendGameInfo, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends005_GetFriendGamePlayed( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_GetFriendGamePlayed, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends005_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { - struct cppISteamFriends_SteamFriends005_GetFriendPersonaNameHistory_params params = + struct ISteamFriends_SteamFriends005_GetFriendPersonaNameHistory_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends005_GetFriendPersonaNameHistory( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_GetFriendPersonaNameHistory, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends005_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends005_HasFriend_params params = + struct ISteamFriends_SteamFriends005_HasFriend_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends005_HasFriend( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_HasFriend, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends005_GetClanCount(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends005_GetClanCount_params params = + struct ISteamFriends_SteamFriends005_GetClanCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends005_GetClanCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_GetClanCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends005_GetClanByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iClan) { - struct cppISteamFriends_SteamFriends005_GetClanByIndex_params params = + struct ISteamFriends_SteamFriends005_GetClanByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iClan = iClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends005_GetClanByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_GetClanByIndex, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends005_GetClanName(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends005_GetClanName_params params = + struct ISteamFriends_SteamFriends005_GetClanName_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends005_GetClanName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_GetClanName, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends005_GetFriendCountFromSource(struct w_steam_iface *_this, CSteamID steamIDSource) { - struct cppISteamFriends_SteamFriends005_GetFriendCountFromSource_params params = + struct ISteamFriends_SteamFriends005_GetFriendCountFromSource_params params = { .linux_side = _this->u_iface, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends005_GetFriendCountFromSource( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_GetFriendCountFromSource, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends005_GetFriendFromSourceByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) { - struct cppISteamFriends_SteamFriends005_GetFriendFromSourceByIndex_params params = + struct ISteamFriends_SteamFriends005_GetFriendFromSourceByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -1723,89 +1713,89 @@ CSteamID * __thiscall winISteamFriends_SteamFriends005_GetFriendFromSourceByInde .iFriend = iFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends005_GetFriendFromSourceByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_GetFriendFromSourceByIndex, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends005_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { - struct cppISteamFriends_SteamFriends005_IsUserInSource_params params = + struct ISteamFriends_SteamFriends005_IsUserInSource_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends005_IsUserInSource( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_IsUserInSource, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends005_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, bool bSpeaking) { - struct cppISteamFriends_SteamFriends005_SetInGameVoiceSpeaking_params params = + struct ISteamFriends_SteamFriends005_SetInGameVoiceSpeaking_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .bSpeaking = bSpeaking, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends005_SetInGameVoiceSpeaking( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_SetInGameVoiceSpeaking, ¶ms ); } void __thiscall winISteamFriends_SteamFriends005_ActivateGameOverlay(struct w_steam_iface *_this, const char *pchDialog) { - struct cppISteamFriends_SteamFriends005_ActivateGameOverlay_params params = + struct ISteamFriends_SteamFriends005_ActivateGameOverlay_params params = { .linux_side = _this->u_iface, .pchDialog = pchDialog, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends005_ActivateGameOverlay( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_ActivateGameOverlay, ¶ms ); } void __thiscall winISteamFriends_SteamFriends005_ActivateGameOverlayToUser(struct w_steam_iface *_this, const char *pchDialog, CSteamID steamID) { - struct cppISteamFriends_SteamFriends005_ActivateGameOverlayToUser_params params = + struct ISteamFriends_SteamFriends005_ActivateGameOverlayToUser_params params = { .linux_side = _this->u_iface, .pchDialog = pchDialog, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends005_ActivateGameOverlayToUser( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_ActivateGameOverlayToUser, ¶ms ); } void __thiscall winISteamFriends_SteamFriends005_ActivateGameOverlayToWebPage(struct w_steam_iface *_this, const char *pchURL) { - struct cppISteamFriends_SteamFriends005_ActivateGameOverlayToWebPage_params params = + struct ISteamFriends_SteamFriends005_ActivateGameOverlayToWebPage_params params = { .linux_side = _this->u_iface, .pchURL = pchURL, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends005_ActivateGameOverlayToWebPage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_ActivateGameOverlayToWebPage, ¶ms ); } void __thiscall winISteamFriends_SteamFriends005_ActivateGameOverlayToStore(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamFriends_SteamFriends005_ActivateGameOverlayToStore_params params = + struct ISteamFriends_SteamFriends005_ActivateGameOverlayToStore_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends005_ActivateGameOverlayToStore( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_ActivateGameOverlayToStore, ¶ms ); } void __thiscall winISteamFriends_SteamFriends005_SetPlayedWith(struct w_steam_iface *_this, CSteamID steamIDUserPlayedWith) { - struct cppISteamFriends_SteamFriends005_SetPlayedWith_params params = + struct ISteamFriends_SteamFriends005_SetPlayedWith_params params = { .linux_side = _this->u_iface, .steamIDUserPlayedWith = steamIDUserPlayedWith, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends005_SetPlayedWith( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_SetPlayedWith, ¶ms ); } extern vtable_ptr winISteamFriends_SteamFriends005_vtable; @@ -1850,8 +1840,6 @@ struct w_steam_iface *create_winISteamFriends_SteamFriends005(void *u_iface) return r; } -#include "cppISteamFriends_SteamFriends006.h" - DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends006_GetPersonaName, 4) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends006_SetPersonaName, 8) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends006_GetPersonaState, 4) @@ -1881,52 +1869,52 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends006_ActivateGameOverlayInvi const char * __thiscall winISteamFriends_SteamFriends006_GetPersonaName(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends006_GetPersonaName_params params = + struct ISteamFriends_SteamFriends006_GetPersonaName_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends006_GetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_GetPersonaName, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends006_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) { - struct cppISteamFriends_SteamFriends006_SetPersonaName_params params = + struct ISteamFriends_SteamFriends006_SetPersonaName_params params = { .linux_side = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends006_SetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_SetPersonaName, ¶ms ); } uint32_t __thiscall winISteamFriends_SteamFriends006_GetPersonaState(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends006_GetPersonaState_params params = + struct ISteamFriends_SteamFriends006_GetPersonaState_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends006_GetPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_GetPersonaState, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends006_GetFriendCount(struct w_steam_iface *_this, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends006_GetFriendCount_params params = + struct ISteamFriends_SteamFriends006_GetFriendCount_params params = { .linux_side = _this->u_iface, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends006_GetFriendCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_GetFriendCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends006_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends006_GetFriendByIndex_params params = + struct ISteamFriends_SteamFriends006_GetFriendByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -1934,161 +1922,161 @@ CSteamID * __thiscall winISteamFriends_SteamFriends006_GetFriendByIndex(struct w .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends006_GetFriendByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_GetFriendByIndex, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends006_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends006_GetFriendRelationship_params params = + struct ISteamFriends_SteamFriends006_GetFriendRelationship_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends006_GetFriendRelationship( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_GetFriendRelationship, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends006_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends006_GetFriendPersonaState_params params = + struct ISteamFriends_SteamFriends006_GetFriendPersonaState_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends006_GetFriendPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_GetFriendPersonaState, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends006_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends006_GetFriendPersonaName_params params = + struct ISteamFriends_SteamFriends006_GetFriendPersonaName_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends006_GetFriendPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_GetFriendPersonaName, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends006_GetFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t eAvatarSize) { - struct cppISteamFriends_SteamFriends006_GetFriendAvatar_params params = + struct ISteamFriends_SteamFriends006_GetFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .eAvatarSize = eAvatarSize, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends006_GetFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_GetFriendAvatar, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends006_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { - struct cppISteamFriends_SteamFriends006_GetFriendGamePlayed_params params = + struct ISteamFriends_SteamFriends006_GetFriendGamePlayed_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pFriendGameInfo = pFriendGameInfo, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends006_GetFriendGamePlayed( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_GetFriendGamePlayed, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends006_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { - struct cppISteamFriends_SteamFriends006_GetFriendPersonaNameHistory_params params = + struct ISteamFriends_SteamFriends006_GetFriendPersonaNameHistory_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends006_GetFriendPersonaNameHistory( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_GetFriendPersonaNameHistory, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends006_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends006_HasFriend_params params = + struct ISteamFriends_SteamFriends006_HasFriend_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends006_HasFriend( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_HasFriend, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends006_GetClanCount(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends006_GetClanCount_params params = + struct ISteamFriends_SteamFriends006_GetClanCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends006_GetClanCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_GetClanCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends006_GetClanByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iClan) { - struct cppISteamFriends_SteamFriends006_GetClanByIndex_params params = + struct ISteamFriends_SteamFriends006_GetClanByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iClan = iClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends006_GetClanByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_GetClanByIndex, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends006_GetClanName(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends006_GetClanName_params params = + struct ISteamFriends_SteamFriends006_GetClanName_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends006_GetClanName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_GetClanName, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends006_GetClanTag(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends006_GetClanTag_params params = + struct ISteamFriends_SteamFriends006_GetClanTag_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends006_GetClanTag( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_GetClanTag, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends006_GetFriendCountFromSource(struct w_steam_iface *_this, CSteamID steamIDSource) { - struct cppISteamFriends_SteamFriends006_GetFriendCountFromSource_params params = + struct ISteamFriends_SteamFriends006_GetFriendCountFromSource_params params = { .linux_side = _this->u_iface, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends006_GetFriendCountFromSource( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_GetFriendCountFromSource, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends006_GetFriendFromSourceByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) { - struct cppISteamFriends_SteamFriends006_GetFriendFromSourceByIndex_params params = + struct ISteamFriends_SteamFriends006_GetFriendFromSourceByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -2096,100 +2084,100 @@ CSteamID * __thiscall winISteamFriends_SteamFriends006_GetFriendFromSourceByInde .iFriend = iFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends006_GetFriendFromSourceByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_GetFriendFromSourceByIndex, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends006_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { - struct cppISteamFriends_SteamFriends006_IsUserInSource_params params = + struct ISteamFriends_SteamFriends006_IsUserInSource_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends006_IsUserInSource( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_IsUserInSource, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends006_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, bool bSpeaking) { - struct cppISteamFriends_SteamFriends006_SetInGameVoiceSpeaking_params params = + struct ISteamFriends_SteamFriends006_SetInGameVoiceSpeaking_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .bSpeaking = bSpeaking, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends006_SetInGameVoiceSpeaking( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_SetInGameVoiceSpeaking, ¶ms ); } void __thiscall winISteamFriends_SteamFriends006_ActivateGameOverlay(struct w_steam_iface *_this, const char *pchDialog) { - struct cppISteamFriends_SteamFriends006_ActivateGameOverlay_params params = + struct ISteamFriends_SteamFriends006_ActivateGameOverlay_params params = { .linux_side = _this->u_iface, .pchDialog = pchDialog, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends006_ActivateGameOverlay( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_ActivateGameOverlay, ¶ms ); } void __thiscall winISteamFriends_SteamFriends006_ActivateGameOverlayToUser(struct w_steam_iface *_this, const char *pchDialog, CSteamID steamID) { - struct cppISteamFriends_SteamFriends006_ActivateGameOverlayToUser_params params = + struct ISteamFriends_SteamFriends006_ActivateGameOverlayToUser_params params = { .linux_side = _this->u_iface, .pchDialog = pchDialog, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends006_ActivateGameOverlayToUser( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_ActivateGameOverlayToUser, ¶ms ); } void __thiscall winISteamFriends_SteamFriends006_ActivateGameOverlayToWebPage(struct w_steam_iface *_this, const char *pchURL) { - struct cppISteamFriends_SteamFriends006_ActivateGameOverlayToWebPage_params params = + struct ISteamFriends_SteamFriends006_ActivateGameOverlayToWebPage_params params = { .linux_side = _this->u_iface, .pchURL = pchURL, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends006_ActivateGameOverlayToWebPage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_ActivateGameOverlayToWebPage, ¶ms ); } void __thiscall winISteamFriends_SteamFriends006_ActivateGameOverlayToStore(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamFriends_SteamFriends006_ActivateGameOverlayToStore_params params = + struct ISteamFriends_SteamFriends006_ActivateGameOverlayToStore_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends006_ActivateGameOverlayToStore( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_ActivateGameOverlayToStore, ¶ms ); } void __thiscall winISteamFriends_SteamFriends006_SetPlayedWith(struct w_steam_iface *_this, CSteamID steamIDUserPlayedWith) { - struct cppISteamFriends_SteamFriends006_SetPlayedWith_params params = + struct ISteamFriends_SteamFriends006_SetPlayedWith_params params = { .linux_side = _this->u_iface, .steamIDUserPlayedWith = steamIDUserPlayedWith, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends006_SetPlayedWith( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_SetPlayedWith, ¶ms ); } void __thiscall winISteamFriends_SteamFriends006_ActivateGameOverlayInviteDialog(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamFriends_SteamFriends006_ActivateGameOverlayInviteDialog_params params = + struct ISteamFriends_SteamFriends006_ActivateGameOverlayInviteDialog_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends006_ActivateGameOverlayInviteDialog( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_ActivateGameOverlayInviteDialog, ¶ms ); } extern vtable_ptr winISteamFriends_SteamFriends006_vtable; @@ -2236,8 +2224,6 @@ struct w_steam_iface *create_winISteamFriends_SteamFriends006(void *u_iface) return r; } -#include "cppISteamFriends_SteamFriends007.h" - DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends007_GetPersonaName, 4) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends007_SetPersonaName, 8) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends007_GetPersonaState, 4) @@ -2269,52 +2255,52 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends007_GetLargeFriendAvatar, 1 const char * __thiscall winISteamFriends_SteamFriends007_GetPersonaName(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends007_GetPersonaName_params params = + struct ISteamFriends_SteamFriends007_GetPersonaName_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends007_GetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_GetPersonaName, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends007_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) { - struct cppISteamFriends_SteamFriends007_SetPersonaName_params params = + struct ISteamFriends_SteamFriends007_SetPersonaName_params params = { .linux_side = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends007_SetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_SetPersonaName, ¶ms ); } uint32_t __thiscall winISteamFriends_SteamFriends007_GetPersonaState(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends007_GetPersonaState_params params = + struct ISteamFriends_SteamFriends007_GetPersonaState_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends007_GetPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_GetPersonaState, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends007_GetFriendCount(struct w_steam_iface *_this, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends007_GetFriendCount_params params = + struct ISteamFriends_SteamFriends007_GetFriendCount_params params = { .linux_side = _this->u_iface, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends007_GetFriendCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_GetFriendCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends007_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends007_GetFriendByIndex_params params = + struct ISteamFriends_SteamFriends007_GetFriendByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -2322,148 +2308,148 @@ CSteamID * __thiscall winISteamFriends_SteamFriends007_GetFriendByIndex(struct w .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends007_GetFriendByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_GetFriendByIndex, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends007_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends007_GetFriendRelationship_params params = + struct ISteamFriends_SteamFriends007_GetFriendRelationship_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends007_GetFriendRelationship( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_GetFriendRelationship, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends007_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends007_GetFriendPersonaState_params params = + struct ISteamFriends_SteamFriends007_GetFriendPersonaState_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends007_GetFriendPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_GetFriendPersonaState, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends007_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends007_GetFriendPersonaName_params params = + struct ISteamFriends_SteamFriends007_GetFriendPersonaName_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends007_GetFriendPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_GetFriendPersonaName, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends007_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { - struct cppISteamFriends_SteamFriends007_GetFriendGamePlayed_params params = + struct ISteamFriends_SteamFriends007_GetFriendGamePlayed_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pFriendGameInfo = pFriendGameInfo, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends007_GetFriendGamePlayed( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_GetFriendGamePlayed, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends007_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { - struct cppISteamFriends_SteamFriends007_GetFriendPersonaNameHistory_params params = + struct ISteamFriends_SteamFriends007_GetFriendPersonaNameHistory_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends007_GetFriendPersonaNameHistory( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_GetFriendPersonaNameHistory, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends007_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends007_HasFriend_params params = + struct ISteamFriends_SteamFriends007_HasFriend_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends007_HasFriend( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_HasFriend, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends007_GetClanCount(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends007_GetClanCount_params params = + struct ISteamFriends_SteamFriends007_GetClanCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends007_GetClanCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_GetClanCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends007_GetClanByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iClan) { - struct cppISteamFriends_SteamFriends007_GetClanByIndex_params params = + struct ISteamFriends_SteamFriends007_GetClanByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iClan = iClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends007_GetClanByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_GetClanByIndex, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends007_GetClanName(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends007_GetClanName_params params = + struct ISteamFriends_SteamFriends007_GetClanName_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends007_GetClanName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_GetClanName, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends007_GetClanTag(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends007_GetClanTag_params params = + struct ISteamFriends_SteamFriends007_GetClanTag_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends007_GetClanTag( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_GetClanTag, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends007_GetFriendCountFromSource(struct w_steam_iface *_this, CSteamID steamIDSource) { - struct cppISteamFriends_SteamFriends007_GetFriendCountFromSource_params params = + struct ISteamFriends_SteamFriends007_GetFriendCountFromSource_params params = { .linux_side = _this->u_iface, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends007_GetFriendCountFromSource( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_GetFriendCountFromSource, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends007_GetFriendFromSourceByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) { - struct cppISteamFriends_SteamFriends007_GetFriendFromSourceByIndex_params params = + struct ISteamFriends_SteamFriends007_GetFriendFromSourceByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -2471,135 +2457,135 @@ CSteamID * __thiscall winISteamFriends_SteamFriends007_GetFriendFromSourceByInde .iFriend = iFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends007_GetFriendFromSourceByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_GetFriendFromSourceByIndex, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends007_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { - struct cppISteamFriends_SteamFriends007_IsUserInSource_params params = + struct ISteamFriends_SteamFriends007_IsUserInSource_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends007_IsUserInSource( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_IsUserInSource, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends007_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, bool bSpeaking) { - struct cppISteamFriends_SteamFriends007_SetInGameVoiceSpeaking_params params = + struct ISteamFriends_SteamFriends007_SetInGameVoiceSpeaking_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .bSpeaking = bSpeaking, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends007_SetInGameVoiceSpeaking( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_SetInGameVoiceSpeaking, ¶ms ); } void __thiscall winISteamFriends_SteamFriends007_ActivateGameOverlay(struct w_steam_iface *_this, const char *pchDialog) { - struct cppISteamFriends_SteamFriends007_ActivateGameOverlay_params params = + struct ISteamFriends_SteamFriends007_ActivateGameOverlay_params params = { .linux_side = _this->u_iface, .pchDialog = pchDialog, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends007_ActivateGameOverlay( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_ActivateGameOverlay, ¶ms ); } void __thiscall winISteamFriends_SteamFriends007_ActivateGameOverlayToUser(struct w_steam_iface *_this, const char *pchDialog, CSteamID steamID) { - struct cppISteamFriends_SteamFriends007_ActivateGameOverlayToUser_params params = + struct ISteamFriends_SteamFriends007_ActivateGameOverlayToUser_params params = { .linux_side = _this->u_iface, .pchDialog = pchDialog, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends007_ActivateGameOverlayToUser( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_ActivateGameOverlayToUser, ¶ms ); } void __thiscall winISteamFriends_SteamFriends007_ActivateGameOverlayToWebPage(struct w_steam_iface *_this, const char *pchURL) { - struct cppISteamFriends_SteamFriends007_ActivateGameOverlayToWebPage_params params = + struct ISteamFriends_SteamFriends007_ActivateGameOverlayToWebPage_params params = { .linux_side = _this->u_iface, .pchURL = pchURL, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends007_ActivateGameOverlayToWebPage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_ActivateGameOverlayToWebPage, ¶ms ); } void __thiscall winISteamFriends_SteamFriends007_ActivateGameOverlayToStore(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamFriends_SteamFriends007_ActivateGameOverlayToStore_params params = + struct ISteamFriends_SteamFriends007_ActivateGameOverlayToStore_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends007_ActivateGameOverlayToStore( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_ActivateGameOverlayToStore, ¶ms ); } void __thiscall winISteamFriends_SteamFriends007_SetPlayedWith(struct w_steam_iface *_this, CSteamID steamIDUserPlayedWith) { - struct cppISteamFriends_SteamFriends007_SetPlayedWith_params params = + struct ISteamFriends_SteamFriends007_SetPlayedWith_params params = { .linux_side = _this->u_iface, .steamIDUserPlayedWith = steamIDUserPlayedWith, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends007_SetPlayedWith( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_SetPlayedWith, ¶ms ); } void __thiscall winISteamFriends_SteamFriends007_ActivateGameOverlayInviteDialog(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamFriends_SteamFriends007_ActivateGameOverlayInviteDialog_params params = + struct ISteamFriends_SteamFriends007_ActivateGameOverlayInviteDialog_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends007_ActivateGameOverlayInviteDialog( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_ActivateGameOverlayInviteDialog, ¶ms ); } int32_t __thiscall winISteamFriends_SteamFriends007_GetSmallFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends007_GetSmallFriendAvatar_params params = + struct ISteamFriends_SteamFriends007_GetSmallFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends007_GetSmallFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_GetSmallFriendAvatar, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends007_GetMediumFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends007_GetMediumFriendAvatar_params params = + struct ISteamFriends_SteamFriends007_GetMediumFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends007_GetMediumFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_GetMediumFriendAvatar, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends007_GetLargeFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends007_GetLargeFriendAvatar_params params = + struct ISteamFriends_SteamFriends007_GetLargeFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends007_GetLargeFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_GetLargeFriendAvatar, ¶ms ); return params._ret; } @@ -2649,8 +2635,6 @@ struct w_steam_iface *create_winISteamFriends_SteamFriends007(void *u_iface) return r; } -#include "cppISteamFriends_SteamFriends008.h" - DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends008_GetPersonaName, 4) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends008_SetPersonaName, 8) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends008_GetPersonaState, 4) @@ -2688,52 +2672,52 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends008_GetUserRestrictions, 4) const char * __thiscall winISteamFriends_SteamFriends008_GetPersonaName(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends008_GetPersonaName_params params = + struct ISteamFriends_SteamFriends008_GetPersonaName_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_GetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_GetPersonaName, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends008_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) { - struct cppISteamFriends_SteamFriends008_SetPersonaName_params params = + struct ISteamFriends_SteamFriends008_SetPersonaName_params params = { .linux_side = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_SetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_SetPersonaName, ¶ms ); } uint32_t __thiscall winISteamFriends_SteamFriends008_GetPersonaState(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends008_GetPersonaState_params params = + struct ISteamFriends_SteamFriends008_GetPersonaState_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_GetPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_GetPersonaState, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends008_GetFriendCount(struct w_steam_iface *_this, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends008_GetFriendCount_params params = + struct ISteamFriends_SteamFriends008_GetFriendCount_params params = { .linux_side = _this->u_iface, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_GetFriendCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_GetFriendCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends008_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends008_GetFriendByIndex_params params = + struct ISteamFriends_SteamFriends008_GetFriendByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -2741,148 +2725,148 @@ CSteamID * __thiscall winISteamFriends_SteamFriends008_GetFriendByIndex(struct w .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_GetFriendByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_GetFriendByIndex, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends008_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends008_GetFriendRelationship_params params = + struct ISteamFriends_SteamFriends008_GetFriendRelationship_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_GetFriendRelationship( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_GetFriendRelationship, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends008_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends008_GetFriendPersonaState_params params = + struct ISteamFriends_SteamFriends008_GetFriendPersonaState_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_GetFriendPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_GetFriendPersonaState, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends008_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends008_GetFriendPersonaName_params params = + struct ISteamFriends_SteamFriends008_GetFriendPersonaName_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_GetFriendPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_GetFriendPersonaName, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends008_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { - struct cppISteamFriends_SteamFriends008_GetFriendGamePlayed_params params = + struct ISteamFriends_SteamFriends008_GetFriendGamePlayed_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pFriendGameInfo = pFriendGameInfo, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_GetFriendGamePlayed( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_GetFriendGamePlayed, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends008_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { - struct cppISteamFriends_SteamFriends008_GetFriendPersonaNameHistory_params params = + struct ISteamFriends_SteamFriends008_GetFriendPersonaNameHistory_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_GetFriendPersonaNameHistory( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_GetFriendPersonaNameHistory, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends008_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends008_HasFriend_params params = + struct ISteamFriends_SteamFriends008_HasFriend_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_HasFriend( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_HasFriend, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends008_GetClanCount(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends008_GetClanCount_params params = + struct ISteamFriends_SteamFriends008_GetClanCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_GetClanCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_GetClanCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends008_GetClanByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iClan) { - struct cppISteamFriends_SteamFriends008_GetClanByIndex_params params = + struct ISteamFriends_SteamFriends008_GetClanByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iClan = iClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_GetClanByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_GetClanByIndex, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends008_GetClanName(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends008_GetClanName_params params = + struct ISteamFriends_SteamFriends008_GetClanName_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_GetClanName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_GetClanName, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends008_GetClanTag(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends008_GetClanTag_params params = + struct ISteamFriends_SteamFriends008_GetClanTag_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_GetClanTag( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_GetClanTag, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends008_GetFriendCountFromSource(struct w_steam_iface *_this, CSteamID steamIDSource) { - struct cppISteamFriends_SteamFriends008_GetFriendCountFromSource_params params = + struct ISteamFriends_SteamFriends008_GetFriendCountFromSource_params params = { .linux_side = _this->u_iface, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_GetFriendCountFromSource( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_GetFriendCountFromSource, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends008_GetFriendFromSourceByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) { - struct cppISteamFriends_SteamFriends008_GetFriendFromSourceByIndex_params params = + struct ISteamFriends_SteamFriends008_GetFriendFromSourceByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -2890,191 +2874,191 @@ CSteamID * __thiscall winISteamFriends_SteamFriends008_GetFriendFromSourceByInde .iFriend = iFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_GetFriendFromSourceByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_GetFriendFromSourceByIndex, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends008_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { - struct cppISteamFriends_SteamFriends008_IsUserInSource_params params = + struct ISteamFriends_SteamFriends008_IsUserInSource_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_IsUserInSource( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_IsUserInSource, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends008_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, bool bSpeaking) { - struct cppISteamFriends_SteamFriends008_SetInGameVoiceSpeaking_params params = + struct ISteamFriends_SteamFriends008_SetInGameVoiceSpeaking_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .bSpeaking = bSpeaking, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_SetInGameVoiceSpeaking( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_SetInGameVoiceSpeaking, ¶ms ); } void __thiscall winISteamFriends_SteamFriends008_ActivateGameOverlay(struct w_steam_iface *_this, const char *pchDialog) { - struct cppISteamFriends_SteamFriends008_ActivateGameOverlay_params params = + struct ISteamFriends_SteamFriends008_ActivateGameOverlay_params params = { .linux_side = _this->u_iface, .pchDialog = pchDialog, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_ActivateGameOverlay( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_ActivateGameOverlay, ¶ms ); } void __thiscall winISteamFriends_SteamFriends008_ActivateGameOverlayToUser(struct w_steam_iface *_this, const char *pchDialog, CSteamID steamID) { - struct cppISteamFriends_SteamFriends008_ActivateGameOverlayToUser_params params = + struct ISteamFriends_SteamFriends008_ActivateGameOverlayToUser_params params = { .linux_side = _this->u_iface, .pchDialog = pchDialog, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_ActivateGameOverlayToUser( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_ActivateGameOverlayToUser, ¶ms ); } void __thiscall winISteamFriends_SteamFriends008_ActivateGameOverlayToWebPage(struct w_steam_iface *_this, const char *pchURL) { - struct cppISteamFriends_SteamFriends008_ActivateGameOverlayToWebPage_params params = + struct ISteamFriends_SteamFriends008_ActivateGameOverlayToWebPage_params params = { .linux_side = _this->u_iface, .pchURL = pchURL, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_ActivateGameOverlayToWebPage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_ActivateGameOverlayToWebPage, ¶ms ); } void __thiscall winISteamFriends_SteamFriends008_ActivateGameOverlayToStore(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamFriends_SteamFriends008_ActivateGameOverlayToStore_params params = + struct ISteamFriends_SteamFriends008_ActivateGameOverlayToStore_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_ActivateGameOverlayToStore( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_ActivateGameOverlayToStore, ¶ms ); } void __thiscall winISteamFriends_SteamFriends008_SetPlayedWith(struct w_steam_iface *_this, CSteamID steamIDUserPlayedWith) { - struct cppISteamFriends_SteamFriends008_SetPlayedWith_params params = + struct ISteamFriends_SteamFriends008_SetPlayedWith_params params = { .linux_side = _this->u_iface, .steamIDUserPlayedWith = steamIDUserPlayedWith, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_SetPlayedWith( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_SetPlayedWith, ¶ms ); } void __thiscall winISteamFriends_SteamFriends008_ActivateGameOverlayInviteDialog(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamFriends_SteamFriends008_ActivateGameOverlayInviteDialog_params params = + struct ISteamFriends_SteamFriends008_ActivateGameOverlayInviteDialog_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_ActivateGameOverlayInviteDialog( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_ActivateGameOverlayInviteDialog, ¶ms ); } int32_t __thiscall winISteamFriends_SteamFriends008_GetSmallFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends008_GetSmallFriendAvatar_params params = + struct ISteamFriends_SteamFriends008_GetSmallFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_GetSmallFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_GetSmallFriendAvatar, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends008_GetMediumFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends008_GetMediumFriendAvatar_params params = + struct ISteamFriends_SteamFriends008_GetMediumFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_GetMediumFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_GetMediumFriendAvatar, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends008_GetLargeFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends008_GetLargeFriendAvatar_params params = + struct ISteamFriends_SteamFriends008_GetLargeFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_GetLargeFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_GetLargeFriendAvatar, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends008_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, bool bRequireNameOnly) { - struct cppISteamFriends_SteamFriends008_RequestUserInformation_params params = + struct ISteamFriends_SteamFriends008_RequestUserInformation_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .bRequireNameOnly = bRequireNameOnly, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_RequestUserInformation( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_RequestUserInformation, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends008_RequestClanOfficerList(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends008_RequestClanOfficerList_params params = + struct ISteamFriends_SteamFriends008_RequestClanOfficerList_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_RequestClanOfficerList( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_RequestClanOfficerList, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends008_GetClanOwner(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends008_GetClanOwner_params params = + struct ISteamFriends_SteamFriends008_GetClanOwner_params params = { .linux_side = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_GetClanOwner( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_GetClanOwner, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends008_GetClanOfficerCount(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends008_GetClanOfficerCount_params params = + struct ISteamFriends_SteamFriends008_GetClanOfficerCount_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_GetClanOfficerCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_GetClanOfficerCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends008_GetClanOfficerByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iOfficer) { - struct cppISteamFriends_SteamFriends008_GetClanOfficerByIndex_params params = + struct ISteamFriends_SteamFriends008_GetClanOfficerByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -3082,18 +3066,18 @@ CSteamID * __thiscall winISteamFriends_SteamFriends008_GetClanOfficerByIndex(str .iOfficer = iOfficer, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_GetClanOfficerByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_GetClanOfficerByIndex, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends008_GetUserRestrictions(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends008_GetUserRestrictions_params params = + struct ISteamFriends_SteamFriends008_GetUserRestrictions_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends008_GetUserRestrictions( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_GetUserRestrictions, ¶ms ); return params._ret; } @@ -3149,8 +3133,6 @@ struct w_steam_iface *create_winISteamFriends_SteamFriends008(void *u_iface) return r; } -#include "cppISteamFriends_SteamFriends009.h" - DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends009_GetPersonaName, 4) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends009_SetPersonaName, 8) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends009_GetPersonaState, 4) @@ -3198,52 +3180,52 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends009_GetFriendCoplayGame, 12 const char * __thiscall winISteamFriends_SteamFriends009_GetPersonaName(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends009_GetPersonaName_params params = + struct ISteamFriends_SteamFriends009_GetPersonaName_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_GetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetPersonaName, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends009_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) { - struct cppISteamFriends_SteamFriends009_SetPersonaName_params params = + struct ISteamFriends_SteamFriends009_SetPersonaName_params params = { .linux_side = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_SetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_SetPersonaName, ¶ms ); } uint32_t __thiscall winISteamFriends_SteamFriends009_GetPersonaState(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends009_GetPersonaState_params params = + struct ISteamFriends_SteamFriends009_GetPersonaState_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_GetPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetPersonaState, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends009_GetFriendCount(struct w_steam_iface *_this, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends009_GetFriendCount_params params = + struct ISteamFriends_SteamFriends009_GetFriendCount_params params = { .linux_side = _this->u_iface, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_GetFriendCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetFriendCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends009_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends009_GetFriendByIndex_params params = + struct ISteamFriends_SteamFriends009_GetFriendByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -3251,148 +3233,148 @@ CSteamID * __thiscall winISteamFriends_SteamFriends009_GetFriendByIndex(struct w .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_GetFriendByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetFriendByIndex, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends009_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends009_GetFriendRelationship_params params = + struct ISteamFriends_SteamFriends009_GetFriendRelationship_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_GetFriendRelationship( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetFriendRelationship, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends009_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends009_GetFriendPersonaState_params params = + struct ISteamFriends_SteamFriends009_GetFriendPersonaState_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_GetFriendPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetFriendPersonaState, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends009_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends009_GetFriendPersonaName_params params = + struct ISteamFriends_SteamFriends009_GetFriendPersonaName_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_GetFriendPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetFriendPersonaName, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends009_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { - struct cppISteamFriends_SteamFriends009_GetFriendGamePlayed_params params = + struct ISteamFriends_SteamFriends009_GetFriendGamePlayed_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pFriendGameInfo = pFriendGameInfo, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_GetFriendGamePlayed( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetFriendGamePlayed, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends009_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { - struct cppISteamFriends_SteamFriends009_GetFriendPersonaNameHistory_params params = + struct ISteamFriends_SteamFriends009_GetFriendPersonaNameHistory_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_GetFriendPersonaNameHistory( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetFriendPersonaNameHistory, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends009_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends009_HasFriend_params params = + struct ISteamFriends_SteamFriends009_HasFriend_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_HasFriend( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_HasFriend, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends009_GetClanCount(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends009_GetClanCount_params params = + struct ISteamFriends_SteamFriends009_GetClanCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_GetClanCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetClanCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends009_GetClanByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iClan) { - struct cppISteamFriends_SteamFriends009_GetClanByIndex_params params = + struct ISteamFriends_SteamFriends009_GetClanByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iClan = iClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_GetClanByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetClanByIndex, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends009_GetClanName(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends009_GetClanName_params params = + struct ISteamFriends_SteamFriends009_GetClanName_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_GetClanName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetClanName, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends009_GetClanTag(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends009_GetClanTag_params params = + struct ISteamFriends_SteamFriends009_GetClanTag_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_GetClanTag( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetClanTag, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends009_GetFriendCountFromSource(struct w_steam_iface *_this, CSteamID steamIDSource) { - struct cppISteamFriends_SteamFriends009_GetFriendCountFromSource_params params = + struct ISteamFriends_SteamFriends009_GetFriendCountFromSource_params params = { .linux_side = _this->u_iface, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_GetFriendCountFromSource( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetFriendCountFromSource, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends009_GetFriendFromSourceByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) { - struct cppISteamFriends_SteamFriends009_GetFriendFromSourceByIndex_params params = + struct ISteamFriends_SteamFriends009_GetFriendFromSourceByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -3400,191 +3382,191 @@ CSteamID * __thiscall winISteamFriends_SteamFriends009_GetFriendFromSourceByInde .iFriend = iFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_GetFriendFromSourceByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetFriendFromSourceByIndex, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends009_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { - struct cppISteamFriends_SteamFriends009_IsUserInSource_params params = + struct ISteamFriends_SteamFriends009_IsUserInSource_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_IsUserInSource( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_IsUserInSource, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends009_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, bool bSpeaking) { - struct cppISteamFriends_SteamFriends009_SetInGameVoiceSpeaking_params params = + struct ISteamFriends_SteamFriends009_SetInGameVoiceSpeaking_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .bSpeaking = bSpeaking, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_SetInGameVoiceSpeaking( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_SetInGameVoiceSpeaking, ¶ms ); } void __thiscall winISteamFriends_SteamFriends009_ActivateGameOverlay(struct w_steam_iface *_this, const char *pchDialog) { - struct cppISteamFriends_SteamFriends009_ActivateGameOverlay_params params = + struct ISteamFriends_SteamFriends009_ActivateGameOverlay_params params = { .linux_side = _this->u_iface, .pchDialog = pchDialog, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_ActivateGameOverlay( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_ActivateGameOverlay, ¶ms ); } void __thiscall winISteamFriends_SteamFriends009_ActivateGameOverlayToUser(struct w_steam_iface *_this, const char *pchDialog, CSteamID steamID) { - struct cppISteamFriends_SteamFriends009_ActivateGameOverlayToUser_params params = + struct ISteamFriends_SteamFriends009_ActivateGameOverlayToUser_params params = { .linux_side = _this->u_iface, .pchDialog = pchDialog, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_ActivateGameOverlayToUser( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_ActivateGameOverlayToUser, ¶ms ); } void __thiscall winISteamFriends_SteamFriends009_ActivateGameOverlayToWebPage(struct w_steam_iface *_this, const char *pchURL) { - struct cppISteamFriends_SteamFriends009_ActivateGameOverlayToWebPage_params params = + struct ISteamFriends_SteamFriends009_ActivateGameOverlayToWebPage_params params = { .linux_side = _this->u_iface, .pchURL = pchURL, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_ActivateGameOverlayToWebPage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_ActivateGameOverlayToWebPage, ¶ms ); } void __thiscall winISteamFriends_SteamFriends009_ActivateGameOverlayToStore(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamFriends_SteamFriends009_ActivateGameOverlayToStore_params params = + struct ISteamFriends_SteamFriends009_ActivateGameOverlayToStore_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_ActivateGameOverlayToStore( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_ActivateGameOverlayToStore, ¶ms ); } void __thiscall winISteamFriends_SteamFriends009_SetPlayedWith(struct w_steam_iface *_this, CSteamID steamIDUserPlayedWith) { - struct cppISteamFriends_SteamFriends009_SetPlayedWith_params params = + struct ISteamFriends_SteamFriends009_SetPlayedWith_params params = { .linux_side = _this->u_iface, .steamIDUserPlayedWith = steamIDUserPlayedWith, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_SetPlayedWith( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_SetPlayedWith, ¶ms ); } void __thiscall winISteamFriends_SteamFriends009_ActivateGameOverlayInviteDialog(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamFriends_SteamFriends009_ActivateGameOverlayInviteDialog_params params = + struct ISteamFriends_SteamFriends009_ActivateGameOverlayInviteDialog_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_ActivateGameOverlayInviteDialog( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_ActivateGameOverlayInviteDialog, ¶ms ); } int32_t __thiscall winISteamFriends_SteamFriends009_GetSmallFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends009_GetSmallFriendAvatar_params params = + struct ISteamFriends_SteamFriends009_GetSmallFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_GetSmallFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetSmallFriendAvatar, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends009_GetMediumFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends009_GetMediumFriendAvatar_params params = + struct ISteamFriends_SteamFriends009_GetMediumFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_GetMediumFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetMediumFriendAvatar, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends009_GetLargeFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends009_GetLargeFriendAvatar_params params = + struct ISteamFriends_SteamFriends009_GetLargeFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_GetLargeFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetLargeFriendAvatar, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends009_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, bool bRequireNameOnly) { - struct cppISteamFriends_SteamFriends009_RequestUserInformation_params params = + struct ISteamFriends_SteamFriends009_RequestUserInformation_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .bRequireNameOnly = bRequireNameOnly, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_RequestUserInformation( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_RequestUserInformation, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends009_RequestClanOfficerList(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends009_RequestClanOfficerList_params params = + struct ISteamFriends_SteamFriends009_RequestClanOfficerList_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_RequestClanOfficerList( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_RequestClanOfficerList, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends009_GetClanOwner(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends009_GetClanOwner_params params = + struct ISteamFriends_SteamFriends009_GetClanOwner_params params = { .linux_side = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_GetClanOwner( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetClanOwner, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends009_GetClanOfficerCount(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends009_GetClanOfficerCount_params params = + struct ISteamFriends_SteamFriends009_GetClanOfficerCount_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_GetClanOfficerCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetClanOfficerCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends009_GetClanOfficerByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iOfficer) { - struct cppISteamFriends_SteamFriends009_GetClanOfficerByIndex_params params = + struct ISteamFriends_SteamFriends009_GetClanOfficerByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -3592,140 +3574,140 @@ CSteamID * __thiscall winISteamFriends_SteamFriends009_GetClanOfficerByIndex(str .iOfficer = iOfficer, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_GetClanOfficerByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetClanOfficerByIndex, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends009_GetUserRestrictions(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends009_GetUserRestrictions_params params = + struct ISteamFriends_SteamFriends009_GetUserRestrictions_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_GetUserRestrictions( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetUserRestrictions, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends009_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) { - struct cppISteamFriends_SteamFriends009_SetRichPresence_params params = + struct ISteamFriends_SteamFriends009_SetRichPresence_params params = { .linux_side = _this->u_iface, .pchKey = pchKey, .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_SetRichPresence( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_SetRichPresence, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends009_ClearRichPresence(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends009_ClearRichPresence_params params = + struct ISteamFriends_SteamFriends009_ClearRichPresence_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_ClearRichPresence( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_ClearRichPresence, ¶ms ); } const char * __thiscall winISteamFriends_SteamFriends009_GetFriendRichPresence(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchKey) { - struct cppISteamFriends_SteamFriends009_GetFriendRichPresence_params params = + struct ISteamFriends_SteamFriends009_GetFriendRichPresence_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_GetFriendRichPresence( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetFriendRichPresence, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends009_GetFriendRichPresenceKeyCount(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends009_GetFriendRichPresenceKeyCount_params params = + struct ISteamFriends_SteamFriends009_GetFriendRichPresenceKeyCount_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_GetFriendRichPresenceKeyCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetFriendRichPresenceKeyCount, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends009_GetFriendRichPresenceKeyByIndex(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iKey) { - struct cppISteamFriends_SteamFriends009_GetFriendRichPresenceKeyByIndex_params params = + struct ISteamFriends_SteamFriends009_GetFriendRichPresenceKeyByIndex_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iKey = iKey, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_GetFriendRichPresenceKeyByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetFriendRichPresenceKeyByIndex, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends009_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) { - struct cppISteamFriends_SteamFriends009_InviteUserToGame_params params = + struct ISteamFriends_SteamFriends009_InviteUserToGame_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pchConnectString = pchConnectString, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_InviteUserToGame( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_InviteUserToGame, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends009_GetCoplayFriendCount(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends009_GetCoplayFriendCount_params params = + struct ISteamFriends_SteamFriends009_GetCoplayFriendCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_GetCoplayFriendCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetCoplayFriendCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends009_GetCoplayFriend(struct w_steam_iface *_this, CSteamID *_ret, int32_t iCoplayFriend) { - struct cppISteamFriends_SteamFriends009_GetCoplayFriend_params params = + struct ISteamFriends_SteamFriends009_GetCoplayFriend_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iCoplayFriend = iCoplayFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_GetCoplayFriend( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetCoplayFriend, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends009_GetFriendCoplayTime(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends009_GetFriendCoplayTime_params params = + struct ISteamFriends_SteamFriends009_GetFriendCoplayTime_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_GetFriendCoplayTime( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetFriendCoplayTime, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends009_GetFriendCoplayGame(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends009_GetFriendCoplayGame_params params = + struct ISteamFriends_SteamFriends009_GetFriendCoplayGame_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends009_GetFriendCoplayGame( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetFriendCoplayGame, ¶ms ); return params._ret; } @@ -3791,8 +3773,6 @@ struct w_steam_iface *create_winISteamFriends_SteamFriends009(void *u_iface) return r; } -#include "cppISteamFriends_SteamFriends010.h" - DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends010_GetPersonaName, 4) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends010_SetPersonaName, 8) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends010_GetPersonaState, 4) @@ -3855,52 +3835,52 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends010_GetFriendMessage, 28) const char * __thiscall winISteamFriends_SteamFriends010_GetPersonaName(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends010_GetPersonaName_params params = + struct ISteamFriends_SteamFriends010_GetPersonaName_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetPersonaName, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends010_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) { - struct cppISteamFriends_SteamFriends010_SetPersonaName_params params = + struct ISteamFriends_SteamFriends010_SetPersonaName_params params = { .linux_side = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_SetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_SetPersonaName, ¶ms ); } uint32_t __thiscall winISteamFriends_SteamFriends010_GetPersonaState(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends010_GetPersonaState_params params = + struct ISteamFriends_SteamFriends010_GetPersonaState_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetPersonaState, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends010_GetFriendCount(struct w_steam_iface *_this, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends010_GetFriendCount_params params = + struct ISteamFriends_SteamFriends010_GetFriendCount_params params = { .linux_side = _this->u_iface, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetFriendCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetFriendCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends010_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends010_GetFriendByIndex_params params = + struct ISteamFriends_SteamFriends010_GetFriendByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -3908,136 +3888,136 @@ CSteamID * __thiscall winISteamFriends_SteamFriends010_GetFriendByIndex(struct w .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetFriendByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetFriendByIndex, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends010_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends010_GetFriendRelationship_params params = + struct ISteamFriends_SteamFriends010_GetFriendRelationship_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetFriendRelationship( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetFriendRelationship, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends010_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends010_GetFriendPersonaState_params params = + struct ISteamFriends_SteamFriends010_GetFriendPersonaState_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetFriendPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetFriendPersonaState, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends010_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends010_GetFriendPersonaName_params params = + struct ISteamFriends_SteamFriends010_GetFriendPersonaName_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetFriendPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetFriendPersonaName, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends010_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { - struct cppISteamFriends_SteamFriends010_GetFriendGamePlayed_params params = + struct ISteamFriends_SteamFriends010_GetFriendGamePlayed_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pFriendGameInfo = pFriendGameInfo, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetFriendGamePlayed( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetFriendGamePlayed, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends010_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { - struct cppISteamFriends_SteamFriends010_GetFriendPersonaNameHistory_params params = + struct ISteamFriends_SteamFriends010_GetFriendPersonaNameHistory_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetFriendPersonaNameHistory( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetFriendPersonaNameHistory, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends010_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends010_HasFriend_params params = + struct ISteamFriends_SteamFriends010_HasFriend_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_HasFriend( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_HasFriend, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends010_GetClanCount(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends010_GetClanCount_params params = + struct ISteamFriends_SteamFriends010_GetClanCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetClanCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetClanCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends010_GetClanByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iClan) { - struct cppISteamFriends_SteamFriends010_GetClanByIndex_params params = + struct ISteamFriends_SteamFriends010_GetClanByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iClan = iClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetClanByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetClanByIndex, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends010_GetClanName(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends010_GetClanName_params params = + struct ISteamFriends_SteamFriends010_GetClanName_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetClanName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetClanName, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends010_GetClanTag(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends010_GetClanTag_params params = + struct ISteamFriends_SteamFriends010_GetClanTag_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetClanTag( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetClanTag, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends010_GetClanActivityCounts(struct w_steam_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) { - struct cppISteamFriends_SteamFriends010_GetClanActivityCounts_params params = + struct ISteamFriends_SteamFriends010_GetClanActivityCounts_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, @@ -4046,38 +4026,38 @@ bool __thiscall winISteamFriends_SteamFriends010_GetClanActivityCounts(struct w_ .pnChatting = pnChatting, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetClanActivityCounts( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetClanActivityCounts, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends010_DownloadClanActivityCounts(struct w_steam_iface *_this, CSteamID *psteamIDClans, int32_t cClansToRequest) { - struct cppISteamFriends_SteamFriends010_DownloadClanActivityCounts_params params = + struct ISteamFriends_SteamFriends010_DownloadClanActivityCounts_params params = { .linux_side = _this->u_iface, .psteamIDClans = psteamIDClans, .cClansToRequest = cClansToRequest, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_DownloadClanActivityCounts( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_DownloadClanActivityCounts, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends010_GetFriendCountFromSource(struct w_steam_iface *_this, CSteamID steamIDSource) { - struct cppISteamFriends_SteamFriends010_GetFriendCountFromSource_params params = + struct ISteamFriends_SteamFriends010_GetFriendCountFromSource_params params = { .linux_side = _this->u_iface, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetFriendCountFromSource( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetFriendCountFromSource, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends010_GetFriendFromSourceByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) { - struct cppISteamFriends_SteamFriends010_GetFriendFromSourceByIndex_params params = + struct ISteamFriends_SteamFriends010_GetFriendFromSourceByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -4085,191 +4065,191 @@ CSteamID * __thiscall winISteamFriends_SteamFriends010_GetFriendFromSourceByInde .iFriend = iFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetFriendFromSourceByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetFriendFromSourceByIndex, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends010_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { - struct cppISteamFriends_SteamFriends010_IsUserInSource_params params = + struct ISteamFriends_SteamFriends010_IsUserInSource_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_IsUserInSource( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_IsUserInSource, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends010_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, bool bSpeaking) { - struct cppISteamFriends_SteamFriends010_SetInGameVoiceSpeaking_params params = + struct ISteamFriends_SteamFriends010_SetInGameVoiceSpeaking_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .bSpeaking = bSpeaking, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_SetInGameVoiceSpeaking( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_SetInGameVoiceSpeaking, ¶ms ); } void __thiscall winISteamFriends_SteamFriends010_ActivateGameOverlay(struct w_steam_iface *_this, const char *pchDialog) { - struct cppISteamFriends_SteamFriends010_ActivateGameOverlay_params params = + struct ISteamFriends_SteamFriends010_ActivateGameOverlay_params params = { .linux_side = _this->u_iface, .pchDialog = pchDialog, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_ActivateGameOverlay( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_ActivateGameOverlay, ¶ms ); } void __thiscall winISteamFriends_SteamFriends010_ActivateGameOverlayToUser(struct w_steam_iface *_this, const char *pchDialog, CSteamID steamID) { - struct cppISteamFriends_SteamFriends010_ActivateGameOverlayToUser_params params = + struct ISteamFriends_SteamFriends010_ActivateGameOverlayToUser_params params = { .linux_side = _this->u_iface, .pchDialog = pchDialog, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_ActivateGameOverlayToUser( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_ActivateGameOverlayToUser, ¶ms ); } void __thiscall winISteamFriends_SteamFriends010_ActivateGameOverlayToWebPage(struct w_steam_iface *_this, const char *pchURL) { - struct cppISteamFriends_SteamFriends010_ActivateGameOverlayToWebPage_params params = + struct ISteamFriends_SteamFriends010_ActivateGameOverlayToWebPage_params params = { .linux_side = _this->u_iface, .pchURL = pchURL, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_ActivateGameOverlayToWebPage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_ActivateGameOverlayToWebPage, ¶ms ); } void __thiscall winISteamFriends_SteamFriends010_ActivateGameOverlayToStore(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamFriends_SteamFriends010_ActivateGameOverlayToStore_params params = + struct ISteamFriends_SteamFriends010_ActivateGameOverlayToStore_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_ActivateGameOverlayToStore( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_ActivateGameOverlayToStore, ¶ms ); } void __thiscall winISteamFriends_SteamFriends010_SetPlayedWith(struct w_steam_iface *_this, CSteamID steamIDUserPlayedWith) { - struct cppISteamFriends_SteamFriends010_SetPlayedWith_params params = + struct ISteamFriends_SteamFriends010_SetPlayedWith_params params = { .linux_side = _this->u_iface, .steamIDUserPlayedWith = steamIDUserPlayedWith, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_SetPlayedWith( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_SetPlayedWith, ¶ms ); } void __thiscall winISteamFriends_SteamFriends010_ActivateGameOverlayInviteDialog(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamFriends_SteamFriends010_ActivateGameOverlayInviteDialog_params params = + struct ISteamFriends_SteamFriends010_ActivateGameOverlayInviteDialog_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_ActivateGameOverlayInviteDialog( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_ActivateGameOverlayInviteDialog, ¶ms ); } int32_t __thiscall winISteamFriends_SteamFriends010_GetSmallFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends010_GetSmallFriendAvatar_params params = + struct ISteamFriends_SteamFriends010_GetSmallFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetSmallFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetSmallFriendAvatar, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends010_GetMediumFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends010_GetMediumFriendAvatar_params params = + struct ISteamFriends_SteamFriends010_GetMediumFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetMediumFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetMediumFriendAvatar, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends010_GetLargeFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends010_GetLargeFriendAvatar_params params = + struct ISteamFriends_SteamFriends010_GetLargeFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetLargeFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetLargeFriendAvatar, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends010_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, bool bRequireNameOnly) { - struct cppISteamFriends_SteamFriends010_RequestUserInformation_params params = + struct ISteamFriends_SteamFriends010_RequestUserInformation_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .bRequireNameOnly = bRequireNameOnly, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_RequestUserInformation( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_RequestUserInformation, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends010_RequestClanOfficerList(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends010_RequestClanOfficerList_params params = + struct ISteamFriends_SteamFriends010_RequestClanOfficerList_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_RequestClanOfficerList( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_RequestClanOfficerList, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends010_GetClanOwner(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends010_GetClanOwner_params params = + struct ISteamFriends_SteamFriends010_GetClanOwner_params params = { .linux_side = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetClanOwner( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetClanOwner, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends010_GetClanOfficerCount(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends010_GetClanOfficerCount_params params = + struct ISteamFriends_SteamFriends010_GetClanOfficerCount_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetClanOfficerCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetClanOfficerCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends010_GetClanOfficerByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iOfficer) { - struct cppISteamFriends_SteamFriends010_GetClanOfficerByIndex_params params = + struct ISteamFriends_SteamFriends010_GetClanOfficerByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -4277,182 +4257,182 @@ CSteamID * __thiscall winISteamFriends_SteamFriends010_GetClanOfficerByIndex(str .iOfficer = iOfficer, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetClanOfficerByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetClanOfficerByIndex, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends010_GetUserRestrictions(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends010_GetUserRestrictions_params params = + struct ISteamFriends_SteamFriends010_GetUserRestrictions_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetUserRestrictions( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetUserRestrictions, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends010_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) { - struct cppISteamFriends_SteamFriends010_SetRichPresence_params params = + struct ISteamFriends_SteamFriends010_SetRichPresence_params params = { .linux_side = _this->u_iface, .pchKey = pchKey, .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_SetRichPresence( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_SetRichPresence, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends010_ClearRichPresence(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends010_ClearRichPresence_params params = + struct ISteamFriends_SteamFriends010_ClearRichPresence_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_ClearRichPresence( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_ClearRichPresence, ¶ms ); } const char * __thiscall winISteamFriends_SteamFriends010_GetFriendRichPresence(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchKey) { - struct cppISteamFriends_SteamFriends010_GetFriendRichPresence_params params = + struct ISteamFriends_SteamFriends010_GetFriendRichPresence_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetFriendRichPresence( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetFriendRichPresence, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends010_GetFriendRichPresenceKeyCount(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends010_GetFriendRichPresenceKeyCount_params params = + struct ISteamFriends_SteamFriends010_GetFriendRichPresenceKeyCount_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetFriendRichPresenceKeyCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetFriendRichPresenceKeyCount, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends010_GetFriendRichPresenceKeyByIndex(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iKey) { - struct cppISteamFriends_SteamFriends010_GetFriendRichPresenceKeyByIndex_params params = + struct ISteamFriends_SteamFriends010_GetFriendRichPresenceKeyByIndex_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iKey = iKey, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetFriendRichPresenceKeyByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetFriendRichPresenceKeyByIndex, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends010_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) { - struct cppISteamFriends_SteamFriends010_InviteUserToGame_params params = + struct ISteamFriends_SteamFriends010_InviteUserToGame_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pchConnectString = pchConnectString, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_InviteUserToGame( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_InviteUserToGame, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends010_GetCoplayFriendCount(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends010_GetCoplayFriendCount_params params = + struct ISteamFriends_SteamFriends010_GetCoplayFriendCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetCoplayFriendCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetCoplayFriendCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends010_GetCoplayFriend(struct w_steam_iface *_this, CSteamID *_ret, int32_t iCoplayFriend) { - struct cppISteamFriends_SteamFriends010_GetCoplayFriend_params params = + struct ISteamFriends_SteamFriends010_GetCoplayFriend_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iCoplayFriend = iCoplayFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetCoplayFriend( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetCoplayFriend, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends010_GetFriendCoplayTime(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends010_GetFriendCoplayTime_params params = + struct ISteamFriends_SteamFriends010_GetFriendCoplayTime_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetFriendCoplayTime( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetFriendCoplayTime, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends010_GetFriendCoplayGame(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends010_GetFriendCoplayGame_params params = + struct ISteamFriends_SteamFriends010_GetFriendCoplayGame_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetFriendCoplayGame( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetFriendCoplayGame, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends010_JoinClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends010_JoinClanChatRoom_params params = + struct ISteamFriends_SteamFriends010_JoinClanChatRoom_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_JoinClanChatRoom( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_JoinClanChatRoom, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends010_LeaveClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends010_LeaveClanChatRoom_params params = + struct ISteamFriends_SteamFriends010_LeaveClanChatRoom_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_LeaveClanChatRoom( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_LeaveClanChatRoom, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends010_GetClanChatMemberCount(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends010_GetClanChatMemberCount_params params = + struct ISteamFriends_SteamFriends010_GetClanChatMemberCount_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetClanChatMemberCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetClanChatMemberCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends010_GetChatMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iUser) { - struct cppISteamFriends_SteamFriends010_GetChatMemberByIndex_params params = + struct ISteamFriends_SteamFriends010_GetChatMemberByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -4460,26 +4440,26 @@ CSteamID * __thiscall winISteamFriends_SteamFriends010_GetChatMemberByIndex(stru .iUser = iUser, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetChatMemberByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetChatMemberByIndex, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends010_SendClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, const char *pchText) { - struct cppISteamFriends_SteamFriends010_SendClanChatMessage_params params = + struct ISteamFriends_SteamFriends010_SendClanChatMessage_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, .pchText = pchText, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_SendClanChatMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_SendClanChatMessage, ¶ms ); 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) { - struct cppISteamFriends_SteamFriends010_GetClanChatMessage_params params = + struct ISteamFriends_SteamFriends010_GetClanChatMessage_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, @@ -4490,87 +4470,87 @@ int32_t __thiscall winISteamFriends_SteamFriends010_GetClanChatMessage(struct w_ ._f = _f, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetClanChatMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetClanChatMessage, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends010_IsClanChatAdmin(struct w_steam_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) { - struct cppISteamFriends_SteamFriends010_IsClanChatAdmin_params params = + struct ISteamFriends_SteamFriends010_IsClanChatAdmin_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_IsClanChatAdmin( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_IsClanChatAdmin, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends010_IsClanChatWindowOpenInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { - struct cppISteamFriends_SteamFriends010_IsClanChatWindowOpenInSteam_params params = + struct ISteamFriends_SteamFriends010_IsClanChatWindowOpenInSteam_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_IsClanChatWindowOpenInSteam( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_IsClanChatWindowOpenInSteam, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends010_OpenClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { - struct cppISteamFriends_SteamFriends010_OpenClanChatWindowInSteam_params params = + struct ISteamFriends_SteamFriends010_OpenClanChatWindowInSteam_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_OpenClanChatWindowInSteam( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_OpenClanChatWindowInSteam, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends010_CloseClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { - struct cppISteamFriends_SteamFriends010_CloseClanChatWindowInSteam_params params = + struct ISteamFriends_SteamFriends010_CloseClanChatWindowInSteam_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_CloseClanChatWindowInSteam( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_CloseClanChatWindowInSteam, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends010_SetListenForFriendsMessages(struct w_steam_iface *_this, bool bInterceptEnabled) { - struct cppISteamFriends_SteamFriends010_SetListenForFriendsMessages_params params = + struct ISteamFriends_SteamFriends010_SetListenForFriendsMessages_params params = { .linux_side = _this->u_iface, .bInterceptEnabled = bInterceptEnabled, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_SetListenForFriendsMessages( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_SetListenForFriendsMessages, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends010_ReplyToFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) { - struct cppISteamFriends_SteamFriends010_ReplyToFriendMessage_params params = + struct ISteamFriends_SteamFriends010_ReplyToFriendMessage_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pchMsgToSend = pchMsgToSend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_ReplyToFriendMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_ReplyToFriendMessage, ¶ms ); 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) { - struct cppISteamFriends_SteamFriends010_GetFriendMessage_params params = + struct ISteamFriends_SteamFriends010_GetFriendMessage_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, @@ -4580,7 +4560,7 @@ int32_t __thiscall winISteamFriends_SteamFriends010_GetFriendMessage(struct w_st .peChatEntryType = peChatEntryType, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends010_GetFriendMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetFriendMessage, ¶ms ); return params._ret; } @@ -4661,8 +4641,6 @@ struct w_steam_iface *create_winISteamFriends_SteamFriends010(void *u_iface) return r; } -#include "cppISteamFriends_SteamFriends011.h" - DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends011_GetPersonaName, 4) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends011_SetPersonaName, 8) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends011_GetPersonaState, 4) @@ -4729,52 +4707,52 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends011_EnumerateFollowingList, const char * __thiscall winISteamFriends_SteamFriends011_GetPersonaName(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends011_GetPersonaName_params params = + struct ISteamFriends_SteamFriends011_GetPersonaName_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetPersonaName, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends011_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) { - struct cppISteamFriends_SteamFriends011_SetPersonaName_params params = + struct ISteamFriends_SteamFriends011_SetPersonaName_params params = { .linux_side = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_SetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_SetPersonaName, ¶ms ); } uint32_t __thiscall winISteamFriends_SteamFriends011_GetPersonaState(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends011_GetPersonaState_params params = + struct ISteamFriends_SteamFriends011_GetPersonaState_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetPersonaState, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends011_GetFriendCount(struct w_steam_iface *_this, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends011_GetFriendCount_params params = + struct ISteamFriends_SteamFriends011_GetFriendCount_params params = { .linux_side = _this->u_iface, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetFriendCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetFriendCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends011_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends011_GetFriendByIndex_params params = + struct ISteamFriends_SteamFriends011_GetFriendByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -4782,136 +4760,136 @@ CSteamID * __thiscall winISteamFriends_SteamFriends011_GetFriendByIndex(struct w .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetFriendByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetFriendByIndex, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends011_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends011_GetFriendRelationship_params params = + struct ISteamFriends_SteamFriends011_GetFriendRelationship_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetFriendRelationship( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetFriendRelationship, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends011_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends011_GetFriendPersonaState_params params = + struct ISteamFriends_SteamFriends011_GetFriendPersonaState_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetFriendPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetFriendPersonaState, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends011_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends011_GetFriendPersonaName_params params = + struct ISteamFriends_SteamFriends011_GetFriendPersonaName_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetFriendPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetFriendPersonaName, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends011_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { - struct cppISteamFriends_SteamFriends011_GetFriendGamePlayed_params params = + struct ISteamFriends_SteamFriends011_GetFriendGamePlayed_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pFriendGameInfo = pFriendGameInfo, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetFriendGamePlayed( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetFriendGamePlayed, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends011_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { - struct cppISteamFriends_SteamFriends011_GetFriendPersonaNameHistory_params params = + struct ISteamFriends_SteamFriends011_GetFriendPersonaNameHistory_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetFriendPersonaNameHistory( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetFriendPersonaNameHistory, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends011_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends011_HasFriend_params params = + struct ISteamFriends_SteamFriends011_HasFriend_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_HasFriend( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_HasFriend, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends011_GetClanCount(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends011_GetClanCount_params params = + struct ISteamFriends_SteamFriends011_GetClanCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetClanCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetClanCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends011_GetClanByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iClan) { - struct cppISteamFriends_SteamFriends011_GetClanByIndex_params params = + struct ISteamFriends_SteamFriends011_GetClanByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iClan = iClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetClanByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetClanByIndex, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends011_GetClanName(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends011_GetClanName_params params = + struct ISteamFriends_SteamFriends011_GetClanName_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetClanName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetClanName, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends011_GetClanTag(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends011_GetClanTag_params params = + struct ISteamFriends_SteamFriends011_GetClanTag_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetClanTag( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetClanTag, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends011_GetClanActivityCounts(struct w_steam_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) { - struct cppISteamFriends_SteamFriends011_GetClanActivityCounts_params params = + struct ISteamFriends_SteamFriends011_GetClanActivityCounts_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, @@ -4920,38 +4898,38 @@ bool __thiscall winISteamFriends_SteamFriends011_GetClanActivityCounts(struct w_ .pnChatting = pnChatting, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetClanActivityCounts( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetClanActivityCounts, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends011_DownloadClanActivityCounts(struct w_steam_iface *_this, CSteamID *psteamIDClans, int32_t cClansToRequest) { - struct cppISteamFriends_SteamFriends011_DownloadClanActivityCounts_params params = + struct ISteamFriends_SteamFriends011_DownloadClanActivityCounts_params params = { .linux_side = _this->u_iface, .psteamIDClans = psteamIDClans, .cClansToRequest = cClansToRequest, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_DownloadClanActivityCounts( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_DownloadClanActivityCounts, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends011_GetFriendCountFromSource(struct w_steam_iface *_this, CSteamID steamIDSource) { - struct cppISteamFriends_SteamFriends011_GetFriendCountFromSource_params params = + struct ISteamFriends_SteamFriends011_GetFriendCountFromSource_params params = { .linux_side = _this->u_iface, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetFriendCountFromSource( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetFriendCountFromSource, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends011_GetFriendFromSourceByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) { - struct cppISteamFriends_SteamFriends011_GetFriendFromSourceByIndex_params params = + struct ISteamFriends_SteamFriends011_GetFriendFromSourceByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -4959,191 +4937,191 @@ CSteamID * __thiscall winISteamFriends_SteamFriends011_GetFriendFromSourceByInde .iFriend = iFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetFriendFromSourceByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetFriendFromSourceByIndex, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends011_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { - struct cppISteamFriends_SteamFriends011_IsUserInSource_params params = + struct ISteamFriends_SteamFriends011_IsUserInSource_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_IsUserInSource( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_IsUserInSource, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends011_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, bool bSpeaking) { - struct cppISteamFriends_SteamFriends011_SetInGameVoiceSpeaking_params params = + struct ISteamFriends_SteamFriends011_SetInGameVoiceSpeaking_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .bSpeaking = bSpeaking, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_SetInGameVoiceSpeaking( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_SetInGameVoiceSpeaking, ¶ms ); } void __thiscall winISteamFriends_SteamFriends011_ActivateGameOverlay(struct w_steam_iface *_this, const char *pchDialog) { - struct cppISteamFriends_SteamFriends011_ActivateGameOverlay_params params = + struct ISteamFriends_SteamFriends011_ActivateGameOverlay_params params = { .linux_side = _this->u_iface, .pchDialog = pchDialog, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_ActivateGameOverlay( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_ActivateGameOverlay, ¶ms ); } void __thiscall winISteamFriends_SteamFriends011_ActivateGameOverlayToUser(struct w_steam_iface *_this, const char *pchDialog, CSteamID steamID) { - struct cppISteamFriends_SteamFriends011_ActivateGameOverlayToUser_params params = + struct ISteamFriends_SteamFriends011_ActivateGameOverlayToUser_params params = { .linux_side = _this->u_iface, .pchDialog = pchDialog, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_ActivateGameOverlayToUser( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_ActivateGameOverlayToUser, ¶ms ); } void __thiscall winISteamFriends_SteamFriends011_ActivateGameOverlayToWebPage(struct w_steam_iface *_this, const char *pchURL) { - struct cppISteamFriends_SteamFriends011_ActivateGameOverlayToWebPage_params params = + struct ISteamFriends_SteamFriends011_ActivateGameOverlayToWebPage_params params = { .linux_side = _this->u_iface, .pchURL = pchURL, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_ActivateGameOverlayToWebPage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_ActivateGameOverlayToWebPage, ¶ms ); } void __thiscall winISteamFriends_SteamFriends011_ActivateGameOverlayToStore(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamFriends_SteamFriends011_ActivateGameOverlayToStore_params params = + struct ISteamFriends_SteamFriends011_ActivateGameOverlayToStore_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_ActivateGameOverlayToStore( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_ActivateGameOverlayToStore, ¶ms ); } void __thiscall winISteamFriends_SteamFriends011_SetPlayedWith(struct w_steam_iface *_this, CSteamID steamIDUserPlayedWith) { - struct cppISteamFriends_SteamFriends011_SetPlayedWith_params params = + struct ISteamFriends_SteamFriends011_SetPlayedWith_params params = { .linux_side = _this->u_iface, .steamIDUserPlayedWith = steamIDUserPlayedWith, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_SetPlayedWith( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_SetPlayedWith, ¶ms ); } void __thiscall winISteamFriends_SteamFriends011_ActivateGameOverlayInviteDialog(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamFriends_SteamFriends011_ActivateGameOverlayInviteDialog_params params = + struct ISteamFriends_SteamFriends011_ActivateGameOverlayInviteDialog_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_ActivateGameOverlayInviteDialog( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_ActivateGameOverlayInviteDialog, ¶ms ); } int32_t __thiscall winISteamFriends_SteamFriends011_GetSmallFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends011_GetSmallFriendAvatar_params params = + struct ISteamFriends_SteamFriends011_GetSmallFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetSmallFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetSmallFriendAvatar, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends011_GetMediumFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends011_GetMediumFriendAvatar_params params = + struct ISteamFriends_SteamFriends011_GetMediumFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetMediumFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetMediumFriendAvatar, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends011_GetLargeFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends011_GetLargeFriendAvatar_params params = + struct ISteamFriends_SteamFriends011_GetLargeFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetLargeFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetLargeFriendAvatar, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends011_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, bool bRequireNameOnly) { - struct cppISteamFriends_SteamFriends011_RequestUserInformation_params params = + struct ISteamFriends_SteamFriends011_RequestUserInformation_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .bRequireNameOnly = bRequireNameOnly, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_RequestUserInformation( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_RequestUserInformation, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends011_RequestClanOfficerList(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends011_RequestClanOfficerList_params params = + struct ISteamFriends_SteamFriends011_RequestClanOfficerList_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_RequestClanOfficerList( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_RequestClanOfficerList, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends011_GetClanOwner(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends011_GetClanOwner_params params = + struct ISteamFriends_SteamFriends011_GetClanOwner_params params = { .linux_side = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetClanOwner( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetClanOwner, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends011_GetClanOfficerCount(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends011_GetClanOfficerCount_params params = + struct ISteamFriends_SteamFriends011_GetClanOfficerCount_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetClanOfficerCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetClanOfficerCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends011_GetClanOfficerByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iOfficer) { - struct cppISteamFriends_SteamFriends011_GetClanOfficerByIndex_params params = + struct ISteamFriends_SteamFriends011_GetClanOfficerByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -5151,193 +5129,193 @@ CSteamID * __thiscall winISteamFriends_SteamFriends011_GetClanOfficerByIndex(str .iOfficer = iOfficer, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetClanOfficerByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetClanOfficerByIndex, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends011_GetUserRestrictions(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends011_GetUserRestrictions_params params = + struct ISteamFriends_SteamFriends011_GetUserRestrictions_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetUserRestrictions( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetUserRestrictions, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends011_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) { - struct cppISteamFriends_SteamFriends011_SetRichPresence_params params = + struct ISteamFriends_SteamFriends011_SetRichPresence_params params = { .linux_side = _this->u_iface, .pchKey = pchKey, .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_SetRichPresence( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_SetRichPresence, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends011_ClearRichPresence(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends011_ClearRichPresence_params params = + struct ISteamFriends_SteamFriends011_ClearRichPresence_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_ClearRichPresence( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_ClearRichPresence, ¶ms ); } const char * __thiscall winISteamFriends_SteamFriends011_GetFriendRichPresence(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchKey) { - struct cppISteamFriends_SteamFriends011_GetFriendRichPresence_params params = + struct ISteamFriends_SteamFriends011_GetFriendRichPresence_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetFriendRichPresence( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetFriendRichPresence, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends011_GetFriendRichPresenceKeyCount(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends011_GetFriendRichPresenceKeyCount_params params = + struct ISteamFriends_SteamFriends011_GetFriendRichPresenceKeyCount_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetFriendRichPresenceKeyCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetFriendRichPresenceKeyCount, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends011_GetFriendRichPresenceKeyByIndex(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iKey) { - struct cppISteamFriends_SteamFriends011_GetFriendRichPresenceKeyByIndex_params params = + struct ISteamFriends_SteamFriends011_GetFriendRichPresenceKeyByIndex_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iKey = iKey, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetFriendRichPresenceKeyByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetFriendRichPresenceKeyByIndex, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends011_RequestFriendRichPresence(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends011_RequestFriendRichPresence_params params = + struct ISteamFriends_SteamFriends011_RequestFriendRichPresence_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_RequestFriendRichPresence( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_RequestFriendRichPresence, ¶ms ); } bool __thiscall winISteamFriends_SteamFriends011_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) { - struct cppISteamFriends_SteamFriends011_InviteUserToGame_params params = + struct ISteamFriends_SteamFriends011_InviteUserToGame_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pchConnectString = pchConnectString, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_InviteUserToGame( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_InviteUserToGame, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends011_GetCoplayFriendCount(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends011_GetCoplayFriendCount_params params = + struct ISteamFriends_SteamFriends011_GetCoplayFriendCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetCoplayFriendCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetCoplayFriendCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends011_GetCoplayFriend(struct w_steam_iface *_this, CSteamID *_ret, int32_t iCoplayFriend) { - struct cppISteamFriends_SteamFriends011_GetCoplayFriend_params params = + struct ISteamFriends_SteamFriends011_GetCoplayFriend_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iCoplayFriend = iCoplayFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetCoplayFriend( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetCoplayFriend, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends011_GetFriendCoplayTime(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends011_GetFriendCoplayTime_params params = + struct ISteamFriends_SteamFriends011_GetFriendCoplayTime_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetFriendCoplayTime( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetFriendCoplayTime, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends011_GetFriendCoplayGame(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends011_GetFriendCoplayGame_params params = + struct ISteamFriends_SteamFriends011_GetFriendCoplayGame_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetFriendCoplayGame( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetFriendCoplayGame, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends011_JoinClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends011_JoinClanChatRoom_params params = + struct ISteamFriends_SteamFriends011_JoinClanChatRoom_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_JoinClanChatRoom( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_JoinClanChatRoom, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends011_LeaveClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends011_LeaveClanChatRoom_params params = + struct ISteamFriends_SteamFriends011_LeaveClanChatRoom_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_LeaveClanChatRoom( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_LeaveClanChatRoom, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends011_GetClanChatMemberCount(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends011_GetClanChatMemberCount_params params = + struct ISteamFriends_SteamFriends011_GetClanChatMemberCount_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetClanChatMemberCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetClanChatMemberCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends011_GetChatMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iUser) { - struct cppISteamFriends_SteamFriends011_GetChatMemberByIndex_params params = + struct ISteamFriends_SteamFriends011_GetChatMemberByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -5345,26 +5323,26 @@ CSteamID * __thiscall winISteamFriends_SteamFriends011_GetChatMemberByIndex(stru .iUser = iUser, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetChatMemberByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetChatMemberByIndex, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends011_SendClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, const char *pchText) { - struct cppISteamFriends_SteamFriends011_SendClanChatMessage_params params = + struct ISteamFriends_SteamFriends011_SendClanChatMessage_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, .pchText = pchText, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_SendClanChatMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_SendClanChatMessage, ¶ms ); 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) { - struct cppISteamFriends_SteamFriends011_GetClanChatMessage_params params = + struct ISteamFriends_SteamFriends011_GetClanChatMessage_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, @@ -5375,87 +5353,87 @@ int32_t __thiscall winISteamFriends_SteamFriends011_GetClanChatMessage(struct w_ ._f = _f, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetClanChatMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetClanChatMessage, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends011_IsClanChatAdmin(struct w_steam_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) { - struct cppISteamFriends_SteamFriends011_IsClanChatAdmin_params params = + struct ISteamFriends_SteamFriends011_IsClanChatAdmin_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_IsClanChatAdmin( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_IsClanChatAdmin, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends011_IsClanChatWindowOpenInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { - struct cppISteamFriends_SteamFriends011_IsClanChatWindowOpenInSteam_params params = + struct ISteamFriends_SteamFriends011_IsClanChatWindowOpenInSteam_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_IsClanChatWindowOpenInSteam( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_IsClanChatWindowOpenInSteam, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends011_OpenClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { - struct cppISteamFriends_SteamFriends011_OpenClanChatWindowInSteam_params params = + struct ISteamFriends_SteamFriends011_OpenClanChatWindowInSteam_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_OpenClanChatWindowInSteam( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_OpenClanChatWindowInSteam, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends011_CloseClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { - struct cppISteamFriends_SteamFriends011_CloseClanChatWindowInSteam_params params = + struct ISteamFriends_SteamFriends011_CloseClanChatWindowInSteam_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_CloseClanChatWindowInSteam( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_CloseClanChatWindowInSteam, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends011_SetListenForFriendsMessages(struct w_steam_iface *_this, bool bInterceptEnabled) { - struct cppISteamFriends_SteamFriends011_SetListenForFriendsMessages_params params = + struct ISteamFriends_SteamFriends011_SetListenForFriendsMessages_params params = { .linux_side = _this->u_iface, .bInterceptEnabled = bInterceptEnabled, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_SetListenForFriendsMessages( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_SetListenForFriendsMessages, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends011_ReplyToFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) { - struct cppISteamFriends_SteamFriends011_ReplyToFriendMessage_params params = + struct ISteamFriends_SteamFriends011_ReplyToFriendMessage_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pchMsgToSend = pchMsgToSend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_ReplyToFriendMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_ReplyToFriendMessage, ¶ms ); 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) { - struct cppISteamFriends_SteamFriends011_GetFriendMessage_params params = + struct ISteamFriends_SteamFriends011_GetFriendMessage_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, @@ -5465,43 +5443,43 @@ int32_t __thiscall winISteamFriends_SteamFriends011_GetFriendMessage(struct w_st .peChatEntryType = peChatEntryType, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetFriendMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetFriendMessage, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends011_GetFollowerCount(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamFriends_SteamFriends011_GetFollowerCount_params params = + struct ISteamFriends_SteamFriends011_GetFollowerCount_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_GetFollowerCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetFollowerCount, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends011_IsFollowing(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamFriends_SteamFriends011_IsFollowing_params params = + struct ISteamFriends_SteamFriends011_IsFollowing_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_IsFollowing( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_IsFollowing, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends011_EnumerateFollowingList(struct w_steam_iface *_this, uint32_t unStartIndex) { - struct cppISteamFriends_SteamFriends011_EnumerateFollowingList_params params = + struct ISteamFriends_SteamFriends011_EnumerateFollowingList_params params = { .linux_side = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends011_EnumerateFollowingList( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_EnumerateFollowingList, ¶ms ); return params._ret; } @@ -5586,8 +5564,6 @@ struct w_steam_iface *create_winISteamFriends_SteamFriends011(void *u_iface) return r; } -#include "cppISteamFriends_SteamFriends012.h" - DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends012_GetPersonaName, 4) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends012_SetPersonaName, 8) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends012_GetPersonaState, 4) @@ -5654,53 +5630,53 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends012_EnumerateFollowingList, const char * __thiscall winISteamFriends_SteamFriends012_GetPersonaName(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends012_GetPersonaName_params params = + struct ISteamFriends_SteamFriends012_GetPersonaName_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetPersonaName, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends012_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) { - struct cppISteamFriends_SteamFriends012_SetPersonaName_params params = + struct ISteamFriends_SteamFriends012_SetPersonaName_params params = { .linux_side = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_SetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_SetPersonaName, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends012_GetPersonaState(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends012_GetPersonaState_params params = + struct ISteamFriends_SteamFriends012_GetPersonaState_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetPersonaState, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends012_GetFriendCount(struct w_steam_iface *_this, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends012_GetFriendCount_params params = + struct ISteamFriends_SteamFriends012_GetFriendCount_params params = { .linux_side = _this->u_iface, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetFriendCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetFriendCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends012_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends012_GetFriendByIndex_params params = + struct ISteamFriends_SteamFriends012_GetFriendByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -5708,136 +5684,136 @@ CSteamID * __thiscall winISteamFriends_SteamFriends012_GetFriendByIndex(struct w .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetFriendByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetFriendByIndex, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends012_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends012_GetFriendRelationship_params params = + struct ISteamFriends_SteamFriends012_GetFriendRelationship_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetFriendRelationship( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetFriendRelationship, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends012_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends012_GetFriendPersonaState_params params = + struct ISteamFriends_SteamFriends012_GetFriendPersonaState_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetFriendPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetFriendPersonaState, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends012_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends012_GetFriendPersonaName_params params = + struct ISteamFriends_SteamFriends012_GetFriendPersonaName_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetFriendPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetFriendPersonaName, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends012_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { - struct cppISteamFriends_SteamFriends012_GetFriendGamePlayed_params params = + struct ISteamFriends_SteamFriends012_GetFriendGamePlayed_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pFriendGameInfo = pFriendGameInfo, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetFriendGamePlayed( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetFriendGamePlayed, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends012_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { - struct cppISteamFriends_SteamFriends012_GetFriendPersonaNameHistory_params params = + struct ISteamFriends_SteamFriends012_GetFriendPersonaNameHistory_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetFriendPersonaNameHistory( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetFriendPersonaNameHistory, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends012_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends012_HasFriend_params params = + struct ISteamFriends_SteamFriends012_HasFriend_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_HasFriend( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_HasFriend, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends012_GetClanCount(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends012_GetClanCount_params params = + struct ISteamFriends_SteamFriends012_GetClanCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetClanCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetClanCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends012_GetClanByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iClan) { - struct cppISteamFriends_SteamFriends012_GetClanByIndex_params params = + struct ISteamFriends_SteamFriends012_GetClanByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iClan = iClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetClanByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetClanByIndex, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends012_GetClanName(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends012_GetClanName_params params = + struct ISteamFriends_SteamFriends012_GetClanName_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetClanName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetClanName, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends012_GetClanTag(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends012_GetClanTag_params params = + struct ISteamFriends_SteamFriends012_GetClanTag_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetClanTag( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetClanTag, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends012_GetClanActivityCounts(struct w_steam_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) { - struct cppISteamFriends_SteamFriends012_GetClanActivityCounts_params params = + struct ISteamFriends_SteamFriends012_GetClanActivityCounts_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, @@ -5846,38 +5822,38 @@ bool __thiscall winISteamFriends_SteamFriends012_GetClanActivityCounts(struct w_ .pnChatting = pnChatting, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetClanActivityCounts( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetClanActivityCounts, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends012_DownloadClanActivityCounts(struct w_steam_iface *_this, CSteamID *psteamIDClans, int32_t cClansToRequest) { - struct cppISteamFriends_SteamFriends012_DownloadClanActivityCounts_params params = + struct ISteamFriends_SteamFriends012_DownloadClanActivityCounts_params params = { .linux_side = _this->u_iface, .psteamIDClans = psteamIDClans, .cClansToRequest = cClansToRequest, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_DownloadClanActivityCounts( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_DownloadClanActivityCounts, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends012_GetFriendCountFromSource(struct w_steam_iface *_this, CSteamID steamIDSource) { - struct cppISteamFriends_SteamFriends012_GetFriendCountFromSource_params params = + struct ISteamFriends_SteamFriends012_GetFriendCountFromSource_params params = { .linux_side = _this->u_iface, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetFriendCountFromSource( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetFriendCountFromSource, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends012_GetFriendFromSourceByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) { - struct cppISteamFriends_SteamFriends012_GetFriendFromSourceByIndex_params params = + struct ISteamFriends_SteamFriends012_GetFriendFromSourceByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -5885,191 +5861,191 @@ CSteamID * __thiscall winISteamFriends_SteamFriends012_GetFriendFromSourceByInde .iFriend = iFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetFriendFromSourceByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetFriendFromSourceByIndex, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends012_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { - struct cppISteamFriends_SteamFriends012_IsUserInSource_params params = + struct ISteamFriends_SteamFriends012_IsUserInSource_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_IsUserInSource( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_IsUserInSource, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends012_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, bool bSpeaking) { - struct cppISteamFriends_SteamFriends012_SetInGameVoiceSpeaking_params params = + struct ISteamFriends_SteamFriends012_SetInGameVoiceSpeaking_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .bSpeaking = bSpeaking, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_SetInGameVoiceSpeaking( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_SetInGameVoiceSpeaking, ¶ms ); } void __thiscall winISteamFriends_SteamFriends012_ActivateGameOverlay(struct w_steam_iface *_this, const char *pchDialog) { - struct cppISteamFriends_SteamFriends012_ActivateGameOverlay_params params = + struct ISteamFriends_SteamFriends012_ActivateGameOverlay_params params = { .linux_side = _this->u_iface, .pchDialog = pchDialog, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_ActivateGameOverlay( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_ActivateGameOverlay, ¶ms ); } void __thiscall winISteamFriends_SteamFriends012_ActivateGameOverlayToUser(struct w_steam_iface *_this, const char *pchDialog, CSteamID steamID) { - struct cppISteamFriends_SteamFriends012_ActivateGameOverlayToUser_params params = + struct ISteamFriends_SteamFriends012_ActivateGameOverlayToUser_params params = { .linux_side = _this->u_iface, .pchDialog = pchDialog, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_ActivateGameOverlayToUser( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_ActivateGameOverlayToUser, ¶ms ); } void __thiscall winISteamFriends_SteamFriends012_ActivateGameOverlayToWebPage(struct w_steam_iface *_this, const char *pchURL) { - struct cppISteamFriends_SteamFriends012_ActivateGameOverlayToWebPage_params params = + struct ISteamFriends_SteamFriends012_ActivateGameOverlayToWebPage_params params = { .linux_side = _this->u_iface, .pchURL = pchURL, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_ActivateGameOverlayToWebPage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_ActivateGameOverlayToWebPage, ¶ms ); } void __thiscall winISteamFriends_SteamFriends012_ActivateGameOverlayToStore(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamFriends_SteamFriends012_ActivateGameOverlayToStore_params params = + struct ISteamFriends_SteamFriends012_ActivateGameOverlayToStore_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_ActivateGameOverlayToStore( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_ActivateGameOverlayToStore, ¶ms ); } void __thiscall winISteamFriends_SteamFriends012_SetPlayedWith(struct w_steam_iface *_this, CSteamID steamIDUserPlayedWith) { - struct cppISteamFriends_SteamFriends012_SetPlayedWith_params params = + struct ISteamFriends_SteamFriends012_SetPlayedWith_params params = { .linux_side = _this->u_iface, .steamIDUserPlayedWith = steamIDUserPlayedWith, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_SetPlayedWith( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_SetPlayedWith, ¶ms ); } void __thiscall winISteamFriends_SteamFriends012_ActivateGameOverlayInviteDialog(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamFriends_SteamFriends012_ActivateGameOverlayInviteDialog_params params = + struct ISteamFriends_SteamFriends012_ActivateGameOverlayInviteDialog_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_ActivateGameOverlayInviteDialog( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_ActivateGameOverlayInviteDialog, ¶ms ); } int32_t __thiscall winISteamFriends_SteamFriends012_GetSmallFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends012_GetSmallFriendAvatar_params params = + struct ISteamFriends_SteamFriends012_GetSmallFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetSmallFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetSmallFriendAvatar, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends012_GetMediumFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends012_GetMediumFriendAvatar_params params = + struct ISteamFriends_SteamFriends012_GetMediumFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetMediumFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetMediumFriendAvatar, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends012_GetLargeFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends012_GetLargeFriendAvatar_params params = + struct ISteamFriends_SteamFriends012_GetLargeFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetLargeFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetLargeFriendAvatar, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends012_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, bool bRequireNameOnly) { - struct cppISteamFriends_SteamFriends012_RequestUserInformation_params params = + struct ISteamFriends_SteamFriends012_RequestUserInformation_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .bRequireNameOnly = bRequireNameOnly, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_RequestUserInformation( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_RequestUserInformation, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends012_RequestClanOfficerList(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends012_RequestClanOfficerList_params params = + struct ISteamFriends_SteamFriends012_RequestClanOfficerList_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_RequestClanOfficerList( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_RequestClanOfficerList, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends012_GetClanOwner(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends012_GetClanOwner_params params = + struct ISteamFriends_SteamFriends012_GetClanOwner_params params = { .linux_side = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetClanOwner( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetClanOwner, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends012_GetClanOfficerCount(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends012_GetClanOfficerCount_params params = + struct ISteamFriends_SteamFriends012_GetClanOfficerCount_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetClanOfficerCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetClanOfficerCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends012_GetClanOfficerByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iOfficer) { - struct cppISteamFriends_SteamFriends012_GetClanOfficerByIndex_params params = + struct ISteamFriends_SteamFriends012_GetClanOfficerByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -6077,193 +6053,193 @@ CSteamID * __thiscall winISteamFriends_SteamFriends012_GetClanOfficerByIndex(str .iOfficer = iOfficer, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetClanOfficerByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetClanOfficerByIndex, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends012_GetUserRestrictions(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends012_GetUserRestrictions_params params = + struct ISteamFriends_SteamFriends012_GetUserRestrictions_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetUserRestrictions( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetUserRestrictions, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends012_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) { - struct cppISteamFriends_SteamFriends012_SetRichPresence_params params = + struct ISteamFriends_SteamFriends012_SetRichPresence_params params = { .linux_side = _this->u_iface, .pchKey = pchKey, .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_SetRichPresence( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_SetRichPresence, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends012_ClearRichPresence(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends012_ClearRichPresence_params params = + struct ISteamFriends_SteamFriends012_ClearRichPresence_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_ClearRichPresence( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_ClearRichPresence, ¶ms ); } const char * __thiscall winISteamFriends_SteamFriends012_GetFriendRichPresence(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchKey) { - struct cppISteamFriends_SteamFriends012_GetFriendRichPresence_params params = + struct ISteamFriends_SteamFriends012_GetFriendRichPresence_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetFriendRichPresence( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetFriendRichPresence, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends012_GetFriendRichPresenceKeyCount(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends012_GetFriendRichPresenceKeyCount_params params = + struct ISteamFriends_SteamFriends012_GetFriendRichPresenceKeyCount_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetFriendRichPresenceKeyCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetFriendRichPresenceKeyCount, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends012_GetFriendRichPresenceKeyByIndex(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iKey) { - struct cppISteamFriends_SteamFriends012_GetFriendRichPresenceKeyByIndex_params params = + struct ISteamFriends_SteamFriends012_GetFriendRichPresenceKeyByIndex_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iKey = iKey, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetFriendRichPresenceKeyByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetFriendRichPresenceKeyByIndex, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends012_RequestFriendRichPresence(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends012_RequestFriendRichPresence_params params = + struct ISteamFriends_SteamFriends012_RequestFriendRichPresence_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_RequestFriendRichPresence( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_RequestFriendRichPresence, ¶ms ); } bool __thiscall winISteamFriends_SteamFriends012_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) { - struct cppISteamFriends_SteamFriends012_InviteUserToGame_params params = + struct ISteamFriends_SteamFriends012_InviteUserToGame_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pchConnectString = pchConnectString, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_InviteUserToGame( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_InviteUserToGame, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends012_GetCoplayFriendCount(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends012_GetCoplayFriendCount_params params = + struct ISteamFriends_SteamFriends012_GetCoplayFriendCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetCoplayFriendCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetCoplayFriendCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends012_GetCoplayFriend(struct w_steam_iface *_this, CSteamID *_ret, int32_t iCoplayFriend) { - struct cppISteamFriends_SteamFriends012_GetCoplayFriend_params params = + struct ISteamFriends_SteamFriends012_GetCoplayFriend_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iCoplayFriend = iCoplayFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetCoplayFriend( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetCoplayFriend, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends012_GetFriendCoplayTime(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends012_GetFriendCoplayTime_params params = + struct ISteamFriends_SteamFriends012_GetFriendCoplayTime_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetFriendCoplayTime( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetFriendCoplayTime, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends012_GetFriendCoplayGame(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends012_GetFriendCoplayGame_params params = + struct ISteamFriends_SteamFriends012_GetFriendCoplayGame_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetFriendCoplayGame( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetFriendCoplayGame, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends012_JoinClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends012_JoinClanChatRoom_params params = + struct ISteamFriends_SteamFriends012_JoinClanChatRoom_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_JoinClanChatRoom( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_JoinClanChatRoom, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends012_LeaveClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends012_LeaveClanChatRoom_params params = + struct ISteamFriends_SteamFriends012_LeaveClanChatRoom_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_LeaveClanChatRoom( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_LeaveClanChatRoom, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends012_GetClanChatMemberCount(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends012_GetClanChatMemberCount_params params = + struct ISteamFriends_SteamFriends012_GetClanChatMemberCount_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetClanChatMemberCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetClanChatMemberCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends012_GetChatMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iUser) { - struct cppISteamFriends_SteamFriends012_GetChatMemberByIndex_params params = + struct ISteamFriends_SteamFriends012_GetChatMemberByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -6271,26 +6247,26 @@ CSteamID * __thiscall winISteamFriends_SteamFriends012_GetChatMemberByIndex(stru .iUser = iUser, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetChatMemberByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetChatMemberByIndex, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends012_SendClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, const char *pchText) { - struct cppISteamFriends_SteamFriends012_SendClanChatMessage_params params = + struct ISteamFriends_SteamFriends012_SendClanChatMessage_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, .pchText = pchText, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_SendClanChatMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_SendClanChatMessage, ¶ms ); 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) { - struct cppISteamFriends_SteamFriends012_GetClanChatMessage_params params = + struct ISteamFriends_SteamFriends012_GetClanChatMessage_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, @@ -6301,87 +6277,87 @@ int32_t __thiscall winISteamFriends_SteamFriends012_GetClanChatMessage(struct w_ ._f = _f, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetClanChatMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetClanChatMessage, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends012_IsClanChatAdmin(struct w_steam_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) { - struct cppISteamFriends_SteamFriends012_IsClanChatAdmin_params params = + struct ISteamFriends_SteamFriends012_IsClanChatAdmin_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_IsClanChatAdmin( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_IsClanChatAdmin, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends012_IsClanChatWindowOpenInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { - struct cppISteamFriends_SteamFriends012_IsClanChatWindowOpenInSteam_params params = + struct ISteamFriends_SteamFriends012_IsClanChatWindowOpenInSteam_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_IsClanChatWindowOpenInSteam( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_IsClanChatWindowOpenInSteam, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends012_OpenClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { - struct cppISteamFriends_SteamFriends012_OpenClanChatWindowInSteam_params params = + struct ISteamFriends_SteamFriends012_OpenClanChatWindowInSteam_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_OpenClanChatWindowInSteam( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_OpenClanChatWindowInSteam, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends012_CloseClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { - struct cppISteamFriends_SteamFriends012_CloseClanChatWindowInSteam_params params = + struct ISteamFriends_SteamFriends012_CloseClanChatWindowInSteam_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_CloseClanChatWindowInSteam( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_CloseClanChatWindowInSteam, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends012_SetListenForFriendsMessages(struct w_steam_iface *_this, bool bInterceptEnabled) { - struct cppISteamFriends_SteamFriends012_SetListenForFriendsMessages_params params = + struct ISteamFriends_SteamFriends012_SetListenForFriendsMessages_params params = { .linux_side = _this->u_iface, .bInterceptEnabled = bInterceptEnabled, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_SetListenForFriendsMessages( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_SetListenForFriendsMessages, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends012_ReplyToFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) { - struct cppISteamFriends_SteamFriends012_ReplyToFriendMessage_params params = + struct ISteamFriends_SteamFriends012_ReplyToFriendMessage_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pchMsgToSend = pchMsgToSend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_ReplyToFriendMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_ReplyToFriendMessage, ¶ms ); 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) { - struct cppISteamFriends_SteamFriends012_GetFriendMessage_params params = + struct ISteamFriends_SteamFriends012_GetFriendMessage_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, @@ -6391,43 +6367,43 @@ int32_t __thiscall winISteamFriends_SteamFriends012_GetFriendMessage(struct w_st .peChatEntryType = peChatEntryType, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetFriendMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetFriendMessage, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends012_GetFollowerCount(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamFriends_SteamFriends012_GetFollowerCount_params params = + struct ISteamFriends_SteamFriends012_GetFollowerCount_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_GetFollowerCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetFollowerCount, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends012_IsFollowing(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamFriends_SteamFriends012_IsFollowing_params params = + struct ISteamFriends_SteamFriends012_IsFollowing_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_IsFollowing( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_IsFollowing, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends012_EnumerateFollowingList(struct w_steam_iface *_this, uint32_t unStartIndex) { - struct cppISteamFriends_SteamFriends012_EnumerateFollowingList_params params = + struct ISteamFriends_SteamFriends012_EnumerateFollowingList_params params = { .linux_side = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends012_EnumerateFollowingList( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_EnumerateFollowingList, ¶ms ); return params._ret; } @@ -6512,8 +6488,6 @@ struct w_steam_iface *create_winISteamFriends_SteamFriends012(void *u_iface) return r; } -#include "cppISteamFriends_SteamFriends013.h" - DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends013_GetPersonaName, 4) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends013_SetPersonaName, 8) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends013_GetPersonaState, 4) @@ -6580,53 +6554,53 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends013_EnumerateFollowingList, const char * __thiscall winISteamFriends_SteamFriends013_GetPersonaName(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends013_GetPersonaName_params params = + struct ISteamFriends_SteamFriends013_GetPersonaName_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetPersonaName, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends013_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) { - struct cppISteamFriends_SteamFriends013_SetPersonaName_params params = + struct ISteamFriends_SteamFriends013_SetPersonaName_params params = { .linux_side = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_SetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_SetPersonaName, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends013_GetPersonaState(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends013_GetPersonaState_params params = + struct ISteamFriends_SteamFriends013_GetPersonaState_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetPersonaState, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends013_GetFriendCount(struct w_steam_iface *_this, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends013_GetFriendCount_params params = + struct ISteamFriends_SteamFriends013_GetFriendCount_params params = { .linux_side = _this->u_iface, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetFriendCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetFriendCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends013_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends013_GetFriendByIndex_params params = + struct ISteamFriends_SteamFriends013_GetFriendByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -6634,136 +6608,136 @@ CSteamID * __thiscall winISteamFriends_SteamFriends013_GetFriendByIndex(struct w .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetFriendByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetFriendByIndex, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends013_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends013_GetFriendRelationship_params params = + struct ISteamFriends_SteamFriends013_GetFriendRelationship_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetFriendRelationship( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetFriendRelationship, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends013_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends013_GetFriendPersonaState_params params = + struct ISteamFriends_SteamFriends013_GetFriendPersonaState_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetFriendPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetFriendPersonaState, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends013_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends013_GetFriendPersonaName_params params = + struct ISteamFriends_SteamFriends013_GetFriendPersonaName_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetFriendPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetFriendPersonaName, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends013_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { - struct cppISteamFriends_SteamFriends013_GetFriendGamePlayed_params params = + struct ISteamFriends_SteamFriends013_GetFriendGamePlayed_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pFriendGameInfo = pFriendGameInfo, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetFriendGamePlayed( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetFriendGamePlayed, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends013_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { - struct cppISteamFriends_SteamFriends013_GetFriendPersonaNameHistory_params params = + struct ISteamFriends_SteamFriends013_GetFriendPersonaNameHistory_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetFriendPersonaNameHistory( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetFriendPersonaNameHistory, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends013_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends013_HasFriend_params params = + struct ISteamFriends_SteamFriends013_HasFriend_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_HasFriend( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_HasFriend, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends013_GetClanCount(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends013_GetClanCount_params params = + struct ISteamFriends_SteamFriends013_GetClanCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetClanCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetClanCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends013_GetClanByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iClan) { - struct cppISteamFriends_SteamFriends013_GetClanByIndex_params params = + struct ISteamFriends_SteamFriends013_GetClanByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iClan = iClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetClanByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetClanByIndex, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends013_GetClanName(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends013_GetClanName_params params = + struct ISteamFriends_SteamFriends013_GetClanName_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetClanName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetClanName, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends013_GetClanTag(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends013_GetClanTag_params params = + struct ISteamFriends_SteamFriends013_GetClanTag_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetClanTag( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetClanTag, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends013_GetClanActivityCounts(struct w_steam_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) { - struct cppISteamFriends_SteamFriends013_GetClanActivityCounts_params params = + struct ISteamFriends_SteamFriends013_GetClanActivityCounts_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, @@ -6772,38 +6746,38 @@ bool __thiscall winISteamFriends_SteamFriends013_GetClanActivityCounts(struct w_ .pnChatting = pnChatting, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetClanActivityCounts( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetClanActivityCounts, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends013_DownloadClanActivityCounts(struct w_steam_iface *_this, CSteamID *psteamIDClans, int32_t cClansToRequest) { - struct cppISteamFriends_SteamFriends013_DownloadClanActivityCounts_params params = + struct ISteamFriends_SteamFriends013_DownloadClanActivityCounts_params params = { .linux_side = _this->u_iface, .psteamIDClans = psteamIDClans, .cClansToRequest = cClansToRequest, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_DownloadClanActivityCounts( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_DownloadClanActivityCounts, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends013_GetFriendCountFromSource(struct w_steam_iface *_this, CSteamID steamIDSource) { - struct cppISteamFriends_SteamFriends013_GetFriendCountFromSource_params params = + struct ISteamFriends_SteamFriends013_GetFriendCountFromSource_params params = { .linux_side = _this->u_iface, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetFriendCountFromSource( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetFriendCountFromSource, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends013_GetFriendFromSourceByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) { - struct cppISteamFriends_SteamFriends013_GetFriendFromSourceByIndex_params params = + struct ISteamFriends_SteamFriends013_GetFriendFromSourceByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -6811,192 +6785,192 @@ CSteamID * __thiscall winISteamFriends_SteamFriends013_GetFriendFromSourceByInde .iFriend = iFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetFriendFromSourceByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetFriendFromSourceByIndex, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends013_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { - struct cppISteamFriends_SteamFriends013_IsUserInSource_params params = + struct ISteamFriends_SteamFriends013_IsUserInSource_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_IsUserInSource( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_IsUserInSource, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends013_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, bool bSpeaking) { - struct cppISteamFriends_SteamFriends013_SetInGameVoiceSpeaking_params params = + struct ISteamFriends_SteamFriends013_SetInGameVoiceSpeaking_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .bSpeaking = bSpeaking, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_SetInGameVoiceSpeaking( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_SetInGameVoiceSpeaking, ¶ms ); } void __thiscall winISteamFriends_SteamFriends013_ActivateGameOverlay(struct w_steam_iface *_this, const char *pchDialog) { - struct cppISteamFriends_SteamFriends013_ActivateGameOverlay_params params = + struct ISteamFriends_SteamFriends013_ActivateGameOverlay_params params = { .linux_side = _this->u_iface, .pchDialog = pchDialog, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_ActivateGameOverlay( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_ActivateGameOverlay, ¶ms ); } void __thiscall winISteamFriends_SteamFriends013_ActivateGameOverlayToUser(struct w_steam_iface *_this, const char *pchDialog, CSteamID steamID) { - struct cppISteamFriends_SteamFriends013_ActivateGameOverlayToUser_params params = + struct ISteamFriends_SteamFriends013_ActivateGameOverlayToUser_params params = { .linux_side = _this->u_iface, .pchDialog = pchDialog, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_ActivateGameOverlayToUser( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_ActivateGameOverlayToUser, ¶ms ); } void __thiscall winISteamFriends_SteamFriends013_ActivateGameOverlayToWebPage(struct w_steam_iface *_this, const char *pchURL) { - struct cppISteamFriends_SteamFriends013_ActivateGameOverlayToWebPage_params params = + struct ISteamFriends_SteamFriends013_ActivateGameOverlayToWebPage_params params = { .linux_side = _this->u_iface, .pchURL = pchURL, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_ActivateGameOverlayToWebPage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_ActivateGameOverlayToWebPage, ¶ms ); } void __thiscall winISteamFriends_SteamFriends013_ActivateGameOverlayToStore(struct w_steam_iface *_this, uint32_t nAppID, uint32_t eFlag) { - struct cppISteamFriends_SteamFriends013_ActivateGameOverlayToStore_params params = + struct ISteamFriends_SteamFriends013_ActivateGameOverlayToStore_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, .eFlag = eFlag, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_ActivateGameOverlayToStore( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_ActivateGameOverlayToStore, ¶ms ); } void __thiscall winISteamFriends_SteamFriends013_SetPlayedWith(struct w_steam_iface *_this, CSteamID steamIDUserPlayedWith) { - struct cppISteamFriends_SteamFriends013_SetPlayedWith_params params = + struct ISteamFriends_SteamFriends013_SetPlayedWith_params params = { .linux_side = _this->u_iface, .steamIDUserPlayedWith = steamIDUserPlayedWith, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_SetPlayedWith( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_SetPlayedWith, ¶ms ); } void __thiscall winISteamFriends_SteamFriends013_ActivateGameOverlayInviteDialog(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamFriends_SteamFriends013_ActivateGameOverlayInviteDialog_params params = + struct ISteamFriends_SteamFriends013_ActivateGameOverlayInviteDialog_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_ActivateGameOverlayInviteDialog( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_ActivateGameOverlayInviteDialog, ¶ms ); } int32_t __thiscall winISteamFriends_SteamFriends013_GetSmallFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends013_GetSmallFriendAvatar_params params = + struct ISteamFriends_SteamFriends013_GetSmallFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetSmallFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetSmallFriendAvatar, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends013_GetMediumFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends013_GetMediumFriendAvatar_params params = + struct ISteamFriends_SteamFriends013_GetMediumFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetMediumFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetMediumFriendAvatar, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends013_GetLargeFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends013_GetLargeFriendAvatar_params params = + struct ISteamFriends_SteamFriends013_GetLargeFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetLargeFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetLargeFriendAvatar, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends013_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, bool bRequireNameOnly) { - struct cppISteamFriends_SteamFriends013_RequestUserInformation_params params = + struct ISteamFriends_SteamFriends013_RequestUserInformation_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .bRequireNameOnly = bRequireNameOnly, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_RequestUserInformation( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_RequestUserInformation, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends013_RequestClanOfficerList(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends013_RequestClanOfficerList_params params = + struct ISteamFriends_SteamFriends013_RequestClanOfficerList_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_RequestClanOfficerList( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_RequestClanOfficerList, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends013_GetClanOwner(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends013_GetClanOwner_params params = + struct ISteamFriends_SteamFriends013_GetClanOwner_params params = { .linux_side = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetClanOwner( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetClanOwner, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends013_GetClanOfficerCount(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends013_GetClanOfficerCount_params params = + struct ISteamFriends_SteamFriends013_GetClanOfficerCount_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetClanOfficerCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetClanOfficerCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends013_GetClanOfficerByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iOfficer) { - struct cppISteamFriends_SteamFriends013_GetClanOfficerByIndex_params params = + struct ISteamFriends_SteamFriends013_GetClanOfficerByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -7004,193 +6978,193 @@ CSteamID * __thiscall winISteamFriends_SteamFriends013_GetClanOfficerByIndex(str .iOfficer = iOfficer, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetClanOfficerByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetClanOfficerByIndex, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends013_GetUserRestrictions(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends013_GetUserRestrictions_params params = + struct ISteamFriends_SteamFriends013_GetUserRestrictions_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetUserRestrictions( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetUserRestrictions, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends013_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) { - struct cppISteamFriends_SteamFriends013_SetRichPresence_params params = + struct ISteamFriends_SteamFriends013_SetRichPresence_params params = { .linux_side = _this->u_iface, .pchKey = pchKey, .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_SetRichPresence( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_SetRichPresence, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends013_ClearRichPresence(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends013_ClearRichPresence_params params = + struct ISteamFriends_SteamFriends013_ClearRichPresence_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_ClearRichPresence( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_ClearRichPresence, ¶ms ); } const char * __thiscall winISteamFriends_SteamFriends013_GetFriendRichPresence(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchKey) { - struct cppISteamFriends_SteamFriends013_GetFriendRichPresence_params params = + struct ISteamFriends_SteamFriends013_GetFriendRichPresence_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetFriendRichPresence( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetFriendRichPresence, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends013_GetFriendRichPresenceKeyCount(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends013_GetFriendRichPresenceKeyCount_params params = + struct ISteamFriends_SteamFriends013_GetFriendRichPresenceKeyCount_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetFriendRichPresenceKeyCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetFriendRichPresenceKeyCount, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends013_GetFriendRichPresenceKeyByIndex(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iKey) { - struct cppISteamFriends_SteamFriends013_GetFriendRichPresenceKeyByIndex_params params = + struct ISteamFriends_SteamFriends013_GetFriendRichPresenceKeyByIndex_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iKey = iKey, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetFriendRichPresenceKeyByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetFriendRichPresenceKeyByIndex, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends013_RequestFriendRichPresence(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends013_RequestFriendRichPresence_params params = + struct ISteamFriends_SteamFriends013_RequestFriendRichPresence_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_RequestFriendRichPresence( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_RequestFriendRichPresence, ¶ms ); } bool __thiscall winISteamFriends_SteamFriends013_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) { - struct cppISteamFriends_SteamFriends013_InviteUserToGame_params params = + struct ISteamFriends_SteamFriends013_InviteUserToGame_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pchConnectString = pchConnectString, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_InviteUserToGame( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_InviteUserToGame, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends013_GetCoplayFriendCount(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends013_GetCoplayFriendCount_params params = + struct ISteamFriends_SteamFriends013_GetCoplayFriendCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetCoplayFriendCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetCoplayFriendCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends013_GetCoplayFriend(struct w_steam_iface *_this, CSteamID *_ret, int32_t iCoplayFriend) { - struct cppISteamFriends_SteamFriends013_GetCoplayFriend_params params = + struct ISteamFriends_SteamFriends013_GetCoplayFriend_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iCoplayFriend = iCoplayFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetCoplayFriend( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetCoplayFriend, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends013_GetFriendCoplayTime(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends013_GetFriendCoplayTime_params params = + struct ISteamFriends_SteamFriends013_GetFriendCoplayTime_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetFriendCoplayTime( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetFriendCoplayTime, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends013_GetFriendCoplayGame(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends013_GetFriendCoplayGame_params params = + struct ISteamFriends_SteamFriends013_GetFriendCoplayGame_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetFriendCoplayGame( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetFriendCoplayGame, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends013_JoinClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends013_JoinClanChatRoom_params params = + struct ISteamFriends_SteamFriends013_JoinClanChatRoom_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_JoinClanChatRoom( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_JoinClanChatRoom, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends013_LeaveClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends013_LeaveClanChatRoom_params params = + struct ISteamFriends_SteamFriends013_LeaveClanChatRoom_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_LeaveClanChatRoom( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_LeaveClanChatRoom, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends013_GetClanChatMemberCount(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends013_GetClanChatMemberCount_params params = + struct ISteamFriends_SteamFriends013_GetClanChatMemberCount_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetClanChatMemberCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetClanChatMemberCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends013_GetChatMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iUser) { - struct cppISteamFriends_SteamFriends013_GetChatMemberByIndex_params params = + struct ISteamFriends_SteamFriends013_GetChatMemberByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -7198,26 +7172,26 @@ CSteamID * __thiscall winISteamFriends_SteamFriends013_GetChatMemberByIndex(stru .iUser = iUser, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetChatMemberByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetChatMemberByIndex, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends013_SendClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, const char *pchText) { - struct cppISteamFriends_SteamFriends013_SendClanChatMessage_params params = + struct ISteamFriends_SteamFriends013_SendClanChatMessage_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, .pchText = pchText, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_SendClanChatMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_SendClanChatMessage, ¶ms ); 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) { - struct cppISteamFriends_SteamFriends013_GetClanChatMessage_params params = + struct ISteamFriends_SteamFriends013_GetClanChatMessage_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, @@ -7228,87 +7202,87 @@ int32_t __thiscall winISteamFriends_SteamFriends013_GetClanChatMessage(struct w_ ._f = _f, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetClanChatMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetClanChatMessage, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends013_IsClanChatAdmin(struct w_steam_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) { - struct cppISteamFriends_SteamFriends013_IsClanChatAdmin_params params = + struct ISteamFriends_SteamFriends013_IsClanChatAdmin_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_IsClanChatAdmin( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_IsClanChatAdmin, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends013_IsClanChatWindowOpenInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { - struct cppISteamFriends_SteamFriends013_IsClanChatWindowOpenInSteam_params params = + struct ISteamFriends_SteamFriends013_IsClanChatWindowOpenInSteam_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_IsClanChatWindowOpenInSteam( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_IsClanChatWindowOpenInSteam, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends013_OpenClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { - struct cppISteamFriends_SteamFriends013_OpenClanChatWindowInSteam_params params = + struct ISteamFriends_SteamFriends013_OpenClanChatWindowInSteam_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_OpenClanChatWindowInSteam( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_OpenClanChatWindowInSteam, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends013_CloseClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { - struct cppISteamFriends_SteamFriends013_CloseClanChatWindowInSteam_params params = + struct ISteamFriends_SteamFriends013_CloseClanChatWindowInSteam_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_CloseClanChatWindowInSteam( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_CloseClanChatWindowInSteam, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends013_SetListenForFriendsMessages(struct w_steam_iface *_this, bool bInterceptEnabled) { - struct cppISteamFriends_SteamFriends013_SetListenForFriendsMessages_params params = + struct ISteamFriends_SteamFriends013_SetListenForFriendsMessages_params params = { .linux_side = _this->u_iface, .bInterceptEnabled = bInterceptEnabled, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_SetListenForFriendsMessages( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_SetListenForFriendsMessages, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends013_ReplyToFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) { - struct cppISteamFriends_SteamFriends013_ReplyToFriendMessage_params params = + struct ISteamFriends_SteamFriends013_ReplyToFriendMessage_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pchMsgToSend = pchMsgToSend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_ReplyToFriendMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_ReplyToFriendMessage, ¶ms ); 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) { - struct cppISteamFriends_SteamFriends013_GetFriendMessage_params params = + struct ISteamFriends_SteamFriends013_GetFriendMessage_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, @@ -7318,43 +7292,43 @@ int32_t __thiscall winISteamFriends_SteamFriends013_GetFriendMessage(struct w_st .peChatEntryType = peChatEntryType, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetFriendMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetFriendMessage, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends013_GetFollowerCount(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamFriends_SteamFriends013_GetFollowerCount_params params = + struct ISteamFriends_SteamFriends013_GetFollowerCount_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_GetFollowerCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetFollowerCount, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends013_IsFollowing(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamFriends_SteamFriends013_IsFollowing_params params = + struct ISteamFriends_SteamFriends013_IsFollowing_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_IsFollowing( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_IsFollowing, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends013_EnumerateFollowingList(struct w_steam_iface *_this, uint32_t unStartIndex) { - struct cppISteamFriends_SteamFriends013_EnumerateFollowingList_params params = + struct ISteamFriends_SteamFriends013_EnumerateFollowingList_params params = { .linux_side = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends013_EnumerateFollowingList( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_EnumerateFollowingList, ¶ms ); return params._ret; } @@ -7439,8 +7413,6 @@ struct w_steam_iface *create_winISteamFriends_SteamFriends013(void *u_iface) return r; } -#include "cppISteamFriends_SteamFriends014.h" - DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends014_GetPersonaName, 4) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends014_SetPersonaName, 8) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends014_GetPersonaState, 4) @@ -7508,53 +7480,53 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends014_EnumerateFollowingList, const char * __thiscall winISteamFriends_SteamFriends014_GetPersonaName(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends014_GetPersonaName_params params = + struct ISteamFriends_SteamFriends014_GetPersonaName_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetPersonaName, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends014_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) { - struct cppISteamFriends_SteamFriends014_SetPersonaName_params params = + struct ISteamFriends_SteamFriends014_SetPersonaName_params params = { .linux_side = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_SetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_SetPersonaName, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends014_GetPersonaState(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends014_GetPersonaState_params params = + struct ISteamFriends_SteamFriends014_GetPersonaState_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetPersonaState, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends014_GetFriendCount(struct w_steam_iface *_this, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends014_GetFriendCount_params params = + struct ISteamFriends_SteamFriends014_GetFriendCount_params params = { .linux_side = _this->u_iface, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetFriendCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetFriendCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends014_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends014_GetFriendByIndex_params params = + struct ISteamFriends_SteamFriends014_GetFriendByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -7562,148 +7534,148 @@ CSteamID * __thiscall winISteamFriends_SteamFriends014_GetFriendByIndex(struct w .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetFriendByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetFriendByIndex, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends014_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends014_GetFriendRelationship_params params = + struct ISteamFriends_SteamFriends014_GetFriendRelationship_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetFriendRelationship( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetFriendRelationship, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends014_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends014_GetFriendPersonaState_params params = + struct ISteamFriends_SteamFriends014_GetFriendPersonaState_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetFriendPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetFriendPersonaState, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends014_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends014_GetFriendPersonaName_params params = + struct ISteamFriends_SteamFriends014_GetFriendPersonaName_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetFriendPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetFriendPersonaName, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends014_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { - struct cppISteamFriends_SteamFriends014_GetFriendGamePlayed_params params = + struct ISteamFriends_SteamFriends014_GetFriendGamePlayed_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pFriendGameInfo = pFriendGameInfo, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetFriendGamePlayed( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetFriendGamePlayed, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends014_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { - struct cppISteamFriends_SteamFriends014_GetFriendPersonaNameHistory_params params = + struct ISteamFriends_SteamFriends014_GetFriendPersonaNameHistory_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetFriendPersonaNameHistory( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetFriendPersonaNameHistory, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends014_GetPlayerNickname(struct w_steam_iface *_this, CSteamID steamIDPlayer) { - struct cppISteamFriends_SteamFriends014_GetPlayerNickname_params params = + struct ISteamFriends_SteamFriends014_GetPlayerNickname_params params = { .linux_side = _this->u_iface, .steamIDPlayer = steamIDPlayer, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetPlayerNickname( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetPlayerNickname, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends014_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends014_HasFriend_params params = + struct ISteamFriends_SteamFriends014_HasFriend_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_HasFriend( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_HasFriend, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends014_GetClanCount(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends014_GetClanCount_params params = + struct ISteamFriends_SteamFriends014_GetClanCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetClanCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetClanCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends014_GetClanByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iClan) { - struct cppISteamFriends_SteamFriends014_GetClanByIndex_params params = + struct ISteamFriends_SteamFriends014_GetClanByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iClan = iClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetClanByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetClanByIndex, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends014_GetClanName(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends014_GetClanName_params params = + struct ISteamFriends_SteamFriends014_GetClanName_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetClanName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetClanName, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends014_GetClanTag(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends014_GetClanTag_params params = + struct ISteamFriends_SteamFriends014_GetClanTag_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetClanTag( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetClanTag, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends014_GetClanActivityCounts(struct w_steam_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) { - struct cppISteamFriends_SteamFriends014_GetClanActivityCounts_params params = + struct ISteamFriends_SteamFriends014_GetClanActivityCounts_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, @@ -7712,38 +7684,38 @@ bool __thiscall winISteamFriends_SteamFriends014_GetClanActivityCounts(struct w_ .pnChatting = pnChatting, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetClanActivityCounts( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetClanActivityCounts, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends014_DownloadClanActivityCounts(struct w_steam_iface *_this, CSteamID *psteamIDClans, int32_t cClansToRequest) { - struct cppISteamFriends_SteamFriends014_DownloadClanActivityCounts_params params = + struct ISteamFriends_SteamFriends014_DownloadClanActivityCounts_params params = { .linux_side = _this->u_iface, .psteamIDClans = psteamIDClans, .cClansToRequest = cClansToRequest, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_DownloadClanActivityCounts( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_DownloadClanActivityCounts, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends014_GetFriendCountFromSource(struct w_steam_iface *_this, CSteamID steamIDSource) { - struct cppISteamFriends_SteamFriends014_GetFriendCountFromSource_params params = + struct ISteamFriends_SteamFriends014_GetFriendCountFromSource_params params = { .linux_side = _this->u_iface, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetFriendCountFromSource( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetFriendCountFromSource, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends014_GetFriendFromSourceByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) { - struct cppISteamFriends_SteamFriends014_GetFriendFromSourceByIndex_params params = + struct ISteamFriends_SteamFriends014_GetFriendFromSourceByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -7751,192 +7723,192 @@ CSteamID * __thiscall winISteamFriends_SteamFriends014_GetFriendFromSourceByInde .iFriend = iFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetFriendFromSourceByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetFriendFromSourceByIndex, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends014_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { - struct cppISteamFriends_SteamFriends014_IsUserInSource_params params = + struct ISteamFriends_SteamFriends014_IsUserInSource_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_IsUserInSource( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_IsUserInSource, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends014_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, bool bSpeaking) { - struct cppISteamFriends_SteamFriends014_SetInGameVoiceSpeaking_params params = + struct ISteamFriends_SteamFriends014_SetInGameVoiceSpeaking_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .bSpeaking = bSpeaking, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_SetInGameVoiceSpeaking( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_SetInGameVoiceSpeaking, ¶ms ); } void __thiscall winISteamFriends_SteamFriends014_ActivateGameOverlay(struct w_steam_iface *_this, const char *pchDialog) { - struct cppISteamFriends_SteamFriends014_ActivateGameOverlay_params params = + struct ISteamFriends_SteamFriends014_ActivateGameOverlay_params params = { .linux_side = _this->u_iface, .pchDialog = pchDialog, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_ActivateGameOverlay( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_ActivateGameOverlay, ¶ms ); } void __thiscall winISteamFriends_SteamFriends014_ActivateGameOverlayToUser(struct w_steam_iface *_this, const char *pchDialog, CSteamID steamID) { - struct cppISteamFriends_SteamFriends014_ActivateGameOverlayToUser_params params = + struct ISteamFriends_SteamFriends014_ActivateGameOverlayToUser_params params = { .linux_side = _this->u_iface, .pchDialog = pchDialog, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_ActivateGameOverlayToUser( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_ActivateGameOverlayToUser, ¶ms ); } void __thiscall winISteamFriends_SteamFriends014_ActivateGameOverlayToWebPage(struct w_steam_iface *_this, const char *pchURL) { - struct cppISteamFriends_SteamFriends014_ActivateGameOverlayToWebPage_params params = + struct ISteamFriends_SteamFriends014_ActivateGameOverlayToWebPage_params params = { .linux_side = _this->u_iface, .pchURL = pchURL, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_ActivateGameOverlayToWebPage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_ActivateGameOverlayToWebPage, ¶ms ); } void __thiscall winISteamFriends_SteamFriends014_ActivateGameOverlayToStore(struct w_steam_iface *_this, uint32_t nAppID, uint32_t eFlag) { - struct cppISteamFriends_SteamFriends014_ActivateGameOverlayToStore_params params = + struct ISteamFriends_SteamFriends014_ActivateGameOverlayToStore_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, .eFlag = eFlag, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_ActivateGameOverlayToStore( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_ActivateGameOverlayToStore, ¶ms ); } void __thiscall winISteamFriends_SteamFriends014_SetPlayedWith(struct w_steam_iface *_this, CSteamID steamIDUserPlayedWith) { - struct cppISteamFriends_SteamFriends014_SetPlayedWith_params params = + struct ISteamFriends_SteamFriends014_SetPlayedWith_params params = { .linux_side = _this->u_iface, .steamIDUserPlayedWith = steamIDUserPlayedWith, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_SetPlayedWith( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_SetPlayedWith, ¶ms ); } void __thiscall winISteamFriends_SteamFriends014_ActivateGameOverlayInviteDialog(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamFriends_SteamFriends014_ActivateGameOverlayInviteDialog_params params = + struct ISteamFriends_SteamFriends014_ActivateGameOverlayInviteDialog_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_ActivateGameOverlayInviteDialog( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_ActivateGameOverlayInviteDialog, ¶ms ); } int32_t __thiscall winISteamFriends_SteamFriends014_GetSmallFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends014_GetSmallFriendAvatar_params params = + struct ISteamFriends_SteamFriends014_GetSmallFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetSmallFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetSmallFriendAvatar, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends014_GetMediumFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends014_GetMediumFriendAvatar_params params = + struct ISteamFriends_SteamFriends014_GetMediumFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetMediumFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetMediumFriendAvatar, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends014_GetLargeFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends014_GetLargeFriendAvatar_params params = + struct ISteamFriends_SteamFriends014_GetLargeFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetLargeFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetLargeFriendAvatar, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends014_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, bool bRequireNameOnly) { - struct cppISteamFriends_SteamFriends014_RequestUserInformation_params params = + struct ISteamFriends_SteamFriends014_RequestUserInformation_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .bRequireNameOnly = bRequireNameOnly, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_RequestUserInformation( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_RequestUserInformation, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends014_RequestClanOfficerList(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends014_RequestClanOfficerList_params params = + struct ISteamFriends_SteamFriends014_RequestClanOfficerList_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_RequestClanOfficerList( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_RequestClanOfficerList, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends014_GetClanOwner(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends014_GetClanOwner_params params = + struct ISteamFriends_SteamFriends014_GetClanOwner_params params = { .linux_side = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetClanOwner( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetClanOwner, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends014_GetClanOfficerCount(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends014_GetClanOfficerCount_params params = + struct ISteamFriends_SteamFriends014_GetClanOfficerCount_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetClanOfficerCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetClanOfficerCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends014_GetClanOfficerByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iOfficer) { - struct cppISteamFriends_SteamFriends014_GetClanOfficerByIndex_params params = + struct ISteamFriends_SteamFriends014_GetClanOfficerByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -7944,193 +7916,193 @@ CSteamID * __thiscall winISteamFriends_SteamFriends014_GetClanOfficerByIndex(str .iOfficer = iOfficer, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetClanOfficerByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetClanOfficerByIndex, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends014_GetUserRestrictions(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends014_GetUserRestrictions_params params = + struct ISteamFriends_SteamFriends014_GetUserRestrictions_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetUserRestrictions( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetUserRestrictions, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends014_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) { - struct cppISteamFriends_SteamFriends014_SetRichPresence_params params = + struct ISteamFriends_SteamFriends014_SetRichPresence_params params = { .linux_side = _this->u_iface, .pchKey = pchKey, .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_SetRichPresence( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_SetRichPresence, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends014_ClearRichPresence(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends014_ClearRichPresence_params params = + struct ISteamFriends_SteamFriends014_ClearRichPresence_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_ClearRichPresence( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_ClearRichPresence, ¶ms ); } const char * __thiscall winISteamFriends_SteamFriends014_GetFriendRichPresence(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchKey) { - struct cppISteamFriends_SteamFriends014_GetFriendRichPresence_params params = + struct ISteamFriends_SteamFriends014_GetFriendRichPresence_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetFriendRichPresence( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetFriendRichPresence, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends014_GetFriendRichPresenceKeyCount(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends014_GetFriendRichPresenceKeyCount_params params = + struct ISteamFriends_SteamFriends014_GetFriendRichPresenceKeyCount_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetFriendRichPresenceKeyCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetFriendRichPresenceKeyCount, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends014_GetFriendRichPresenceKeyByIndex(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iKey) { - struct cppISteamFriends_SteamFriends014_GetFriendRichPresenceKeyByIndex_params params = + struct ISteamFriends_SteamFriends014_GetFriendRichPresenceKeyByIndex_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iKey = iKey, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetFriendRichPresenceKeyByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetFriendRichPresenceKeyByIndex, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends014_RequestFriendRichPresence(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends014_RequestFriendRichPresence_params params = + struct ISteamFriends_SteamFriends014_RequestFriendRichPresence_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_RequestFriendRichPresence( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_RequestFriendRichPresence, ¶ms ); } bool __thiscall winISteamFriends_SteamFriends014_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) { - struct cppISteamFriends_SteamFriends014_InviteUserToGame_params params = + struct ISteamFriends_SteamFriends014_InviteUserToGame_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pchConnectString = pchConnectString, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_InviteUserToGame( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_InviteUserToGame, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends014_GetCoplayFriendCount(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends014_GetCoplayFriendCount_params params = + struct ISteamFriends_SteamFriends014_GetCoplayFriendCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetCoplayFriendCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetCoplayFriendCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends014_GetCoplayFriend(struct w_steam_iface *_this, CSteamID *_ret, int32_t iCoplayFriend) { - struct cppISteamFriends_SteamFriends014_GetCoplayFriend_params params = + struct ISteamFriends_SteamFriends014_GetCoplayFriend_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iCoplayFriend = iCoplayFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetCoplayFriend( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetCoplayFriend, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends014_GetFriendCoplayTime(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends014_GetFriendCoplayTime_params params = + struct ISteamFriends_SteamFriends014_GetFriendCoplayTime_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetFriendCoplayTime( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetFriendCoplayTime, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends014_GetFriendCoplayGame(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends014_GetFriendCoplayGame_params params = + struct ISteamFriends_SteamFriends014_GetFriendCoplayGame_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetFriendCoplayGame( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetFriendCoplayGame, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends014_JoinClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends014_JoinClanChatRoom_params params = + struct ISteamFriends_SteamFriends014_JoinClanChatRoom_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_JoinClanChatRoom( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_JoinClanChatRoom, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends014_LeaveClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends014_LeaveClanChatRoom_params params = + struct ISteamFriends_SteamFriends014_LeaveClanChatRoom_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_LeaveClanChatRoom( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_LeaveClanChatRoom, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends014_GetClanChatMemberCount(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends014_GetClanChatMemberCount_params params = + struct ISteamFriends_SteamFriends014_GetClanChatMemberCount_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetClanChatMemberCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetClanChatMemberCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends014_GetChatMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iUser) { - struct cppISteamFriends_SteamFriends014_GetChatMemberByIndex_params params = + struct ISteamFriends_SteamFriends014_GetChatMemberByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -8138,26 +8110,26 @@ CSteamID * __thiscall winISteamFriends_SteamFriends014_GetChatMemberByIndex(stru .iUser = iUser, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetChatMemberByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetChatMemberByIndex, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends014_SendClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, const char *pchText) { - struct cppISteamFriends_SteamFriends014_SendClanChatMessage_params params = + struct ISteamFriends_SteamFriends014_SendClanChatMessage_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, .pchText = pchText, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_SendClanChatMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_SendClanChatMessage, ¶ms ); 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) { - struct cppISteamFriends_SteamFriends014_GetClanChatMessage_params params = + struct ISteamFriends_SteamFriends014_GetClanChatMessage_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, @@ -8168,87 +8140,87 @@ int32_t __thiscall winISteamFriends_SteamFriends014_GetClanChatMessage(struct w_ .psteamidChatter = psteamidChatter, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetClanChatMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetClanChatMessage, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends014_IsClanChatAdmin(struct w_steam_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) { - struct cppISteamFriends_SteamFriends014_IsClanChatAdmin_params params = + struct ISteamFriends_SteamFriends014_IsClanChatAdmin_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_IsClanChatAdmin( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_IsClanChatAdmin, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends014_IsClanChatWindowOpenInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { - struct cppISteamFriends_SteamFriends014_IsClanChatWindowOpenInSteam_params params = + struct ISteamFriends_SteamFriends014_IsClanChatWindowOpenInSteam_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_IsClanChatWindowOpenInSteam( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_IsClanChatWindowOpenInSteam, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends014_OpenClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { - struct cppISteamFriends_SteamFriends014_OpenClanChatWindowInSteam_params params = + struct ISteamFriends_SteamFriends014_OpenClanChatWindowInSteam_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_OpenClanChatWindowInSteam( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_OpenClanChatWindowInSteam, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends014_CloseClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { - struct cppISteamFriends_SteamFriends014_CloseClanChatWindowInSteam_params params = + struct ISteamFriends_SteamFriends014_CloseClanChatWindowInSteam_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_CloseClanChatWindowInSteam( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_CloseClanChatWindowInSteam, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends014_SetListenForFriendsMessages(struct w_steam_iface *_this, bool bInterceptEnabled) { - struct cppISteamFriends_SteamFriends014_SetListenForFriendsMessages_params params = + struct ISteamFriends_SteamFriends014_SetListenForFriendsMessages_params params = { .linux_side = _this->u_iface, .bInterceptEnabled = bInterceptEnabled, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_SetListenForFriendsMessages( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_SetListenForFriendsMessages, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends014_ReplyToFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) { - struct cppISteamFriends_SteamFriends014_ReplyToFriendMessage_params params = + struct ISteamFriends_SteamFriends014_ReplyToFriendMessage_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pchMsgToSend = pchMsgToSend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_ReplyToFriendMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_ReplyToFriendMessage, ¶ms ); 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) { - struct cppISteamFriends_SteamFriends014_GetFriendMessage_params params = + struct ISteamFriends_SteamFriends014_GetFriendMessage_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, @@ -8258,43 +8230,43 @@ int32_t __thiscall winISteamFriends_SteamFriends014_GetFriendMessage(struct w_st .peChatEntryType = peChatEntryType, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetFriendMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetFriendMessage, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends014_GetFollowerCount(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamFriends_SteamFriends014_GetFollowerCount_params params = + struct ISteamFriends_SteamFriends014_GetFollowerCount_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_GetFollowerCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetFollowerCount, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends014_IsFollowing(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamFriends_SteamFriends014_IsFollowing_params params = + struct ISteamFriends_SteamFriends014_IsFollowing_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_IsFollowing( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_IsFollowing, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends014_EnumerateFollowingList(struct w_steam_iface *_this, uint32_t unStartIndex) { - struct cppISteamFriends_SteamFriends014_EnumerateFollowingList_params params = + struct ISteamFriends_SteamFriends014_EnumerateFollowingList_params params = { .linux_side = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends014_EnumerateFollowingList( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_EnumerateFollowingList, ¶ms ); return params._ret; } @@ -8380,8 +8352,6 @@ struct w_steam_iface *create_winISteamFriends_SteamFriends014(void *u_iface) return r; } -#include "cppISteamFriends_SteamFriends015.h" - DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends015_GetPersonaName, 4) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends015_SetPersonaName, 8) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends015_GetPersonaState, 4) @@ -8457,53 +8427,53 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends015_IsClanOfficialGameGroup const char * __thiscall winISteamFriends_SteamFriends015_GetPersonaName(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends015_GetPersonaName_params params = + struct ISteamFriends_SteamFriends015_GetPersonaName_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetPersonaName, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends015_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) { - struct cppISteamFriends_SteamFriends015_SetPersonaName_params params = + struct ISteamFriends_SteamFriends015_SetPersonaName_params params = { .linux_side = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_SetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_SetPersonaName, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends015_GetPersonaState(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends015_GetPersonaState_params params = + struct ISteamFriends_SteamFriends015_GetPersonaState_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetPersonaState, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends015_GetFriendCount(struct w_steam_iface *_this, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends015_GetFriendCount_params params = + struct ISteamFriends_SteamFriends015_GetFriendCount_params params = { .linux_side = _this->u_iface, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetFriendCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetFriendCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends015_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends015_GetFriendByIndex_params params = + struct ISteamFriends_SteamFriends015_GetFriendByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -8511,146 +8481,146 @@ CSteamID * __thiscall winISteamFriends_SteamFriends015_GetFriendByIndex(struct w .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetFriendByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetFriendByIndex, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends015_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends015_GetFriendRelationship_params params = + struct ISteamFriends_SteamFriends015_GetFriendRelationship_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetFriendRelationship( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetFriendRelationship, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends015_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends015_GetFriendPersonaState_params params = + struct ISteamFriends_SteamFriends015_GetFriendPersonaState_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetFriendPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetFriendPersonaState, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends015_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends015_GetFriendPersonaName_params params = + struct ISteamFriends_SteamFriends015_GetFriendPersonaName_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetFriendPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetFriendPersonaName, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends015_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { - struct cppISteamFriends_SteamFriends015_GetFriendGamePlayed_params params = + struct ISteamFriends_SteamFriends015_GetFriendGamePlayed_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pFriendGameInfo = pFriendGameInfo, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetFriendGamePlayed( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetFriendGamePlayed, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends015_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { - struct cppISteamFriends_SteamFriends015_GetFriendPersonaNameHistory_params params = + struct ISteamFriends_SteamFriends015_GetFriendPersonaNameHistory_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetFriendPersonaNameHistory( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetFriendPersonaNameHistory, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends015_GetFriendSteamLevel(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends015_GetFriendSteamLevel_params params = + struct ISteamFriends_SteamFriends015_GetFriendSteamLevel_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetFriendSteamLevel( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetFriendSteamLevel, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends015_GetPlayerNickname(struct w_steam_iface *_this, CSteamID steamIDPlayer) { - struct cppISteamFriends_SteamFriends015_GetPlayerNickname_params params = + struct ISteamFriends_SteamFriends015_GetPlayerNickname_params params = { .linux_side = _this->u_iface, .steamIDPlayer = steamIDPlayer, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetPlayerNickname( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetPlayerNickname, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends015_GetFriendsGroupCount(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends015_GetFriendsGroupCount_params params = + struct ISteamFriends_SteamFriends015_GetFriendsGroupCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetFriendsGroupCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetFriendsGroupCount, ¶ms ); return params._ret; } int16_t __thiscall winISteamFriends_SteamFriends015_GetFriendsGroupIDByIndex(struct w_steam_iface *_this, int32_t iFG) { - struct cppISteamFriends_SteamFriends015_GetFriendsGroupIDByIndex_params params = + struct ISteamFriends_SteamFriends015_GetFriendsGroupIDByIndex_params params = { .linux_side = _this->u_iface, .iFG = iFG, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetFriendsGroupIDByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetFriendsGroupIDByIndex, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends015_GetFriendsGroupName(struct w_steam_iface *_this, int16_t friendsGroupID) { - struct cppISteamFriends_SteamFriends015_GetFriendsGroupName_params params = + struct ISteamFriends_SteamFriends015_GetFriendsGroupName_params params = { .linux_side = _this->u_iface, .friendsGroupID = friendsGroupID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetFriendsGroupName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetFriendsGroupName, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends015_GetFriendsGroupMembersCount(struct w_steam_iface *_this, int16_t friendsGroupID) { - struct cppISteamFriends_SteamFriends015_GetFriendsGroupMembersCount_params params = + struct ISteamFriends_SteamFriends015_GetFriendsGroupMembersCount_params params = { .linux_side = _this->u_iface, .friendsGroupID = friendsGroupID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetFriendsGroupMembersCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetFriendsGroupMembersCount, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends015_GetFriendsGroupMembersList(struct w_steam_iface *_this, int16_t friendsGroupID, CSteamID *pOutSteamIDMembers, int32_t nMembersCount) { - struct cppISteamFriends_SteamFriends015_GetFriendsGroupMembersList_params params = + struct ISteamFriends_SteamFriends015_GetFriendsGroupMembersList_params params = { .linux_side = _this->u_iface, .friendsGroupID = friendsGroupID, @@ -8658,73 +8628,73 @@ void __thiscall winISteamFriends_SteamFriends015_GetFriendsGroupMembersList(stru .nMembersCount = nMembersCount, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetFriendsGroupMembersList( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetFriendsGroupMembersList, ¶ms ); } bool __thiscall winISteamFriends_SteamFriends015_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends015_HasFriend_params params = + struct ISteamFriends_SteamFriends015_HasFriend_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_HasFriend( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_HasFriend, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends015_GetClanCount(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends015_GetClanCount_params params = + struct ISteamFriends_SteamFriends015_GetClanCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetClanCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetClanCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends015_GetClanByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iClan) { - struct cppISteamFriends_SteamFriends015_GetClanByIndex_params params = + struct ISteamFriends_SteamFriends015_GetClanByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iClan = iClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetClanByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetClanByIndex, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends015_GetClanName(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends015_GetClanName_params params = + struct ISteamFriends_SteamFriends015_GetClanName_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetClanName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetClanName, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends015_GetClanTag(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends015_GetClanTag_params params = + struct ISteamFriends_SteamFriends015_GetClanTag_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetClanTag( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetClanTag, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends015_GetClanActivityCounts(struct w_steam_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) { - struct cppISteamFriends_SteamFriends015_GetClanActivityCounts_params params = + struct ISteamFriends_SteamFriends015_GetClanActivityCounts_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, @@ -8733,38 +8703,38 @@ bool __thiscall winISteamFriends_SteamFriends015_GetClanActivityCounts(struct w_ .pnChatting = pnChatting, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetClanActivityCounts( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetClanActivityCounts, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends015_DownloadClanActivityCounts(struct w_steam_iface *_this, CSteamID *psteamIDClans, int32_t cClansToRequest) { - struct cppISteamFriends_SteamFriends015_DownloadClanActivityCounts_params params = + struct ISteamFriends_SteamFriends015_DownloadClanActivityCounts_params params = { .linux_side = _this->u_iface, .psteamIDClans = psteamIDClans, .cClansToRequest = cClansToRequest, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_DownloadClanActivityCounts( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_DownloadClanActivityCounts, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends015_GetFriendCountFromSource(struct w_steam_iface *_this, CSteamID steamIDSource) { - struct cppISteamFriends_SteamFriends015_GetFriendCountFromSource_params params = + struct ISteamFriends_SteamFriends015_GetFriendCountFromSource_params params = { .linux_side = _this->u_iface, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetFriendCountFromSource( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetFriendCountFromSource, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends015_GetFriendFromSourceByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) { - struct cppISteamFriends_SteamFriends015_GetFriendFromSourceByIndex_params params = + struct ISteamFriends_SteamFriends015_GetFriendFromSourceByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -8772,192 +8742,192 @@ CSteamID * __thiscall winISteamFriends_SteamFriends015_GetFriendFromSourceByInde .iFriend = iFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetFriendFromSourceByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetFriendFromSourceByIndex, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends015_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { - struct cppISteamFriends_SteamFriends015_IsUserInSource_params params = + struct ISteamFriends_SteamFriends015_IsUserInSource_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_IsUserInSource( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_IsUserInSource, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends015_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, bool bSpeaking) { - struct cppISteamFriends_SteamFriends015_SetInGameVoiceSpeaking_params params = + struct ISteamFriends_SteamFriends015_SetInGameVoiceSpeaking_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .bSpeaking = bSpeaking, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_SetInGameVoiceSpeaking( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_SetInGameVoiceSpeaking, ¶ms ); } void __thiscall winISteamFriends_SteamFriends015_ActivateGameOverlay(struct w_steam_iface *_this, const char *pchDialog) { - struct cppISteamFriends_SteamFriends015_ActivateGameOverlay_params params = + struct ISteamFriends_SteamFriends015_ActivateGameOverlay_params params = { .linux_side = _this->u_iface, .pchDialog = pchDialog, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_ActivateGameOverlay( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_ActivateGameOverlay, ¶ms ); } void __thiscall winISteamFriends_SteamFriends015_ActivateGameOverlayToUser(struct w_steam_iface *_this, const char *pchDialog, CSteamID steamID) { - struct cppISteamFriends_SteamFriends015_ActivateGameOverlayToUser_params params = + struct ISteamFriends_SteamFriends015_ActivateGameOverlayToUser_params params = { .linux_side = _this->u_iface, .pchDialog = pchDialog, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_ActivateGameOverlayToUser( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_ActivateGameOverlayToUser, ¶ms ); } void __thiscall winISteamFriends_SteamFriends015_ActivateGameOverlayToWebPage(struct w_steam_iface *_this, const char *pchURL) { - struct cppISteamFriends_SteamFriends015_ActivateGameOverlayToWebPage_params params = + struct ISteamFriends_SteamFriends015_ActivateGameOverlayToWebPage_params params = { .linux_side = _this->u_iface, .pchURL = pchURL, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_ActivateGameOverlayToWebPage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_ActivateGameOverlayToWebPage, ¶ms ); } void __thiscall winISteamFriends_SteamFriends015_ActivateGameOverlayToStore(struct w_steam_iface *_this, uint32_t nAppID, uint32_t eFlag) { - struct cppISteamFriends_SteamFriends015_ActivateGameOverlayToStore_params params = + struct ISteamFriends_SteamFriends015_ActivateGameOverlayToStore_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, .eFlag = eFlag, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_ActivateGameOverlayToStore( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_ActivateGameOverlayToStore, ¶ms ); } void __thiscall winISteamFriends_SteamFriends015_SetPlayedWith(struct w_steam_iface *_this, CSteamID steamIDUserPlayedWith) { - struct cppISteamFriends_SteamFriends015_SetPlayedWith_params params = + struct ISteamFriends_SteamFriends015_SetPlayedWith_params params = { .linux_side = _this->u_iface, .steamIDUserPlayedWith = steamIDUserPlayedWith, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_SetPlayedWith( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_SetPlayedWith, ¶ms ); } void __thiscall winISteamFriends_SteamFriends015_ActivateGameOverlayInviteDialog(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamFriends_SteamFriends015_ActivateGameOverlayInviteDialog_params params = + struct ISteamFriends_SteamFriends015_ActivateGameOverlayInviteDialog_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_ActivateGameOverlayInviteDialog( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_ActivateGameOverlayInviteDialog, ¶ms ); } int32_t __thiscall winISteamFriends_SteamFriends015_GetSmallFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends015_GetSmallFriendAvatar_params params = + struct ISteamFriends_SteamFriends015_GetSmallFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetSmallFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetSmallFriendAvatar, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends015_GetMediumFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends015_GetMediumFriendAvatar_params params = + struct ISteamFriends_SteamFriends015_GetMediumFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetMediumFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetMediumFriendAvatar, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends015_GetLargeFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends015_GetLargeFriendAvatar_params params = + struct ISteamFriends_SteamFriends015_GetLargeFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetLargeFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetLargeFriendAvatar, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends015_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, bool bRequireNameOnly) { - struct cppISteamFriends_SteamFriends015_RequestUserInformation_params params = + struct ISteamFriends_SteamFriends015_RequestUserInformation_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .bRequireNameOnly = bRequireNameOnly, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_RequestUserInformation( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_RequestUserInformation, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends015_RequestClanOfficerList(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends015_RequestClanOfficerList_params params = + struct ISteamFriends_SteamFriends015_RequestClanOfficerList_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_RequestClanOfficerList( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_RequestClanOfficerList, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends015_GetClanOwner(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends015_GetClanOwner_params params = + struct ISteamFriends_SteamFriends015_GetClanOwner_params params = { .linux_side = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetClanOwner( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetClanOwner, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends015_GetClanOfficerCount(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends015_GetClanOfficerCount_params params = + struct ISteamFriends_SteamFriends015_GetClanOfficerCount_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetClanOfficerCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetClanOfficerCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends015_GetClanOfficerByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iOfficer) { - struct cppISteamFriends_SteamFriends015_GetClanOfficerByIndex_params params = + struct ISteamFriends_SteamFriends015_GetClanOfficerByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -8965,193 +8935,193 @@ CSteamID * __thiscall winISteamFriends_SteamFriends015_GetClanOfficerByIndex(str .iOfficer = iOfficer, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetClanOfficerByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetClanOfficerByIndex, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends015_GetUserRestrictions(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends015_GetUserRestrictions_params params = + struct ISteamFriends_SteamFriends015_GetUserRestrictions_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetUserRestrictions( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetUserRestrictions, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends015_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) { - struct cppISteamFriends_SteamFriends015_SetRichPresence_params params = + struct ISteamFriends_SteamFriends015_SetRichPresence_params params = { .linux_side = _this->u_iface, .pchKey = pchKey, .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_SetRichPresence( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_SetRichPresence, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends015_ClearRichPresence(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends015_ClearRichPresence_params params = + struct ISteamFriends_SteamFriends015_ClearRichPresence_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_ClearRichPresence( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_ClearRichPresence, ¶ms ); } const char * __thiscall winISteamFriends_SteamFriends015_GetFriendRichPresence(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchKey) { - struct cppISteamFriends_SteamFriends015_GetFriendRichPresence_params params = + struct ISteamFriends_SteamFriends015_GetFriendRichPresence_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetFriendRichPresence( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetFriendRichPresence, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends015_GetFriendRichPresenceKeyCount(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends015_GetFriendRichPresenceKeyCount_params params = + struct ISteamFriends_SteamFriends015_GetFriendRichPresenceKeyCount_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetFriendRichPresenceKeyCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetFriendRichPresenceKeyCount, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends015_GetFriendRichPresenceKeyByIndex(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iKey) { - struct cppISteamFriends_SteamFriends015_GetFriendRichPresenceKeyByIndex_params params = + struct ISteamFriends_SteamFriends015_GetFriendRichPresenceKeyByIndex_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iKey = iKey, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetFriendRichPresenceKeyByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetFriendRichPresenceKeyByIndex, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends015_RequestFriendRichPresence(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends015_RequestFriendRichPresence_params params = + struct ISteamFriends_SteamFriends015_RequestFriendRichPresence_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_RequestFriendRichPresence( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_RequestFriendRichPresence, ¶ms ); } bool __thiscall winISteamFriends_SteamFriends015_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) { - struct cppISteamFriends_SteamFriends015_InviteUserToGame_params params = + struct ISteamFriends_SteamFriends015_InviteUserToGame_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pchConnectString = pchConnectString, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_InviteUserToGame( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_InviteUserToGame, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends015_GetCoplayFriendCount(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends015_GetCoplayFriendCount_params params = + struct ISteamFriends_SteamFriends015_GetCoplayFriendCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetCoplayFriendCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetCoplayFriendCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends015_GetCoplayFriend(struct w_steam_iface *_this, CSteamID *_ret, int32_t iCoplayFriend) { - struct cppISteamFriends_SteamFriends015_GetCoplayFriend_params params = + struct ISteamFriends_SteamFriends015_GetCoplayFriend_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iCoplayFriend = iCoplayFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetCoplayFriend( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetCoplayFriend, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends015_GetFriendCoplayTime(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends015_GetFriendCoplayTime_params params = + struct ISteamFriends_SteamFriends015_GetFriendCoplayTime_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetFriendCoplayTime( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetFriendCoplayTime, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends015_GetFriendCoplayGame(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends015_GetFriendCoplayGame_params params = + struct ISteamFriends_SteamFriends015_GetFriendCoplayGame_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetFriendCoplayGame( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetFriendCoplayGame, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends015_JoinClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends015_JoinClanChatRoom_params params = + struct ISteamFriends_SteamFriends015_JoinClanChatRoom_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_JoinClanChatRoom( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_JoinClanChatRoom, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends015_LeaveClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends015_LeaveClanChatRoom_params params = + struct ISteamFriends_SteamFriends015_LeaveClanChatRoom_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_LeaveClanChatRoom( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_LeaveClanChatRoom, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends015_GetClanChatMemberCount(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends015_GetClanChatMemberCount_params params = + struct ISteamFriends_SteamFriends015_GetClanChatMemberCount_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetClanChatMemberCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetClanChatMemberCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends015_GetChatMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iUser) { - struct cppISteamFriends_SteamFriends015_GetChatMemberByIndex_params params = + struct ISteamFriends_SteamFriends015_GetChatMemberByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -9159,26 +9129,26 @@ CSteamID * __thiscall winISteamFriends_SteamFriends015_GetChatMemberByIndex(stru .iUser = iUser, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetChatMemberByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetChatMemberByIndex, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends015_SendClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, const char *pchText) { - struct cppISteamFriends_SteamFriends015_SendClanChatMessage_params params = + struct ISteamFriends_SteamFriends015_SendClanChatMessage_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, .pchText = pchText, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_SendClanChatMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_SendClanChatMessage, ¶ms ); 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) { - struct cppISteamFriends_SteamFriends015_GetClanChatMessage_params params = + struct ISteamFriends_SteamFriends015_GetClanChatMessage_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, @@ -9189,87 +9159,87 @@ int32_t __thiscall winISteamFriends_SteamFriends015_GetClanChatMessage(struct w_ .psteamidChatter = psteamidChatter, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetClanChatMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetClanChatMessage, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends015_IsClanChatAdmin(struct w_steam_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) { - struct cppISteamFriends_SteamFriends015_IsClanChatAdmin_params params = + struct ISteamFriends_SteamFriends015_IsClanChatAdmin_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_IsClanChatAdmin( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_IsClanChatAdmin, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends015_IsClanChatWindowOpenInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { - struct cppISteamFriends_SteamFriends015_IsClanChatWindowOpenInSteam_params params = + struct ISteamFriends_SteamFriends015_IsClanChatWindowOpenInSteam_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_IsClanChatWindowOpenInSteam( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_IsClanChatWindowOpenInSteam, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends015_OpenClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { - struct cppISteamFriends_SteamFriends015_OpenClanChatWindowInSteam_params params = + struct ISteamFriends_SteamFriends015_OpenClanChatWindowInSteam_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_OpenClanChatWindowInSteam( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_OpenClanChatWindowInSteam, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends015_CloseClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { - struct cppISteamFriends_SteamFriends015_CloseClanChatWindowInSteam_params params = + struct ISteamFriends_SteamFriends015_CloseClanChatWindowInSteam_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_CloseClanChatWindowInSteam( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_CloseClanChatWindowInSteam, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends015_SetListenForFriendsMessages(struct w_steam_iface *_this, bool bInterceptEnabled) { - struct cppISteamFriends_SteamFriends015_SetListenForFriendsMessages_params params = + struct ISteamFriends_SteamFriends015_SetListenForFriendsMessages_params params = { .linux_side = _this->u_iface, .bInterceptEnabled = bInterceptEnabled, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_SetListenForFriendsMessages( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_SetListenForFriendsMessages, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends015_ReplyToFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) { - struct cppISteamFriends_SteamFriends015_ReplyToFriendMessage_params params = + struct ISteamFriends_SteamFriends015_ReplyToFriendMessage_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pchMsgToSend = pchMsgToSend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_ReplyToFriendMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_ReplyToFriendMessage, ¶ms ); 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) { - struct cppISteamFriends_SteamFriends015_GetFriendMessage_params params = + struct ISteamFriends_SteamFriends015_GetFriendMessage_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, @@ -9279,67 +9249,67 @@ int32_t __thiscall winISteamFriends_SteamFriends015_GetFriendMessage(struct w_st .peChatEntryType = peChatEntryType, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetFriendMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetFriendMessage, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends015_GetFollowerCount(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamFriends_SteamFriends015_GetFollowerCount_params params = + struct ISteamFriends_SteamFriends015_GetFollowerCount_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_GetFollowerCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetFollowerCount, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends015_IsFollowing(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamFriends_SteamFriends015_IsFollowing_params params = + struct ISteamFriends_SteamFriends015_IsFollowing_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_IsFollowing( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_IsFollowing, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends015_EnumerateFollowingList(struct w_steam_iface *_this, uint32_t unStartIndex) { - struct cppISteamFriends_SteamFriends015_EnumerateFollowingList_params params = + struct ISteamFriends_SteamFriends015_EnumerateFollowingList_params params = { .linux_side = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_EnumerateFollowingList( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_EnumerateFollowingList, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends015_IsClanPublic(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends015_IsClanPublic_params params = + struct ISteamFriends_SteamFriends015_IsClanPublic_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_IsClanPublic( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_IsClanPublic, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends015_IsClanOfficialGameGroup(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends015_IsClanOfficialGameGroup_params params = + struct ISteamFriends_SteamFriends015_IsClanOfficialGameGroup_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends015_IsClanOfficialGameGroup( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_IsClanOfficialGameGroup, ¶ms ); return params._ret; } @@ -9433,8 +9403,6 @@ struct w_steam_iface *create_winISteamFriends_SteamFriends015(void *u_iface) return r; } -#include "cppISteamFriends_SteamFriends017.h" - DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends017_GetPersonaName, 4) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends017_SetPersonaName, 8) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends017_GetPersonaState, 4) @@ -9518,53 +9486,53 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends017_GetProfileItemPropertyU const char * __thiscall winISteamFriends_SteamFriends017_GetPersonaName(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends017_GetPersonaName_params params = + struct ISteamFriends_SteamFriends017_GetPersonaName_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetPersonaName, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends017_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) { - struct cppISteamFriends_SteamFriends017_SetPersonaName_params params = + struct ISteamFriends_SteamFriends017_SetPersonaName_params params = { .linux_side = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_SetPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_SetPersonaName, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends017_GetPersonaState(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends017_GetPersonaState_params params = + struct ISteamFriends_SteamFriends017_GetPersonaState_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetPersonaState, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends017_GetFriendCount(struct w_steam_iface *_this, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends017_GetFriendCount_params params = + struct ISteamFriends_SteamFriends017_GetFriendCount_params params = { .linux_side = _this->u_iface, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetFriendCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetFriendCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends017_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends017_GetFriendByIndex_params params = + struct ISteamFriends_SteamFriends017_GetFriendByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -9572,146 +9540,146 @@ CSteamID * __thiscall winISteamFriends_SteamFriends017_GetFriendByIndex(struct w .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetFriendByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetFriendByIndex, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends017_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends017_GetFriendRelationship_params params = + struct ISteamFriends_SteamFriends017_GetFriendRelationship_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetFriendRelationship( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetFriendRelationship, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends017_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends017_GetFriendPersonaState_params params = + struct ISteamFriends_SteamFriends017_GetFriendPersonaState_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetFriendPersonaState( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetFriendPersonaState, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends017_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends017_GetFriendPersonaName_params params = + struct ISteamFriends_SteamFriends017_GetFriendPersonaName_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetFriendPersonaName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetFriendPersonaName, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends017_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { - struct cppISteamFriends_SteamFriends017_GetFriendGamePlayed_params params = + struct ISteamFriends_SteamFriends017_GetFriendGamePlayed_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pFriendGameInfo = pFriendGameInfo, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetFriendGamePlayed( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetFriendGamePlayed, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends017_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { - struct cppISteamFriends_SteamFriends017_GetFriendPersonaNameHistory_params params = + struct ISteamFriends_SteamFriends017_GetFriendPersonaNameHistory_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetFriendPersonaNameHistory( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetFriendPersonaNameHistory, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends017_GetFriendSteamLevel(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends017_GetFriendSteamLevel_params params = + struct ISteamFriends_SteamFriends017_GetFriendSteamLevel_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetFriendSteamLevel( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetFriendSteamLevel, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends017_GetPlayerNickname(struct w_steam_iface *_this, CSteamID steamIDPlayer) { - struct cppISteamFriends_SteamFriends017_GetPlayerNickname_params params = + struct ISteamFriends_SteamFriends017_GetPlayerNickname_params params = { .linux_side = _this->u_iface, .steamIDPlayer = steamIDPlayer, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetPlayerNickname( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetPlayerNickname, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends017_GetFriendsGroupCount(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends017_GetFriendsGroupCount_params params = + struct ISteamFriends_SteamFriends017_GetFriendsGroupCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetFriendsGroupCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetFriendsGroupCount, ¶ms ); return params._ret; } int16_t __thiscall winISteamFriends_SteamFriends017_GetFriendsGroupIDByIndex(struct w_steam_iface *_this, int32_t iFG) { - struct cppISteamFriends_SteamFriends017_GetFriendsGroupIDByIndex_params params = + struct ISteamFriends_SteamFriends017_GetFriendsGroupIDByIndex_params params = { .linux_side = _this->u_iface, .iFG = iFG, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetFriendsGroupIDByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetFriendsGroupIDByIndex, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends017_GetFriendsGroupName(struct w_steam_iface *_this, int16_t friendsGroupID) { - struct cppISteamFriends_SteamFriends017_GetFriendsGroupName_params params = + struct ISteamFriends_SteamFriends017_GetFriendsGroupName_params params = { .linux_side = _this->u_iface, .friendsGroupID = friendsGroupID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetFriendsGroupName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetFriendsGroupName, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends017_GetFriendsGroupMembersCount(struct w_steam_iface *_this, int16_t friendsGroupID) { - struct cppISteamFriends_SteamFriends017_GetFriendsGroupMembersCount_params params = + struct ISteamFriends_SteamFriends017_GetFriendsGroupMembersCount_params params = { .linux_side = _this->u_iface, .friendsGroupID = friendsGroupID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetFriendsGroupMembersCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetFriendsGroupMembersCount, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends017_GetFriendsGroupMembersList(struct w_steam_iface *_this, int16_t friendsGroupID, CSteamID *pOutSteamIDMembers, int32_t nMembersCount) { - struct cppISteamFriends_SteamFriends017_GetFriendsGroupMembersList_params params = + struct ISteamFriends_SteamFriends017_GetFriendsGroupMembersList_params params = { .linux_side = _this->u_iface, .friendsGroupID = friendsGroupID, @@ -9719,73 +9687,73 @@ void __thiscall winISteamFriends_SteamFriends017_GetFriendsGroupMembersList(stru .nMembersCount = nMembersCount, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetFriendsGroupMembersList( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetFriendsGroupMembersList, ¶ms ); } bool __thiscall winISteamFriends_SteamFriends017_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { - struct cppISteamFriends_SteamFriends017_HasFriend_params params = + struct ISteamFriends_SteamFriends017_HasFriend_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_HasFriend( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_HasFriend, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends017_GetClanCount(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends017_GetClanCount_params params = + struct ISteamFriends_SteamFriends017_GetClanCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetClanCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetClanCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends017_GetClanByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iClan) { - struct cppISteamFriends_SteamFriends017_GetClanByIndex_params params = + struct ISteamFriends_SteamFriends017_GetClanByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iClan = iClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetClanByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetClanByIndex, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends017_GetClanName(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends017_GetClanName_params params = + struct ISteamFriends_SteamFriends017_GetClanName_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetClanName( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetClanName, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends017_GetClanTag(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends017_GetClanTag_params params = + struct ISteamFriends_SteamFriends017_GetClanTag_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetClanTag( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetClanTag, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends017_GetClanActivityCounts(struct w_steam_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) { - struct cppISteamFriends_SteamFriends017_GetClanActivityCounts_params params = + struct ISteamFriends_SteamFriends017_GetClanActivityCounts_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, @@ -9794,38 +9762,38 @@ bool __thiscall winISteamFriends_SteamFriends017_GetClanActivityCounts(struct w_ .pnChatting = pnChatting, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetClanActivityCounts( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetClanActivityCounts, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends017_DownloadClanActivityCounts(struct w_steam_iface *_this, CSteamID *psteamIDClans, int32_t cClansToRequest) { - struct cppISteamFriends_SteamFriends017_DownloadClanActivityCounts_params params = + struct ISteamFriends_SteamFriends017_DownloadClanActivityCounts_params params = { .linux_side = _this->u_iface, .psteamIDClans = psteamIDClans, .cClansToRequest = cClansToRequest, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_DownloadClanActivityCounts( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_DownloadClanActivityCounts, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends017_GetFriendCountFromSource(struct w_steam_iface *_this, CSteamID steamIDSource) { - struct cppISteamFriends_SteamFriends017_GetFriendCountFromSource_params params = + struct ISteamFriends_SteamFriends017_GetFriendCountFromSource_params params = { .linux_side = _this->u_iface, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetFriendCountFromSource( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetFriendCountFromSource, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends017_GetFriendFromSourceByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) { - struct cppISteamFriends_SteamFriends017_GetFriendFromSourceByIndex_params params = + struct ISteamFriends_SteamFriends017_GetFriendFromSourceByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -9833,193 +9801,193 @@ CSteamID * __thiscall winISteamFriends_SteamFriends017_GetFriendFromSourceByInde .iFriend = iFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetFriendFromSourceByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetFriendFromSourceByIndex, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends017_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { - struct cppISteamFriends_SteamFriends017_IsUserInSource_params params = + struct ISteamFriends_SteamFriends017_IsUserInSource_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_IsUserInSource( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_IsUserInSource, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends017_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, bool bSpeaking) { - struct cppISteamFriends_SteamFriends017_SetInGameVoiceSpeaking_params params = + struct ISteamFriends_SteamFriends017_SetInGameVoiceSpeaking_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .bSpeaking = bSpeaking, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_SetInGameVoiceSpeaking( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_SetInGameVoiceSpeaking, ¶ms ); } void __thiscall winISteamFriends_SteamFriends017_ActivateGameOverlay(struct w_steam_iface *_this, const char *pchDialog) { - struct cppISteamFriends_SteamFriends017_ActivateGameOverlay_params params = + struct ISteamFriends_SteamFriends017_ActivateGameOverlay_params params = { .linux_side = _this->u_iface, .pchDialog = pchDialog, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_ActivateGameOverlay( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_ActivateGameOverlay, ¶ms ); } void __thiscall winISteamFriends_SteamFriends017_ActivateGameOverlayToUser(struct w_steam_iface *_this, const char *pchDialog, CSteamID steamID) { - struct cppISteamFriends_SteamFriends017_ActivateGameOverlayToUser_params params = + struct ISteamFriends_SteamFriends017_ActivateGameOverlayToUser_params params = { .linux_side = _this->u_iface, .pchDialog = pchDialog, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_ActivateGameOverlayToUser( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_ActivateGameOverlayToUser, ¶ms ); } void __thiscall winISteamFriends_SteamFriends017_ActivateGameOverlayToWebPage(struct w_steam_iface *_this, const char *pchURL, uint32_t eMode) { - struct cppISteamFriends_SteamFriends017_ActivateGameOverlayToWebPage_params params = + struct ISteamFriends_SteamFriends017_ActivateGameOverlayToWebPage_params params = { .linux_side = _this->u_iface, .pchURL = pchURL, .eMode = eMode, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_ActivateGameOverlayToWebPage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_ActivateGameOverlayToWebPage, ¶ms ); } void __thiscall winISteamFriends_SteamFriends017_ActivateGameOverlayToStore(struct w_steam_iface *_this, uint32_t nAppID, uint32_t eFlag) { - struct cppISteamFriends_SteamFriends017_ActivateGameOverlayToStore_params params = + struct ISteamFriends_SteamFriends017_ActivateGameOverlayToStore_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, .eFlag = eFlag, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_ActivateGameOverlayToStore( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_ActivateGameOverlayToStore, ¶ms ); } void __thiscall winISteamFriends_SteamFriends017_SetPlayedWith(struct w_steam_iface *_this, CSteamID steamIDUserPlayedWith) { - struct cppISteamFriends_SteamFriends017_SetPlayedWith_params params = + struct ISteamFriends_SteamFriends017_SetPlayedWith_params params = { .linux_side = _this->u_iface, .steamIDUserPlayedWith = steamIDUserPlayedWith, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_SetPlayedWith( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_SetPlayedWith, ¶ms ); } void __thiscall winISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialog(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialog_params params = + struct ISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialog_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialog( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialog, ¶ms ); } int32_t __thiscall winISteamFriends_SteamFriends017_GetSmallFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends017_GetSmallFriendAvatar_params params = + struct ISteamFriends_SteamFriends017_GetSmallFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetSmallFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetSmallFriendAvatar, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends017_GetMediumFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends017_GetMediumFriendAvatar_params params = + struct ISteamFriends_SteamFriends017_GetMediumFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetMediumFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetMediumFriendAvatar, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends017_GetLargeFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends017_GetLargeFriendAvatar_params params = + struct ISteamFriends_SteamFriends017_GetLargeFriendAvatar_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetLargeFriendAvatar( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetLargeFriendAvatar, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends017_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, bool bRequireNameOnly) { - struct cppISteamFriends_SteamFriends017_RequestUserInformation_params params = + struct ISteamFriends_SteamFriends017_RequestUserInformation_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .bRequireNameOnly = bRequireNameOnly, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_RequestUserInformation( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_RequestUserInformation, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends017_RequestClanOfficerList(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends017_RequestClanOfficerList_params params = + struct ISteamFriends_SteamFriends017_RequestClanOfficerList_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_RequestClanOfficerList( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_RequestClanOfficerList, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends017_GetClanOwner(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends017_GetClanOwner_params params = + struct ISteamFriends_SteamFriends017_GetClanOwner_params params = { .linux_side = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetClanOwner( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetClanOwner, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends017_GetClanOfficerCount(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends017_GetClanOfficerCount_params params = + struct ISteamFriends_SteamFriends017_GetClanOfficerCount_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetClanOfficerCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetClanOfficerCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends017_GetClanOfficerByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iOfficer) { - struct cppISteamFriends_SteamFriends017_GetClanOfficerByIndex_params params = + struct ISteamFriends_SteamFriends017_GetClanOfficerByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -10027,193 +9995,193 @@ CSteamID * __thiscall winISteamFriends_SteamFriends017_GetClanOfficerByIndex(str .iOfficer = iOfficer, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetClanOfficerByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetClanOfficerByIndex, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends017_GetUserRestrictions(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends017_GetUserRestrictions_params params = + struct ISteamFriends_SteamFriends017_GetUserRestrictions_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetUserRestrictions( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetUserRestrictions, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends017_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) { - struct cppISteamFriends_SteamFriends017_SetRichPresence_params params = + struct ISteamFriends_SteamFriends017_SetRichPresence_params params = { .linux_side = _this->u_iface, .pchKey = pchKey, .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_SetRichPresence( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_SetRichPresence, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends017_ClearRichPresence(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends017_ClearRichPresence_params params = + struct ISteamFriends_SteamFriends017_ClearRichPresence_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_ClearRichPresence( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_ClearRichPresence, ¶ms ); } const char * __thiscall winISteamFriends_SteamFriends017_GetFriendRichPresence(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchKey) { - struct cppISteamFriends_SteamFriends017_GetFriendRichPresence_params params = + struct ISteamFriends_SteamFriends017_GetFriendRichPresence_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetFriendRichPresence( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetFriendRichPresence, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends017_GetFriendRichPresenceKeyCount(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends017_GetFriendRichPresenceKeyCount_params params = + struct ISteamFriends_SteamFriends017_GetFriendRichPresenceKeyCount_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetFriendRichPresenceKeyCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetFriendRichPresenceKeyCount, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends017_GetFriendRichPresenceKeyByIndex(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iKey) { - struct cppISteamFriends_SteamFriends017_GetFriendRichPresenceKeyByIndex_params params = + struct ISteamFriends_SteamFriends017_GetFriendRichPresenceKeyByIndex_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .iKey = iKey, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetFriendRichPresenceKeyByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetFriendRichPresenceKeyByIndex, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends017_RequestFriendRichPresence(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends017_RequestFriendRichPresence_params params = + struct ISteamFriends_SteamFriends017_RequestFriendRichPresence_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_RequestFriendRichPresence( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_RequestFriendRichPresence, ¶ms ); } bool __thiscall winISteamFriends_SteamFriends017_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) { - struct cppISteamFriends_SteamFriends017_InviteUserToGame_params params = + struct ISteamFriends_SteamFriends017_InviteUserToGame_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pchConnectString = pchConnectString, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_InviteUserToGame( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_InviteUserToGame, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends017_GetCoplayFriendCount(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends017_GetCoplayFriendCount_params params = + struct ISteamFriends_SteamFriends017_GetCoplayFriendCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetCoplayFriendCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetCoplayFriendCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends017_GetCoplayFriend(struct w_steam_iface *_this, CSteamID *_ret, int32_t iCoplayFriend) { - struct cppISteamFriends_SteamFriends017_GetCoplayFriend_params params = + struct ISteamFriends_SteamFriends017_GetCoplayFriend_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iCoplayFriend = iCoplayFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetCoplayFriend( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetCoplayFriend, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends017_GetFriendCoplayTime(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends017_GetFriendCoplayTime_params params = + struct ISteamFriends_SteamFriends017_GetFriendCoplayTime_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetFriendCoplayTime( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetFriendCoplayTime, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends017_GetFriendCoplayGame(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamFriends_SteamFriends017_GetFriendCoplayGame_params params = + struct ISteamFriends_SteamFriends017_GetFriendCoplayGame_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetFriendCoplayGame( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetFriendCoplayGame, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends017_JoinClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends017_JoinClanChatRoom_params params = + struct ISteamFriends_SteamFriends017_JoinClanChatRoom_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_JoinClanChatRoom( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_JoinClanChatRoom, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends017_LeaveClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends017_LeaveClanChatRoom_params params = + struct ISteamFriends_SteamFriends017_LeaveClanChatRoom_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_LeaveClanChatRoom( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_LeaveClanChatRoom, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends017_GetClanChatMemberCount(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends017_GetClanChatMemberCount_params params = + struct ISteamFriends_SteamFriends017_GetClanChatMemberCount_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetClanChatMemberCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetClanChatMemberCount, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamFriends_SteamFriends017_GetChatMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iUser) { - struct cppISteamFriends_SteamFriends017_GetChatMemberByIndex_params params = + struct ISteamFriends_SteamFriends017_GetChatMemberByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -10221,26 +10189,26 @@ CSteamID * __thiscall winISteamFriends_SteamFriends017_GetChatMemberByIndex(stru .iUser = iUser, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetChatMemberByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetChatMemberByIndex, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends017_SendClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, const char *pchText) { - struct cppISteamFriends_SteamFriends017_SendClanChatMessage_params params = + struct ISteamFriends_SteamFriends017_SendClanChatMessage_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, .pchText = pchText, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_SendClanChatMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_SendClanChatMessage, ¶ms ); 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) { - struct cppISteamFriends_SteamFriends017_GetClanChatMessage_params params = + struct ISteamFriends_SteamFriends017_GetClanChatMessage_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, @@ -10251,87 +10219,87 @@ int32_t __thiscall winISteamFriends_SteamFriends017_GetClanChatMessage(struct w_ .psteamidChatter = psteamidChatter, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetClanChatMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetClanChatMessage, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends017_IsClanChatAdmin(struct w_steam_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) { - struct cppISteamFriends_SteamFriends017_IsClanChatAdmin_params params = + struct ISteamFriends_SteamFriends017_IsClanChatAdmin_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_IsClanChatAdmin( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_IsClanChatAdmin, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends017_IsClanChatWindowOpenInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { - struct cppISteamFriends_SteamFriends017_IsClanChatWindowOpenInSteam_params params = + struct ISteamFriends_SteamFriends017_IsClanChatWindowOpenInSteam_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_IsClanChatWindowOpenInSteam( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_IsClanChatWindowOpenInSteam, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends017_OpenClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { - struct cppISteamFriends_SteamFriends017_OpenClanChatWindowInSteam_params params = + struct ISteamFriends_SteamFriends017_OpenClanChatWindowInSteam_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_OpenClanChatWindowInSteam( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_OpenClanChatWindowInSteam, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends017_CloseClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { - struct cppISteamFriends_SteamFriends017_CloseClanChatWindowInSteam_params params = + struct ISteamFriends_SteamFriends017_CloseClanChatWindowInSteam_params params = { .linux_side = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_CloseClanChatWindowInSteam( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_CloseClanChatWindowInSteam, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends017_SetListenForFriendsMessages(struct w_steam_iface *_this, bool bInterceptEnabled) { - struct cppISteamFriends_SteamFriends017_SetListenForFriendsMessages_params params = + struct ISteamFriends_SteamFriends017_SetListenForFriendsMessages_params params = { .linux_side = _this->u_iface, .bInterceptEnabled = bInterceptEnabled, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_SetListenForFriendsMessages( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_SetListenForFriendsMessages, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends017_ReplyToFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) { - struct cppISteamFriends_SteamFriends017_ReplyToFriendMessage_params params = + struct ISteamFriends_SteamFriends017_ReplyToFriendMessage_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, .pchMsgToSend = pchMsgToSend, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_ReplyToFriendMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_ReplyToFriendMessage, ¶ms ); 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) { - struct cppISteamFriends_SteamFriends017_GetFriendMessage_params params = + struct ISteamFriends_SteamFriends017_GetFriendMessage_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, @@ -10341,143 +10309,143 @@ int32_t __thiscall winISteamFriends_SteamFriends017_GetFriendMessage(struct w_st .peChatEntryType = peChatEntryType, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetFriendMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetFriendMessage, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends017_GetFollowerCount(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamFriends_SteamFriends017_GetFollowerCount_params params = + struct ISteamFriends_SteamFriends017_GetFollowerCount_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetFollowerCount( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetFollowerCount, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends017_IsFollowing(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamFriends_SteamFriends017_IsFollowing_params params = + struct ISteamFriends_SteamFriends017_IsFollowing_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_IsFollowing( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_IsFollowing, ¶ms ); return params._ret; } uint64_t __thiscall winISteamFriends_SteamFriends017_EnumerateFollowingList(struct w_steam_iface *_this, uint32_t unStartIndex) { - struct cppISteamFriends_SteamFriends017_EnumerateFollowingList_params params = + struct ISteamFriends_SteamFriends017_EnumerateFollowingList_params params = { .linux_side = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_EnumerateFollowingList( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_EnumerateFollowingList, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends017_IsClanPublic(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends017_IsClanPublic_params params = + struct ISteamFriends_SteamFriends017_IsClanPublic_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_IsClanPublic( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_IsClanPublic, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends017_IsClanOfficialGameGroup(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamFriends_SteamFriends017_IsClanOfficialGameGroup_params params = + struct ISteamFriends_SteamFriends017_IsClanOfficialGameGroup_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_IsClanOfficialGameGroup( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_IsClanOfficialGameGroup, ¶ms ); return params._ret; } int32_t __thiscall winISteamFriends_SteamFriends017_GetNumChatsWithUnreadPriorityMessages(struct w_steam_iface *_this) { - struct cppISteamFriends_SteamFriends017_GetNumChatsWithUnreadPriorityMessages_params params = + struct ISteamFriends_SteamFriends017_GetNumChatsWithUnreadPriorityMessages_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetNumChatsWithUnreadPriorityMessages( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetNumChatsWithUnreadPriorityMessages, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends017_ActivateGameOverlayRemotePlayTogetherInviteDialog(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamFriends_SteamFriends017_ActivateGameOverlayRemotePlayTogetherInviteDialog_params params = + struct ISteamFriends_SteamFriends017_ActivateGameOverlayRemotePlayTogetherInviteDialog_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_ActivateGameOverlayRemotePlayTogetherInviteDialog( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_ActivateGameOverlayRemotePlayTogetherInviteDialog, ¶ms ); } bool __thiscall winISteamFriends_SteamFriends017_RegisterProtocolInOverlayBrowser(struct w_steam_iface *_this, const char *pchProtocol) { - struct cppISteamFriends_SteamFriends017_RegisterProtocolInOverlayBrowser_params params = + struct ISteamFriends_SteamFriends017_RegisterProtocolInOverlayBrowser_params params = { .linux_side = _this->u_iface, .pchProtocol = pchProtocol, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_RegisterProtocolInOverlayBrowser( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_RegisterProtocolInOverlayBrowser, ¶ms ); return params._ret; } void __thiscall winISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialogConnectString(struct w_steam_iface *_this, const char *pchConnectString) { - struct cppISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialogConnectString_params params = + struct ISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialogConnectString_params params = { .linux_side = _this->u_iface, .pchConnectString = pchConnectString, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialogConnectString( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialogConnectString, ¶ms ); } uint64_t __thiscall winISteamFriends_SteamFriends017_RequestEquippedProfileItems(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamFriends_SteamFriends017_RequestEquippedProfileItems_params params = + struct ISteamFriends_SteamFriends017_RequestEquippedProfileItems_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_RequestEquippedProfileItems( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_RequestEquippedProfileItems, ¶ms ); return params._ret; } bool __thiscall winISteamFriends_SteamFriends017_BHasEquippedProfileItem(struct w_steam_iface *_this, CSteamID steamID, uint32_t itemType) { - struct cppISteamFriends_SteamFriends017_BHasEquippedProfileItem_params params = + struct ISteamFriends_SteamFriends017_BHasEquippedProfileItem_params params = { .linux_side = _this->u_iface, .steamID = steamID, .itemType = itemType, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_BHasEquippedProfileItem( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_BHasEquippedProfileItem, ¶ms ); return params._ret; } const char * __thiscall winISteamFriends_SteamFriends017_GetProfileItemPropertyString(struct w_steam_iface *_this, CSteamID steamID, uint32_t itemType, uint32_t prop) { - struct cppISteamFriends_SteamFriends017_GetProfileItemPropertyString_params params = + struct ISteamFriends_SteamFriends017_GetProfileItemPropertyString_params params = { .linux_side = _this->u_iface, .steamID = steamID, @@ -10485,13 +10453,13 @@ const char * __thiscall winISteamFriends_SteamFriends017_GetProfileItemPropertyS .prop = prop, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetProfileItemPropertyString( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetProfileItemPropertyString, ¶ms ); return params._ret; } uint32_t __thiscall winISteamFriends_SteamFriends017_GetProfileItemPropertyUint(struct w_steam_iface *_this, CSteamID steamID, uint32_t itemType, uint32_t prop) { - struct cppISteamFriends_SteamFriends017_GetProfileItemPropertyUint_params params = + struct ISteamFriends_SteamFriends017_GetProfileItemPropertyUint_params params = { .linux_side = _this->u_iface, .steamID = steamID, @@ -10499,7 +10467,7 @@ uint32_t __thiscall winISteamFriends_SteamFriends017_GetProfileItemPropertyUint( .prop = prop, }; TRACE("%p\n", _this); - cppISteamFriends_SteamFriends017_GetProfileItemPropertyUint( ¶ms ); + STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetProfileItemPropertyUint, ¶ms ); return params._ret; } diff --git a/lsteamclient/winISteamGameCoordinator.c b/lsteamclient/winISteamGameCoordinator.c index 89d0a70e..49e8999f 100644 --- a/lsteamclient/winISteamGameCoordinator.c +++ b/lsteamclient/winISteamGameCoordinator.c @@ -3,15 +3,13 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamGameCoordinator_SteamGameCoordinator001.h" - DEFINE_THISCALL_WRAPPER(winISteamGameCoordinator_SteamGameCoordinator001_SendMessage, 16) 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) { - struct cppISteamGameCoordinator_SteamGameCoordinator001_SendMessage_params params = + struct ISteamGameCoordinator_SteamGameCoordinator001_SendMessage_params params = { .linux_side = _this->u_iface, .unMsgType = unMsgType, @@ -19,25 +17,25 @@ uint32_t __thiscall winISteamGameCoordinator_SteamGameCoordinator001_SendMessage .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamGameCoordinator_SteamGameCoordinator001_SendMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamGameCoordinator_SteamGameCoordinator001_SendMessage, ¶ms ); return params._ret; } bool __thiscall winISteamGameCoordinator_SteamGameCoordinator001_IsMessageAvailable(struct w_steam_iface *_this, uint32_t *pcubMsgSize) { - struct cppISteamGameCoordinator_SteamGameCoordinator001_IsMessageAvailable_params params = + struct ISteamGameCoordinator_SteamGameCoordinator001_IsMessageAvailable_params params = { .linux_side = _this->u_iface, .pcubMsgSize = pcubMsgSize, }; TRACE("%p\n", _this); - cppISteamGameCoordinator_SteamGameCoordinator001_IsMessageAvailable( ¶ms ); + STEAMCLIENT_CALL( ISteamGameCoordinator_SteamGameCoordinator001_IsMessageAvailable, ¶ms ); 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) { - struct cppISteamGameCoordinator_SteamGameCoordinator001_RetrieveMessage_params params = + struct ISteamGameCoordinator_SteamGameCoordinator001_RetrieveMessage_params params = { .linux_side = _this->u_iface, .punMsgType = punMsgType, @@ -46,7 +44,7 @@ uint32_t __thiscall winISteamGameCoordinator_SteamGameCoordinator001_RetrieveMes .pcubMsgSize = pcubMsgSize, }; TRACE("%p\n", _this); - cppISteamGameCoordinator_SteamGameCoordinator001_RetrieveMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamGameCoordinator_SteamGameCoordinator001_RetrieveMessage, ¶ms ); return params._ret; } diff --git a/lsteamclient/winISteamGameSearch.c b/lsteamclient/winISteamGameSearch.c index 00e8215e..74a81605 100644 --- a/lsteamclient/winISteamGameSearch.c +++ b/lsteamclient/winISteamGameSearch.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamGameSearch_SteamMatchGameSearch001.h" - DEFINE_THISCALL_WRAPPER(winISteamGameSearch_SteamMatchGameSearch001_AddGameSearchParams, 12) DEFINE_THISCALL_WRAPPER(winISteamGameSearch_SteamMatchGameSearch001_SearchForGameWithLobby, 20) DEFINE_THISCALL_WRAPPER(winISteamGameSearch_SteamMatchGameSearch001_SearchForGameSolo, 12) @@ -22,20 +20,20 @@ DEFINE_THISCALL_WRAPPER(winISteamGameSearch_SteamMatchGameSearch001_EndGame, 12) uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_AddGameSearchParams(struct w_steam_iface *_this, const char *pchKeyToFind, const char *pchValuesToFind) { - struct cppISteamGameSearch_SteamMatchGameSearch001_AddGameSearchParams_params params = + struct ISteamGameSearch_SteamMatchGameSearch001_AddGameSearchParams_params params = { .linux_side = _this->u_iface, .pchKeyToFind = pchKeyToFind, .pchValuesToFind = pchValuesToFind, }; TRACE("%p\n", _this); - cppISteamGameSearch_SteamMatchGameSearch001_AddGameSearchParams( ¶ms ); + STEAMCLIENT_CALL( ISteamGameSearch_SteamMatchGameSearch001_AddGameSearchParams, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_SearchForGameWithLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t nPlayerMin, int32_t nPlayerMax) { - struct cppISteamGameSearch_SteamMatchGameSearch001_SearchForGameWithLobby_params params = + struct ISteamGameSearch_SteamMatchGameSearch001_SearchForGameWithLobby_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -43,48 +41,48 @@ uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_SearchForGameWit .nPlayerMax = nPlayerMax, }; TRACE("%p\n", _this); - cppISteamGameSearch_SteamMatchGameSearch001_SearchForGameWithLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamGameSearch_SteamMatchGameSearch001_SearchForGameWithLobby, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_SearchForGameSolo(struct w_steam_iface *_this, int32_t nPlayerMin, int32_t nPlayerMax) { - struct cppISteamGameSearch_SteamMatchGameSearch001_SearchForGameSolo_params params = + struct ISteamGameSearch_SteamMatchGameSearch001_SearchForGameSolo_params params = { .linux_side = _this->u_iface, .nPlayerMin = nPlayerMin, .nPlayerMax = nPlayerMax, }; TRACE("%p\n", _this); - cppISteamGameSearch_SteamMatchGameSearch001_SearchForGameSolo( ¶ms ); + STEAMCLIENT_CALL( ISteamGameSearch_SteamMatchGameSearch001_SearchForGameSolo, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_AcceptGame(struct w_steam_iface *_this) { - struct cppISteamGameSearch_SteamMatchGameSearch001_AcceptGame_params params = + struct ISteamGameSearch_SteamMatchGameSearch001_AcceptGame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameSearch_SteamMatchGameSearch001_AcceptGame( ¶ms ); + STEAMCLIENT_CALL( ISteamGameSearch_SteamMatchGameSearch001_AcceptGame, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_DeclineGame(struct w_steam_iface *_this) { - struct cppISteamGameSearch_SteamMatchGameSearch001_DeclineGame_params params = + struct ISteamGameSearch_SteamMatchGameSearch001_DeclineGame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameSearch_SteamMatchGameSearch001_DeclineGame( ¶ms ); + 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) { - struct cppISteamGameSearch_SteamMatchGameSearch001_RetrieveConnectionDetails_params params = + struct ISteamGameSearch_SteamMatchGameSearch001_RetrieveConnectionDetails_params params = { .linux_side = _this->u_iface, .steamIDHost = steamIDHost, @@ -92,50 +90,50 @@ uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_RetrieveConnecti .cubConnectionDetails = cubConnectionDetails, }; TRACE("%p\n", _this); - cppISteamGameSearch_SteamMatchGameSearch001_RetrieveConnectionDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamGameSearch_SteamMatchGameSearch001_RetrieveConnectionDetails, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_EndGameSearch(struct w_steam_iface *_this) { - struct cppISteamGameSearch_SteamMatchGameSearch001_EndGameSearch_params params = + struct ISteamGameSearch_SteamMatchGameSearch001_EndGameSearch_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameSearch_SteamMatchGameSearch001_EndGameSearch( ¶ms ); + 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) { - struct cppISteamGameSearch_SteamMatchGameSearch001_SetGameHostParams_params params = + struct ISteamGameSearch_SteamMatchGameSearch001_SetGameHostParams_params params = { .linux_side = _this->u_iface, .pchKey = pchKey, .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamGameSearch_SteamMatchGameSearch001_SetGameHostParams( ¶ms ); + STEAMCLIENT_CALL( ISteamGameSearch_SteamMatchGameSearch001_SetGameHostParams, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_SetConnectionDetails(struct w_steam_iface *_this, const char *pchConnectionDetails, int32_t cubConnectionDetails) { - struct cppISteamGameSearch_SteamMatchGameSearch001_SetConnectionDetails_params params = + struct ISteamGameSearch_SteamMatchGameSearch001_SetConnectionDetails_params params = { .linux_side = _this->u_iface, .pchConnectionDetails = pchConnectionDetails, .cubConnectionDetails = cubConnectionDetails, }; TRACE("%p\n", _this); - cppISteamGameSearch_SteamMatchGameSearch001_SetConnectionDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamGameSearch_SteamMatchGameSearch001_SetConnectionDetails, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_RequestPlayersForGame(struct w_steam_iface *_this, int32_t nPlayerMin, int32_t nPlayerMax, int32_t nMaxTeamSize) { - struct cppISteamGameSearch_SteamMatchGameSearch001_RequestPlayersForGame_params params = + struct ISteamGameSearch_SteamMatchGameSearch001_RequestPlayersForGame_params params = { .linux_side = _this->u_iface, .nPlayerMin = nPlayerMin, @@ -143,36 +141,36 @@ uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_RequestPlayersFo .nMaxTeamSize = nMaxTeamSize, }; TRACE("%p\n", _this); - cppISteamGameSearch_SteamMatchGameSearch001_RequestPlayersForGame( ¶ms ); + STEAMCLIENT_CALL( ISteamGameSearch_SteamMatchGameSearch001_RequestPlayersForGame, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_HostConfirmGameStart(struct w_steam_iface *_this, uint64_t ullUniqueGameID) { - struct cppISteamGameSearch_SteamMatchGameSearch001_HostConfirmGameStart_params params = + struct ISteamGameSearch_SteamMatchGameSearch001_HostConfirmGameStart_params params = { .linux_side = _this->u_iface, .ullUniqueGameID = ullUniqueGameID, }; TRACE("%p\n", _this); - cppISteamGameSearch_SteamMatchGameSearch001_HostConfirmGameStart( ¶ms ); + STEAMCLIENT_CALL( ISteamGameSearch_SteamMatchGameSearch001_HostConfirmGameStart, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_CancelRequestPlayersForGame(struct w_steam_iface *_this) { - struct cppISteamGameSearch_SteamMatchGameSearch001_CancelRequestPlayersForGame_params params = + struct ISteamGameSearch_SteamMatchGameSearch001_CancelRequestPlayersForGame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameSearch_SteamMatchGameSearch001_CancelRequestPlayersForGame( ¶ms ); + 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) { - struct cppISteamGameSearch_SteamMatchGameSearch001_SubmitPlayerResult_params params = + struct ISteamGameSearch_SteamMatchGameSearch001_SubmitPlayerResult_params params = { .linux_side = _this->u_iface, .ullUniqueGameID = ullUniqueGameID, @@ -180,19 +178,19 @@ uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_SubmitPlayerResu .EPlayerResult = EPlayerResult, }; TRACE("%p\n", _this); - cppISteamGameSearch_SteamMatchGameSearch001_SubmitPlayerResult( ¶ms ); + STEAMCLIENT_CALL( ISteamGameSearch_SteamMatchGameSearch001_SubmitPlayerResult, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_EndGame(struct w_steam_iface *_this, uint64_t ullUniqueGameID) { - struct cppISteamGameSearch_SteamMatchGameSearch001_EndGame_params params = + struct ISteamGameSearch_SteamMatchGameSearch001_EndGame_params params = { .linux_side = _this->u_iface, .ullUniqueGameID = ullUniqueGameID, }; TRACE("%p\n", _this); - cppISteamGameSearch_SteamMatchGameSearch001_EndGame( ¶ms ); + STEAMCLIENT_CALL( ISteamGameSearch_SteamMatchGameSearch001_EndGame, ¶ms ); return params._ret; } diff --git a/lsteamclient/winISteamGameServer.c b/lsteamclient/winISteamGameServer.c index 9cedb404..8e7c283a 100644 --- a/lsteamclient/winISteamGameServer.c +++ b/lsteamclient/winISteamGameServer.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamGameServer_SteamGameServer002.h" - DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer002_LogOn, 4) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer002_LogOff, 4) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer002_BLoggedOn, 4) @@ -29,49 +27,49 @@ DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer002_GSSetGameType, 8) void __thiscall winISteamGameServer_SteamGameServer002_LogOn(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer002_LogOn_params params = + struct ISteamGameServer_SteamGameServer002_LogOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer002_LogOn( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer002_LogOn, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer002_LogOff(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer002_LogOff_params params = + struct ISteamGameServer_SteamGameServer002_LogOff_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer002_LogOff( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer002_LogOff, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer002_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer002_BLoggedOn_params params = + struct ISteamGameServer_SteamGameServer002_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer002_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer002_BLoggedOn, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer002_GSSetSpawnCount(struct w_steam_iface *_this, uint32_t ucSpawn) { - struct cppISteamGameServer_SteamGameServer002_GSSetSpawnCount_params params = + struct ISteamGameServer_SteamGameServer002_GSSetSpawnCount_params params = { .linux_side = _this->u_iface, .ucSpawn = ucSpawn, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer002_GSSetSpawnCount( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer002_GSSetSpawnCount, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionKeyToSendToNewClient(struct w_steam_iface *_this, void *pvEncryptionKey, uint32_t *pcbEncryptionKey, uint32_t cbMaxEncryptionKey) { - struct cppISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionKeyToSendToNewClient_params params = + struct ISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionKeyToSendToNewClient_params params = { .linux_side = _this->u_iface, .pvEncryptionKey = pvEncryptionKey, @@ -79,13 +77,13 @@ bool __thiscall winISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionK .cbMaxEncryptionKey = cbMaxEncryptionKey, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionKeyToSendToNewClient( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionKeyToSendToNewClient, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect(struct w_steam_iface *_this, uint32_t unUserID, const void *pvRawKey, uint32_t unKeyLen, uint32_t unIPPublic, uint16_t usPort, const void *pvCookie, uint32_t cubCookie) { - struct cppISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect_params params = + struct ISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect_params params = { .linux_side = _this->u_iface, .unUserID = unUserID, @@ -97,13 +95,13 @@ bool __thiscall winISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect(s .cubCookie = cubCookie, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect(struct w_steam_iface *_this, CSteamID steamID, uint32_t unIPPublic, const void *pvCookie, uint32_t cubCookie) { - struct cppISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect_params params = + struct ISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect_params params = { .linux_side = _this->u_iface, .steamID = steamID, @@ -112,38 +110,38 @@ bool __thiscall winISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect(s .cubCookie = cubCookie, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer002_GSRemoveUserConnect(struct w_steam_iface *_this, uint32_t unUserID) { - struct cppISteamGameServer_SteamGameServer002_GSRemoveUserConnect_params params = + struct ISteamGameServer_SteamGameServer002_GSRemoveUserConnect_params params = { .linux_side = _this->u_iface, .unUserID = unUserID, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer002_GSRemoveUserConnect( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer002_GSRemoveUserConnect, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer002_GSSendUserDisconnect(struct w_steam_iface *_this, CSteamID steamID, uint32_t unUserID) { - struct cppISteamGameServer_SteamGameServer002_GSSendUserDisconnect_params params = + struct ISteamGameServer_SteamGameServer002_GSSendUserDisconnect_params params = { .linux_side = _this->u_iface, .steamID = steamID, .unUserID = unUserID, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer002_GSSendUserDisconnect( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer002_GSSendUserDisconnect, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer002_GSSendUserStatusResponse(struct w_steam_iface *_this, CSteamID steamID, int32_t nSecondsConnected, int32_t nSecondsSinceLast) { - struct cppISteamGameServer_SteamGameServer002_GSSendUserStatusResponse_params params = + struct ISteamGameServer_SteamGameServer002_GSSendUserStatusResponse_params params = { .linux_side = _this->u_iface, .steamID = steamID, @@ -151,13 +149,13 @@ bool __thiscall winISteamGameServer_SteamGameServer002_GSSendUserStatusResponse( .nSecondsSinceLast = nSecondsSinceLast, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer002_GSSendUserStatusResponse( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer002_GSSendUserStatusResponse, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus(struct w_steam_iface *_this, int32_t nAppIdServed, uint32_t unServerFlags, int32_t cPlayers, int32_t cPlayersMax, int32_t cBotPlayers, int32_t unGamePort, const char *pchServerName, const char *pchGameDir, const char *pchMapName, const char *pchVersion) { - struct cppISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus_params params = + struct ISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus_params params = { .linux_side = _this->u_iface, .nAppIdServed = nAppIdServed, @@ -172,13 +170,13 @@ bool __thiscall winISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus(stru .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer002_GSUpdateStatus(struct w_steam_iface *_this, int32_t cPlayers, int32_t cPlayersMax, int32_t cBotPlayers, const char *pchServerName, const char *pchMapName) { - struct cppISteamGameServer_SteamGameServer002_GSUpdateStatus_params params = + struct ISteamGameServer_SteamGameServer002_GSUpdateStatus_params params = { .linux_side = _this->u_iface, .cPlayers = cPlayers, @@ -188,36 +186,36 @@ bool __thiscall winISteamGameServer_SteamGameServer002_GSUpdateStatus(struct w_s .pchMapName = pchMapName, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer002_GSUpdateStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer002_GSUpdateStatus, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer002_BSecure(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer002_BSecure_params params = + struct ISteamGameServer_SteamGameServer002_BSecure_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer002_BSecure( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer002_BSecure, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamGameServer_SteamGameServer002_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamGameServer_SteamGameServer002_GetSteamID_params params = + struct ISteamGameServer_SteamGameServer002_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer002_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer002_GetSteamID, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer002_GSSetServerType(struct w_steam_iface *_this, int32_t nGameAppId, uint32_t unServerFlags, uint32_t unGameIP, uint32_t unGamePort, const char *pchGameDir, const char *pchVersion) { - struct cppISteamGameServer_SteamGameServer002_GSSetServerType_params params = + struct ISteamGameServer_SteamGameServer002_GSSetServerType_params params = { .linux_side = _this->u_iface, .nGameAppId = nGameAppId, @@ -228,13 +226,13 @@ bool __thiscall winISteamGameServer_SteamGameServer002_GSSetServerType(struct w_ .pchVersion = pchVersion, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer002_GSSetServerType( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer002_GSSetServerType, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer002_GSSetServerType2(struct w_steam_iface *_this, int32_t nGameAppId, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, bool bLANMode) { - struct cppISteamGameServer_SteamGameServer002_GSSetServerType2_params params = + struct ISteamGameServer_SteamGameServer002_GSSetServerType2_params params = { .linux_side = _this->u_iface, .nGameAppId = nGameAppId, @@ -248,13 +246,13 @@ bool __thiscall winISteamGameServer_SteamGameServer002_GSSetServerType2(struct w .bLANMode = bLANMode, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer002_GSSetServerType2( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer002_GSSetServerType2, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer002_GSUpdateStatus2(struct w_steam_iface *_this, int32_t cPlayers, int32_t cPlayersMax, int32_t cBotPlayers, const char *pchServerName, const char *pSpectatorServerName, const char *pchMapName) { - struct cppISteamGameServer_SteamGameServer002_GSUpdateStatus2_params params = + struct ISteamGameServer_SteamGameServer002_GSUpdateStatus2_params params = { .linux_side = _this->u_iface, .cPlayers = cPlayers, @@ -265,25 +263,25 @@ bool __thiscall winISteamGameServer_SteamGameServer002_GSUpdateStatus2(struct w_ .pchMapName = pchMapName, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer002_GSUpdateStatus2( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer002_GSUpdateStatus2, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer002_GSCreateUnauthenticatedUser(struct w_steam_iface *_this, CSteamID *pSteamID) { - struct cppISteamGameServer_SteamGameServer002_GSCreateUnauthenticatedUser_params params = + struct ISteamGameServer_SteamGameServer002_GSCreateUnauthenticatedUser_params params = { .linux_side = _this->u_iface, .pSteamID = pSteamID, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer002_GSCreateUnauthenticatedUser( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer002_GSCreateUnauthenticatedUser, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer002_GSSetUserData(struct w_steam_iface *_this, CSteamID steamID, const char *pPlayerName, uint32_t nFrags) { - struct cppISteamGameServer_SteamGameServer002_GSSetUserData_params params = + struct ISteamGameServer_SteamGameServer002_GSSetUserData_params params = { .linux_side = _this->u_iface, .steamID = steamID, @@ -291,30 +289,30 @@ bool __thiscall winISteamGameServer_SteamGameServer002_GSSetUserData(struct w_st .nFrags = nFrags, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer002_GSSetUserData( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer002_GSSetUserData, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer002_GSUpdateSpectatorPort(struct w_steam_iface *_this, uint16_t unSpectatorPort) { - struct cppISteamGameServer_SteamGameServer002_GSUpdateSpectatorPort_params params = + struct ISteamGameServer_SteamGameServer002_GSUpdateSpectatorPort_params params = { .linux_side = _this->u_iface, .unSpectatorPort = unSpectatorPort, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer002_GSUpdateSpectatorPort( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer002_GSUpdateSpectatorPort, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer002_GSSetGameType(struct w_steam_iface *_this, const char *pchType) { - struct cppISteamGameServer_SteamGameServer002_GSSetGameType_params params = + struct ISteamGameServer_SteamGameServer002_GSSetGameType_params params = { .linux_side = _this->u_iface, .pchType = pchType, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer002_GSSetGameType( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer002_GSSetGameType, ¶ms ); } extern vtable_ptr winISteamGameServer_SteamGameServer002_vtable; @@ -356,8 +354,6 @@ struct w_steam_iface *create_winISteamGameServer_SteamGameServer002(void *u_ifac return r; } -#include "cppISteamGameServer_SteamGameServer003.h" - DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer003_LogOn, 4) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer003_LogOff, 4) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer003_BLoggedOn, 4) @@ -378,61 +374,61 @@ DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer003_GSGetUserAchievem void __thiscall winISteamGameServer_SteamGameServer003_LogOn(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer003_LogOn_params params = + struct ISteamGameServer_SteamGameServer003_LogOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer003_LogOn( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer003_LogOn, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer003_LogOff(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer003_LogOff_params params = + struct ISteamGameServer_SteamGameServer003_LogOff_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer003_LogOff( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer003_LogOff, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer003_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer003_BLoggedOn_params params = + struct ISteamGameServer_SteamGameServer003_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer003_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer003_BLoggedOn, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer003_BSecure(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer003_BSecure_params params = + struct ISteamGameServer_SteamGameServer003_BSecure_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer003_BSecure( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer003_BSecure, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamGameServer_SteamGameServer003_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamGameServer_SteamGameServer003_GetSteamID_params params = + struct ISteamGameServer_SteamGameServer003_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer003_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer003_GetSteamID, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionKeyToSendToNewClient(struct w_steam_iface *_this, void *pvEncryptionKey, uint32_t *pcbEncryptionKey, uint32_t cbMaxEncryptionKey) { - struct cppISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionKeyToSendToNewClient_params params = + struct ISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionKeyToSendToNewClient_params params = { .linux_side = _this->u_iface, .pvEncryptionKey = pvEncryptionKey, @@ -440,13 +436,13 @@ bool __thiscall winISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionK .cbMaxEncryptionKey = cbMaxEncryptionKey, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionKeyToSendToNewClient( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionKeyToSendToNewClient, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer003_GSSendUserConnect(struct w_steam_iface *_this, uint32_t unUserID, uint32_t unIPPublic, uint16_t usPort, const void *pvCookie, uint32_t cubCookie) { - struct cppISteamGameServer_SteamGameServer003_GSSendUserConnect_params params = + struct ISteamGameServer_SteamGameServer003_GSSendUserConnect_params params = { .linux_side = _this->u_iface, .unUserID = unUserID, @@ -456,49 +452,49 @@ bool __thiscall winISteamGameServer_SteamGameServer003_GSSendUserConnect(struct .cubCookie = cubCookie, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer003_GSSendUserConnect( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer003_GSSendUserConnect, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer003_GSRemoveUserConnect(struct w_steam_iface *_this, uint32_t unUserID) { - struct cppISteamGameServer_SteamGameServer003_GSRemoveUserConnect_params params = + struct ISteamGameServer_SteamGameServer003_GSRemoveUserConnect_params params = { .linux_side = _this->u_iface, .unUserID = unUserID, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer003_GSRemoveUserConnect( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer003_GSRemoveUserConnect, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer003_GSSendUserDisconnect(struct w_steam_iface *_this, CSteamID steamID, uint32_t unUserID) { - struct cppISteamGameServer_SteamGameServer003_GSSendUserDisconnect_params params = + struct ISteamGameServer_SteamGameServer003_GSSendUserDisconnect_params params = { .linux_side = _this->u_iface, .steamID = steamID, .unUserID = unUserID, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer003_GSSendUserDisconnect( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer003_GSSendUserDisconnect, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer003_GSSetSpawnCount(struct w_steam_iface *_this, uint32_t ucSpawn) { - struct cppISteamGameServer_SteamGameServer003_GSSetSpawnCount_params params = + struct ISteamGameServer_SteamGameServer003_GSSetSpawnCount_params params = { .linux_side = _this->u_iface, .ucSpawn = ucSpawn, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer003_GSSetSpawnCount( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer003_GSSetSpawnCount, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer003_GSSetServerType(struct w_steam_iface *_this, int32_t nGameAppId, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, bool bLANMode) { - struct cppISteamGameServer_SteamGameServer003_GSSetServerType_params params = + struct ISteamGameServer_SteamGameServer003_GSSetServerType_params params = { .linux_side = _this->u_iface, .nGameAppId = nGameAppId, @@ -512,13 +508,13 @@ bool __thiscall winISteamGameServer_SteamGameServer003_GSSetServerType(struct w_ .bLANMode = bLANMode, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer003_GSSetServerType( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer003_GSSetServerType, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer003_GSUpdateStatus(struct w_steam_iface *_this, int32_t cPlayers, int32_t cPlayersMax, int32_t cBotPlayers, const char *pchServerName, const char *pSpectatorServerName, const char *pchMapName) { - struct cppISteamGameServer_SteamGameServer003_GSUpdateStatus_params params = + struct ISteamGameServer_SteamGameServer003_GSUpdateStatus_params params = { .linux_side = _this->u_iface, .cPlayers = cPlayers, @@ -529,25 +525,25 @@ bool __thiscall winISteamGameServer_SteamGameServer003_GSUpdateStatus(struct w_s .pchMapName = pchMapName, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer003_GSUpdateStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer003_GSUpdateStatus, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer003_GSCreateUnauthenticatedUser(struct w_steam_iface *_this, CSteamID *pSteamID) { - struct cppISteamGameServer_SteamGameServer003_GSCreateUnauthenticatedUser_params params = + struct ISteamGameServer_SteamGameServer003_GSCreateUnauthenticatedUser_params params = { .linux_side = _this->u_iface, .pSteamID = pSteamID, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer003_GSCreateUnauthenticatedUser( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer003_GSCreateUnauthenticatedUser, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer003_GSSetUserData(struct w_steam_iface *_this, CSteamID steamID, const char *pPlayerName, uint32_t nFrags) { - struct cppISteamGameServer_SteamGameServer003_GSSetUserData_params params = + struct ISteamGameServer_SteamGameServer003_GSSetUserData_params params = { .linux_side = _this->u_iface, .steamID = steamID, @@ -555,42 +551,42 @@ bool __thiscall winISteamGameServer_SteamGameServer003_GSSetUserData(struct w_st .nFrags = nFrags, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer003_GSSetUserData( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer003_GSSetUserData, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer003_GSUpdateSpectatorPort(struct w_steam_iface *_this, uint16_t unSpectatorPort) { - struct cppISteamGameServer_SteamGameServer003_GSUpdateSpectatorPort_params params = + struct ISteamGameServer_SteamGameServer003_GSUpdateSpectatorPort_params params = { .linux_side = _this->u_iface, .unSpectatorPort = unSpectatorPort, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer003_GSUpdateSpectatorPort( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer003_GSUpdateSpectatorPort, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer003_GSSetGameType(struct w_steam_iface *_this, const char *pchType) { - struct cppISteamGameServer_SteamGameServer003_GSSetGameType_params params = + struct ISteamGameServer_SteamGameServer003_GSSetGameType_params params = { .linux_side = _this->u_iface, .pchType = pchType, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer003_GSSetGameType( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer003_GSSetGameType, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer003_GSGetUserAchievementStatus(struct w_steam_iface *_this, CSteamID steamID, const char *pchAchievementName) { - struct cppISteamGameServer_SteamGameServer003_GSGetUserAchievementStatus_params params = + struct ISteamGameServer_SteamGameServer003_GSGetUserAchievementStatus_params params = { .linux_side = _this->u_iface, .steamID = steamID, .pchAchievementName = pchAchievementName, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer003_GSGetUserAchievementStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer003_GSGetUserAchievementStatus, ¶ms ); return params._ret; } @@ -629,8 +625,6 @@ struct w_steam_iface *create_winISteamGameServer_SteamGameServer003(void *u_ifac return r; } -#include "cppISteamGameServer_SteamGameServer004.h" - DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer004_LogOn, 4) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer004_LogOff, 4) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer004_BLoggedOn, 4) @@ -648,61 +642,61 @@ DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer004_BGetUserAchieveme void __thiscall winISteamGameServer_SteamGameServer004_LogOn(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer004_LogOn_params params = + struct ISteamGameServer_SteamGameServer004_LogOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer004_LogOn( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer004_LogOn, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer004_LogOff(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer004_LogOff_params params = + struct ISteamGameServer_SteamGameServer004_LogOff_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer004_LogOff( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer004_LogOff, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer004_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer004_BLoggedOn_params params = + struct ISteamGameServer_SteamGameServer004_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer004_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer004_BLoggedOn, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer004_BSecure(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer004_BSecure_params params = + struct ISteamGameServer_SteamGameServer004_BSecure_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer004_BSecure( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer004_BSecure, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamGameServer_SteamGameServer004_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamGameServer_SteamGameServer004_GetSteamID_params params = + struct ISteamGameServer_SteamGameServer004_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer004_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer004_GetSteamID, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer004_SendUserConnectAndAuthenticate(struct w_steam_iface *_this, CSteamID steamIDUser, uint32_t unIPClient, void *pvAuthBlob, uint32_t cubAuthBlobSize) { - struct cppISteamGameServer_SteamGameServer004_SendUserConnectAndAuthenticate_params params = + struct ISteamGameServer_SteamGameServer004_SendUserConnectAndAuthenticate_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -711,35 +705,35 @@ void __thiscall winISteamGameServer_SteamGameServer004_SendUserConnectAndAuthent .cubAuthBlobSize = cubAuthBlobSize, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer004_SendUserConnectAndAuthenticate( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer004_SendUserConnectAndAuthenticate, ¶ms ); } CSteamID * __thiscall winISteamGameServer_SteamGameServer004_CreateUnauthenticatedUserConnection(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamGameServer_SteamGameServer004_CreateUnauthenticatedUserConnection_params params = + struct ISteamGameServer_SteamGameServer004_CreateUnauthenticatedUserConnection_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer004_CreateUnauthenticatedUserConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer004_CreateUnauthenticatedUserConnection, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer004_SendUserDisconnect(struct w_steam_iface *_this, CSteamID steamIDUser) { - struct cppISteamGameServer_SteamGameServer004_SendUserDisconnect_params params = + struct ISteamGameServer_SteamGameServer004_SendUserDisconnect_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer004_SendUserDisconnect( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer004_SendUserDisconnect, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer004_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) { - struct cppISteamGameServer_SteamGameServer004_BUpdateUserData_params params = + struct ISteamGameServer_SteamGameServer004_BUpdateUserData_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -747,13 +741,13 @@ bool __thiscall winISteamGameServer_SteamGameServer004_BUpdateUserData(struct w_ .uScore = uScore, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer004_BUpdateUserData( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer004_BUpdateUserData, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer004_BSetServerType(struct w_steam_iface *_this, int32_t nGameAppId, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, bool bLANMode) { - struct cppISteamGameServer_SteamGameServer004_BSetServerType_params params = + struct ISteamGameServer_SteamGameServer004_BSetServerType_params params = { .linux_side = _this->u_iface, .nGameAppId = nGameAppId, @@ -767,13 +761,13 @@ bool __thiscall winISteamGameServer_SteamGameServer004_BSetServerType(struct w_s .bLANMode = bLANMode, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer004_BSetServerType( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer004_BSetServerType, ¶ms ); 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) { - struct cppISteamGameServer_SteamGameServer004_UpdateServerStatus_params params = + struct ISteamGameServer_SteamGameServer004_UpdateServerStatus_params params = { .linux_side = _this->u_iface, .cPlayers = cPlayers, @@ -784,41 +778,41 @@ void __thiscall winISteamGameServer_SteamGameServer004_UpdateServerStatus(struct .pchMapName = pchMapName, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer004_UpdateServerStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer004_UpdateServerStatus, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer004_UpdateSpectatorPort(struct w_steam_iface *_this, uint16_t unSpectatorPort) { - struct cppISteamGameServer_SteamGameServer004_UpdateSpectatorPort_params params = + struct ISteamGameServer_SteamGameServer004_UpdateSpectatorPort_params params = { .linux_side = _this->u_iface, .unSpectatorPort = unSpectatorPort, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer004_UpdateSpectatorPort( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer004_UpdateSpectatorPort, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer004_SetGameType(struct w_steam_iface *_this, const char *pchGameType) { - struct cppISteamGameServer_SteamGameServer004_SetGameType_params params = + struct ISteamGameServer_SteamGameServer004_SetGameType_params params = { .linux_side = _this->u_iface, .pchGameType = pchGameType, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer004_SetGameType( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer004_SetGameType, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer004_BGetUserAchievementStatus(struct w_steam_iface *_this, CSteamID steamID, const char *pchAchievementName) { - struct cppISteamGameServer_SteamGameServer004_BGetUserAchievementStatus_params params = + struct ISteamGameServer_SteamGameServer004_BGetUserAchievementStatus_params params = { .linux_side = _this->u_iface, .steamID = steamID, .pchAchievementName = pchAchievementName, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer004_BGetUserAchievementStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer004_BGetUserAchievementStatus, ¶ms ); return params._ret; } @@ -854,8 +848,6 @@ struct w_steam_iface *create_winISteamGameServer_SteamGameServer004(void *u_ifac return r; } -#include "cppISteamGameServer_SteamGameServer005.h" - DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer005_LogOn, 4) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer005_LogOff, 4) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer005_BLoggedOn, 4) @@ -873,61 +865,61 @@ DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer005_BGetUserAchieveme void __thiscall winISteamGameServer_SteamGameServer005_LogOn(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer005_LogOn_params params = + struct ISteamGameServer_SteamGameServer005_LogOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer005_LogOn( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer005_LogOn, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer005_LogOff(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer005_LogOff_params params = + struct ISteamGameServer_SteamGameServer005_LogOff_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer005_LogOff( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer005_LogOff, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer005_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer005_BLoggedOn_params params = + struct ISteamGameServer_SteamGameServer005_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer005_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer005_BLoggedOn, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer005_BSecure(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer005_BSecure_params params = + struct ISteamGameServer_SteamGameServer005_BSecure_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer005_BSecure( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer005_BSecure, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamGameServer_SteamGameServer005_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamGameServer_SteamGameServer005_GetSteamID_params params = + struct ISteamGameServer_SteamGameServer005_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer005_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer005_GetSteamID, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer005_SendUserConnectAndAuthenticate(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) { - struct cppISteamGameServer_SteamGameServer005_SendUserConnectAndAuthenticate_params params = + struct ISteamGameServer_SteamGameServer005_SendUserConnectAndAuthenticate_params params = { .linux_side = _this->u_iface, .unIPClient = unIPClient, @@ -936,36 +928,36 @@ bool __thiscall winISteamGameServer_SteamGameServer005_SendUserConnectAndAuthent .pSteamIDUser = pSteamIDUser, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer005_SendUserConnectAndAuthenticate( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer005_SendUserConnectAndAuthenticate, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamGameServer_SteamGameServer005_CreateUnauthenticatedUserConnection(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamGameServer_SteamGameServer005_CreateUnauthenticatedUserConnection_params params = + struct ISteamGameServer_SteamGameServer005_CreateUnauthenticatedUserConnection_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer005_CreateUnauthenticatedUserConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer005_CreateUnauthenticatedUserConnection, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer005_SendUserDisconnect(struct w_steam_iface *_this, CSteamID steamIDUser) { - struct cppISteamGameServer_SteamGameServer005_SendUserDisconnect_params params = + struct ISteamGameServer_SteamGameServer005_SendUserDisconnect_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer005_SendUserDisconnect( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer005_SendUserDisconnect, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer005_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) { - struct cppISteamGameServer_SteamGameServer005_BUpdateUserData_params params = + struct ISteamGameServer_SteamGameServer005_BUpdateUserData_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -973,13 +965,13 @@ bool __thiscall winISteamGameServer_SteamGameServer005_BUpdateUserData(struct w_ .uScore = uScore, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer005_BUpdateUserData( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer005_BUpdateUserData, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer005_BSetServerType(struct w_steam_iface *_this, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, bool bLANMode) { - struct cppISteamGameServer_SteamGameServer005_BSetServerType_params params = + struct ISteamGameServer_SteamGameServer005_BSetServerType_params params = { .linux_side = _this->u_iface, .unServerFlags = unServerFlags, @@ -992,13 +984,13 @@ bool __thiscall winISteamGameServer_SteamGameServer005_BSetServerType(struct w_s .bLANMode = bLANMode, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer005_BSetServerType( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer005_BSetServerType, ¶ms ); 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) { - struct cppISteamGameServer_SteamGameServer005_UpdateServerStatus_params params = + struct ISteamGameServer_SteamGameServer005_UpdateServerStatus_params params = { .linux_side = _this->u_iface, .cPlayers = cPlayers, @@ -1009,41 +1001,41 @@ void __thiscall winISteamGameServer_SteamGameServer005_UpdateServerStatus(struct .pchMapName = pchMapName, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer005_UpdateServerStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer005_UpdateServerStatus, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer005_UpdateSpectatorPort(struct w_steam_iface *_this, uint16_t unSpectatorPort) { - struct cppISteamGameServer_SteamGameServer005_UpdateSpectatorPort_params params = + struct ISteamGameServer_SteamGameServer005_UpdateSpectatorPort_params params = { .linux_side = _this->u_iface, .unSpectatorPort = unSpectatorPort, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer005_UpdateSpectatorPort( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer005_UpdateSpectatorPort, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer005_SetGameType(struct w_steam_iface *_this, const char *pchGameType) { - struct cppISteamGameServer_SteamGameServer005_SetGameType_params params = + struct ISteamGameServer_SteamGameServer005_SetGameType_params params = { .linux_side = _this->u_iface, .pchGameType = pchGameType, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer005_SetGameType( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer005_SetGameType, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer005_BGetUserAchievementStatus(struct w_steam_iface *_this, CSteamID steamID, const char *pchAchievementName) { - struct cppISteamGameServer_SteamGameServer005_BGetUserAchievementStatus_params params = + struct ISteamGameServer_SteamGameServer005_BGetUserAchievementStatus_params params = { .linux_side = _this->u_iface, .steamID = steamID, .pchAchievementName = pchAchievementName, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer005_BGetUserAchievementStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer005_BGetUserAchievementStatus, ¶ms ); return params._ret; } @@ -1079,8 +1071,6 @@ struct w_steam_iface *create_winISteamGameServer_SteamGameServer005(void *u_ifac return r; } -#include "cppISteamGameServer_SteamGameServer008.h" - DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer008_LogOn, 4) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer008_LogOff, 4) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer008_BLoggedOn, 4) @@ -1101,61 +1091,61 @@ DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer008_GetPublicIP, 4) void __thiscall winISteamGameServer_SteamGameServer008_LogOn(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer008_LogOn_params params = + struct ISteamGameServer_SteamGameServer008_LogOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer008_LogOn( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer008_LogOn, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer008_LogOff(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer008_LogOff_params params = + struct ISteamGameServer_SteamGameServer008_LogOff_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer008_LogOff( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer008_LogOff, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer008_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer008_BLoggedOn_params params = + struct ISteamGameServer_SteamGameServer008_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer008_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer008_BLoggedOn, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer008_BSecure(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer008_BSecure_params params = + struct ISteamGameServer_SteamGameServer008_BSecure_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer008_BSecure( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer008_BSecure, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamGameServer_SteamGameServer008_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamGameServer_SteamGameServer008_GetSteamID_params params = + struct ISteamGameServer_SteamGameServer008_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer008_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer008_GetSteamID, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer008_SendUserConnectAndAuthenticate(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) { - struct cppISteamGameServer_SteamGameServer008_SendUserConnectAndAuthenticate_params params = + struct ISteamGameServer_SteamGameServer008_SendUserConnectAndAuthenticate_params params = { .linux_side = _this->u_iface, .unIPClient = unIPClient, @@ -1164,36 +1154,36 @@ bool __thiscall winISteamGameServer_SteamGameServer008_SendUserConnectAndAuthent .pSteamIDUser = pSteamIDUser, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer008_SendUserConnectAndAuthenticate( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer008_SendUserConnectAndAuthenticate, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamGameServer_SteamGameServer008_CreateUnauthenticatedUserConnection(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamGameServer_SteamGameServer008_CreateUnauthenticatedUserConnection_params params = + struct ISteamGameServer_SteamGameServer008_CreateUnauthenticatedUserConnection_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer008_CreateUnauthenticatedUserConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer008_CreateUnauthenticatedUserConnection, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer008_SendUserDisconnect(struct w_steam_iface *_this, CSteamID steamIDUser) { - struct cppISteamGameServer_SteamGameServer008_SendUserDisconnect_params params = + struct ISteamGameServer_SteamGameServer008_SendUserDisconnect_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer008_SendUserDisconnect( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer008_SendUserDisconnect, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer008_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) { - struct cppISteamGameServer_SteamGameServer008_BUpdateUserData_params params = + struct ISteamGameServer_SteamGameServer008_BUpdateUserData_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -1201,13 +1191,13 @@ bool __thiscall winISteamGameServer_SteamGameServer008_BUpdateUserData(struct w_ .uScore = uScore, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer008_BUpdateUserData( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer008_BUpdateUserData, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer008_BSetServerType(struct w_steam_iface *_this, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, bool bLANMode) { - struct cppISteamGameServer_SteamGameServer008_BSetServerType_params params = + struct ISteamGameServer_SteamGameServer008_BSetServerType_params params = { .linux_side = _this->u_iface, .unServerFlags = unServerFlags, @@ -1220,13 +1210,13 @@ bool __thiscall winISteamGameServer_SteamGameServer008_BSetServerType(struct w_s .bLANMode = bLANMode, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer008_BSetServerType( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer008_BSetServerType, ¶ms ); 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) { - struct cppISteamGameServer_SteamGameServer008_UpdateServerStatus_params params = + struct ISteamGameServer_SteamGameServer008_UpdateServerStatus_params params = { .linux_side = _this->u_iface, .cPlayers = cPlayers, @@ -1237,75 +1227,75 @@ void __thiscall winISteamGameServer_SteamGameServer008_UpdateServerStatus(struct .pchMapName = pchMapName, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer008_UpdateServerStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer008_UpdateServerStatus, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer008_UpdateSpectatorPort(struct w_steam_iface *_this, uint16_t unSpectatorPort) { - struct cppISteamGameServer_SteamGameServer008_UpdateSpectatorPort_params params = + struct ISteamGameServer_SteamGameServer008_UpdateSpectatorPort_params params = { .linux_side = _this->u_iface, .unSpectatorPort = unSpectatorPort, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer008_UpdateSpectatorPort( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer008_UpdateSpectatorPort, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer008_SetGameType(struct w_steam_iface *_this, const char *pchGameType) { - struct cppISteamGameServer_SteamGameServer008_SetGameType_params params = + struct ISteamGameServer_SteamGameServer008_SetGameType_params params = { .linux_side = _this->u_iface, .pchGameType = pchGameType, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer008_SetGameType( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer008_SetGameType, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer008_BGetUserAchievementStatus(struct w_steam_iface *_this, CSteamID steamID, const char *pchAchievementName) { - struct cppISteamGameServer_SteamGameServer008_BGetUserAchievementStatus_params params = + struct ISteamGameServer_SteamGameServer008_BGetUserAchievementStatus_params params = { .linux_side = _this->u_iface, .steamID = steamID, .pchAchievementName = pchAchievementName, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer008_BGetUserAchievementStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer008_BGetUserAchievementStatus, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer008_GetGameplayStats(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer008_GetGameplayStats_params params = + struct ISteamGameServer_SteamGameServer008_GetGameplayStats_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer008_GetGameplayStats( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer008_GetGameplayStats, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer008_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) { - struct cppISteamGameServer_SteamGameServer008_RequestUserGroupStatus_params params = + struct ISteamGameServer_SteamGameServer008_RequestUserGroupStatus_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .steamIDGroup = steamIDGroup, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer008_RequestUserGroupStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer008_RequestUserGroupStatus, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameServer_SteamGameServer008_GetPublicIP(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer008_GetPublicIP_params params = + struct ISteamGameServer_SteamGameServer008_GetPublicIP_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer008_GetPublicIP( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer008_GetPublicIP, ¶ms ); return params._ret; } @@ -1344,8 +1334,6 @@ struct w_steam_iface *create_winISteamGameServer_SteamGameServer008(void *u_ifac return r; } -#include "cppISteamGameServer_SteamGameServer009.h" - DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer009_LogOn, 4) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer009_LogOff, 4) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer009_BLoggedOn, 4) @@ -1368,61 +1356,61 @@ DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer009_UserHasLicenseFor void __thiscall winISteamGameServer_SteamGameServer009_LogOn(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer009_LogOn_params params = + struct ISteamGameServer_SteamGameServer009_LogOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer009_LogOn( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_LogOn, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer009_LogOff(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer009_LogOff_params params = + struct ISteamGameServer_SteamGameServer009_LogOff_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer009_LogOff( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_LogOff, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer009_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer009_BLoggedOn_params params = + struct ISteamGameServer_SteamGameServer009_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer009_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_BLoggedOn, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer009_BSecure(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer009_BSecure_params params = + struct ISteamGameServer_SteamGameServer009_BSecure_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer009_BSecure( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_BSecure, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamGameServer_SteamGameServer009_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamGameServer_SteamGameServer009_GetSteamID_params params = + struct ISteamGameServer_SteamGameServer009_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer009_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_GetSteamID, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer009_SendUserConnectAndAuthenticate(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) { - struct cppISteamGameServer_SteamGameServer009_SendUserConnectAndAuthenticate_params params = + struct ISteamGameServer_SteamGameServer009_SendUserConnectAndAuthenticate_params params = { .linux_side = _this->u_iface, .unIPClient = unIPClient, @@ -1431,36 +1419,36 @@ bool __thiscall winISteamGameServer_SteamGameServer009_SendUserConnectAndAuthent .pSteamIDUser = pSteamIDUser, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer009_SendUserConnectAndAuthenticate( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_SendUserConnectAndAuthenticate, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamGameServer_SteamGameServer009_CreateUnauthenticatedUserConnection(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamGameServer_SteamGameServer009_CreateUnauthenticatedUserConnection_params params = + struct ISteamGameServer_SteamGameServer009_CreateUnauthenticatedUserConnection_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer009_CreateUnauthenticatedUserConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_CreateUnauthenticatedUserConnection, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer009_SendUserDisconnect(struct w_steam_iface *_this, CSteamID steamIDUser) { - struct cppISteamGameServer_SteamGameServer009_SendUserDisconnect_params params = + struct ISteamGameServer_SteamGameServer009_SendUserDisconnect_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer009_SendUserDisconnect( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_SendUserDisconnect, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer009_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) { - struct cppISteamGameServer_SteamGameServer009_BUpdateUserData_params params = + struct ISteamGameServer_SteamGameServer009_BUpdateUserData_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -1468,13 +1456,13 @@ bool __thiscall winISteamGameServer_SteamGameServer009_BUpdateUserData(struct w_ .uScore = uScore, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer009_BUpdateUserData( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_BUpdateUserData, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer009_BSetServerType(struct w_steam_iface *_this, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, bool bLANMode) { - struct cppISteamGameServer_SteamGameServer009_BSetServerType_params params = + struct ISteamGameServer_SteamGameServer009_BSetServerType_params params = { .linux_side = _this->u_iface, .unServerFlags = unServerFlags, @@ -1487,13 +1475,13 @@ bool __thiscall winISteamGameServer_SteamGameServer009_BSetServerType(struct w_s .bLANMode = bLANMode, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer009_BSetServerType( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_BSetServerType, ¶ms ); 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) { - struct cppISteamGameServer_SteamGameServer009_UpdateServerStatus_params params = + struct ISteamGameServer_SteamGameServer009_UpdateServerStatus_params params = { .linux_side = _this->u_iface, .cPlayers = cPlayers, @@ -1504,99 +1492,99 @@ void __thiscall winISteamGameServer_SteamGameServer009_UpdateServerStatus(struct .pchMapName = pchMapName, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer009_UpdateServerStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_UpdateServerStatus, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer009_UpdateSpectatorPort(struct w_steam_iface *_this, uint16_t unSpectatorPort) { - struct cppISteamGameServer_SteamGameServer009_UpdateSpectatorPort_params params = + struct ISteamGameServer_SteamGameServer009_UpdateSpectatorPort_params params = { .linux_side = _this->u_iface, .unSpectatorPort = unSpectatorPort, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer009_UpdateSpectatorPort( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_UpdateSpectatorPort, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer009_SetGameType(struct w_steam_iface *_this, const char *pchGameType) { - struct cppISteamGameServer_SteamGameServer009_SetGameType_params params = + struct ISteamGameServer_SteamGameServer009_SetGameType_params params = { .linux_side = _this->u_iface, .pchGameType = pchGameType, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer009_SetGameType( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_SetGameType, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer009_BGetUserAchievementStatus(struct w_steam_iface *_this, CSteamID steamID, const char *pchAchievementName) { - struct cppISteamGameServer_SteamGameServer009_BGetUserAchievementStatus_params params = + struct ISteamGameServer_SteamGameServer009_BGetUserAchievementStatus_params params = { .linux_side = _this->u_iface, .steamID = steamID, .pchAchievementName = pchAchievementName, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer009_BGetUserAchievementStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_BGetUserAchievementStatus, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer009_GetGameplayStats(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer009_GetGameplayStats_params params = + struct ISteamGameServer_SteamGameServer009_GetGameplayStats_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer009_GetGameplayStats( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_GetGameplayStats, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer009_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) { - struct cppISteamGameServer_SteamGameServer009_RequestUserGroupStatus_params params = + struct ISteamGameServer_SteamGameServer009_RequestUserGroupStatus_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .steamIDGroup = steamIDGroup, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer009_RequestUserGroupStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_RequestUserGroupStatus, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameServer_SteamGameServer009_GetPublicIP(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer009_GetPublicIP_params params = + struct ISteamGameServer_SteamGameServer009_GetPublicIP_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer009_GetPublicIP( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_GetPublicIP, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer009_SetGameData(struct w_steam_iface *_this, const char *pchGameData) { - struct cppISteamGameServer_SteamGameServer009_SetGameData_params params = + struct ISteamGameServer_SteamGameServer009_SetGameData_params params = { .linux_side = _this->u_iface, .pchGameData = pchGameData, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer009_SetGameData( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_SetGameData, ¶ms ); } uint32_t __thiscall winISteamGameServer_SteamGameServer009_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) { - struct cppISteamGameServer_SteamGameServer009_UserHasLicenseForApp_params params = + struct ISteamGameServer_SteamGameServer009_UserHasLicenseForApp_params params = { .linux_side = _this->u_iface, .steamID = steamID, .appID = appID, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer009_UserHasLicenseForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_UserHasLicenseForApp, ¶ms ); return params._ret; } @@ -1637,8 +1625,6 @@ struct w_steam_iface *create_winISteamGameServer_SteamGameServer009(void *u_ifac return r; } -#include "cppISteamGameServer_SteamGameServer010.h" - DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer010_LogOn, 4) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer010_LogOff, 4) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer010_BLoggedOn, 4) @@ -1665,61 +1651,61 @@ DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer010_CancelAuthTicket, void __thiscall winISteamGameServer_SteamGameServer010_LogOn(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer010_LogOn_params params = + struct ISteamGameServer_SteamGameServer010_LogOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer010_LogOn( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_LogOn, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer010_LogOff(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer010_LogOff_params params = + struct ISteamGameServer_SteamGameServer010_LogOff_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer010_LogOff( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_LogOff, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer010_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer010_BLoggedOn_params params = + struct ISteamGameServer_SteamGameServer010_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer010_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_BLoggedOn, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer010_BSecure(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer010_BSecure_params params = + struct ISteamGameServer_SteamGameServer010_BSecure_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer010_BSecure( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_BSecure, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamGameServer_SteamGameServer010_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamGameServer_SteamGameServer010_GetSteamID_params params = + struct ISteamGameServer_SteamGameServer010_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer010_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_GetSteamID, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer010_SendUserConnectAndAuthenticate(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) { - struct cppISteamGameServer_SteamGameServer010_SendUserConnectAndAuthenticate_params params = + struct ISteamGameServer_SteamGameServer010_SendUserConnectAndAuthenticate_params params = { .linux_side = _this->u_iface, .unIPClient = unIPClient, @@ -1728,36 +1714,36 @@ bool __thiscall winISteamGameServer_SteamGameServer010_SendUserConnectAndAuthent .pSteamIDUser = pSteamIDUser, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer010_SendUserConnectAndAuthenticate( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_SendUserConnectAndAuthenticate, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamGameServer_SteamGameServer010_CreateUnauthenticatedUserConnection(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamGameServer_SteamGameServer010_CreateUnauthenticatedUserConnection_params params = + struct ISteamGameServer_SteamGameServer010_CreateUnauthenticatedUserConnection_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer010_CreateUnauthenticatedUserConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_CreateUnauthenticatedUserConnection, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer010_SendUserDisconnect(struct w_steam_iface *_this, CSteamID steamIDUser) { - struct cppISteamGameServer_SteamGameServer010_SendUserDisconnect_params params = + struct ISteamGameServer_SteamGameServer010_SendUserDisconnect_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer010_SendUserDisconnect( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_SendUserDisconnect, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer010_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) { - struct cppISteamGameServer_SteamGameServer010_BUpdateUserData_params params = + struct ISteamGameServer_SteamGameServer010_BUpdateUserData_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -1765,13 +1751,13 @@ bool __thiscall winISteamGameServer_SteamGameServer010_BUpdateUserData(struct w_ .uScore = uScore, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer010_BUpdateUserData( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_BUpdateUserData, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer010_BSetServerType(struct w_steam_iface *_this, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, bool bLANMode) { - struct cppISteamGameServer_SteamGameServer010_BSetServerType_params params = + struct ISteamGameServer_SteamGameServer010_BSetServerType_params params = { .linux_side = _this->u_iface, .unServerFlags = unServerFlags, @@ -1784,13 +1770,13 @@ bool __thiscall winISteamGameServer_SteamGameServer010_BSetServerType(struct w_s .bLANMode = bLANMode, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer010_BSetServerType( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_BSetServerType, ¶ms ); 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) { - struct cppISteamGameServer_SteamGameServer010_UpdateServerStatus_params params = + struct ISteamGameServer_SteamGameServer010_UpdateServerStatus_params params = { .linux_side = _this->u_iface, .cPlayers = cPlayers, @@ -1801,103 +1787,103 @@ void __thiscall winISteamGameServer_SteamGameServer010_UpdateServerStatus(struct .pchMapName = pchMapName, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer010_UpdateServerStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_UpdateServerStatus, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer010_UpdateSpectatorPort(struct w_steam_iface *_this, uint16_t unSpectatorPort) { - struct cppISteamGameServer_SteamGameServer010_UpdateSpectatorPort_params params = + struct ISteamGameServer_SteamGameServer010_UpdateSpectatorPort_params params = { .linux_side = _this->u_iface, .unSpectatorPort = unSpectatorPort, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer010_UpdateSpectatorPort( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_UpdateSpectatorPort, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer010_SetGameTags(struct w_steam_iface *_this, const char *pchGameTags) { - struct cppISteamGameServer_SteamGameServer010_SetGameTags_params params = + struct ISteamGameServer_SteamGameServer010_SetGameTags_params params = { .linux_side = _this->u_iface, .pchGameTags = pchGameTags, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer010_SetGameTags( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_SetGameTags, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer010_GetGameplayStats(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer010_GetGameplayStats_params params = + struct ISteamGameServer_SteamGameServer010_GetGameplayStats_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer010_GetGameplayStats( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_GetGameplayStats, ¶ms ); } uint64_t __thiscall winISteamGameServer_SteamGameServer010_GetServerReputation(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer010_GetServerReputation_params params = + struct ISteamGameServer_SteamGameServer010_GetServerReputation_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer010_GetServerReputation( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_GetServerReputation, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer010_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) { - struct cppISteamGameServer_SteamGameServer010_RequestUserGroupStatus_params params = + struct ISteamGameServer_SteamGameServer010_RequestUserGroupStatus_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .steamIDGroup = steamIDGroup, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer010_RequestUserGroupStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_RequestUserGroupStatus, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameServer_SteamGameServer010_GetPublicIP(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer010_GetPublicIP_params params = + struct ISteamGameServer_SteamGameServer010_GetPublicIP_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer010_GetPublicIP( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_GetPublicIP, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer010_SetGameData(struct w_steam_iface *_this, const char *pchGameData) { - struct cppISteamGameServer_SteamGameServer010_SetGameData_params params = + struct ISteamGameServer_SteamGameServer010_SetGameData_params params = { .linux_side = _this->u_iface, .pchGameData = pchGameData, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer010_SetGameData( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_SetGameData, ¶ms ); } uint32_t __thiscall winISteamGameServer_SteamGameServer010_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) { - struct cppISteamGameServer_SteamGameServer010_UserHasLicenseForApp_params params = + struct ISteamGameServer_SteamGameServer010_UserHasLicenseForApp_params params = { .linux_side = _this->u_iface, .steamID = steamID, .appID = appID, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer010_UserHasLicenseForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_UserHasLicenseForApp, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameServer_SteamGameServer010_GetAuthSessionTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { - struct cppISteamGameServer_SteamGameServer010_GetAuthSessionTicket_params params = + struct ISteamGameServer_SteamGameServer010_GetAuthSessionTicket_params params = { .linux_side = _this->u_iface, .pTicket = pTicket, @@ -1905,13 +1891,13 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer010_GetAuthSessionTicket( .pcbTicket = pcbTicket, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer010_GetAuthSessionTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_GetAuthSessionTicket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameServer_SteamGameServer010_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { - struct cppISteamGameServer_SteamGameServer010_BeginAuthSession_params params = + struct ISteamGameServer_SteamGameServer010_BeginAuthSession_params params = { .linux_side = _this->u_iface, .pAuthTicket = pAuthTicket, @@ -1919,30 +1905,30 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer010_BeginAuthSession(stru .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer010_BeginAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_BeginAuthSession, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer010_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamGameServer_SteamGameServer010_EndAuthSession_params params = + struct ISteamGameServer_SteamGameServer010_EndAuthSession_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer010_EndAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_EndAuthSession, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer010_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) { - struct cppISteamGameServer_SteamGameServer010_CancelAuthTicket_params params = + struct ISteamGameServer_SteamGameServer010_CancelAuthTicket_params params = { .linux_side = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer010_CancelAuthTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_CancelAuthTicket, ¶ms ); } extern vtable_ptr winISteamGameServer_SteamGameServer010_vtable; @@ -1986,8 +1972,6 @@ struct w_steam_iface *create_winISteamGameServer_SteamGameServer010(void *u_ifac return r; } -#include "cppISteamGameServer_SteamGameServer011.h" - DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer011_InitGameServer, 28) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer011_SetProduct, 8) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer011_SetGameDescription, 8) @@ -2035,7 +2019,7 @@ DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer011_ComputeNewPlayerC bool __thiscall winISteamGameServer_SteamGameServer011_InitGameServer(struct w_steam_iface *_this, uint32_t unIP, uint16_t usGamePort, uint16_t usQueryPort, uint32_t unFlags, uint32_t nGameAppId, const char *pchVersionString) { - struct cppISteamGameServer_SteamGameServer011_InitGameServer_params params = + struct ISteamGameServer_SteamGameServer011_InitGameServer_params params = { .linux_side = _this->u_iface, .unIP = unIP, @@ -2046,266 +2030,266 @@ bool __thiscall winISteamGameServer_SteamGameServer011_InitGameServer(struct w_s .pchVersionString = pchVersionString, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_InitGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_InitGameServer, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer011_SetProduct(struct w_steam_iface *_this, const char *pszProduct) { - struct cppISteamGameServer_SteamGameServer011_SetProduct_params params = + struct ISteamGameServer_SteamGameServer011_SetProduct_params params = { .linux_side = _this->u_iface, .pszProduct = pszProduct, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_SetProduct( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetProduct, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer011_SetGameDescription(struct w_steam_iface *_this, const char *pszGameDescription) { - struct cppISteamGameServer_SteamGameServer011_SetGameDescription_params params = + struct ISteamGameServer_SteamGameServer011_SetGameDescription_params params = { .linux_side = _this->u_iface, .pszGameDescription = pszGameDescription, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_SetGameDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetGameDescription, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer011_SetModDir(struct w_steam_iface *_this, const char *pszModDir) { - struct cppISteamGameServer_SteamGameServer011_SetModDir_params params = + struct ISteamGameServer_SteamGameServer011_SetModDir_params params = { .linux_side = _this->u_iface, .pszModDir = pszModDir, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_SetModDir( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetModDir, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer011_SetDedicatedServer(struct w_steam_iface *_this, bool bDedicated) { - struct cppISteamGameServer_SteamGameServer011_SetDedicatedServer_params params = + struct ISteamGameServer_SteamGameServer011_SetDedicatedServer_params params = { .linux_side = _this->u_iface, .bDedicated = bDedicated, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_SetDedicatedServer( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetDedicatedServer, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer011_LogOn(struct w_steam_iface *_this, const char *pszAccountName, const char *pszPassword) { - struct cppISteamGameServer_SteamGameServer011_LogOn_params params = + struct ISteamGameServer_SteamGameServer011_LogOn_params params = { .linux_side = _this->u_iface, .pszAccountName = pszAccountName, .pszPassword = pszPassword, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_LogOn( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_LogOn, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer011_LogOnAnonymous(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer011_LogOnAnonymous_params params = + struct ISteamGameServer_SteamGameServer011_LogOnAnonymous_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_LogOnAnonymous( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_LogOnAnonymous, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer011_LogOff(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer011_LogOff_params params = + struct ISteamGameServer_SteamGameServer011_LogOff_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_LogOff( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_LogOff, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer011_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer011_BLoggedOn_params params = + struct ISteamGameServer_SteamGameServer011_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_BLoggedOn, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer011_BSecure(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer011_BSecure_params params = + struct ISteamGameServer_SteamGameServer011_BSecure_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_BSecure( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_BSecure, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamGameServer_SteamGameServer011_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamGameServer_SteamGameServer011_GetSteamID_params params = + struct ISteamGameServer_SteamGameServer011_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_GetSteamID, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer011_WasRestartRequested(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer011_WasRestartRequested_params params = + struct ISteamGameServer_SteamGameServer011_WasRestartRequested_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_WasRestartRequested( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_WasRestartRequested, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer011_SetMaxPlayerCount(struct w_steam_iface *_this, int32_t cPlayersMax) { - struct cppISteamGameServer_SteamGameServer011_SetMaxPlayerCount_params params = + struct ISteamGameServer_SteamGameServer011_SetMaxPlayerCount_params params = { .linux_side = _this->u_iface, .cPlayersMax = cPlayersMax, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_SetMaxPlayerCount( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetMaxPlayerCount, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer011_SetBotPlayerCount(struct w_steam_iface *_this, int32_t cBotplayers) { - struct cppISteamGameServer_SteamGameServer011_SetBotPlayerCount_params params = + struct ISteamGameServer_SteamGameServer011_SetBotPlayerCount_params params = { .linux_side = _this->u_iface, .cBotplayers = cBotplayers, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_SetBotPlayerCount( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetBotPlayerCount, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer011_SetServerName(struct w_steam_iface *_this, const char *pszServerName) { - struct cppISteamGameServer_SteamGameServer011_SetServerName_params params = + struct ISteamGameServer_SteamGameServer011_SetServerName_params params = { .linux_side = _this->u_iface, .pszServerName = pszServerName, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_SetServerName( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetServerName, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer011_SetMapName(struct w_steam_iface *_this, const char *pszMapName) { - struct cppISteamGameServer_SteamGameServer011_SetMapName_params params = + struct ISteamGameServer_SteamGameServer011_SetMapName_params params = { .linux_side = _this->u_iface, .pszMapName = pszMapName, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_SetMapName( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetMapName, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer011_SetPasswordProtected(struct w_steam_iface *_this, bool bPasswordProtected) { - struct cppISteamGameServer_SteamGameServer011_SetPasswordProtected_params params = + struct ISteamGameServer_SteamGameServer011_SetPasswordProtected_params params = { .linux_side = _this->u_iface, .bPasswordProtected = bPasswordProtected, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_SetPasswordProtected( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetPasswordProtected, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer011_SetSpectatorPort(struct w_steam_iface *_this, uint16_t unSpectatorPort) { - struct cppISteamGameServer_SteamGameServer011_SetSpectatorPort_params params = + struct ISteamGameServer_SteamGameServer011_SetSpectatorPort_params params = { .linux_side = _this->u_iface, .unSpectatorPort = unSpectatorPort, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_SetSpectatorPort( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetSpectatorPort, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer011_SetSpectatorServerName(struct w_steam_iface *_this, const char *pszSpectatorServerName) { - struct cppISteamGameServer_SteamGameServer011_SetSpectatorServerName_params params = + struct ISteamGameServer_SteamGameServer011_SetSpectatorServerName_params params = { .linux_side = _this->u_iface, .pszSpectatorServerName = pszSpectatorServerName, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_SetSpectatorServerName( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetSpectatorServerName, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer011_ClearAllKeyValues(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer011_ClearAllKeyValues_params params = + struct ISteamGameServer_SteamGameServer011_ClearAllKeyValues_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_ClearAllKeyValues( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_ClearAllKeyValues, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer011_SetKeyValue(struct w_steam_iface *_this, const char *pKey, const char *pValue) { - struct cppISteamGameServer_SteamGameServer011_SetKeyValue_params params = + struct ISteamGameServer_SteamGameServer011_SetKeyValue_params params = { .linux_side = _this->u_iface, .pKey = pKey, .pValue = pValue, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_SetKeyValue( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetKeyValue, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer011_SetGameTags(struct w_steam_iface *_this, const char *pchGameTags) { - struct cppISteamGameServer_SteamGameServer011_SetGameTags_params params = + struct ISteamGameServer_SteamGameServer011_SetGameTags_params params = { .linux_side = _this->u_iface, .pchGameTags = pchGameTags, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_SetGameTags( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetGameTags, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer011_SetGameData(struct w_steam_iface *_this, const char *pchGameData) { - struct cppISteamGameServer_SteamGameServer011_SetGameData_params params = + struct ISteamGameServer_SteamGameServer011_SetGameData_params params = { .linux_side = _this->u_iface, .pchGameData = pchGameData, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_SetGameData( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetGameData, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer011_SetRegion(struct w_steam_iface *_this, const char *pszRegion) { - struct cppISteamGameServer_SteamGameServer011_SetRegion_params params = + struct ISteamGameServer_SteamGameServer011_SetRegion_params params = { .linux_side = _this->u_iface, .pszRegion = pszRegion, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_SetRegion( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetRegion, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer011_SendUserConnectAndAuthenticate(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) { - struct cppISteamGameServer_SteamGameServer011_SendUserConnectAndAuthenticate_params params = + struct ISteamGameServer_SteamGameServer011_SendUserConnectAndAuthenticate_params params = { .linux_side = _this->u_iface, .unIPClient = unIPClient, @@ -2314,36 +2298,36 @@ bool __thiscall winISteamGameServer_SteamGameServer011_SendUserConnectAndAuthent .pSteamIDUser = pSteamIDUser, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_SendUserConnectAndAuthenticate( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SendUserConnectAndAuthenticate, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamGameServer_SteamGameServer011_CreateUnauthenticatedUserConnection(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamGameServer_SteamGameServer011_CreateUnauthenticatedUserConnection_params params = + struct ISteamGameServer_SteamGameServer011_CreateUnauthenticatedUserConnection_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_CreateUnauthenticatedUserConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_CreateUnauthenticatedUserConnection, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer011_SendUserDisconnect(struct w_steam_iface *_this, CSteamID steamIDUser) { - struct cppISteamGameServer_SteamGameServer011_SendUserDisconnect_params params = + struct ISteamGameServer_SteamGameServer011_SendUserDisconnect_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_SendUserDisconnect( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SendUserDisconnect, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer011_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) { - struct cppISteamGameServer_SteamGameServer011_BUpdateUserData_params params = + struct ISteamGameServer_SteamGameServer011_BUpdateUserData_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -2351,13 +2335,13 @@ bool __thiscall winISteamGameServer_SteamGameServer011_BUpdateUserData(struct w_ .uScore = uScore, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_BUpdateUserData( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_BUpdateUserData, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameServer_SteamGameServer011_GetAuthSessionTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { - struct cppISteamGameServer_SteamGameServer011_GetAuthSessionTicket_params params = + struct ISteamGameServer_SteamGameServer011_GetAuthSessionTicket_params params = { .linux_side = _this->u_iface, .pTicket = pTicket, @@ -2365,13 +2349,13 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer011_GetAuthSessionTicket( .pcbTicket = pcbTicket, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_GetAuthSessionTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_GetAuthSessionTicket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameServer_SteamGameServer011_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { - struct cppISteamGameServer_SteamGameServer011_BeginAuthSession_params params = + struct ISteamGameServer_SteamGameServer011_BeginAuthSession_params params = { .linux_side = _this->u_iface, .pAuthTicket = pAuthTicket, @@ -2379,93 +2363,93 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer011_BeginAuthSession(stru .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_BeginAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_BeginAuthSession, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer011_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamGameServer_SteamGameServer011_EndAuthSession_params params = + struct ISteamGameServer_SteamGameServer011_EndAuthSession_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_EndAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_EndAuthSession, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer011_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) { - struct cppISteamGameServer_SteamGameServer011_CancelAuthTicket_params params = + struct ISteamGameServer_SteamGameServer011_CancelAuthTicket_params params = { .linux_side = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_CancelAuthTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_CancelAuthTicket, ¶ms ); } uint32_t __thiscall winISteamGameServer_SteamGameServer011_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) { - struct cppISteamGameServer_SteamGameServer011_UserHasLicenseForApp_params params = + struct ISteamGameServer_SteamGameServer011_UserHasLicenseForApp_params params = { .linux_side = _this->u_iface, .steamID = steamID, .appID = appID, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_UserHasLicenseForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_UserHasLicenseForApp, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer011_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) { - struct cppISteamGameServer_SteamGameServer011_RequestUserGroupStatus_params params = + struct ISteamGameServer_SteamGameServer011_RequestUserGroupStatus_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .steamIDGroup = steamIDGroup, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_RequestUserGroupStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_RequestUserGroupStatus, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer011_GetGameplayStats(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer011_GetGameplayStats_params params = + struct ISteamGameServer_SteamGameServer011_GetGameplayStats_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_GetGameplayStats( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_GetGameplayStats, ¶ms ); } uint64_t __thiscall winISteamGameServer_SteamGameServer011_GetServerReputation(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer011_GetServerReputation_params params = + struct ISteamGameServer_SteamGameServer011_GetServerReputation_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_GetServerReputation( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_GetServerReputation, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameServer_SteamGameServer011_GetPublicIP(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer011_GetPublicIP_params params = + struct ISteamGameServer_SteamGameServer011_GetPublicIP_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_GetPublicIP( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_GetPublicIP, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer011_HandleIncomingPacket(struct w_steam_iface *_this, const void *pData, int32_t cbData, uint32_t srcIP, uint16_t srcPort) { - struct cppISteamGameServer_SteamGameServer011_HandleIncomingPacket_params params = + struct ISteamGameServer_SteamGameServer011_HandleIncomingPacket_params params = { .linux_side = _this->u_iface, .pData = pData, @@ -2474,13 +2458,13 @@ bool __thiscall winISteamGameServer_SteamGameServer011_HandleIncomingPacket(stru .srcPort = srcPort, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_HandleIncomingPacket( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_HandleIncomingPacket, ¶ms ); 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) { - struct cppISteamGameServer_SteamGameServer011_GetNextOutgoingPacket_params params = + struct ISteamGameServer_SteamGameServer011_GetNextOutgoingPacket_params params = { .linux_side = _this->u_iface, .pOut = pOut, @@ -2489,63 +2473,63 @@ int32_t __thiscall winISteamGameServer_SteamGameServer011_GetNextOutgoingPacket( .pPort = pPort, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_GetNextOutgoingPacket( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_GetNextOutgoingPacket, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer011_EnableHeartbeats(struct w_steam_iface *_this, bool bActive) { - struct cppISteamGameServer_SteamGameServer011_EnableHeartbeats_params params = + struct ISteamGameServer_SteamGameServer011_EnableHeartbeats_params params = { .linux_side = _this->u_iface, .bActive = bActive, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_EnableHeartbeats( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_EnableHeartbeats, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer011_SetHeartbeatInterval(struct w_steam_iface *_this, int32_t iHeartbeatInterval) { - struct cppISteamGameServer_SteamGameServer011_SetHeartbeatInterval_params params = + struct ISteamGameServer_SteamGameServer011_SetHeartbeatInterval_params params = { .linux_side = _this->u_iface, .iHeartbeatInterval = iHeartbeatInterval, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_SetHeartbeatInterval( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetHeartbeatInterval, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer011_ForceHeartbeat(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer011_ForceHeartbeat_params params = + struct ISteamGameServer_SteamGameServer011_ForceHeartbeat_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_ForceHeartbeat( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_ForceHeartbeat, ¶ms ); } uint64_t __thiscall winISteamGameServer_SteamGameServer011_AssociateWithClan(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamGameServer_SteamGameServer011_AssociateWithClan_params params = + struct ISteamGameServer_SteamGameServer011_AssociateWithClan_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_AssociateWithClan( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_AssociateWithClan, ¶ms ); return params._ret; } uint64_t __thiscall winISteamGameServer_SteamGameServer011_ComputeNewPlayerCompatibility(struct w_steam_iface *_this, CSteamID steamIDNewPlayer) { - struct cppISteamGameServer_SteamGameServer011_ComputeNewPlayerCompatibility_params params = + struct ISteamGameServer_SteamGameServer011_ComputeNewPlayerCompatibility_params params = { .linux_side = _this->u_iface, .steamIDNewPlayer = steamIDNewPlayer, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer011_ComputeNewPlayerCompatibility( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_ComputeNewPlayerCompatibility, ¶ms ); return params._ret; } @@ -2611,8 +2595,6 @@ struct w_steam_iface *create_winISteamGameServer_SteamGameServer011(void *u_ifac return r; } -#include "cppISteamGameServer_SteamGameServer012.h" - DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer012_InitGameServer, 28) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer012_SetProduct, 8) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer012_SetGameDescription, 8) @@ -2660,7 +2642,7 @@ DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer012_ComputeNewPlayerC bool __thiscall winISteamGameServer_SteamGameServer012_InitGameServer(struct w_steam_iface *_this, uint32_t unIP, uint16_t usGamePort, uint16_t usQueryPort, uint32_t unFlags, uint32_t nGameAppId, const char *pchVersionString) { - struct cppISteamGameServer_SteamGameServer012_InitGameServer_params params = + struct ISteamGameServer_SteamGameServer012_InitGameServer_params params = { .linux_side = _this->u_iface, .unIP = unIP, @@ -2671,265 +2653,265 @@ bool __thiscall winISteamGameServer_SteamGameServer012_InitGameServer(struct w_s .pchVersionString = pchVersionString, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_InitGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_InitGameServer, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer012_SetProduct(struct w_steam_iface *_this, const char *pszProduct) { - struct cppISteamGameServer_SteamGameServer012_SetProduct_params params = + struct ISteamGameServer_SteamGameServer012_SetProduct_params params = { .linux_side = _this->u_iface, .pszProduct = pszProduct, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_SetProduct( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetProduct, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer012_SetGameDescription(struct w_steam_iface *_this, const char *pszGameDescription) { - struct cppISteamGameServer_SteamGameServer012_SetGameDescription_params params = + struct ISteamGameServer_SteamGameServer012_SetGameDescription_params params = { .linux_side = _this->u_iface, .pszGameDescription = pszGameDescription, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_SetGameDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetGameDescription, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer012_SetModDir(struct w_steam_iface *_this, const char *pszModDir) { - struct cppISteamGameServer_SteamGameServer012_SetModDir_params params = + struct ISteamGameServer_SteamGameServer012_SetModDir_params params = { .linux_side = _this->u_iface, .pszModDir = pszModDir, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_SetModDir( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetModDir, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer012_SetDedicatedServer(struct w_steam_iface *_this, bool bDedicated) { - struct cppISteamGameServer_SteamGameServer012_SetDedicatedServer_params params = + struct ISteamGameServer_SteamGameServer012_SetDedicatedServer_params params = { .linux_side = _this->u_iface, .bDedicated = bDedicated, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_SetDedicatedServer( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetDedicatedServer, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer012_LogOn(struct w_steam_iface *_this, const char *pszToken) { - struct cppISteamGameServer_SteamGameServer012_LogOn_params params = + struct ISteamGameServer_SteamGameServer012_LogOn_params params = { .linux_side = _this->u_iface, .pszToken = pszToken, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_LogOn( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_LogOn, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer012_LogOnAnonymous(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer012_LogOnAnonymous_params params = + struct ISteamGameServer_SteamGameServer012_LogOnAnonymous_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_LogOnAnonymous( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_LogOnAnonymous, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer012_LogOff(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer012_LogOff_params params = + struct ISteamGameServer_SteamGameServer012_LogOff_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_LogOff( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_LogOff, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer012_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer012_BLoggedOn_params params = + struct ISteamGameServer_SteamGameServer012_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_BLoggedOn, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer012_BSecure(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer012_BSecure_params params = + struct ISteamGameServer_SteamGameServer012_BSecure_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_BSecure( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_BSecure, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamGameServer_SteamGameServer012_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamGameServer_SteamGameServer012_GetSteamID_params params = + struct ISteamGameServer_SteamGameServer012_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_GetSteamID, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer012_WasRestartRequested(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer012_WasRestartRequested_params params = + struct ISteamGameServer_SteamGameServer012_WasRestartRequested_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_WasRestartRequested( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_WasRestartRequested, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer012_SetMaxPlayerCount(struct w_steam_iface *_this, int32_t cPlayersMax) { - struct cppISteamGameServer_SteamGameServer012_SetMaxPlayerCount_params params = + struct ISteamGameServer_SteamGameServer012_SetMaxPlayerCount_params params = { .linux_side = _this->u_iface, .cPlayersMax = cPlayersMax, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_SetMaxPlayerCount( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetMaxPlayerCount, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer012_SetBotPlayerCount(struct w_steam_iface *_this, int32_t cBotplayers) { - struct cppISteamGameServer_SteamGameServer012_SetBotPlayerCount_params params = + struct ISteamGameServer_SteamGameServer012_SetBotPlayerCount_params params = { .linux_side = _this->u_iface, .cBotplayers = cBotplayers, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_SetBotPlayerCount( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetBotPlayerCount, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer012_SetServerName(struct w_steam_iface *_this, const char *pszServerName) { - struct cppISteamGameServer_SteamGameServer012_SetServerName_params params = + struct ISteamGameServer_SteamGameServer012_SetServerName_params params = { .linux_side = _this->u_iface, .pszServerName = pszServerName, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_SetServerName( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetServerName, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer012_SetMapName(struct w_steam_iface *_this, const char *pszMapName) { - struct cppISteamGameServer_SteamGameServer012_SetMapName_params params = + struct ISteamGameServer_SteamGameServer012_SetMapName_params params = { .linux_side = _this->u_iface, .pszMapName = pszMapName, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_SetMapName( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetMapName, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer012_SetPasswordProtected(struct w_steam_iface *_this, bool bPasswordProtected) { - struct cppISteamGameServer_SteamGameServer012_SetPasswordProtected_params params = + struct ISteamGameServer_SteamGameServer012_SetPasswordProtected_params params = { .linux_side = _this->u_iface, .bPasswordProtected = bPasswordProtected, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_SetPasswordProtected( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetPasswordProtected, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer012_SetSpectatorPort(struct w_steam_iface *_this, uint16_t unSpectatorPort) { - struct cppISteamGameServer_SteamGameServer012_SetSpectatorPort_params params = + struct ISteamGameServer_SteamGameServer012_SetSpectatorPort_params params = { .linux_side = _this->u_iface, .unSpectatorPort = unSpectatorPort, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_SetSpectatorPort( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetSpectatorPort, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer012_SetSpectatorServerName(struct w_steam_iface *_this, const char *pszSpectatorServerName) { - struct cppISteamGameServer_SteamGameServer012_SetSpectatorServerName_params params = + struct ISteamGameServer_SteamGameServer012_SetSpectatorServerName_params params = { .linux_side = _this->u_iface, .pszSpectatorServerName = pszSpectatorServerName, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_SetSpectatorServerName( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetSpectatorServerName, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer012_ClearAllKeyValues(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer012_ClearAllKeyValues_params params = + struct ISteamGameServer_SteamGameServer012_ClearAllKeyValues_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_ClearAllKeyValues( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_ClearAllKeyValues, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer012_SetKeyValue(struct w_steam_iface *_this, const char *pKey, const char *pValue) { - struct cppISteamGameServer_SteamGameServer012_SetKeyValue_params params = + struct ISteamGameServer_SteamGameServer012_SetKeyValue_params params = { .linux_side = _this->u_iface, .pKey = pKey, .pValue = pValue, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_SetKeyValue( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetKeyValue, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer012_SetGameTags(struct w_steam_iface *_this, const char *pchGameTags) { - struct cppISteamGameServer_SteamGameServer012_SetGameTags_params params = + struct ISteamGameServer_SteamGameServer012_SetGameTags_params params = { .linux_side = _this->u_iface, .pchGameTags = pchGameTags, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_SetGameTags( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetGameTags, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer012_SetGameData(struct w_steam_iface *_this, const char *pchGameData) { - struct cppISteamGameServer_SteamGameServer012_SetGameData_params params = + struct ISteamGameServer_SteamGameServer012_SetGameData_params params = { .linux_side = _this->u_iface, .pchGameData = pchGameData, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_SetGameData( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetGameData, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer012_SetRegion(struct w_steam_iface *_this, const char *pszRegion) { - struct cppISteamGameServer_SteamGameServer012_SetRegion_params params = + struct ISteamGameServer_SteamGameServer012_SetRegion_params params = { .linux_side = _this->u_iface, .pszRegion = pszRegion, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_SetRegion( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetRegion, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer012_SendUserConnectAndAuthenticate(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) { - struct cppISteamGameServer_SteamGameServer012_SendUserConnectAndAuthenticate_params params = + struct ISteamGameServer_SteamGameServer012_SendUserConnectAndAuthenticate_params params = { .linux_side = _this->u_iface, .unIPClient = unIPClient, @@ -2938,36 +2920,36 @@ bool __thiscall winISteamGameServer_SteamGameServer012_SendUserConnectAndAuthent .pSteamIDUser = pSteamIDUser, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_SendUserConnectAndAuthenticate( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SendUserConnectAndAuthenticate, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamGameServer_SteamGameServer012_CreateUnauthenticatedUserConnection(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamGameServer_SteamGameServer012_CreateUnauthenticatedUserConnection_params params = + struct ISteamGameServer_SteamGameServer012_CreateUnauthenticatedUserConnection_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_CreateUnauthenticatedUserConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_CreateUnauthenticatedUserConnection, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer012_SendUserDisconnect(struct w_steam_iface *_this, CSteamID steamIDUser) { - struct cppISteamGameServer_SteamGameServer012_SendUserDisconnect_params params = + struct ISteamGameServer_SteamGameServer012_SendUserDisconnect_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_SendUserDisconnect( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SendUserDisconnect, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer012_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) { - struct cppISteamGameServer_SteamGameServer012_BUpdateUserData_params params = + struct ISteamGameServer_SteamGameServer012_BUpdateUserData_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -2975,13 +2957,13 @@ bool __thiscall winISteamGameServer_SteamGameServer012_BUpdateUserData(struct w_ .uScore = uScore, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_BUpdateUserData( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_BUpdateUserData, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameServer_SteamGameServer012_GetAuthSessionTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { - struct cppISteamGameServer_SteamGameServer012_GetAuthSessionTicket_params params = + struct ISteamGameServer_SteamGameServer012_GetAuthSessionTicket_params params = { .linux_side = _this->u_iface, .pTicket = pTicket, @@ -2989,13 +2971,13 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer012_GetAuthSessionTicket( .pcbTicket = pcbTicket, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_GetAuthSessionTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_GetAuthSessionTicket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameServer_SteamGameServer012_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { - struct cppISteamGameServer_SteamGameServer012_BeginAuthSession_params params = + struct ISteamGameServer_SteamGameServer012_BeginAuthSession_params params = { .linux_side = _this->u_iface, .pAuthTicket = pAuthTicket, @@ -3003,93 +2985,93 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer012_BeginAuthSession(stru .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_BeginAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_BeginAuthSession, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer012_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamGameServer_SteamGameServer012_EndAuthSession_params params = + struct ISteamGameServer_SteamGameServer012_EndAuthSession_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_EndAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_EndAuthSession, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer012_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) { - struct cppISteamGameServer_SteamGameServer012_CancelAuthTicket_params params = + struct ISteamGameServer_SteamGameServer012_CancelAuthTicket_params params = { .linux_side = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_CancelAuthTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_CancelAuthTicket, ¶ms ); } uint32_t __thiscall winISteamGameServer_SteamGameServer012_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) { - struct cppISteamGameServer_SteamGameServer012_UserHasLicenseForApp_params params = + struct ISteamGameServer_SteamGameServer012_UserHasLicenseForApp_params params = { .linux_side = _this->u_iface, .steamID = steamID, .appID = appID, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_UserHasLicenseForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_UserHasLicenseForApp, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer012_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) { - struct cppISteamGameServer_SteamGameServer012_RequestUserGroupStatus_params params = + struct ISteamGameServer_SteamGameServer012_RequestUserGroupStatus_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .steamIDGroup = steamIDGroup, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_RequestUserGroupStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_RequestUserGroupStatus, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer012_GetGameplayStats(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer012_GetGameplayStats_params params = + struct ISteamGameServer_SteamGameServer012_GetGameplayStats_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_GetGameplayStats( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_GetGameplayStats, ¶ms ); } uint64_t __thiscall winISteamGameServer_SteamGameServer012_GetServerReputation(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer012_GetServerReputation_params params = + struct ISteamGameServer_SteamGameServer012_GetServerReputation_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_GetServerReputation( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_GetServerReputation, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameServer_SteamGameServer012_GetPublicIP(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer012_GetPublicIP_params params = + struct ISteamGameServer_SteamGameServer012_GetPublicIP_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_GetPublicIP( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_GetPublicIP, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer012_HandleIncomingPacket(struct w_steam_iface *_this, const void *pData, int32_t cbData, uint32_t srcIP, uint16_t srcPort) { - struct cppISteamGameServer_SteamGameServer012_HandleIncomingPacket_params params = + struct ISteamGameServer_SteamGameServer012_HandleIncomingPacket_params params = { .linux_side = _this->u_iface, .pData = pData, @@ -3098,13 +3080,13 @@ bool __thiscall winISteamGameServer_SteamGameServer012_HandleIncomingPacket(stru .srcPort = srcPort, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_HandleIncomingPacket( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_HandleIncomingPacket, ¶ms ); 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) { - struct cppISteamGameServer_SteamGameServer012_GetNextOutgoingPacket_params params = + struct ISteamGameServer_SteamGameServer012_GetNextOutgoingPacket_params params = { .linux_side = _this->u_iface, .pOut = pOut, @@ -3113,63 +3095,63 @@ int32_t __thiscall winISteamGameServer_SteamGameServer012_GetNextOutgoingPacket( .pPort = pPort, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_GetNextOutgoingPacket( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_GetNextOutgoingPacket, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer012_EnableHeartbeats(struct w_steam_iface *_this, bool bActive) { - struct cppISteamGameServer_SteamGameServer012_EnableHeartbeats_params params = + struct ISteamGameServer_SteamGameServer012_EnableHeartbeats_params params = { .linux_side = _this->u_iface, .bActive = bActive, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_EnableHeartbeats( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_EnableHeartbeats, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer012_SetHeartbeatInterval(struct w_steam_iface *_this, int32_t iHeartbeatInterval) { - struct cppISteamGameServer_SteamGameServer012_SetHeartbeatInterval_params params = + struct ISteamGameServer_SteamGameServer012_SetHeartbeatInterval_params params = { .linux_side = _this->u_iface, .iHeartbeatInterval = iHeartbeatInterval, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_SetHeartbeatInterval( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetHeartbeatInterval, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer012_ForceHeartbeat(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer012_ForceHeartbeat_params params = + struct ISteamGameServer_SteamGameServer012_ForceHeartbeat_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_ForceHeartbeat( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_ForceHeartbeat, ¶ms ); } uint64_t __thiscall winISteamGameServer_SteamGameServer012_AssociateWithClan(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamGameServer_SteamGameServer012_AssociateWithClan_params params = + struct ISteamGameServer_SteamGameServer012_AssociateWithClan_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_AssociateWithClan( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_AssociateWithClan, ¶ms ); return params._ret; } uint64_t __thiscall winISteamGameServer_SteamGameServer012_ComputeNewPlayerCompatibility(struct w_steam_iface *_this, CSteamID steamIDNewPlayer) { - struct cppISteamGameServer_SteamGameServer012_ComputeNewPlayerCompatibility_params params = + struct ISteamGameServer_SteamGameServer012_ComputeNewPlayerCompatibility_params params = { .linux_side = _this->u_iface, .steamIDNewPlayer = steamIDNewPlayer, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer012_ComputeNewPlayerCompatibility( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_ComputeNewPlayerCompatibility, ¶ms ); return params._ret; } @@ -3235,8 +3217,6 @@ struct w_steam_iface *create_winISteamGameServer_SteamGameServer012(void *u_ifac return r; } -#include "cppISteamGameServer_SteamGameServer013.h" - DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer013_InitGameServer, 28) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer013_SetProduct, 8) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer013_SetGameDescription, 8) @@ -3284,7 +3264,7 @@ DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer013_ComputeNewPlayerC bool __thiscall winISteamGameServer_SteamGameServer013_InitGameServer(struct w_steam_iface *_this, uint32_t unIP, uint16_t usGamePort, uint16_t usQueryPort, uint32_t unFlags, uint32_t nGameAppId, const char *pchVersionString) { - struct cppISteamGameServer_SteamGameServer013_InitGameServer_params params = + struct ISteamGameServer_SteamGameServer013_InitGameServer_params params = { .linux_side = _this->u_iface, .unIP = unIP, @@ -3295,265 +3275,265 @@ bool __thiscall winISteamGameServer_SteamGameServer013_InitGameServer(struct w_s .pchVersionString = pchVersionString, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_InitGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_InitGameServer, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer013_SetProduct(struct w_steam_iface *_this, const char *pszProduct) { - struct cppISteamGameServer_SteamGameServer013_SetProduct_params params = + struct ISteamGameServer_SteamGameServer013_SetProduct_params params = { .linux_side = _this->u_iface, .pszProduct = pszProduct, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_SetProduct( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetProduct, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer013_SetGameDescription(struct w_steam_iface *_this, const char *pszGameDescription) { - struct cppISteamGameServer_SteamGameServer013_SetGameDescription_params params = + struct ISteamGameServer_SteamGameServer013_SetGameDescription_params params = { .linux_side = _this->u_iface, .pszGameDescription = pszGameDescription, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_SetGameDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetGameDescription, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer013_SetModDir(struct w_steam_iface *_this, const char *pszModDir) { - struct cppISteamGameServer_SteamGameServer013_SetModDir_params params = + struct ISteamGameServer_SteamGameServer013_SetModDir_params params = { .linux_side = _this->u_iface, .pszModDir = pszModDir, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_SetModDir( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetModDir, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer013_SetDedicatedServer(struct w_steam_iface *_this, bool bDedicated) { - struct cppISteamGameServer_SteamGameServer013_SetDedicatedServer_params params = + struct ISteamGameServer_SteamGameServer013_SetDedicatedServer_params params = { .linux_side = _this->u_iface, .bDedicated = bDedicated, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_SetDedicatedServer( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetDedicatedServer, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer013_LogOn(struct w_steam_iface *_this, const char *pszToken) { - struct cppISteamGameServer_SteamGameServer013_LogOn_params params = + struct ISteamGameServer_SteamGameServer013_LogOn_params params = { .linux_side = _this->u_iface, .pszToken = pszToken, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_LogOn( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_LogOn, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer013_LogOnAnonymous(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer013_LogOnAnonymous_params params = + struct ISteamGameServer_SteamGameServer013_LogOnAnonymous_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_LogOnAnonymous( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_LogOnAnonymous, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer013_LogOff(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer013_LogOff_params params = + struct ISteamGameServer_SteamGameServer013_LogOff_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_LogOff( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_LogOff, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer013_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer013_BLoggedOn_params params = + struct ISteamGameServer_SteamGameServer013_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_BLoggedOn, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer013_BSecure(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer013_BSecure_params params = + struct ISteamGameServer_SteamGameServer013_BSecure_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_BSecure( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_BSecure, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamGameServer_SteamGameServer013_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamGameServer_SteamGameServer013_GetSteamID_params params = + struct ISteamGameServer_SteamGameServer013_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_GetSteamID, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer013_WasRestartRequested(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer013_WasRestartRequested_params params = + struct ISteamGameServer_SteamGameServer013_WasRestartRequested_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_WasRestartRequested( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_WasRestartRequested, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer013_SetMaxPlayerCount(struct w_steam_iface *_this, int32_t cPlayersMax) { - struct cppISteamGameServer_SteamGameServer013_SetMaxPlayerCount_params params = + struct ISteamGameServer_SteamGameServer013_SetMaxPlayerCount_params params = { .linux_side = _this->u_iface, .cPlayersMax = cPlayersMax, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_SetMaxPlayerCount( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetMaxPlayerCount, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer013_SetBotPlayerCount(struct w_steam_iface *_this, int32_t cBotplayers) { - struct cppISteamGameServer_SteamGameServer013_SetBotPlayerCount_params params = + struct ISteamGameServer_SteamGameServer013_SetBotPlayerCount_params params = { .linux_side = _this->u_iface, .cBotplayers = cBotplayers, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_SetBotPlayerCount( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetBotPlayerCount, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer013_SetServerName(struct w_steam_iface *_this, const char *pszServerName) { - struct cppISteamGameServer_SteamGameServer013_SetServerName_params params = + struct ISteamGameServer_SteamGameServer013_SetServerName_params params = { .linux_side = _this->u_iface, .pszServerName = pszServerName, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_SetServerName( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetServerName, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer013_SetMapName(struct w_steam_iface *_this, const char *pszMapName) { - struct cppISteamGameServer_SteamGameServer013_SetMapName_params params = + struct ISteamGameServer_SteamGameServer013_SetMapName_params params = { .linux_side = _this->u_iface, .pszMapName = pszMapName, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_SetMapName( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetMapName, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer013_SetPasswordProtected(struct w_steam_iface *_this, bool bPasswordProtected) { - struct cppISteamGameServer_SteamGameServer013_SetPasswordProtected_params params = + struct ISteamGameServer_SteamGameServer013_SetPasswordProtected_params params = { .linux_side = _this->u_iface, .bPasswordProtected = bPasswordProtected, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_SetPasswordProtected( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetPasswordProtected, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer013_SetSpectatorPort(struct w_steam_iface *_this, uint16_t unSpectatorPort) { - struct cppISteamGameServer_SteamGameServer013_SetSpectatorPort_params params = + struct ISteamGameServer_SteamGameServer013_SetSpectatorPort_params params = { .linux_side = _this->u_iface, .unSpectatorPort = unSpectatorPort, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_SetSpectatorPort( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetSpectatorPort, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer013_SetSpectatorServerName(struct w_steam_iface *_this, const char *pszSpectatorServerName) { - struct cppISteamGameServer_SteamGameServer013_SetSpectatorServerName_params params = + struct ISteamGameServer_SteamGameServer013_SetSpectatorServerName_params params = { .linux_side = _this->u_iface, .pszSpectatorServerName = pszSpectatorServerName, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_SetSpectatorServerName( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetSpectatorServerName, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer013_ClearAllKeyValues(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer013_ClearAllKeyValues_params params = + struct ISteamGameServer_SteamGameServer013_ClearAllKeyValues_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_ClearAllKeyValues( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_ClearAllKeyValues, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer013_SetKeyValue(struct w_steam_iface *_this, const char *pKey, const char *pValue) { - struct cppISteamGameServer_SteamGameServer013_SetKeyValue_params params = + struct ISteamGameServer_SteamGameServer013_SetKeyValue_params params = { .linux_side = _this->u_iface, .pKey = pKey, .pValue = pValue, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_SetKeyValue( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetKeyValue, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer013_SetGameTags(struct w_steam_iface *_this, const char *pchGameTags) { - struct cppISteamGameServer_SteamGameServer013_SetGameTags_params params = + struct ISteamGameServer_SteamGameServer013_SetGameTags_params params = { .linux_side = _this->u_iface, .pchGameTags = pchGameTags, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_SetGameTags( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetGameTags, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer013_SetGameData(struct w_steam_iface *_this, const char *pchGameData) { - struct cppISteamGameServer_SteamGameServer013_SetGameData_params params = + struct ISteamGameServer_SteamGameServer013_SetGameData_params params = { .linux_side = _this->u_iface, .pchGameData = pchGameData, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_SetGameData( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetGameData, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer013_SetRegion(struct w_steam_iface *_this, const char *pszRegion) { - struct cppISteamGameServer_SteamGameServer013_SetRegion_params params = + struct ISteamGameServer_SteamGameServer013_SetRegion_params params = { .linux_side = _this->u_iface, .pszRegion = pszRegion, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_SetRegion( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetRegion, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer013_SendUserConnectAndAuthenticate(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) { - struct cppISteamGameServer_SteamGameServer013_SendUserConnectAndAuthenticate_params params = + struct ISteamGameServer_SteamGameServer013_SendUserConnectAndAuthenticate_params params = { .linux_side = _this->u_iface, .unIPClient = unIPClient, @@ -3562,36 +3542,36 @@ bool __thiscall winISteamGameServer_SteamGameServer013_SendUserConnectAndAuthent .pSteamIDUser = pSteamIDUser, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_SendUserConnectAndAuthenticate( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SendUserConnectAndAuthenticate, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamGameServer_SteamGameServer013_CreateUnauthenticatedUserConnection(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamGameServer_SteamGameServer013_CreateUnauthenticatedUserConnection_params params = + struct ISteamGameServer_SteamGameServer013_CreateUnauthenticatedUserConnection_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_CreateUnauthenticatedUserConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_CreateUnauthenticatedUserConnection, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer013_SendUserDisconnect(struct w_steam_iface *_this, CSteamID steamIDUser) { - struct cppISteamGameServer_SteamGameServer013_SendUserDisconnect_params params = + struct ISteamGameServer_SteamGameServer013_SendUserDisconnect_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_SendUserDisconnect( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SendUserDisconnect, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer013_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) { - struct cppISteamGameServer_SteamGameServer013_BUpdateUserData_params params = + struct ISteamGameServer_SteamGameServer013_BUpdateUserData_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -3599,13 +3579,13 @@ bool __thiscall winISteamGameServer_SteamGameServer013_BUpdateUserData(struct w_ .uScore = uScore, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_BUpdateUserData( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_BUpdateUserData, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameServer_SteamGameServer013_GetAuthSessionTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { - struct cppISteamGameServer_SteamGameServer013_GetAuthSessionTicket_params params = + struct ISteamGameServer_SteamGameServer013_GetAuthSessionTicket_params params = { .linux_side = _this->u_iface, .pTicket = pTicket, @@ -3613,13 +3593,13 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer013_GetAuthSessionTicket( .pcbTicket = pcbTicket, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_GetAuthSessionTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_GetAuthSessionTicket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameServer_SteamGameServer013_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { - struct cppISteamGameServer_SteamGameServer013_BeginAuthSession_params params = + struct ISteamGameServer_SteamGameServer013_BeginAuthSession_params params = { .linux_side = _this->u_iface, .pAuthTicket = pAuthTicket, @@ -3627,94 +3607,94 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer013_BeginAuthSession(stru .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_BeginAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_BeginAuthSession, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer013_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamGameServer_SteamGameServer013_EndAuthSession_params params = + struct ISteamGameServer_SteamGameServer013_EndAuthSession_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_EndAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_EndAuthSession, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer013_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) { - struct cppISteamGameServer_SteamGameServer013_CancelAuthTicket_params params = + struct ISteamGameServer_SteamGameServer013_CancelAuthTicket_params params = { .linux_side = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_CancelAuthTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_CancelAuthTicket, ¶ms ); } uint32_t __thiscall winISteamGameServer_SteamGameServer013_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) { - struct cppISteamGameServer_SteamGameServer013_UserHasLicenseForApp_params params = + struct ISteamGameServer_SteamGameServer013_UserHasLicenseForApp_params params = { .linux_side = _this->u_iface, .steamID = steamID, .appID = appID, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_UserHasLicenseForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_UserHasLicenseForApp, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer013_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) { - struct cppISteamGameServer_SteamGameServer013_RequestUserGroupStatus_params params = + struct ISteamGameServer_SteamGameServer013_RequestUserGroupStatus_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .steamIDGroup = steamIDGroup, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_RequestUserGroupStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_RequestUserGroupStatus, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer013_GetGameplayStats(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer013_GetGameplayStats_params params = + struct ISteamGameServer_SteamGameServer013_GetGameplayStats_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_GetGameplayStats( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_GetGameplayStats, ¶ms ); } uint64_t __thiscall winISteamGameServer_SteamGameServer013_GetServerReputation(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer013_GetServerReputation_params params = + struct ISteamGameServer_SteamGameServer013_GetServerReputation_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_GetServerReputation( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_GetServerReputation, ¶ms ); return params._ret; } SteamIPAddress_t * __thiscall winISteamGameServer_SteamGameServer013_GetPublicIP(struct w_steam_iface *_this, SteamIPAddress_t *_ret) { - struct cppISteamGameServer_SteamGameServer013_GetPublicIP_params params = + struct ISteamGameServer_SteamGameServer013_GetPublicIP_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_GetPublicIP( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_GetPublicIP, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer013_HandleIncomingPacket(struct w_steam_iface *_this, const void *pData, int32_t cbData, uint32_t srcIP, uint16_t srcPort) { - struct cppISteamGameServer_SteamGameServer013_HandleIncomingPacket_params params = + struct ISteamGameServer_SteamGameServer013_HandleIncomingPacket_params params = { .linux_side = _this->u_iface, .pData = pData, @@ -3723,13 +3703,13 @@ bool __thiscall winISteamGameServer_SteamGameServer013_HandleIncomingPacket(stru .srcPort = srcPort, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_HandleIncomingPacket( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_HandleIncomingPacket, ¶ms ); 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) { - struct cppISteamGameServer_SteamGameServer013_GetNextOutgoingPacket_params params = + struct ISteamGameServer_SteamGameServer013_GetNextOutgoingPacket_params params = { .linux_side = _this->u_iface, .pOut = pOut, @@ -3738,63 +3718,63 @@ int32_t __thiscall winISteamGameServer_SteamGameServer013_GetNextOutgoingPacket( .pPort = pPort, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_GetNextOutgoingPacket( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_GetNextOutgoingPacket, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer013_EnableHeartbeats(struct w_steam_iface *_this, bool bActive) { - struct cppISteamGameServer_SteamGameServer013_EnableHeartbeats_params params = + struct ISteamGameServer_SteamGameServer013_EnableHeartbeats_params params = { .linux_side = _this->u_iface, .bActive = bActive, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_EnableHeartbeats( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_EnableHeartbeats, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer013_SetHeartbeatInterval(struct w_steam_iface *_this, int32_t iHeartbeatInterval) { - struct cppISteamGameServer_SteamGameServer013_SetHeartbeatInterval_params params = + struct ISteamGameServer_SteamGameServer013_SetHeartbeatInterval_params params = { .linux_side = _this->u_iface, .iHeartbeatInterval = iHeartbeatInterval, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_SetHeartbeatInterval( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetHeartbeatInterval, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer013_ForceHeartbeat(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer013_ForceHeartbeat_params params = + struct ISteamGameServer_SteamGameServer013_ForceHeartbeat_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_ForceHeartbeat( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_ForceHeartbeat, ¶ms ); } uint64_t __thiscall winISteamGameServer_SteamGameServer013_AssociateWithClan(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamGameServer_SteamGameServer013_AssociateWithClan_params params = + struct ISteamGameServer_SteamGameServer013_AssociateWithClan_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_AssociateWithClan( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_AssociateWithClan, ¶ms ); return params._ret; } uint64_t __thiscall winISteamGameServer_SteamGameServer013_ComputeNewPlayerCompatibility(struct w_steam_iface *_this, CSteamID steamIDNewPlayer) { - struct cppISteamGameServer_SteamGameServer013_ComputeNewPlayerCompatibility_params params = + struct ISteamGameServer_SteamGameServer013_ComputeNewPlayerCompatibility_params params = { .linux_side = _this->u_iface, .steamIDNewPlayer = steamIDNewPlayer, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer013_ComputeNewPlayerCompatibility( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_ComputeNewPlayerCompatibility, ¶ms ); return params._ret; } @@ -3860,8 +3840,6 @@ struct w_steam_iface *create_winISteamGameServer_SteamGameServer013(void *u_ifac return r; } -#include "cppISteamGameServer_SteamGameServer014.h" - DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer014_InitGameServer, 28) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer014_SetProduct, 8) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer014_SetGameDescription, 8) @@ -3909,7 +3887,7 @@ DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer014_ForceMasterServer bool __thiscall winISteamGameServer_SteamGameServer014_InitGameServer(struct w_steam_iface *_this, uint32_t unIP, uint16_t usGamePort, uint16_t usQueryPort, uint32_t unFlags, uint32_t nGameAppId, const char *pchVersionString) { - struct cppISteamGameServer_SteamGameServer014_InitGameServer_params params = + struct ISteamGameServer_SteamGameServer014_InitGameServer_params params = { .linux_side = _this->u_iface, .unIP = unIP, @@ -3920,276 +3898,276 @@ bool __thiscall winISteamGameServer_SteamGameServer014_InitGameServer(struct w_s .pchVersionString = pchVersionString, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_InitGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_InitGameServer, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer014_SetProduct(struct w_steam_iface *_this, const char *pszProduct) { - struct cppISteamGameServer_SteamGameServer014_SetProduct_params params = + struct ISteamGameServer_SteamGameServer014_SetProduct_params params = { .linux_side = _this->u_iface, .pszProduct = pszProduct, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_SetProduct( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetProduct, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer014_SetGameDescription(struct w_steam_iface *_this, const char *pszGameDescription) { - struct cppISteamGameServer_SteamGameServer014_SetGameDescription_params params = + struct ISteamGameServer_SteamGameServer014_SetGameDescription_params params = { .linux_side = _this->u_iface, .pszGameDescription = pszGameDescription, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_SetGameDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetGameDescription, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer014_SetModDir(struct w_steam_iface *_this, const char *pszModDir) { - struct cppISteamGameServer_SteamGameServer014_SetModDir_params params = + struct ISteamGameServer_SteamGameServer014_SetModDir_params params = { .linux_side = _this->u_iface, .pszModDir = pszModDir, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_SetModDir( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetModDir, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer014_SetDedicatedServer(struct w_steam_iface *_this, bool bDedicated) { - struct cppISteamGameServer_SteamGameServer014_SetDedicatedServer_params params = + struct ISteamGameServer_SteamGameServer014_SetDedicatedServer_params params = { .linux_side = _this->u_iface, .bDedicated = bDedicated, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_SetDedicatedServer( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetDedicatedServer, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer014_LogOn(struct w_steam_iface *_this, const char *pszToken) { - struct cppISteamGameServer_SteamGameServer014_LogOn_params params = + struct ISteamGameServer_SteamGameServer014_LogOn_params params = { .linux_side = _this->u_iface, .pszToken = pszToken, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_LogOn( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_LogOn, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer014_LogOnAnonymous(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer014_LogOnAnonymous_params params = + struct ISteamGameServer_SteamGameServer014_LogOnAnonymous_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_LogOnAnonymous( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_LogOnAnonymous, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer014_LogOff(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer014_LogOff_params params = + struct ISteamGameServer_SteamGameServer014_LogOff_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_LogOff( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_LogOff, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer014_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer014_BLoggedOn_params params = + struct ISteamGameServer_SteamGameServer014_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_BLoggedOn, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer014_BSecure(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer014_BSecure_params params = + struct ISteamGameServer_SteamGameServer014_BSecure_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_BSecure( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_BSecure, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamGameServer_SteamGameServer014_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamGameServer_SteamGameServer014_GetSteamID_params params = + struct ISteamGameServer_SteamGameServer014_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_GetSteamID, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer014_WasRestartRequested(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer014_WasRestartRequested_params params = + struct ISteamGameServer_SteamGameServer014_WasRestartRequested_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_WasRestartRequested( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_WasRestartRequested, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer014_SetMaxPlayerCount(struct w_steam_iface *_this, int32_t cPlayersMax) { - struct cppISteamGameServer_SteamGameServer014_SetMaxPlayerCount_params params = + struct ISteamGameServer_SteamGameServer014_SetMaxPlayerCount_params params = { .linux_side = _this->u_iface, .cPlayersMax = cPlayersMax, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_SetMaxPlayerCount( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetMaxPlayerCount, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer014_SetBotPlayerCount(struct w_steam_iface *_this, int32_t cBotplayers) { - struct cppISteamGameServer_SteamGameServer014_SetBotPlayerCount_params params = + struct ISteamGameServer_SteamGameServer014_SetBotPlayerCount_params params = { .linux_side = _this->u_iface, .cBotplayers = cBotplayers, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_SetBotPlayerCount( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetBotPlayerCount, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer014_SetServerName(struct w_steam_iface *_this, const char *pszServerName) { - struct cppISteamGameServer_SteamGameServer014_SetServerName_params params = + struct ISteamGameServer_SteamGameServer014_SetServerName_params params = { .linux_side = _this->u_iface, .pszServerName = pszServerName, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_SetServerName( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetServerName, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer014_SetMapName(struct w_steam_iface *_this, const char *pszMapName) { - struct cppISteamGameServer_SteamGameServer014_SetMapName_params params = + struct ISteamGameServer_SteamGameServer014_SetMapName_params params = { .linux_side = _this->u_iface, .pszMapName = pszMapName, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_SetMapName( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetMapName, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer014_SetPasswordProtected(struct w_steam_iface *_this, bool bPasswordProtected) { - struct cppISteamGameServer_SteamGameServer014_SetPasswordProtected_params params = + struct ISteamGameServer_SteamGameServer014_SetPasswordProtected_params params = { .linux_side = _this->u_iface, .bPasswordProtected = bPasswordProtected, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_SetPasswordProtected( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetPasswordProtected, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer014_SetSpectatorPort(struct w_steam_iface *_this, uint16_t unSpectatorPort) { - struct cppISteamGameServer_SteamGameServer014_SetSpectatorPort_params params = + struct ISteamGameServer_SteamGameServer014_SetSpectatorPort_params params = { .linux_side = _this->u_iface, .unSpectatorPort = unSpectatorPort, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_SetSpectatorPort( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetSpectatorPort, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer014_SetSpectatorServerName(struct w_steam_iface *_this, const char *pszSpectatorServerName) { - struct cppISteamGameServer_SteamGameServer014_SetSpectatorServerName_params params = + struct ISteamGameServer_SteamGameServer014_SetSpectatorServerName_params params = { .linux_side = _this->u_iface, .pszSpectatorServerName = pszSpectatorServerName, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_SetSpectatorServerName( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetSpectatorServerName, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer014_ClearAllKeyValues(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer014_ClearAllKeyValues_params params = + struct ISteamGameServer_SteamGameServer014_ClearAllKeyValues_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_ClearAllKeyValues( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_ClearAllKeyValues, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer014_SetKeyValue(struct w_steam_iface *_this, const char *pKey, const char *pValue) { - struct cppISteamGameServer_SteamGameServer014_SetKeyValue_params params = + struct ISteamGameServer_SteamGameServer014_SetKeyValue_params params = { .linux_side = _this->u_iface, .pKey = pKey, .pValue = pValue, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_SetKeyValue( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetKeyValue, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer014_SetGameTags(struct w_steam_iface *_this, const char *pchGameTags) { - struct cppISteamGameServer_SteamGameServer014_SetGameTags_params params = + struct ISteamGameServer_SteamGameServer014_SetGameTags_params params = { .linux_side = _this->u_iface, .pchGameTags = pchGameTags, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_SetGameTags( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetGameTags, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer014_SetGameData(struct w_steam_iface *_this, const char *pchGameData) { - struct cppISteamGameServer_SteamGameServer014_SetGameData_params params = + struct ISteamGameServer_SteamGameServer014_SetGameData_params params = { .linux_side = _this->u_iface, .pchGameData = pchGameData, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_SetGameData( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetGameData, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer014_SetRegion(struct w_steam_iface *_this, const char *pszRegion) { - struct cppISteamGameServer_SteamGameServer014_SetRegion_params params = + struct ISteamGameServer_SteamGameServer014_SetRegion_params params = { .linux_side = _this->u_iface, .pszRegion = pszRegion, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_SetRegion( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetRegion, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer014_SetAdvertiseServerActive(struct w_steam_iface *_this, bool bActive) { - struct cppISteamGameServer_SteamGameServer014_SetAdvertiseServerActive_params params = + struct ISteamGameServer_SteamGameServer014_SetAdvertiseServerActive_params params = { .linux_side = _this->u_iface, .bActive = bActive, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_SetAdvertiseServerActive( ¶ms ); + 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) { - struct cppISteamGameServer_SteamGameServer014_GetAuthSessionTicket_params params = + struct ISteamGameServer_SteamGameServer014_GetAuthSessionTicket_params params = { .linux_side = _this->u_iface, .pTicket = pTicket, @@ -4197,13 +4175,13 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer014_GetAuthSessionTicket( .pcbTicket = pcbTicket, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_GetAuthSessionTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_GetAuthSessionTicket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameServer_SteamGameServer014_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { - struct cppISteamGameServer_SteamGameServer014_BeginAuthSession_params params = + struct ISteamGameServer_SteamGameServer014_BeginAuthSession_params params = { .linux_side = _this->u_iface, .pAuthTicket = pAuthTicket, @@ -4211,94 +4189,94 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer014_BeginAuthSession(stru .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_BeginAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_BeginAuthSession, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer014_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamGameServer_SteamGameServer014_EndAuthSession_params params = + struct ISteamGameServer_SteamGameServer014_EndAuthSession_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_EndAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_EndAuthSession, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer014_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) { - struct cppISteamGameServer_SteamGameServer014_CancelAuthTicket_params params = + struct ISteamGameServer_SteamGameServer014_CancelAuthTicket_params params = { .linux_side = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_CancelAuthTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_CancelAuthTicket, ¶ms ); } uint32_t __thiscall winISteamGameServer_SteamGameServer014_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) { - struct cppISteamGameServer_SteamGameServer014_UserHasLicenseForApp_params params = + struct ISteamGameServer_SteamGameServer014_UserHasLicenseForApp_params params = { .linux_side = _this->u_iface, .steamID = steamID, .appID = appID, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_UserHasLicenseForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_UserHasLicenseForApp, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer014_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) { - struct cppISteamGameServer_SteamGameServer014_RequestUserGroupStatus_params params = + struct ISteamGameServer_SteamGameServer014_RequestUserGroupStatus_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .steamIDGroup = steamIDGroup, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_RequestUserGroupStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_RequestUserGroupStatus, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer014_GetGameplayStats(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer014_GetGameplayStats_params params = + struct ISteamGameServer_SteamGameServer014_GetGameplayStats_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_GetGameplayStats( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_GetGameplayStats, ¶ms ); } uint64_t __thiscall winISteamGameServer_SteamGameServer014_GetServerReputation(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer014_GetServerReputation_params params = + struct ISteamGameServer_SteamGameServer014_GetServerReputation_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_GetServerReputation( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_GetServerReputation, ¶ms ); return params._ret; } SteamIPAddress_t * __thiscall winISteamGameServer_SteamGameServer014_GetPublicIP(struct w_steam_iface *_this, SteamIPAddress_t *_ret) { - struct cppISteamGameServer_SteamGameServer014_GetPublicIP_params params = + struct ISteamGameServer_SteamGameServer014_GetPublicIP_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_GetPublicIP( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_GetPublicIP, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer014_HandleIncomingPacket(struct w_steam_iface *_this, const void *pData, int32_t cbData, uint32_t srcIP, uint16_t srcPort) { - struct cppISteamGameServer_SteamGameServer014_HandleIncomingPacket_params params = + struct ISteamGameServer_SteamGameServer014_HandleIncomingPacket_params params = { .linux_side = _this->u_iface, .pData = pData, @@ -4307,13 +4285,13 @@ bool __thiscall winISteamGameServer_SteamGameServer014_HandleIncomingPacket(stru .srcPort = srcPort, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_HandleIncomingPacket( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_HandleIncomingPacket, ¶ms ); 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) { - struct cppISteamGameServer_SteamGameServer014_GetNextOutgoingPacket_params params = + struct ISteamGameServer_SteamGameServer014_GetNextOutgoingPacket_params params = { .linux_side = _this->u_iface, .pOut = pOut, @@ -4322,37 +4300,37 @@ int32_t __thiscall winISteamGameServer_SteamGameServer014_GetNextOutgoingPacket( .pPort = pPort, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_GetNextOutgoingPacket( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_GetNextOutgoingPacket, ¶ms ); return params._ret; } uint64_t __thiscall winISteamGameServer_SteamGameServer014_AssociateWithClan(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamGameServer_SteamGameServer014_AssociateWithClan_params params = + struct ISteamGameServer_SteamGameServer014_AssociateWithClan_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_AssociateWithClan( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_AssociateWithClan, ¶ms ); return params._ret; } uint64_t __thiscall winISteamGameServer_SteamGameServer014_ComputeNewPlayerCompatibility(struct w_steam_iface *_this, CSteamID steamIDNewPlayer) { - struct cppISteamGameServer_SteamGameServer014_ComputeNewPlayerCompatibility_params params = + struct ISteamGameServer_SteamGameServer014_ComputeNewPlayerCompatibility_params params = { .linux_side = _this->u_iface, .steamIDNewPlayer = steamIDNewPlayer, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_ComputeNewPlayerCompatibility( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_ComputeNewPlayerCompatibility, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEPRECATED(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) { - struct cppISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEPRECATED_params params = + struct ISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEPRECATED_params params = { .linux_side = _this->u_iface, .unIPClient = unIPClient, @@ -4361,36 +4339,36 @@ bool __thiscall winISteamGameServer_SteamGameServer014_SendUserConnectAndAuthent .pSteamIDUser = pSteamIDUser, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEPRECATED( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEPRECATED, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamGameServer_SteamGameServer014_CreateUnauthenticatedUserConnection(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamGameServer_SteamGameServer014_CreateUnauthenticatedUserConnection_params params = + struct ISteamGameServer_SteamGameServer014_CreateUnauthenticatedUserConnection_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_CreateUnauthenticatedUserConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_CreateUnauthenticatedUserConnection, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer014_SendUserDisconnect_DEPRECATED(struct w_steam_iface *_this, CSteamID steamIDUser) { - struct cppISteamGameServer_SteamGameServer014_SendUserDisconnect_DEPRECATED_params params = + struct ISteamGameServer_SteamGameServer014_SendUserDisconnect_DEPRECATED_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_SendUserDisconnect_DEPRECATED( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SendUserDisconnect_DEPRECATED, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer014_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) { - struct cppISteamGameServer_SteamGameServer014_BUpdateUserData_params params = + struct ISteamGameServer_SteamGameServer014_BUpdateUserData_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -4398,29 +4376,29 @@ bool __thiscall winISteamGameServer_SteamGameServer014_BUpdateUserData(struct w_ .uScore = uScore, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_BUpdateUserData( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_BUpdateUserData, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer014_SetMasterServerHeartbeatInterval_DEPRECATED(struct w_steam_iface *_this, int32_t iHeartbeatInterval) { - struct cppISteamGameServer_SteamGameServer014_SetMasterServerHeartbeatInterval_DEPRECATED_params params = + struct ISteamGameServer_SteamGameServer014_SetMasterServerHeartbeatInterval_DEPRECATED_params params = { .linux_side = _this->u_iface, .iHeartbeatInterval = iHeartbeatInterval, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_SetMasterServerHeartbeatInterval_DEPRECATED( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetMasterServerHeartbeatInterval_DEPRECATED, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer014_ForceMasterServerHeartbeat_DEPRECATED(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer014_ForceMasterServerHeartbeat_DEPRECATED_params params = + struct ISteamGameServer_SteamGameServer014_ForceMasterServerHeartbeat_DEPRECATED_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer014_ForceMasterServerHeartbeat_DEPRECATED( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_ForceMasterServerHeartbeat_DEPRECATED, ¶ms ); } extern vtable_ptr winISteamGameServer_SteamGameServer014_vtable; @@ -4485,8 +4463,6 @@ struct w_steam_iface *create_winISteamGameServer_SteamGameServer014(void *u_ifac return r; } -#include "cppISteamGameServer_SteamGameServer015.h" - DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer015_InitGameServer, 28) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer015_SetProduct, 8) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer015_SetGameDescription, 8) @@ -4534,7 +4510,7 @@ DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer015_ForceMasterServer bool __thiscall winISteamGameServer_SteamGameServer015_InitGameServer(struct w_steam_iface *_this, uint32_t unIP, uint16_t usGamePort, uint16_t usQueryPort, uint32_t unFlags, uint32_t nGameAppId, const char *pchVersionString) { - struct cppISteamGameServer_SteamGameServer015_InitGameServer_params params = + struct ISteamGameServer_SteamGameServer015_InitGameServer_params params = { .linux_side = _this->u_iface, .unIP = unIP, @@ -4545,276 +4521,276 @@ bool __thiscall winISteamGameServer_SteamGameServer015_InitGameServer(struct w_s .pchVersionString = pchVersionString, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_InitGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_InitGameServer, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer015_SetProduct(struct w_steam_iface *_this, const char *pszProduct) { - struct cppISteamGameServer_SteamGameServer015_SetProduct_params params = + struct ISteamGameServer_SteamGameServer015_SetProduct_params params = { .linux_side = _this->u_iface, .pszProduct = pszProduct, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_SetProduct( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetProduct, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer015_SetGameDescription(struct w_steam_iface *_this, const char *pszGameDescription) { - struct cppISteamGameServer_SteamGameServer015_SetGameDescription_params params = + struct ISteamGameServer_SteamGameServer015_SetGameDescription_params params = { .linux_side = _this->u_iface, .pszGameDescription = pszGameDescription, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_SetGameDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetGameDescription, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer015_SetModDir(struct w_steam_iface *_this, const char *pszModDir) { - struct cppISteamGameServer_SteamGameServer015_SetModDir_params params = + struct ISteamGameServer_SteamGameServer015_SetModDir_params params = { .linux_side = _this->u_iface, .pszModDir = pszModDir, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_SetModDir( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetModDir, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer015_SetDedicatedServer(struct w_steam_iface *_this, bool bDedicated) { - struct cppISteamGameServer_SteamGameServer015_SetDedicatedServer_params params = + struct ISteamGameServer_SteamGameServer015_SetDedicatedServer_params params = { .linux_side = _this->u_iface, .bDedicated = bDedicated, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_SetDedicatedServer( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetDedicatedServer, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer015_LogOn(struct w_steam_iface *_this, const char *pszToken) { - struct cppISteamGameServer_SteamGameServer015_LogOn_params params = + struct ISteamGameServer_SteamGameServer015_LogOn_params params = { .linux_side = _this->u_iface, .pszToken = pszToken, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_LogOn( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_LogOn, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer015_LogOnAnonymous(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer015_LogOnAnonymous_params params = + struct ISteamGameServer_SteamGameServer015_LogOnAnonymous_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_LogOnAnonymous( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_LogOnAnonymous, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer015_LogOff(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer015_LogOff_params params = + struct ISteamGameServer_SteamGameServer015_LogOff_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_LogOff( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_LogOff, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer015_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer015_BLoggedOn_params params = + struct ISteamGameServer_SteamGameServer015_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_BLoggedOn, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer015_BSecure(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer015_BSecure_params params = + struct ISteamGameServer_SteamGameServer015_BSecure_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_BSecure( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_BSecure, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamGameServer_SteamGameServer015_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamGameServer_SteamGameServer015_GetSteamID_params params = + struct ISteamGameServer_SteamGameServer015_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_GetSteamID, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer015_WasRestartRequested(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer015_WasRestartRequested_params params = + struct ISteamGameServer_SteamGameServer015_WasRestartRequested_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_WasRestartRequested( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_WasRestartRequested, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer015_SetMaxPlayerCount(struct w_steam_iface *_this, int32_t cPlayersMax) { - struct cppISteamGameServer_SteamGameServer015_SetMaxPlayerCount_params params = + struct ISteamGameServer_SteamGameServer015_SetMaxPlayerCount_params params = { .linux_side = _this->u_iface, .cPlayersMax = cPlayersMax, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_SetMaxPlayerCount( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetMaxPlayerCount, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer015_SetBotPlayerCount(struct w_steam_iface *_this, int32_t cBotplayers) { - struct cppISteamGameServer_SteamGameServer015_SetBotPlayerCount_params params = + struct ISteamGameServer_SteamGameServer015_SetBotPlayerCount_params params = { .linux_side = _this->u_iface, .cBotplayers = cBotplayers, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_SetBotPlayerCount( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetBotPlayerCount, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer015_SetServerName(struct w_steam_iface *_this, const char *pszServerName) { - struct cppISteamGameServer_SteamGameServer015_SetServerName_params params = + struct ISteamGameServer_SteamGameServer015_SetServerName_params params = { .linux_side = _this->u_iface, .pszServerName = pszServerName, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_SetServerName( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetServerName, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer015_SetMapName(struct w_steam_iface *_this, const char *pszMapName) { - struct cppISteamGameServer_SteamGameServer015_SetMapName_params params = + struct ISteamGameServer_SteamGameServer015_SetMapName_params params = { .linux_side = _this->u_iface, .pszMapName = pszMapName, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_SetMapName( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetMapName, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer015_SetPasswordProtected(struct w_steam_iface *_this, bool bPasswordProtected) { - struct cppISteamGameServer_SteamGameServer015_SetPasswordProtected_params params = + struct ISteamGameServer_SteamGameServer015_SetPasswordProtected_params params = { .linux_side = _this->u_iface, .bPasswordProtected = bPasswordProtected, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_SetPasswordProtected( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetPasswordProtected, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer015_SetSpectatorPort(struct w_steam_iface *_this, uint16_t unSpectatorPort) { - struct cppISteamGameServer_SteamGameServer015_SetSpectatorPort_params params = + struct ISteamGameServer_SteamGameServer015_SetSpectatorPort_params params = { .linux_side = _this->u_iface, .unSpectatorPort = unSpectatorPort, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_SetSpectatorPort( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetSpectatorPort, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer015_SetSpectatorServerName(struct w_steam_iface *_this, const char *pszSpectatorServerName) { - struct cppISteamGameServer_SteamGameServer015_SetSpectatorServerName_params params = + struct ISteamGameServer_SteamGameServer015_SetSpectatorServerName_params params = { .linux_side = _this->u_iface, .pszSpectatorServerName = pszSpectatorServerName, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_SetSpectatorServerName( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetSpectatorServerName, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer015_ClearAllKeyValues(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer015_ClearAllKeyValues_params params = + struct ISteamGameServer_SteamGameServer015_ClearAllKeyValues_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_ClearAllKeyValues( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_ClearAllKeyValues, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer015_SetKeyValue(struct w_steam_iface *_this, const char *pKey, const char *pValue) { - struct cppISteamGameServer_SteamGameServer015_SetKeyValue_params params = + struct ISteamGameServer_SteamGameServer015_SetKeyValue_params params = { .linux_side = _this->u_iface, .pKey = pKey, .pValue = pValue, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_SetKeyValue( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetKeyValue, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer015_SetGameTags(struct w_steam_iface *_this, const char *pchGameTags) { - struct cppISteamGameServer_SteamGameServer015_SetGameTags_params params = + struct ISteamGameServer_SteamGameServer015_SetGameTags_params params = { .linux_side = _this->u_iface, .pchGameTags = pchGameTags, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_SetGameTags( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetGameTags, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer015_SetGameData(struct w_steam_iface *_this, const char *pchGameData) { - struct cppISteamGameServer_SteamGameServer015_SetGameData_params params = + struct ISteamGameServer_SteamGameServer015_SetGameData_params params = { .linux_side = _this->u_iface, .pchGameData = pchGameData, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_SetGameData( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetGameData, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer015_SetRegion(struct w_steam_iface *_this, const char *pszRegion) { - struct cppISteamGameServer_SteamGameServer015_SetRegion_params params = + struct ISteamGameServer_SteamGameServer015_SetRegion_params params = { .linux_side = _this->u_iface, .pszRegion = pszRegion, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_SetRegion( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetRegion, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer015_SetAdvertiseServerActive(struct w_steam_iface *_this, bool bActive) { - struct cppISteamGameServer_SteamGameServer015_SetAdvertiseServerActive_params params = + struct ISteamGameServer_SteamGameServer015_SetAdvertiseServerActive_params params = { .linux_side = _this->u_iface, .bActive = bActive, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_SetAdvertiseServerActive( ¶ms ); + 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) { - struct cppISteamGameServer_SteamGameServer015_GetAuthSessionTicket_params params = + struct ISteamGameServer_SteamGameServer015_GetAuthSessionTicket_params params = { .linux_side = _this->u_iface, .pTicket = pTicket, @@ -4823,13 +4799,13 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer015_GetAuthSessionTicket( .pSnid = pSnid, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_GetAuthSessionTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_GetAuthSessionTicket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameServer_SteamGameServer015_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { - struct cppISteamGameServer_SteamGameServer015_BeginAuthSession_params params = + struct ISteamGameServer_SteamGameServer015_BeginAuthSession_params params = { .linux_side = _this->u_iface, .pAuthTicket = pAuthTicket, @@ -4837,94 +4813,94 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer015_BeginAuthSession(stru .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_BeginAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_BeginAuthSession, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer015_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamGameServer_SteamGameServer015_EndAuthSession_params params = + struct ISteamGameServer_SteamGameServer015_EndAuthSession_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_EndAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_EndAuthSession, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer015_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) { - struct cppISteamGameServer_SteamGameServer015_CancelAuthTicket_params params = + struct ISteamGameServer_SteamGameServer015_CancelAuthTicket_params params = { .linux_side = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_CancelAuthTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_CancelAuthTicket, ¶ms ); } uint32_t __thiscall winISteamGameServer_SteamGameServer015_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) { - struct cppISteamGameServer_SteamGameServer015_UserHasLicenseForApp_params params = + struct ISteamGameServer_SteamGameServer015_UserHasLicenseForApp_params params = { .linux_side = _this->u_iface, .steamID = steamID, .appID = appID, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_UserHasLicenseForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_UserHasLicenseForApp, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer015_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) { - struct cppISteamGameServer_SteamGameServer015_RequestUserGroupStatus_params params = + struct ISteamGameServer_SteamGameServer015_RequestUserGroupStatus_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .steamIDGroup = steamIDGroup, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_RequestUserGroupStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_RequestUserGroupStatus, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer015_GetGameplayStats(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer015_GetGameplayStats_params params = + struct ISteamGameServer_SteamGameServer015_GetGameplayStats_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_GetGameplayStats( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_GetGameplayStats, ¶ms ); } uint64_t __thiscall winISteamGameServer_SteamGameServer015_GetServerReputation(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer015_GetServerReputation_params params = + struct ISteamGameServer_SteamGameServer015_GetServerReputation_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_GetServerReputation( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_GetServerReputation, ¶ms ); return params._ret; } SteamIPAddress_t * __thiscall winISteamGameServer_SteamGameServer015_GetPublicIP(struct w_steam_iface *_this, SteamIPAddress_t *_ret) { - struct cppISteamGameServer_SteamGameServer015_GetPublicIP_params params = + struct ISteamGameServer_SteamGameServer015_GetPublicIP_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_GetPublicIP( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_GetPublicIP, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer015_HandleIncomingPacket(struct w_steam_iface *_this, const void *pData, int32_t cbData, uint32_t srcIP, uint16_t srcPort) { - struct cppISteamGameServer_SteamGameServer015_HandleIncomingPacket_params params = + struct ISteamGameServer_SteamGameServer015_HandleIncomingPacket_params params = { .linux_side = _this->u_iface, .pData = pData, @@ -4933,13 +4909,13 @@ bool __thiscall winISteamGameServer_SteamGameServer015_HandleIncomingPacket(stru .srcPort = srcPort, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_HandleIncomingPacket( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_HandleIncomingPacket, ¶ms ); 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) { - struct cppISteamGameServer_SteamGameServer015_GetNextOutgoingPacket_params params = + struct ISteamGameServer_SteamGameServer015_GetNextOutgoingPacket_params params = { .linux_side = _this->u_iface, .pOut = pOut, @@ -4948,37 +4924,37 @@ int32_t __thiscall winISteamGameServer_SteamGameServer015_GetNextOutgoingPacket( .pPort = pPort, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_GetNextOutgoingPacket( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_GetNextOutgoingPacket, ¶ms ); return params._ret; } uint64_t __thiscall winISteamGameServer_SteamGameServer015_AssociateWithClan(struct w_steam_iface *_this, CSteamID steamIDClan) { - struct cppISteamGameServer_SteamGameServer015_AssociateWithClan_params params = + struct ISteamGameServer_SteamGameServer015_AssociateWithClan_params params = { .linux_side = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_AssociateWithClan( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_AssociateWithClan, ¶ms ); return params._ret; } uint64_t __thiscall winISteamGameServer_SteamGameServer015_ComputeNewPlayerCompatibility(struct w_steam_iface *_this, CSteamID steamIDNewPlayer) { - struct cppISteamGameServer_SteamGameServer015_ComputeNewPlayerCompatibility_params params = + struct ISteamGameServer_SteamGameServer015_ComputeNewPlayerCompatibility_params params = { .linux_side = _this->u_iface, .steamIDNewPlayer = steamIDNewPlayer, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_ComputeNewPlayerCompatibility( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_ComputeNewPlayerCompatibility, ¶ms ); return params._ret; } bool __thiscall winISteamGameServer_SteamGameServer015_SendUserConnectAndAuthenticate_DEPRECATED(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) { - struct cppISteamGameServer_SteamGameServer015_SendUserConnectAndAuthenticate_DEPRECATED_params params = + struct ISteamGameServer_SteamGameServer015_SendUserConnectAndAuthenticate_DEPRECATED_params params = { .linux_side = _this->u_iface, .unIPClient = unIPClient, @@ -4987,36 +4963,36 @@ bool __thiscall winISteamGameServer_SteamGameServer015_SendUserConnectAndAuthent .pSteamIDUser = pSteamIDUser, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_SendUserConnectAndAuthenticate_DEPRECATED( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SendUserConnectAndAuthenticate_DEPRECATED, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamGameServer_SteamGameServer015_CreateUnauthenticatedUserConnection(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamGameServer_SteamGameServer015_CreateUnauthenticatedUserConnection_params params = + struct ISteamGameServer_SteamGameServer015_CreateUnauthenticatedUserConnection_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_CreateUnauthenticatedUserConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_CreateUnauthenticatedUserConnection, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer015_SendUserDisconnect_DEPRECATED(struct w_steam_iface *_this, CSteamID steamIDUser) { - struct cppISteamGameServer_SteamGameServer015_SendUserDisconnect_DEPRECATED_params params = + struct ISteamGameServer_SteamGameServer015_SendUserDisconnect_DEPRECATED_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_SendUserDisconnect_DEPRECATED( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SendUserDisconnect_DEPRECATED, ¶ms ); } bool __thiscall winISteamGameServer_SteamGameServer015_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) { - struct cppISteamGameServer_SteamGameServer015_BUpdateUserData_params params = + struct ISteamGameServer_SteamGameServer015_BUpdateUserData_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -5024,29 +5000,29 @@ bool __thiscall winISteamGameServer_SteamGameServer015_BUpdateUserData(struct w_ .uScore = uScore, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_BUpdateUserData( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_BUpdateUserData, ¶ms ); return params._ret; } void __thiscall winISteamGameServer_SteamGameServer015_SetMasterServerHeartbeatInterval_DEPRECATED(struct w_steam_iface *_this, int32_t iHeartbeatInterval) { - struct cppISteamGameServer_SteamGameServer015_SetMasterServerHeartbeatInterval_DEPRECATED_params params = + struct ISteamGameServer_SteamGameServer015_SetMasterServerHeartbeatInterval_DEPRECATED_params params = { .linux_side = _this->u_iface, .iHeartbeatInterval = iHeartbeatInterval, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_SetMasterServerHeartbeatInterval_DEPRECATED( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetMasterServerHeartbeatInterval_DEPRECATED, ¶ms ); } void __thiscall winISteamGameServer_SteamGameServer015_ForceMasterServerHeartbeat_DEPRECATED(struct w_steam_iface *_this) { - struct cppISteamGameServer_SteamGameServer015_ForceMasterServerHeartbeat_DEPRECATED_params params = + struct ISteamGameServer_SteamGameServer015_ForceMasterServerHeartbeat_DEPRECATED_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamGameServer_SteamGameServer015_ForceMasterServerHeartbeat_DEPRECATED( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_ForceMasterServerHeartbeat_DEPRECATED, ¶ms ); } extern vtable_ptr winISteamGameServer_SteamGameServer015_vtable; diff --git a/lsteamclient/winISteamGameServerStats.c b/lsteamclient/winISteamGameServerStats.c index 585e8567..f66538ec 100644 --- a/lsteamclient/winISteamGameServerStats.c +++ b/lsteamclient/winISteamGameServerStats.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamGameServerStats_SteamGameServerStats001.h" - DEFINE_THISCALL_WRAPPER(winISteamGameServerStats_SteamGameServerStats001_RequestUserStats, 12) DEFINE_THISCALL_WRAPPER(winISteamGameServerStats_SteamGameServerStats001_GetUserStat, 20) DEFINE_THISCALL_WRAPPER(winISteamGameServerStats_SteamGameServerStats001_GetUserStat_2, 20) @@ -18,19 +16,19 @@ DEFINE_THISCALL_WRAPPER(winISteamGameServerStats_SteamGameServerStats001_StoreUs uint64_t __thiscall winISteamGameServerStats_SteamGameServerStats001_RequestUserStats(struct w_steam_iface *_this, CSteamID steamIDUser) { - struct cppISteamGameServerStats_SteamGameServerStats001_RequestUserStats_params params = + struct ISteamGameServerStats_SteamGameServerStats001_RequestUserStats_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); - cppISteamGameServerStats_SteamGameServerStats001_RequestUserStats( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServerStats_SteamGameServerStats001_RequestUserStats, ¶ms ); return params._ret; } bool __thiscall winISteamGameServerStats_SteamGameServerStats001_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) { - struct cppISteamGameServerStats_SteamGameServerStats001_GetUserStat_params params = + struct ISteamGameServerStats_SteamGameServerStats001_GetUserStat_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -38,13 +36,13 @@ bool __thiscall winISteamGameServerStats_SteamGameServerStats001_GetUserStat(str .pData = pData, }; TRACE("%p\n", _this); - cppISteamGameServerStats_SteamGameServerStats001_GetUserStat( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServerStats_SteamGameServerStats001_GetUserStat, ¶ms ); return params._ret; } bool __thiscall winISteamGameServerStats_SteamGameServerStats001_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) { - struct cppISteamGameServerStats_SteamGameServerStats001_GetUserStat_2_params params = + struct ISteamGameServerStats_SteamGameServerStats001_GetUserStat_2_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -52,13 +50,13 @@ bool __thiscall winISteamGameServerStats_SteamGameServerStats001_GetUserStat_2(s .pData = pData, }; TRACE("%p\n", _this); - cppISteamGameServerStats_SteamGameServerStats001_GetUserStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServerStats_SteamGameServerStats001_GetUserStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamGameServerStats_SteamGameServerStats001_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved) { - struct cppISteamGameServerStats_SteamGameServerStats001_GetUserAchievement_params params = + struct ISteamGameServerStats_SteamGameServerStats001_GetUserAchievement_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -66,13 +64,13 @@ bool __thiscall winISteamGameServerStats_SteamGameServerStats001_GetUserAchievem .pbAchieved = pbAchieved, }; TRACE("%p\n", _this); - cppISteamGameServerStats_SteamGameServerStats001_GetUserAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServerStats_SteamGameServerStats001_GetUserAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamGameServerStats_SteamGameServerStats001_SetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t nData) { - struct cppISteamGameServerStats_SteamGameServerStats001_SetUserStat_params params = + struct ISteamGameServerStats_SteamGameServerStats001_SetUserStat_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -80,13 +78,13 @@ bool __thiscall winISteamGameServerStats_SteamGameServerStats001_SetUserStat(str .nData = nData, }; TRACE("%p\n", _this); - cppISteamGameServerStats_SteamGameServerStats001_SetUserStat( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServerStats_SteamGameServerStats001_SetUserStat, ¶ms ); return params._ret; } bool __thiscall winISteamGameServerStats_SteamGameServerStats001_SetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float fData) { - struct cppISteamGameServerStats_SteamGameServerStats001_SetUserStat_2_params params = + struct ISteamGameServerStats_SteamGameServerStats001_SetUserStat_2_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -94,13 +92,13 @@ bool __thiscall winISteamGameServerStats_SteamGameServerStats001_SetUserStat_2(s .fData = fData, }; TRACE("%p\n", _this); - cppISteamGameServerStats_SteamGameServerStats001_SetUserStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServerStats_SteamGameServerStats001_SetUserStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRateStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float flCountThisSession, double dSessionLength) { - struct cppISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRateStat_params params = + struct ISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRateStat_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -109,45 +107,45 @@ bool __thiscall winISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRa .dSessionLength = dSessionLength, }; TRACE("%p\n", _this); - cppISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRateStat( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRateStat, ¶ms ); return params._ret; } bool __thiscall winISteamGameServerStats_SteamGameServerStats001_SetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName) { - struct cppISteamGameServerStats_SteamGameServerStats001_SetUserAchievement_params params = + struct ISteamGameServerStats_SteamGameServerStats001_SetUserAchievement_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamGameServerStats_SteamGameServerStats001_SetUserAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServerStats_SteamGameServerStats001_SetUserAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamGameServerStats_SteamGameServerStats001_ClearUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName) { - struct cppISteamGameServerStats_SteamGameServerStats001_ClearUserAchievement_params params = + struct ISteamGameServerStats_SteamGameServerStats001_ClearUserAchievement_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamGameServerStats_SteamGameServerStats001_ClearUserAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServerStats_SteamGameServerStats001_ClearUserAchievement, ¶ms ); return params._ret; } uint64_t __thiscall winISteamGameServerStats_SteamGameServerStats001_StoreUserStats(struct w_steam_iface *_this, CSteamID steamIDUser) { - struct cppISteamGameServerStats_SteamGameServerStats001_StoreUserStats_params params = + struct ISteamGameServerStats_SteamGameServerStats001_StoreUserStats_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); - cppISteamGameServerStats_SteamGameServerStats001_StoreUserStats( ¶ms ); + STEAMCLIENT_CALL( ISteamGameServerStats_SteamGameServerStats001_StoreUserStats, ¶ms ); return params._ret; } diff --git a/lsteamclient/winISteamGameStats.c b/lsteamclient/winISteamGameStats.c index 8b27264a..bc70c2a6 100644 --- a/lsteamclient/winISteamGameStats.c +++ b/lsteamclient/winISteamGameStats.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamGameStats_SteamGameStats001.h" - DEFINE_THISCALL_WRAPPER(winISteamGameStats_SteamGameStats001_GetNewSession, 24) DEFINE_THISCALL_WRAPPER(winISteamGameStats_SteamGameStats001_EndSession, 20) DEFINE_THISCALL_WRAPPER(winISteamGameStats_SteamGameStats001_AddSessionAttributeInt, 20) @@ -21,7 +19,7 @@ DEFINE_THISCALL_WRAPPER(winISteamGameStats_SteamGameStats001_AddRowAttributeInt6 uint64_t __thiscall winISteamGameStats_SteamGameStats001_GetNewSession(struct w_steam_iface *_this, int8_t nAccountType, uint64_t ulAccountID, int32_t nAppID, uint32_t rtTimeStarted) { - struct cppISteamGameStats_SteamGameStats001_GetNewSession_params params = + struct ISteamGameStats_SteamGameStats001_GetNewSession_params params = { .linux_side = _this->u_iface, .nAccountType = nAccountType, @@ -30,13 +28,13 @@ uint64_t __thiscall winISteamGameStats_SteamGameStats001_GetNewSession(struct w_ .rtTimeStarted = rtTimeStarted, }; TRACE("%p\n", _this); - cppISteamGameStats_SteamGameStats001_GetNewSession( ¶ms ); + STEAMCLIENT_CALL( ISteamGameStats_SteamGameStats001_GetNewSession, ¶ms ); return params._ret; } uint64_t __thiscall winISteamGameStats_SteamGameStats001_EndSession(struct w_steam_iface *_this, uint64_t ulSessionID, uint32_t rtTimeEnded, int32_t nReasonCode) { - struct cppISteamGameStats_SteamGameStats001_EndSession_params params = + struct ISteamGameStats_SteamGameStats001_EndSession_params params = { .linux_side = _this->u_iface, .ulSessionID = ulSessionID, @@ -44,13 +42,13 @@ uint64_t __thiscall winISteamGameStats_SteamGameStats001_EndSession(struct w_ste .nReasonCode = nReasonCode, }; TRACE("%p\n", _this); - cppISteamGameStats_SteamGameStats001_EndSession( ¶ms ); + STEAMCLIENT_CALL( ISteamGameStats_SteamGameStats001_EndSession, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddSessionAttributeInt(struct w_steam_iface *_this, uint64_t ulSessionID, const char *pstrName, int32_t nData) { - struct cppISteamGameStats_SteamGameStats001_AddSessionAttributeInt_params params = + struct ISteamGameStats_SteamGameStats001_AddSessionAttributeInt_params params = { .linux_side = _this->u_iface, .ulSessionID = ulSessionID, @@ -58,13 +56,13 @@ uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddSessionAttributeInt( .nData = nData, }; TRACE("%p\n", _this); - cppISteamGameStats_SteamGameStats001_AddSessionAttributeInt( ¶ms ); + STEAMCLIENT_CALL( ISteamGameStats_SteamGameStats001_AddSessionAttributeInt, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddSessionAttributeString(struct w_steam_iface *_this, uint64_t ulSessionID, const char *pstrName, const char *pstrData) { - struct cppISteamGameStats_SteamGameStats001_AddSessionAttributeString_params params = + struct ISteamGameStats_SteamGameStats001_AddSessionAttributeString_params params = { .linux_side = _this->u_iface, .ulSessionID = ulSessionID, @@ -72,13 +70,13 @@ uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddSessionAttributeStri .pstrData = pstrData, }; TRACE("%p\n", _this); - cppISteamGameStats_SteamGameStats001_AddSessionAttributeString( ¶ms ); + STEAMCLIENT_CALL( ISteamGameStats_SteamGameStats001_AddSessionAttributeString, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddSessionAttributeFloat(struct w_steam_iface *_this, uint64_t ulSessionID, const char *pstrName, float fData) { - struct cppISteamGameStats_SteamGameStats001_AddSessionAttributeFloat_params params = + struct ISteamGameStats_SteamGameStats001_AddSessionAttributeFloat_params params = { .linux_side = _this->u_iface, .ulSessionID = ulSessionID, @@ -86,13 +84,13 @@ uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddSessionAttributeFloa .fData = fData, }; TRACE("%p\n", _this); - cppISteamGameStats_SteamGameStats001_AddSessionAttributeFloat( ¶ms ); + STEAMCLIENT_CALL( ISteamGameStats_SteamGameStats001_AddSessionAttributeFloat, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddNewRow(struct w_steam_iface *_this, uint64_t *pulRowID, uint64_t ulSessionID, const char *pstrTableName) { - struct cppISteamGameStats_SteamGameStats001_AddNewRow_params params = + struct ISteamGameStats_SteamGameStats001_AddNewRow_params params = { .linux_side = _this->u_iface, .pulRowID = pulRowID, @@ -100,37 +98,37 @@ uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddNewRow(struct w_stea .pstrTableName = pstrTableName, }; TRACE("%p\n", _this); - cppISteamGameStats_SteamGameStats001_AddNewRow( ¶ms ); + STEAMCLIENT_CALL( ISteamGameStats_SteamGameStats001_AddNewRow, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameStats_SteamGameStats001_CommitRow(struct w_steam_iface *_this, uint64_t ulRowID) { - struct cppISteamGameStats_SteamGameStats001_CommitRow_params params = + struct ISteamGameStats_SteamGameStats001_CommitRow_params params = { .linux_side = _this->u_iface, .ulRowID = ulRowID, }; TRACE("%p\n", _this); - cppISteamGameStats_SteamGameStats001_CommitRow( ¶ms ); + STEAMCLIENT_CALL( ISteamGameStats_SteamGameStats001_CommitRow, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameStats_SteamGameStats001_CommitOutstandingRows(struct w_steam_iface *_this, uint64_t ulSessionID) { - struct cppISteamGameStats_SteamGameStats001_CommitOutstandingRows_params params = + struct ISteamGameStats_SteamGameStats001_CommitOutstandingRows_params params = { .linux_side = _this->u_iface, .ulSessionID = ulSessionID, }; TRACE("%p\n", _this); - cppISteamGameStats_SteamGameStats001_CommitOutstandingRows( ¶ms ); + STEAMCLIENT_CALL( ISteamGameStats_SteamGameStats001_CommitOutstandingRows, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddRowAttributeInt(struct w_steam_iface *_this, uint64_t ulRowID, const char *pstrName, int32_t nData) { - struct cppISteamGameStats_SteamGameStats001_AddRowAttributeInt_params params = + struct ISteamGameStats_SteamGameStats001_AddRowAttributeInt_params params = { .linux_side = _this->u_iface, .ulRowID = ulRowID, @@ -138,13 +136,13 @@ uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddRowAttributeInt(stru .nData = nData, }; TRACE("%p\n", _this); - cppISteamGameStats_SteamGameStats001_AddRowAttributeInt( ¶ms ); + STEAMCLIENT_CALL( ISteamGameStats_SteamGameStats001_AddRowAttributeInt, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddRowAtributeString(struct w_steam_iface *_this, uint64_t ulRowID, const char *pstrName, const char *pstrData) { - struct cppISteamGameStats_SteamGameStats001_AddRowAtributeString_params params = + struct ISteamGameStats_SteamGameStats001_AddRowAtributeString_params params = { .linux_side = _this->u_iface, .ulRowID = ulRowID, @@ -152,13 +150,13 @@ uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddRowAtributeString(st .pstrData = pstrData, }; TRACE("%p\n", _this); - cppISteamGameStats_SteamGameStats001_AddRowAtributeString( ¶ms ); + STEAMCLIENT_CALL( ISteamGameStats_SteamGameStats001_AddRowAtributeString, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddRowAttributeFloat(struct w_steam_iface *_this, uint64_t ulRowID, const char *pstrName, float fData) { - struct cppISteamGameStats_SteamGameStats001_AddRowAttributeFloat_params params = + struct ISteamGameStats_SteamGameStats001_AddRowAttributeFloat_params params = { .linux_side = _this->u_iface, .ulRowID = ulRowID, @@ -166,13 +164,13 @@ uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddRowAttributeFloat(st .fData = fData, }; TRACE("%p\n", _this); - cppISteamGameStats_SteamGameStats001_AddRowAttributeFloat( ¶ms ); + STEAMCLIENT_CALL( ISteamGameStats_SteamGameStats001_AddRowAttributeFloat, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddSessionAttributeInt64(struct w_steam_iface *_this, uint64_t ulSessionID, const char *pstrName, int64_t llData) { - struct cppISteamGameStats_SteamGameStats001_AddSessionAttributeInt64_params params = + struct ISteamGameStats_SteamGameStats001_AddSessionAttributeInt64_params params = { .linux_side = _this->u_iface, .ulSessionID = ulSessionID, @@ -180,13 +178,13 @@ uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddSessionAttributeInt6 .llData = llData, }; TRACE("%p\n", _this); - cppISteamGameStats_SteamGameStats001_AddSessionAttributeInt64( ¶ms ); + STEAMCLIENT_CALL( ISteamGameStats_SteamGameStats001_AddSessionAttributeInt64, ¶ms ); return params._ret; } uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddRowAttributeInt64(struct w_steam_iface *_this, uint64_t ulRowID, const char *pstrName, int64_t llData) { - struct cppISteamGameStats_SteamGameStats001_AddRowAttributeInt64_params params = + struct ISteamGameStats_SteamGameStats001_AddRowAttributeInt64_params params = { .linux_side = _this->u_iface, .ulRowID = ulRowID, @@ -194,7 +192,7 @@ uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddRowAttributeInt64(st .llData = llData, }; TRACE("%p\n", _this); - cppISteamGameStats_SteamGameStats001_AddRowAttributeInt64( ¶ms ); + STEAMCLIENT_CALL( ISteamGameStats_SteamGameStats001_AddRowAttributeInt64, ¶ms ); return params._ret; } diff --git a/lsteamclient/winISteamHTMLSurface.c b/lsteamclient/winISteamHTMLSurface.c index a4bff316..28c515eb 100644 --- a/lsteamclient/winISteamHTMLSurface.c +++ b/lsteamclient/winISteamHTMLSurface.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001.h" - DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_destructor, 4) DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Init, 4) DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Shutdown, 4) @@ -44,53 +42,53 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_dest bool __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Init(struct w_steam_iface *_this) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Init_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Init_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Init( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Init, ¶ms ); return params._ret; } bool __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Shutdown(struct w_steam_iface *_this) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Shutdown_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Shutdown_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Shutdown( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CreateBrowser_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CreateBrowser_params params = { .linux_side = _this->u_iface, .pchUserAgent = pchUserAgent, .pchUserCSS = pchUserCSS, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CreateBrowser( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CreateBrowser, ¶ms ); return params._ret; } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_RemoveBrowser(struct w_steam_iface *_this, uint32_t unBrowserHandle) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_RemoveBrowser_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_RemoveBrowser_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_RemoveBrowser( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_LoadURL_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_LoadURL_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -99,13 +97,13 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Load }; params.pchURL = steamclient_dos_to_unix_path( pchURL, 1 ); TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_LoadURL( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_LoadURL, ¶ms ); steamclient_free_path( params.pchURL ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetSize(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t unWidth, uint32_t unHeight) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetSize_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetSize_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -113,56 +111,56 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetS .unHeight = unHeight, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetSize( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopLoad_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopLoad_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopLoad( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Reload_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Reload_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Reload( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoBack_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoBack_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoBack( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoForward_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoForward_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoForward( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AddHeader_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AddHeader_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -170,60 +168,60 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AddH .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AddHeader( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ExecuteJavascript_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ExecuteJavascript_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .pchScript = pchScript, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ExecuteJavascript( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseUp_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseUp_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .eMouseButton = eMouseButton, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseUp( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDown_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDown_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .eMouseButton = eMouseButton, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDown( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDoubleClick_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDoubleClick_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .eMouseButton = eMouseButton, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDoubleClick( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseMove_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseMove_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -231,24 +229,24 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Mous .y = y, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseMove( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseWheel_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseWheel_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nDelta = nDelta, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseWheel( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyDown_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyDown_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -256,12 +254,12 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyD .eHTMLKeyModifiers = eHTMLKeyModifiers, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyDown( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyUp_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyUp_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -269,12 +267,12 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyU .eHTMLKeyModifiers = eHTMLKeyModifiers, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyUp( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyChar_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyChar_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -282,81 +280,81 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyC .eHTMLKeyModifiers = eHTMLKeyModifiers, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyChar( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetHorizontalScroll_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetHorizontalScroll_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nAbsolutePixelScroll = nAbsolutePixelScroll, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetHorizontalScroll( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetVerticalScroll_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetVerticalScroll_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nAbsolutePixelScroll = nAbsolutePixelScroll, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetVerticalScroll( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetVerticalScroll, ¶ms ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetKeyFocus(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bHasKeyFocus) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetKeyFocus_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetKeyFocus_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bHasKeyFocus = bHasKeyFocus, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetKeyFocus( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ViewSource_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ViewSource_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ViewSource( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CopyToClipboard_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CopyToClipboard_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CopyToClipboard( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_PasteFromClipboard_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_PasteFromClipboard_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_PasteFromClipboard( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_PasteFromClipboard, ¶ms ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Find(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchSearchStr, bool bCurrentlyInFind, bool bReverse) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Find_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Find_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -365,23 +363,23 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Find .bReverse = bReverse, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Find( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopFind_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopFind_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopFind( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GetLinkAtPosition_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GetLinkAtPosition_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -389,36 +387,36 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GetL .y = y, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GetLinkAtPosition( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GetLinkAtPosition, ¶ms ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AllowStartRequest(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bAllowed) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AllowStartRequest_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AllowStartRequest_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bAllowed = bAllowed, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AllowStartRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AllowStartRequest, ¶ms ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_JSDialogResponse(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bResult) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_JSDialogResponse_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_JSDialogResponse_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bResult = bResult, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_JSDialogResponse( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_FileLoadDialogResponse_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_FileLoadDialogResponse_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -426,7 +424,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_File }; params.pchSelectedFiles = steamclient_dos_to_unix_path_array( pchSelectedFiles ); TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_FileLoadDialogResponse( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_FileLoadDialogResponse, ¶ms ); steamclient_free_path_array( params.pchSelectedFiles ); } @@ -481,8 +479,6 @@ struct w_steam_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VER return r; } -#include "cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002.h" - DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_destructor, 4) DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Init, 4) DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Shutdown, 4) @@ -524,53 +520,53 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_dest bool __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Init(struct w_steam_iface *_this) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Init_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Init_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Init( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Init, ¶ms ); return params._ret; } bool __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Shutdown(struct w_steam_iface *_this) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Shutdown_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Shutdown_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Shutdown( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CreateBrowser_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CreateBrowser_params params = { .linux_side = _this->u_iface, .pchUserAgent = pchUserAgent, .pchUserCSS = pchUserCSS, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CreateBrowser( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CreateBrowser, ¶ms ); return params._ret; } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_RemoveBrowser(struct w_steam_iface *_this, uint32_t unBrowserHandle) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_RemoveBrowser_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_RemoveBrowser_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_RemoveBrowser( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_LoadURL_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_LoadURL_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -579,13 +575,13 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Load }; params.pchURL = steamclient_dos_to_unix_path( pchURL, 1 ); TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_LoadURL( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_LoadURL, ¶ms ); steamclient_free_path( params.pchURL ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetSize(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t unWidth, uint32_t unHeight) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetSize_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetSize_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -593,56 +589,56 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetS .unHeight = unHeight, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetSize( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopLoad_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopLoad_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopLoad( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Reload_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Reload_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Reload( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoBack_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoBack_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoBack( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoForward_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoForward_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoForward( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AddHeader_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AddHeader_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -650,60 +646,60 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AddH .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AddHeader( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ExecuteJavascript_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ExecuteJavascript_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .pchScript = pchScript, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ExecuteJavascript( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseUp_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseUp_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .eMouseButton = eMouseButton, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseUp( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDown_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDown_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .eMouseButton = eMouseButton, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDown( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDoubleClick_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDoubleClick_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .eMouseButton = eMouseButton, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDoubleClick( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseMove_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseMove_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -711,24 +707,24 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Mous .y = y, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseMove( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseWheel_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseWheel_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nDelta = nDelta, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseWheel( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyDown_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyDown_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -736,12 +732,12 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyD .eHTMLKeyModifiers = eHTMLKeyModifiers, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyDown( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyUp_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyUp_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -749,12 +745,12 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyU .eHTMLKeyModifiers = eHTMLKeyModifiers, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyUp( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyChar_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyChar_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -762,81 +758,81 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyC .eHTMLKeyModifiers = eHTMLKeyModifiers, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyChar( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetHorizontalScroll_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetHorizontalScroll_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nAbsolutePixelScroll = nAbsolutePixelScroll, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetHorizontalScroll( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetVerticalScroll_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetVerticalScroll_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nAbsolutePixelScroll = nAbsolutePixelScroll, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetVerticalScroll( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetVerticalScroll, ¶ms ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetKeyFocus(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bHasKeyFocus) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetKeyFocus_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetKeyFocus_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bHasKeyFocus = bHasKeyFocus, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetKeyFocus( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ViewSource_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ViewSource_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ViewSource( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CopyToClipboard_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CopyToClipboard_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CopyToClipboard( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_PasteFromClipboard_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_PasteFromClipboard_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_PasteFromClipboard( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_PasteFromClipboard, ¶ms ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Find(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchSearchStr, bool bCurrentlyInFind, bool bReverse) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Find_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Find_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -845,23 +841,23 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Find .bReverse = bReverse, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Find( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopFind_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopFind_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopFind( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GetLinkAtPosition_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GetLinkAtPosition_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -869,12 +865,12 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GetL .y = y, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GetLinkAtPosition( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GetLinkAtPosition, ¶ms ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetCookie(struct w_steam_iface *_this, const char *pchHostname, const char *pchKey, const char *pchValue, const char *pchPath, uint32_t nExpires, bool bSecure, bool bHTTPOnly) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetCookie_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetCookie_params params = { .linux_side = _this->u_iface, .pchHostname = pchHostname, @@ -886,12 +882,12 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetC .bHTTPOnly = bHTTPOnly, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetCookie( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetPageScaleFactor_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetPageScaleFactor_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -900,36 +896,36 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetP .nPointY = nPointY, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetPageScaleFactor( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetPageScaleFactor, ¶ms ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AllowStartRequest(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bAllowed) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AllowStartRequest_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AllowStartRequest_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bAllowed = bAllowed, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AllowStartRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AllowStartRequest, ¶ms ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_JSDialogResponse(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bResult) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_JSDialogResponse_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_JSDialogResponse_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bResult = bResult, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_JSDialogResponse( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_FileLoadDialogResponse_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_FileLoadDialogResponse_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -937,7 +933,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_File }; params.pchSelectedFiles = steamclient_dos_to_unix_path_array( pchSelectedFiles ); TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_FileLoadDialogResponse( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_FileLoadDialogResponse, ¶ms ); steamclient_free_path_array( params.pchSelectedFiles ); } @@ -994,8 +990,6 @@ struct w_steam_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VER return r; } -#include "cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003.h" - DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_destructor, 4) DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Init, 4) DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Shutdown, 4) @@ -1038,53 +1032,53 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_dest bool __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Init(struct w_steam_iface *_this) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Init_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Init_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Init( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Init, ¶ms ); return params._ret; } bool __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Shutdown(struct w_steam_iface *_this) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Shutdown_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Shutdown_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Shutdown( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CreateBrowser_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CreateBrowser_params params = { .linux_side = _this->u_iface, .pchUserAgent = pchUserAgent, .pchUserCSS = pchUserCSS, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CreateBrowser( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CreateBrowser, ¶ms ); return params._ret; } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_RemoveBrowser(struct w_steam_iface *_this, uint32_t unBrowserHandle) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_RemoveBrowser_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_RemoveBrowser_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_RemoveBrowser( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_LoadURL_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_LoadURL_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -1093,13 +1087,13 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Load }; params.pchURL = steamclient_dos_to_unix_path( pchURL, 1 ); TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_LoadURL( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_LoadURL, ¶ms ); steamclient_free_path( params.pchURL ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetSize(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t unWidth, uint32_t unHeight) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetSize_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetSize_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -1107,56 +1101,56 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetS .unHeight = unHeight, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetSize( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopLoad_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopLoad_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopLoad( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Reload_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Reload_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Reload( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoBack_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoBack_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoBack( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoForward_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoForward_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoForward( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AddHeader_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AddHeader_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -1164,60 +1158,60 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AddH .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AddHeader( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ExecuteJavascript_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ExecuteJavascript_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .pchScript = pchScript, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ExecuteJavascript( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseUp_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseUp_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .eMouseButton = eMouseButton, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseUp( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDown_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDown_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .eMouseButton = eMouseButton, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDown( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDoubleClick_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDoubleClick_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .eMouseButton = eMouseButton, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDoubleClick( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseMove_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseMove_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -1225,24 +1219,24 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Mous .y = y, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseMove( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseWheel_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseWheel_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nDelta = nDelta, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseWheel( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyDown_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyDown_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -1250,12 +1244,12 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyD .eHTMLKeyModifiers = eHTMLKeyModifiers, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyDown( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyUp_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyUp_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -1263,12 +1257,12 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyU .eHTMLKeyModifiers = eHTMLKeyModifiers, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyUp( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyChar_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyChar_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -1276,81 +1270,81 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyC .eHTMLKeyModifiers = eHTMLKeyModifiers, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyChar( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetHorizontalScroll_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetHorizontalScroll_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nAbsolutePixelScroll = nAbsolutePixelScroll, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetHorizontalScroll( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetVerticalScroll_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetVerticalScroll_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nAbsolutePixelScroll = nAbsolutePixelScroll, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetVerticalScroll( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetVerticalScroll, ¶ms ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetKeyFocus(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bHasKeyFocus) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetKeyFocus_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetKeyFocus_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bHasKeyFocus = bHasKeyFocus, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetKeyFocus( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ViewSource_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ViewSource_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ViewSource( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CopyToClipboard_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CopyToClipboard_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CopyToClipboard( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_PasteFromClipboard_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_PasteFromClipboard_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_PasteFromClipboard( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_PasteFromClipboard, ¶ms ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Find(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchSearchStr, bool bCurrentlyInFind, bool bReverse) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Find_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Find_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -1359,23 +1353,23 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Find .bReverse = bReverse, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Find( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopFind_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopFind_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopFind( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GetLinkAtPosition_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GetLinkAtPosition_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -1383,12 +1377,12 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GetL .y = y, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GetLinkAtPosition( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GetLinkAtPosition, ¶ms ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetCookie(struct w_steam_iface *_this, const char *pchHostname, const char *pchKey, const char *pchValue, const char *pchPath, uint32_t nExpires, bool bSecure, bool bHTTPOnly) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetCookie_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetCookie_params params = { .linux_side = _this->u_iface, .pchHostname = pchHostname, @@ -1400,12 +1394,12 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetC .bHTTPOnly = bHTTPOnly, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetCookie( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetPageScaleFactor_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetPageScaleFactor_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -1414,48 +1408,48 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetP .nPointY = nPointY, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetPageScaleFactor( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetPageScaleFactor, ¶ms ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetBackgroundMode(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bBackgroundMode) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetBackgroundMode_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetBackgroundMode_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bBackgroundMode = bBackgroundMode, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetBackgroundMode( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetBackgroundMode, ¶ms ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AllowStartRequest(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bAllowed) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AllowStartRequest_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AllowStartRequest_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bAllowed = bAllowed, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AllowStartRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AllowStartRequest, ¶ms ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_JSDialogResponse(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bResult) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_JSDialogResponse_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_JSDialogResponse_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bResult = bResult, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_JSDialogResponse( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_FileLoadDialogResponse_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_FileLoadDialogResponse_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -1463,7 +1457,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_File }; params.pchSelectedFiles = steamclient_dos_to_unix_path_array( pchSelectedFiles ); TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_FileLoadDialogResponse( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_FileLoadDialogResponse, ¶ms ); steamclient_free_path_array( params.pchSelectedFiles ); } @@ -1521,8 +1515,6 @@ struct w_steam_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VER return r; } -#include "cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004.h" - DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_destructor, 4) DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Init, 4) DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Shutdown, 4) @@ -1566,53 +1558,53 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_dest bool __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Init(struct w_steam_iface *_this) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Init_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Init_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Init( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Init, ¶ms ); return params._ret; } bool __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Shutdown(struct w_steam_iface *_this) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Shutdown_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Shutdown_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Shutdown( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CreateBrowser_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CreateBrowser_params params = { .linux_side = _this->u_iface, .pchUserAgent = pchUserAgent, .pchUserCSS = pchUserCSS, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CreateBrowser( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CreateBrowser, ¶ms ); return params._ret; } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_RemoveBrowser(struct w_steam_iface *_this, uint32_t unBrowserHandle) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_RemoveBrowser_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_RemoveBrowser_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_RemoveBrowser( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_LoadURL_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_LoadURL_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -1621,13 +1613,13 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Load }; params.pchURL = steamclient_dos_to_unix_path( pchURL, 1 ); TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_LoadURL( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_LoadURL, ¶ms ); steamclient_free_path( params.pchURL ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetSize(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t unWidth, uint32_t unHeight) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetSize_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetSize_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -1635,56 +1627,56 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetS .unHeight = unHeight, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetSize( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopLoad_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopLoad_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopLoad( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Reload_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Reload_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Reload( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoBack_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoBack_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoBack( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoForward_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoForward_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoForward( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AddHeader_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AddHeader_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -1692,60 +1684,60 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AddH .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AddHeader( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ExecuteJavascript_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ExecuteJavascript_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .pchScript = pchScript, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ExecuteJavascript( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseUp_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseUp_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .eMouseButton = eMouseButton, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseUp( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDown_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDown_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .eMouseButton = eMouseButton, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDown( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDoubleClick_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDoubleClick_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .eMouseButton = eMouseButton, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDoubleClick( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseMove_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseMove_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -1753,24 +1745,24 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Mous .y = y, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseMove( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseWheel_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseWheel_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nDelta = nDelta, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseWheel( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyDown_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyDown_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -1778,12 +1770,12 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyD .eHTMLKeyModifiers = eHTMLKeyModifiers, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyDown( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyUp_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyUp_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -1791,12 +1783,12 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyU .eHTMLKeyModifiers = eHTMLKeyModifiers, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyUp( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyChar_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyChar_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -1804,81 +1796,81 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyC .eHTMLKeyModifiers = eHTMLKeyModifiers, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyChar( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetHorizontalScroll_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetHorizontalScroll_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nAbsolutePixelScroll = nAbsolutePixelScroll, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetHorizontalScroll( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetVerticalScroll_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetVerticalScroll_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nAbsolutePixelScroll = nAbsolutePixelScroll, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetVerticalScroll( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetVerticalScroll, ¶ms ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetKeyFocus(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bHasKeyFocus) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetKeyFocus_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetKeyFocus_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bHasKeyFocus = bHasKeyFocus, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetKeyFocus( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ViewSource_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ViewSource_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ViewSource( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CopyToClipboard_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CopyToClipboard_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CopyToClipboard( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_PasteFromClipboard_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_PasteFromClipboard_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_PasteFromClipboard( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_PasteFromClipboard, ¶ms ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Find(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchSearchStr, bool bCurrentlyInFind, bool bReverse) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Find_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Find_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -1887,23 +1879,23 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Find .bReverse = bReverse, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Find( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopFind_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopFind_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopFind( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GetLinkAtPosition_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GetLinkAtPosition_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -1911,12 +1903,12 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GetL .y = y, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GetLinkAtPosition( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GetLinkAtPosition, ¶ms ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetCookie(struct w_steam_iface *_this, const char *pchHostname, const char *pchKey, const char *pchValue, const char *pchPath, uint32_t nExpires, bool bSecure, bool bHTTPOnly) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetCookie_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetCookie_params params = { .linux_side = _this->u_iface, .pchHostname = pchHostname, @@ -1928,12 +1920,12 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetC .bHTTPOnly = bHTTPOnly, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetCookie( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetPageScaleFactor_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetPageScaleFactor_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -1942,60 +1934,60 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetP .nPointY = nPointY, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetPageScaleFactor( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetPageScaleFactor, ¶ms ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetBackgroundMode(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bBackgroundMode) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetBackgroundMode_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetBackgroundMode_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bBackgroundMode = bBackgroundMode, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetBackgroundMode( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetDPIScalingFactor_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetDPIScalingFactor_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .flDPIScaling = flDPIScaling, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetDPIScalingFactor( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetDPIScalingFactor, ¶ms ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AllowStartRequest(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bAllowed) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AllowStartRequest_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AllowStartRequest_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bAllowed = bAllowed, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AllowStartRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AllowStartRequest, ¶ms ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_JSDialogResponse(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bResult) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_JSDialogResponse_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_JSDialogResponse_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bResult = bResult, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_JSDialogResponse( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_FileLoadDialogResponse_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_FileLoadDialogResponse_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -2003,7 +1995,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_File }; params.pchSelectedFiles = steamclient_dos_to_unix_path_array( pchSelectedFiles ); TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_FileLoadDialogResponse( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_FileLoadDialogResponse, ¶ms ); steamclient_free_path_array( params.pchSelectedFiles ); } @@ -2062,8 +2054,6 @@ struct w_steam_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VER return r; } -#include "cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005.h" - DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_destructor, 4) DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Init, 4) DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Shutdown, 4) @@ -2108,53 +2098,53 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_dest bool __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Init(struct w_steam_iface *_this) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Init_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Init_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Init( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Init, ¶ms ); return params._ret; } bool __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Shutdown(struct w_steam_iface *_this) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Shutdown_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Shutdown_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Shutdown( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CreateBrowser_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CreateBrowser_params params = { .linux_side = _this->u_iface, .pchUserAgent = pchUserAgent, .pchUserCSS = pchUserCSS, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CreateBrowser( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CreateBrowser, ¶ms ); return params._ret; } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_RemoveBrowser(struct w_steam_iface *_this, uint32_t unBrowserHandle) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_RemoveBrowser_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_RemoveBrowser_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_RemoveBrowser( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_LoadURL_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_LoadURL_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -2163,13 +2153,13 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Load }; params.pchURL = steamclient_dos_to_unix_path( pchURL, 1 ); TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_LoadURL( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_LoadURL, ¶ms ); steamclient_free_path( params.pchURL ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetSize(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t unWidth, uint32_t unHeight) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetSize_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetSize_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -2177,56 +2167,56 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetS .unHeight = unHeight, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetSize( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopLoad_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopLoad_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopLoad( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Reload_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Reload_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Reload( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoBack_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoBack_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoBack( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoForward_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoForward_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoForward( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AddHeader_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AddHeader_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -2234,60 +2224,60 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AddH .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AddHeader( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ExecuteJavascript_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ExecuteJavascript_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .pchScript = pchScript, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ExecuteJavascript( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseUp_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseUp_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .eMouseButton = eMouseButton, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseUp( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDown_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDown_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .eMouseButton = eMouseButton, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDown( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDoubleClick_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDoubleClick_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .eMouseButton = eMouseButton, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDoubleClick( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseMove_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseMove_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -2295,24 +2285,24 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Mous .y = y, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseMove( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseWheel_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseWheel_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nDelta = nDelta, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseWheel( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseWheel, ¶ms ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyDown(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t nNativeKeyCode, uint32_t eHTMLKeyModifiers, bool bIsSystemKey) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyDown_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyDown_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -2321,12 +2311,12 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyD .bIsSystemKey = bIsSystemKey, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyDown( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyUp_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyUp_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -2334,12 +2324,12 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyU .eHTMLKeyModifiers = eHTMLKeyModifiers, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyUp( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyChar_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyChar_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -2347,81 +2337,81 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyC .eHTMLKeyModifiers = eHTMLKeyModifiers, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyChar( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetHorizontalScroll_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetHorizontalScroll_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nAbsolutePixelScroll = nAbsolutePixelScroll, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetHorizontalScroll( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetVerticalScroll_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetVerticalScroll_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nAbsolutePixelScroll = nAbsolutePixelScroll, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetVerticalScroll( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetVerticalScroll, ¶ms ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetKeyFocus(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bHasKeyFocus) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetKeyFocus_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetKeyFocus_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bHasKeyFocus = bHasKeyFocus, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetKeyFocus( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ViewSource_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ViewSource_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ViewSource( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CopyToClipboard_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CopyToClipboard_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CopyToClipboard( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_PasteFromClipboard_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_PasteFromClipboard_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_PasteFromClipboard( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_PasteFromClipboard, ¶ms ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Find(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchSearchStr, bool bCurrentlyInFind, bool bReverse) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Find_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Find_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -2430,23 +2420,23 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Find .bReverse = bReverse, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Find( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopFind_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopFind_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopFind( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GetLinkAtPosition_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GetLinkAtPosition_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -2454,12 +2444,12 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GetL .y = y, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GetLinkAtPosition( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GetLinkAtPosition, ¶ms ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetCookie(struct w_steam_iface *_this, const char *pchHostname, const char *pchKey, const char *pchValue, const char *pchPath, uint32_t nExpires, bool bSecure, bool bHTTPOnly) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetCookie_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetCookie_params params = { .linux_side = _this->u_iface, .pchHostname = pchHostname, @@ -2471,12 +2461,12 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetC .bHTTPOnly = bHTTPOnly, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetCookie( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetPageScaleFactor_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetPageScaleFactor_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -2485,71 +2475,71 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetP .nPointY = nPointY, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetPageScaleFactor( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetPageScaleFactor, ¶ms ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetBackgroundMode(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bBackgroundMode) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetBackgroundMode_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetBackgroundMode_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bBackgroundMode = bBackgroundMode, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetBackgroundMode( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetDPIScalingFactor_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetDPIScalingFactor_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .flDPIScaling = flDPIScaling, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetDPIScalingFactor( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_OpenDeveloperTools_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_OpenDeveloperTools_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_OpenDeveloperTools( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_OpenDeveloperTools, ¶ms ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AllowStartRequest(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bAllowed) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AllowStartRequest_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AllowStartRequest_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bAllowed = bAllowed, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AllowStartRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AllowStartRequest, ¶ms ); } void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_JSDialogResponse(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bResult) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_JSDialogResponse_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_JSDialogResponse_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bResult = bResult, }; TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_JSDialogResponse( ¶ms ); + 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) { - struct cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_FileLoadDialogResponse_params params = + struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_FileLoadDialogResponse_params params = { .linux_side = _this->u_iface, .unBrowserHandle = unBrowserHandle, @@ -2557,7 +2547,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_File }; params.pchSelectedFiles = steamclient_dos_to_unix_path_array( pchSelectedFiles ); TRACE("%p\n", _this); - cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_FileLoadDialogResponse( ¶ms ); + STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_FileLoadDialogResponse, ¶ms ); steamclient_free_path_array( params.pchSelectedFiles ); } diff --git a/lsteamclient/winISteamHTTP.c b/lsteamclient/winISteamHTTP.c index 2aa7e429..2d7ede21 100644 --- a/lsteamclient/winISteamHTTP.c +++ b/lsteamclient/winISteamHTTP.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001.h" - DEFINE_THISCALL_WRAPPER(winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_CreateHTTPRequest, 12) DEFINE_THISCALL_WRAPPER(winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestContextValue, 16) DEFINE_THISCALL_WRAPPER(winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetworkActivityTimeout, 12) @@ -23,46 +21,46 @@ DEFINE_THISCALL_WRAPPER(winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequ uint32_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_CreateHTTPRequest(struct w_steam_iface *_this, uint32_t eHTTPRequestMethod, const char *pchAbsoluteURL) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_CreateHTTPRequest_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_CreateHTTPRequest_params params = { .linux_side = _this->u_iface, .eHTTPRequestMethod = eHTTPRequestMethod, .pchAbsoluteURL = pchAbsoluteURL, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_CreateHTTPRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_CreateHTTPRequest, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestContextValue(struct w_steam_iface *_this, uint32_t hRequest, uint64_t ulContextValue) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestContextValue_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestContextValue_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, .ulContextValue = ulContextValue, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestContextValue( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestContextValue, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetworkActivityTimeout(struct w_steam_iface *_this, uint32_t hRequest, uint32_t unTimeoutSeconds) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetworkActivityTimeout_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetworkActivityTimeout_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, .unTimeoutSeconds = unTimeoutSeconds, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetworkActivityTimeout( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetworkActivityTimeout, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeaderValue(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, const char *pchHeaderValue) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeaderValue_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeaderValue_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, @@ -70,13 +68,13 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeade .pchHeaderValue = pchHeaderValue, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeaderValue( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeaderValue, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOrPostParameter(struct w_steam_iface *_this, uint32_t hRequest, const char *pchParamName, const char *pchParamValue) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOrPostParameter_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOrPostParameter_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, @@ -84,50 +82,50 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOr .pchParamValue = pchParamValue, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOrPostParameter( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOrPostParameter, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest, uint64_t *pCallHandle) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, .pCallHandle = pCallHandle, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_DeferHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_DeferHTTPRequest_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_DeferHTTPRequest_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_DeferHTTPRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_DeferHTTPRequest, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_PrioritizeHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_PrioritizeHTTPRequest_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_PrioritizeHTTPRequest_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_PrioritizeHTTPRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_PrioritizeHTTPRequest, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderSize(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, uint32_t *unResponseHeaderSize) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderSize_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderSize_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, @@ -135,13 +133,13 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHead .unResponseHeaderSize = unResponseHeaderSize, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderSize( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderSize, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderValue(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, uint8_t *pHeaderValueBuffer, uint32_t unBufferSize) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderValue_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderValue_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, @@ -150,26 +148,26 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHead .unBufferSize = unBufferSize, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderValue( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderValue, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodySize(struct w_steam_iface *_this, uint32_t hRequest, uint32_t *unBodySize) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodySize_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodySize_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, .unBodySize = unBodySize, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodySize( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodySize, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodyData(struct w_steam_iface *_this, uint32_t hRequest, uint8_t *pBodyDataBuffer, uint32_t unBufferSize) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodyData_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodyData_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, @@ -177,38 +175,38 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBody .unBufferSize = unBufferSize, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodyData( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodyData, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_ReleaseHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_ReleaseHTTPRequest_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_ReleaseHTTPRequest_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_ReleaseHTTPRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_ReleaseHTTPRequest, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProgressPct(struct w_steam_iface *_this, uint32_t hRequest, float *pflPercentOut) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProgressPct_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProgressPct_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, .pflPercentOut = pflPercentOut, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProgressPct( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProgressPct, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestRawPostBody(struct w_steam_iface *_this, uint32_t hRequest, const char *pchContentType, uint8_t *pubBody, uint32_t unBodyLen) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestRawPostBody_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestRawPostBody_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, @@ -217,7 +215,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestRawPo .unBodyLen = unBodyLen, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestRawPostBody( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestRawPostBody, ¶ms ); return params._ret; } @@ -254,8 +252,6 @@ struct w_steam_iface *create_winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001(void * return r; } -#include "cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002.h" - DEFINE_THISCALL_WRAPPER(winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateHTTPRequest, 12) DEFINE_THISCALL_WRAPPER(winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestContextValue, 16) DEFINE_THISCALL_WRAPPER(winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetworkActivityTimeout, 12) @@ -284,46 +280,46 @@ DEFINE_THISCALL_WRAPPER(winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPRequ uint32_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateHTTPRequest(struct w_steam_iface *_this, uint32_t eHTTPRequestMethod, const char *pchAbsoluteURL) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateHTTPRequest_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateHTTPRequest_params params = { .linux_side = _this->u_iface, .eHTTPRequestMethod = eHTTPRequestMethod, .pchAbsoluteURL = pchAbsoluteURL, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateHTTPRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateHTTPRequest, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestContextValue(struct w_steam_iface *_this, uint32_t hRequest, uint64_t ulContextValue) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestContextValue_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestContextValue_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, .ulContextValue = ulContextValue, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestContextValue( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestContextValue, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetworkActivityTimeout(struct w_steam_iface *_this, uint32_t hRequest, uint32_t unTimeoutSeconds) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetworkActivityTimeout_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetworkActivityTimeout_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, .unTimeoutSeconds = unTimeoutSeconds, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetworkActivityTimeout( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetworkActivityTimeout, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeaderValue(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, const char *pchHeaderValue) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeaderValue_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeaderValue_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, @@ -331,13 +327,13 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeade .pchHeaderValue = pchHeaderValue, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeaderValue( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeaderValue, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOrPostParameter(struct w_steam_iface *_this, uint32_t hRequest, const char *pchParamName, const char *pchParamValue) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOrPostParameter_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOrPostParameter_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, @@ -345,63 +341,63 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOr .pchParamValue = pchParamValue, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOrPostParameter( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOrPostParameter, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest, uint64_t *pCallHandle) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, .pCallHandle = pCallHandle, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAndStreamResponse(struct w_steam_iface *_this, uint32_t hRequest, uint64_t *pCallHandle) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAndStreamResponse_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAndStreamResponse_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, .pCallHandle = pCallHandle, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAndStreamResponse( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAndStreamResponse, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_DeferHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_DeferHTTPRequest_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_DeferHTTPRequest_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_DeferHTTPRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_DeferHTTPRequest, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_PrioritizeHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_PrioritizeHTTPRequest_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_PrioritizeHTTPRequest_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_PrioritizeHTTPRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_PrioritizeHTTPRequest, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderSize(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, uint32_t *unResponseHeaderSize) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderSize_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderSize_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, @@ -409,13 +405,13 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHead .unResponseHeaderSize = unResponseHeaderSize, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderSize( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderSize, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderValue(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, uint8_t *pHeaderValueBuffer, uint32_t unBufferSize) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderValue_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderValue_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, @@ -424,26 +420,26 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHead .unBufferSize = unBufferSize, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderValue( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderValue, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodySize(struct w_steam_iface *_this, uint32_t hRequest, uint32_t *unBodySize) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodySize_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodySize_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, .unBodySize = unBodySize, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodySize( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodySize, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodyData(struct w_steam_iface *_this, uint32_t hRequest, uint8_t *pBodyDataBuffer, uint32_t unBufferSize) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodyData_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodyData_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, @@ -451,13 +447,13 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBody .unBufferSize = unBufferSize, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodyData( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodyData, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingResponseBodyData(struct w_steam_iface *_this, uint32_t hRequest, uint32_t cOffset, uint8_t *pBodyDataBuffer, uint32_t unBufferSize) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingResponseBodyData_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingResponseBodyData_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, @@ -466,38 +462,38 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingRes .unBufferSize = unBufferSize, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingResponseBodyData( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingResponseBodyData, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseHTTPRequest_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseHTTPRequest_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseHTTPRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseHTTPRequest, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadProgressPct(struct w_steam_iface *_this, uint32_t hRequest, float *pflPercentOut) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadProgressPct_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadProgressPct_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, .pflPercentOut = pflPercentOut, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadProgressPct( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadProgressPct, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRawPostBody(struct w_steam_iface *_this, uint32_t hRequest, const char *pchContentType, uint8_t *pubBody, uint32_t unBodyLen) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRawPostBody_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRawPostBody_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, @@ -506,37 +502,37 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRawPo .unBodyLen = unBodyLen, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRawPostBody( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRawPostBody, ¶ms ); return params._ret; } uint32_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateCookieContainer(struct w_steam_iface *_this, bool bAllowResponsesToModify) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateCookieContainer_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateCookieContainer_params params = { .linux_side = _this->u_iface, .bAllowResponsesToModify = bAllowResponsesToModify, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateCookieContainer( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateCookieContainer, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseCookieContainer(struct w_steam_iface *_this, uint32_t hCookieContainer) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseCookieContainer_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseCookieContainer_params params = { .linux_side = _this->u_iface, .hCookieContainer = hCookieContainer, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseCookieContainer( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseCookieContainer, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie(struct w_steam_iface *_this, uint32_t hCookieContainer, const char *pchHost, const char *pchUrl, const char *pchCookie) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie_params params = { .linux_side = _this->u_iface, .hCookieContainer = hCookieContainer, @@ -545,72 +541,72 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie(struct w_ .pchCookie = pchCookie, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCookieContainer(struct w_steam_iface *_this, uint32_t hRequest, uint32_t hCookieContainer) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCookieContainer_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCookieContainer_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, .hCookieContainer = hCookieContainer, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCookieContainer( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCookieContainer, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUserAgentInfo(struct w_steam_iface *_this, uint32_t hRequest, const char *pchUserAgentInfo) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUserAgentInfo_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUserAgentInfo_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, .pchUserAgentInfo = pchUserAgentInfo, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUserAgentInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUserAgentInfo, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRequiresVerifiedCertificate(struct w_steam_iface *_this, uint32_t hRequest, bool bRequireVerifiedCertificate) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRequiresVerifiedCertificate_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRequiresVerifiedCertificate_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, .bRequireVerifiedCertificate = bRequireVerifiedCertificate, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRequiresVerifiedCertificate( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRequiresVerifiedCertificate, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsoluteTimeoutMS(struct w_steam_iface *_this, uint32_t hRequest, uint32_t unMilliseconds) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsoluteTimeoutMS_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsoluteTimeoutMS_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, .unMilliseconds = unMilliseconds, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsoluteTimeoutMS( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsoluteTimeoutMS, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPRequestWasTimedOut(struct w_steam_iface *_this, uint32_t hRequest, bool *pbWasTimedOut) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPRequestWasTimedOut_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPRequestWasTimedOut_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, .pbWasTimedOut = pbWasTimedOut, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPRequestWasTimedOut( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPRequestWasTimedOut, ¶ms ); return params._ret; } @@ -657,8 +653,6 @@ struct w_steam_iface *create_winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002(void * return r; } -#include "cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003.h" - DEFINE_THISCALL_WRAPPER(winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateHTTPRequest, 12) DEFINE_THISCALL_WRAPPER(winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestContextValue, 16) DEFINE_THISCALL_WRAPPER(winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetworkActivityTimeout, 12) @@ -687,46 +681,46 @@ DEFINE_THISCALL_WRAPPER(winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPRequ uint32_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateHTTPRequest(struct w_steam_iface *_this, uint32_t eHTTPRequestMethod, const char *pchAbsoluteURL) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateHTTPRequest_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateHTTPRequest_params params = { .linux_side = _this->u_iface, .eHTTPRequestMethod = eHTTPRequestMethod, .pchAbsoluteURL = pchAbsoluteURL, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateHTTPRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateHTTPRequest, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestContextValue(struct w_steam_iface *_this, uint32_t hRequest, uint64_t ulContextValue) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestContextValue_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestContextValue_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, .ulContextValue = ulContextValue, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestContextValue( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestContextValue, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetworkActivityTimeout(struct w_steam_iface *_this, uint32_t hRequest, uint32_t unTimeoutSeconds) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetworkActivityTimeout_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetworkActivityTimeout_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, .unTimeoutSeconds = unTimeoutSeconds, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetworkActivityTimeout( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetworkActivityTimeout, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeaderValue(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, const char *pchHeaderValue) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeaderValue_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeaderValue_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, @@ -734,13 +728,13 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeade .pchHeaderValue = pchHeaderValue, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeaderValue( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeaderValue, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOrPostParameter(struct w_steam_iface *_this, uint32_t hRequest, const char *pchParamName, const char *pchParamValue) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOrPostParameter_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOrPostParameter_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, @@ -748,63 +742,63 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOr .pchParamValue = pchParamValue, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOrPostParameter( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOrPostParameter, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest, uint64_t *pCallHandle) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, .pCallHandle = pCallHandle, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAndStreamResponse(struct w_steam_iface *_this, uint32_t hRequest, uint64_t *pCallHandle) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAndStreamResponse_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAndStreamResponse_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, .pCallHandle = pCallHandle, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAndStreamResponse( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAndStreamResponse, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_DeferHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_DeferHTTPRequest_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_DeferHTTPRequest_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_DeferHTTPRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_DeferHTTPRequest, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_PrioritizeHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_PrioritizeHTTPRequest_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_PrioritizeHTTPRequest_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_PrioritizeHTTPRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_PrioritizeHTTPRequest, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderSize(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, uint32_t *unResponseHeaderSize) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderSize_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderSize_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, @@ -812,13 +806,13 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHead .unResponseHeaderSize = unResponseHeaderSize, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderSize( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderSize, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderValue(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, uint8_t *pHeaderValueBuffer, uint32_t unBufferSize) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderValue_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderValue_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, @@ -827,26 +821,26 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHead .unBufferSize = unBufferSize, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderValue( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderValue, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodySize(struct w_steam_iface *_this, uint32_t hRequest, uint32_t *unBodySize) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodySize_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodySize_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, .unBodySize = unBodySize, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodySize( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodySize, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodyData(struct w_steam_iface *_this, uint32_t hRequest, uint8_t *pBodyDataBuffer, uint32_t unBufferSize) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodyData_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodyData_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, @@ -854,13 +848,13 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBody .unBufferSize = unBufferSize, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodyData( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodyData, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingResponseBodyData(struct w_steam_iface *_this, uint32_t hRequest, uint32_t cOffset, uint8_t *pBodyDataBuffer, uint32_t unBufferSize) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingResponseBodyData_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingResponseBodyData_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, @@ -869,38 +863,38 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingRes .unBufferSize = unBufferSize, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingResponseBodyData( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingResponseBodyData, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseHTTPRequest_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseHTTPRequest_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseHTTPRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseHTTPRequest, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadProgressPct(struct w_steam_iface *_this, uint32_t hRequest, float *pflPercentOut) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadProgressPct_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadProgressPct_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, .pflPercentOut = pflPercentOut, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadProgressPct( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadProgressPct, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRawPostBody(struct w_steam_iface *_this, uint32_t hRequest, const char *pchContentType, uint8_t *pubBody, uint32_t unBodyLen) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRawPostBody_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRawPostBody_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, @@ -909,37 +903,37 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRawPo .unBodyLen = unBodyLen, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRawPostBody( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRawPostBody, ¶ms ); return params._ret; } uint32_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateCookieContainer(struct w_steam_iface *_this, bool bAllowResponsesToModify) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateCookieContainer_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateCookieContainer_params params = { .linux_side = _this->u_iface, .bAllowResponsesToModify = bAllowResponsesToModify, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateCookieContainer( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateCookieContainer, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseCookieContainer(struct w_steam_iface *_this, uint32_t hCookieContainer) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseCookieContainer_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseCookieContainer_params params = { .linux_side = _this->u_iface, .hCookieContainer = hCookieContainer, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseCookieContainer( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseCookieContainer, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie(struct w_steam_iface *_this, uint32_t hCookieContainer, const char *pchHost, const char *pchUrl, const char *pchCookie) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie_params params = { .linux_side = _this->u_iface, .hCookieContainer = hCookieContainer, @@ -948,72 +942,72 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie(struct w_ .pchCookie = pchCookie, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCookieContainer(struct w_steam_iface *_this, uint32_t hRequest, uint32_t hCookieContainer) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCookieContainer_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCookieContainer_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, .hCookieContainer = hCookieContainer, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCookieContainer( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCookieContainer, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUserAgentInfo(struct w_steam_iface *_this, uint32_t hRequest, const char *pchUserAgentInfo) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUserAgentInfo_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUserAgentInfo_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, .pchUserAgentInfo = pchUserAgentInfo, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUserAgentInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUserAgentInfo, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRequiresVerifiedCertificate(struct w_steam_iface *_this, uint32_t hRequest, bool bRequireVerifiedCertificate) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRequiresVerifiedCertificate_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRequiresVerifiedCertificate_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, .bRequireVerifiedCertificate = bRequireVerifiedCertificate, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRequiresVerifiedCertificate( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRequiresVerifiedCertificate, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsoluteTimeoutMS(struct w_steam_iface *_this, uint32_t hRequest, uint32_t unMilliseconds) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsoluteTimeoutMS_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsoluteTimeoutMS_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, .unMilliseconds = unMilliseconds, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsoluteTimeoutMS( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsoluteTimeoutMS, ¶ms ); return params._ret; } bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPRequestWasTimedOut(struct w_steam_iface *_this, uint32_t hRequest, bool *pbWasTimedOut) { - struct cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPRequestWasTimedOut_params params = + struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPRequestWasTimedOut_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, .pbWasTimedOut = pbWasTimedOut, }; TRACE("%p\n", _this); - cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPRequestWasTimedOut( ¶ms ); + STEAMCLIENT_CALL( ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPRequestWasTimedOut, ¶ms ); return params._ret; } diff --git a/lsteamclient/winISteamInput.c b/lsteamclient/winISteamInput.c index 597d9ff8..5fa807ea 100644 --- a/lsteamclient/winISteamInput.c +++ b/lsteamclient/winISteamInput.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamInput_SteamInput001.h" - DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput001_Init, 4) DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput001_Shutdown, 4) DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput001_RunFrame, 4) @@ -43,147 +41,147 @@ DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput001_GetRemotePlaySessionID, 12) bool __thiscall winISteamInput_SteamInput001_Init(struct w_steam_iface *_this) { - struct cppISteamInput_SteamInput001_Init_params params = + struct ISteamInput_SteamInput001_Init_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_Init( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_Init, ¶ms ); return params._ret; } bool __thiscall winISteamInput_SteamInput001_Shutdown(struct w_steam_iface *_this) { - struct cppISteamInput_SteamInput001_Shutdown_params params = + struct ISteamInput_SteamInput001_Shutdown_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_Shutdown( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_Shutdown, ¶ms ); return params._ret; } void __thiscall winISteamInput_SteamInput001_RunFrame(struct w_steam_iface *_this) { - struct cppISteamInput_SteamInput001_RunFrame_params params = + struct ISteamInput_SteamInput001_RunFrame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_RunFrame, ¶ms ); } int32_t __thiscall winISteamInput_SteamInput001_GetConnectedControllers(struct w_steam_iface *_this, uint64_t *handlesOut) { - struct cppISteamInput_SteamInput001_GetConnectedControllers_params params = + struct ISteamInput_SteamInput001_GetConnectedControllers_params params = { .linux_side = _this->u_iface, .handlesOut = handlesOut, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_GetConnectedControllers( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_GetConnectedControllers, ¶ms ); return params._ret; } uint64_t __thiscall winISteamInput_SteamInput001_GetActionSetHandle(struct w_steam_iface *_this, const char *pszActionSetName) { - struct cppISteamInput_SteamInput001_GetActionSetHandle_params params = + struct ISteamInput_SteamInput001_GetActionSetHandle_params params = { .linux_side = _this->u_iface, .pszActionSetName = pszActionSetName, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_GetActionSetHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_GetActionSetHandle, ¶ms ); return params._ret; } void __thiscall winISteamInput_SteamInput001_ActivateActionSet(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetHandle) { - struct cppISteamInput_SteamInput001_ActivateActionSet_params params = + struct ISteamInput_SteamInput001_ActivateActionSet_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, .actionSetHandle = actionSetHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_ActivateActionSet( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_ActivateActionSet, ¶ms ); } uint64_t __thiscall winISteamInput_SteamInput001_GetCurrentActionSet(struct w_steam_iface *_this, uint64_t inputHandle) { - struct cppISteamInput_SteamInput001_GetCurrentActionSet_params params = + struct ISteamInput_SteamInput001_GetCurrentActionSet_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_GetCurrentActionSet( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_GetCurrentActionSet, ¶ms ); return params._ret; } void __thiscall winISteamInput_SteamInput001_ActivateActionSetLayer(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetLayerHandle) { - struct cppISteamInput_SteamInput001_ActivateActionSetLayer_params params = + struct ISteamInput_SteamInput001_ActivateActionSetLayer_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, .actionSetLayerHandle = actionSetLayerHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_ActivateActionSetLayer( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_ActivateActionSetLayer, ¶ms ); } void __thiscall winISteamInput_SteamInput001_DeactivateActionSetLayer(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetLayerHandle) { - struct cppISteamInput_SteamInput001_DeactivateActionSetLayer_params params = + struct ISteamInput_SteamInput001_DeactivateActionSetLayer_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, .actionSetLayerHandle = actionSetLayerHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_DeactivateActionSetLayer( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_DeactivateActionSetLayer, ¶ms ); } void __thiscall winISteamInput_SteamInput001_DeactivateAllActionSetLayers(struct w_steam_iface *_this, uint64_t inputHandle) { - struct cppISteamInput_SteamInput001_DeactivateAllActionSetLayers_params params = + struct ISteamInput_SteamInput001_DeactivateAllActionSetLayers_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_DeactivateAllActionSetLayers( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_DeactivateAllActionSetLayers, ¶ms ); } int32_t __thiscall winISteamInput_SteamInput001_GetActiveActionSetLayers(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t *handlesOut) { - struct cppISteamInput_SteamInput001_GetActiveActionSetLayers_params params = + struct ISteamInput_SteamInput001_GetActiveActionSetLayers_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, .handlesOut = handlesOut, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_GetActiveActionSetLayers( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_GetActiveActionSetLayers, ¶ms ); return params._ret; } uint64_t __thiscall winISteamInput_SteamInput001_GetDigitalActionHandle(struct w_steam_iface *_this, const char *pszActionName) { - struct cppISteamInput_SteamInput001_GetDigitalActionHandle_params params = + struct ISteamInput_SteamInput001_GetDigitalActionHandle_params params = { .linux_side = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_GetDigitalActionHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_GetDigitalActionHandle, ¶ms ); return params._ret; } InputDigitalActionData_t * __thiscall winISteamInput_SteamInput001_GetDigitalActionData(struct w_steam_iface *_this, InputDigitalActionData_t *_ret, uint64_t inputHandle, uint64_t digitalActionHandle) { - struct cppISteamInput_SteamInput001_GetDigitalActionData_params params = + struct ISteamInput_SteamInput001_GetDigitalActionData_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -191,13 +189,13 @@ InputDigitalActionData_t * __thiscall winISteamInput_SteamInput001_GetDigitalAct .digitalActionHandle = digitalActionHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_GetDigitalActionData( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_GetDigitalActionData, ¶ms ); 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) { - struct cppISteamInput_SteamInput001_GetDigitalActionOrigins_params params = + struct ISteamInput_SteamInput001_GetDigitalActionOrigins_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -206,25 +204,25 @@ int32_t __thiscall winISteamInput_SteamInput001_GetDigitalActionOrigins(struct w .originsOut = originsOut, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_GetDigitalActionOrigins( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_GetDigitalActionOrigins, ¶ms ); return params._ret; } uint64_t __thiscall winISteamInput_SteamInput001_GetAnalogActionHandle(struct w_steam_iface *_this, const char *pszActionName) { - struct cppISteamInput_SteamInput001_GetAnalogActionHandle_params params = + struct ISteamInput_SteamInput001_GetAnalogActionHandle_params params = { .linux_side = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_GetAnalogActionHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_GetAnalogActionHandle, ¶ms ); return params._ret; } InputAnalogActionData_t * __thiscall winISteamInput_SteamInput001_GetAnalogActionData(struct w_steam_iface *_this, InputAnalogActionData_t *_ret, uint64_t inputHandle, uint64_t analogActionHandle) { - struct cppISteamInput_SteamInput001_GetAnalogActionData_params params = + struct ISteamInput_SteamInput001_GetAnalogActionData_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -232,13 +230,13 @@ InputAnalogActionData_t * __thiscall winISteamInput_SteamInput001_GetAnalogActio .analogActionHandle = analogActionHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_GetAnalogActionData( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_GetAnalogActionData, ¶ms ); 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) { - struct cppISteamInput_SteamInput001_GetAnalogActionOrigins_params params = + struct ISteamInput_SteamInput001_GetAnalogActionOrigins_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -247,50 +245,50 @@ int32_t __thiscall winISteamInput_SteamInput001_GetAnalogActionOrigins(struct w_ .originsOut = originsOut, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_GetAnalogActionOrigins( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_GetAnalogActionOrigins, ¶ms ); return params._ret; } const char * __thiscall winISteamInput_SteamInput001_GetStringForActionOrigin(struct w_steam_iface *_this, uint32_t eOrigin) { - struct cppISteamInput_SteamInput001_GetStringForActionOrigin_params params = + struct ISteamInput_SteamInput001_GetStringForActionOrigin_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_GetStringForActionOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_GetStringForActionOrigin, ¶ms ); return params._ret; } void __thiscall winISteamInput_SteamInput001_StopAnalogActionMomentum(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t eAction) { - struct cppISteamInput_SteamInput001_StopAnalogActionMomentum_params params = + struct ISteamInput_SteamInput001_StopAnalogActionMomentum_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, .eAction = eAction, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_StopAnalogActionMomentum( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_StopAnalogActionMomentum, ¶ms ); } InputMotionData_t * __thiscall winISteamInput_SteamInput001_GetMotionData(struct w_steam_iface *_this, InputMotionData_t *_ret, uint64_t inputHandle) { - struct cppISteamInput_SteamInput001_GetMotionData_params params = + struct ISteamInput_SteamInput001_GetMotionData_params params = { .linux_side = _this->u_iface, ._ret = _ret, .inputHandle = inputHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_GetMotionData( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_GetMotionData, ¶ms ); return params._ret; } void __thiscall winISteamInput_SteamInput001_TriggerVibration(struct w_steam_iface *_this, uint64_t inputHandle, uint16_t usLeftSpeed, uint16_t usRightSpeed) { - struct cppISteamInput_SteamInput001_TriggerVibration_params params = + struct ISteamInput_SteamInput001_TriggerVibration_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -298,12 +296,12 @@ void __thiscall winISteamInput_SteamInput001_TriggerVibration(struct w_steam_ifa .usRightSpeed = usRightSpeed, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_TriggerVibration( ¶ms ); + 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) { - struct cppISteamInput_SteamInput001_SetLEDColor_params params = + struct ISteamInput_SteamInput001_SetLEDColor_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -313,12 +311,12 @@ void __thiscall winISteamInput_SteamInput001_SetLEDColor(struct w_steam_iface *_ .nFlags = nFlags, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_SetLEDColor( ¶ms ); + 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) { - struct cppISteamInput_SteamInput001_TriggerHapticPulse_params params = + struct ISteamInput_SteamInput001_TriggerHapticPulse_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -326,12 +324,12 @@ void __thiscall winISteamInput_SteamInput001_TriggerHapticPulse(struct w_steam_i .usDurationMicroSec = usDurationMicroSec, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_TriggerHapticPulse( ¶ms ); + 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) { - struct cppISteamInput_SteamInput001_TriggerRepeatedHapticPulse_params params = + struct ISteamInput_SteamInput001_TriggerRepeatedHapticPulse_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -342,98 +340,98 @@ void __thiscall winISteamInput_SteamInput001_TriggerRepeatedHapticPulse(struct w .nFlags = nFlags, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_TriggerRepeatedHapticPulse( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_TriggerRepeatedHapticPulse, ¶ms ); } bool __thiscall winISteamInput_SteamInput001_ShowBindingPanel(struct w_steam_iface *_this, uint64_t inputHandle) { - struct cppISteamInput_SteamInput001_ShowBindingPanel_params params = + struct ISteamInput_SteamInput001_ShowBindingPanel_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_ShowBindingPanel( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_ShowBindingPanel, ¶ms ); return params._ret; } uint32_t __thiscall winISteamInput_SteamInput001_GetInputTypeForHandle(struct w_steam_iface *_this, uint64_t inputHandle) { - struct cppISteamInput_SteamInput001_GetInputTypeForHandle_params params = + struct ISteamInput_SteamInput001_GetInputTypeForHandle_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_GetInputTypeForHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_GetInputTypeForHandle, ¶ms ); return params._ret; } uint64_t __thiscall winISteamInput_SteamInput001_GetControllerForGamepadIndex(struct w_steam_iface *_this, int32_t nIndex) { - struct cppISteamInput_SteamInput001_GetControllerForGamepadIndex_params params = + struct ISteamInput_SteamInput001_GetControllerForGamepadIndex_params params = { .linux_side = _this->u_iface, .nIndex = nIndex, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_GetControllerForGamepadIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_GetControllerForGamepadIndex, ¶ms ); return params._ret; } int32_t __thiscall winISteamInput_SteamInput001_GetGamepadIndexForController(struct w_steam_iface *_this, uint64_t ulinputHandle) { - struct cppISteamInput_SteamInput001_GetGamepadIndexForController_params params = + struct ISteamInput_SteamInput001_GetGamepadIndexForController_params params = { .linux_side = _this->u_iface, .ulinputHandle = ulinputHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_GetGamepadIndexForController( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_GetGamepadIndexForController, ¶ms ); return params._ret; } const char * __thiscall winISteamInput_SteamInput001_GetStringForXboxOrigin(struct w_steam_iface *_this, uint32_t eOrigin) { - struct cppISteamInput_SteamInput001_GetStringForXboxOrigin_params params = + struct ISteamInput_SteamInput001_GetStringForXboxOrigin_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_GetStringForXboxOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_GetStringForXboxOrigin, ¶ms ); return params._ret; } uint32_t __thiscall winISteamInput_SteamInput001_GetActionOriginFromXboxOrigin(struct w_steam_iface *_this, uint64_t inputHandle, uint32_t eOrigin) { - struct cppISteamInput_SteamInput001_GetActionOriginFromXboxOrigin_params params = + struct ISteamInput_SteamInput001_GetActionOriginFromXboxOrigin_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, .eOrigin = eOrigin, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_GetActionOriginFromXboxOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_GetActionOriginFromXboxOrigin, ¶ms ); return params._ret; } uint32_t __thiscall winISteamInput_SteamInput001_TranslateActionOrigin(struct w_steam_iface *_this, uint32_t eDestinationInputType, uint32_t eSourceOrigin) { - struct cppISteamInput_SteamInput001_TranslateActionOrigin_params params = + struct ISteamInput_SteamInput001_TranslateActionOrigin_params params = { .linux_side = _this->u_iface, .eDestinationInputType = eDestinationInputType, .eSourceOrigin = eSourceOrigin, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_TranslateActionOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_TranslateActionOrigin, ¶ms ); return params._ret; } bool __thiscall winISteamInput_SteamInput001_GetDeviceBindingRevision(struct w_steam_iface *_this, uint64_t inputHandle, int32_t *pMajor, int32_t *pMinor) { - struct cppISteamInput_SteamInput001_GetDeviceBindingRevision_params params = + struct ISteamInput_SteamInput001_GetDeviceBindingRevision_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -441,19 +439,19 @@ bool __thiscall winISteamInput_SteamInput001_GetDeviceBindingRevision(struct w_s .pMinor = pMinor, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_GetDeviceBindingRevision( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_GetDeviceBindingRevision, ¶ms ); return params._ret; } uint32_t __thiscall winISteamInput_SteamInput001_GetRemotePlaySessionID(struct w_steam_iface *_this, uint64_t inputHandle) { - struct cppISteamInput_SteamInput001_GetRemotePlaySessionID_params params = + struct ISteamInput_SteamInput001_GetRemotePlaySessionID_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput001_GetRemotePlaySessionID( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput001_GetRemotePlaySessionID, ¶ms ); return params._ret; } @@ -510,8 +508,6 @@ struct w_steam_iface *create_winISteamInput_SteamInput001(void *u_iface) return r; } -#include "cppISteamInput_SteamInput002.h" - DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput002_Init, 4) DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput002_Shutdown, 4) DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput002_RunFrame, 4) @@ -550,147 +546,147 @@ DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput002_GetRemotePlaySessionID, 12) bool __thiscall winISteamInput_SteamInput002_Init(struct w_steam_iface *_this) { - struct cppISteamInput_SteamInput002_Init_params params = + struct ISteamInput_SteamInput002_Init_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_Init( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_Init, ¶ms ); return params._ret; } bool __thiscall winISteamInput_SteamInput002_Shutdown(struct w_steam_iface *_this) { - struct cppISteamInput_SteamInput002_Shutdown_params params = + struct ISteamInput_SteamInput002_Shutdown_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_Shutdown( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_Shutdown, ¶ms ); return params._ret; } void __thiscall winISteamInput_SteamInput002_RunFrame(struct w_steam_iface *_this) { - struct cppISteamInput_SteamInput002_RunFrame_params params = + struct ISteamInput_SteamInput002_RunFrame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_RunFrame, ¶ms ); } int32_t __thiscall winISteamInput_SteamInput002_GetConnectedControllers(struct w_steam_iface *_this, uint64_t *handlesOut) { - struct cppISteamInput_SteamInput002_GetConnectedControllers_params params = + struct ISteamInput_SteamInput002_GetConnectedControllers_params params = { .linux_side = _this->u_iface, .handlesOut = handlesOut, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_GetConnectedControllers( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_GetConnectedControllers, ¶ms ); return params._ret; } uint64_t __thiscall winISteamInput_SteamInput002_GetActionSetHandle(struct w_steam_iface *_this, const char *pszActionSetName) { - struct cppISteamInput_SteamInput002_GetActionSetHandle_params params = + struct ISteamInput_SteamInput002_GetActionSetHandle_params params = { .linux_side = _this->u_iface, .pszActionSetName = pszActionSetName, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_GetActionSetHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_GetActionSetHandle, ¶ms ); return params._ret; } void __thiscall winISteamInput_SteamInput002_ActivateActionSet(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetHandle) { - struct cppISteamInput_SteamInput002_ActivateActionSet_params params = + struct ISteamInput_SteamInput002_ActivateActionSet_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, .actionSetHandle = actionSetHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_ActivateActionSet( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_ActivateActionSet, ¶ms ); } uint64_t __thiscall winISteamInput_SteamInput002_GetCurrentActionSet(struct w_steam_iface *_this, uint64_t inputHandle) { - struct cppISteamInput_SteamInput002_GetCurrentActionSet_params params = + struct ISteamInput_SteamInput002_GetCurrentActionSet_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_GetCurrentActionSet( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_GetCurrentActionSet, ¶ms ); return params._ret; } void __thiscall winISteamInput_SteamInput002_ActivateActionSetLayer(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetLayerHandle) { - struct cppISteamInput_SteamInput002_ActivateActionSetLayer_params params = + struct ISteamInput_SteamInput002_ActivateActionSetLayer_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, .actionSetLayerHandle = actionSetLayerHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_ActivateActionSetLayer( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_ActivateActionSetLayer, ¶ms ); } void __thiscall winISteamInput_SteamInput002_DeactivateActionSetLayer(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetLayerHandle) { - struct cppISteamInput_SteamInput002_DeactivateActionSetLayer_params params = + struct ISteamInput_SteamInput002_DeactivateActionSetLayer_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, .actionSetLayerHandle = actionSetLayerHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_DeactivateActionSetLayer( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_DeactivateActionSetLayer, ¶ms ); } void __thiscall winISteamInput_SteamInput002_DeactivateAllActionSetLayers(struct w_steam_iface *_this, uint64_t inputHandle) { - struct cppISteamInput_SteamInput002_DeactivateAllActionSetLayers_params params = + struct ISteamInput_SteamInput002_DeactivateAllActionSetLayers_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_DeactivateAllActionSetLayers( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_DeactivateAllActionSetLayers, ¶ms ); } int32_t __thiscall winISteamInput_SteamInput002_GetActiveActionSetLayers(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t *handlesOut) { - struct cppISteamInput_SteamInput002_GetActiveActionSetLayers_params params = + struct ISteamInput_SteamInput002_GetActiveActionSetLayers_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, .handlesOut = handlesOut, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_GetActiveActionSetLayers( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_GetActiveActionSetLayers, ¶ms ); return params._ret; } uint64_t __thiscall winISteamInput_SteamInput002_GetDigitalActionHandle(struct w_steam_iface *_this, const char *pszActionName) { - struct cppISteamInput_SteamInput002_GetDigitalActionHandle_params params = + struct ISteamInput_SteamInput002_GetDigitalActionHandle_params params = { .linux_side = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_GetDigitalActionHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_GetDigitalActionHandle, ¶ms ); return params._ret; } InputDigitalActionData_t * __thiscall winISteamInput_SteamInput002_GetDigitalActionData(struct w_steam_iface *_this, InputDigitalActionData_t *_ret, uint64_t inputHandle, uint64_t digitalActionHandle) { - struct cppISteamInput_SteamInput002_GetDigitalActionData_params params = + struct ISteamInput_SteamInput002_GetDigitalActionData_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -698,13 +694,13 @@ InputDigitalActionData_t * __thiscall winISteamInput_SteamInput002_GetDigitalAct .digitalActionHandle = digitalActionHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_GetDigitalActionData( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_GetDigitalActionData, ¶ms ); 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) { - struct cppISteamInput_SteamInput002_GetDigitalActionOrigins_params params = + struct ISteamInput_SteamInput002_GetDigitalActionOrigins_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -713,25 +709,25 @@ int32_t __thiscall winISteamInput_SteamInput002_GetDigitalActionOrigins(struct w .originsOut = originsOut, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_GetDigitalActionOrigins( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_GetDigitalActionOrigins, ¶ms ); return params._ret; } uint64_t __thiscall winISteamInput_SteamInput002_GetAnalogActionHandle(struct w_steam_iface *_this, const char *pszActionName) { - struct cppISteamInput_SteamInput002_GetAnalogActionHandle_params params = + struct ISteamInput_SteamInput002_GetAnalogActionHandle_params params = { .linux_side = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_GetAnalogActionHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_GetAnalogActionHandle, ¶ms ); return params._ret; } InputAnalogActionData_t * __thiscall winISteamInput_SteamInput002_GetAnalogActionData(struct w_steam_iface *_this, InputAnalogActionData_t *_ret, uint64_t inputHandle, uint64_t analogActionHandle) { - struct cppISteamInput_SteamInput002_GetAnalogActionData_params params = + struct ISteamInput_SteamInput002_GetAnalogActionData_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -739,13 +735,13 @@ InputAnalogActionData_t * __thiscall winISteamInput_SteamInput002_GetAnalogActio .analogActionHandle = analogActionHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_GetAnalogActionData( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_GetAnalogActionData, ¶ms ); 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) { - struct cppISteamInput_SteamInput002_GetAnalogActionOrigins_params params = + struct ISteamInput_SteamInput002_GetAnalogActionOrigins_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -754,50 +750,50 @@ int32_t __thiscall winISteamInput_SteamInput002_GetAnalogActionOrigins(struct w_ .originsOut = originsOut, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_GetAnalogActionOrigins( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_GetAnalogActionOrigins, ¶ms ); return params._ret; } const char * __thiscall winISteamInput_SteamInput002_GetStringForActionOrigin(struct w_steam_iface *_this, uint32_t eOrigin) { - struct cppISteamInput_SteamInput002_GetStringForActionOrigin_params params = + struct ISteamInput_SteamInput002_GetStringForActionOrigin_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_GetStringForActionOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_GetStringForActionOrigin, ¶ms ); return params._ret; } void __thiscall winISteamInput_SteamInput002_StopAnalogActionMomentum(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t eAction) { - struct cppISteamInput_SteamInput002_StopAnalogActionMomentum_params params = + struct ISteamInput_SteamInput002_StopAnalogActionMomentum_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, .eAction = eAction, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_StopAnalogActionMomentum( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_StopAnalogActionMomentum, ¶ms ); } InputMotionData_t * __thiscall winISteamInput_SteamInput002_GetMotionData(struct w_steam_iface *_this, InputMotionData_t *_ret, uint64_t inputHandle) { - struct cppISteamInput_SteamInput002_GetMotionData_params params = + struct ISteamInput_SteamInput002_GetMotionData_params params = { .linux_side = _this->u_iface, ._ret = _ret, .inputHandle = inputHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_GetMotionData( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_GetMotionData, ¶ms ); return params._ret; } void __thiscall winISteamInput_SteamInput002_TriggerVibration(struct w_steam_iface *_this, uint64_t inputHandle, uint16_t usLeftSpeed, uint16_t usRightSpeed) { - struct cppISteamInput_SteamInput002_TriggerVibration_params params = + struct ISteamInput_SteamInput002_TriggerVibration_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -805,12 +801,12 @@ void __thiscall winISteamInput_SteamInput002_TriggerVibration(struct w_steam_ifa .usRightSpeed = usRightSpeed, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_TriggerVibration( ¶ms ); + 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) { - struct cppISteamInput_SteamInput002_SetLEDColor_params params = + struct ISteamInput_SteamInput002_SetLEDColor_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -820,12 +816,12 @@ void __thiscall winISteamInput_SteamInput002_SetLEDColor(struct w_steam_iface *_ .nFlags = nFlags, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_SetLEDColor( ¶ms ); + 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) { - struct cppISteamInput_SteamInput002_TriggerHapticPulse_params params = + struct ISteamInput_SteamInput002_TriggerHapticPulse_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -833,12 +829,12 @@ void __thiscall winISteamInput_SteamInput002_TriggerHapticPulse(struct w_steam_i .usDurationMicroSec = usDurationMicroSec, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_TriggerHapticPulse( ¶ms ); + 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) { - struct cppISteamInput_SteamInput002_TriggerRepeatedHapticPulse_params params = + struct ISteamInput_SteamInput002_TriggerRepeatedHapticPulse_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -849,98 +845,98 @@ void __thiscall winISteamInput_SteamInput002_TriggerRepeatedHapticPulse(struct w .nFlags = nFlags, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_TriggerRepeatedHapticPulse( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_TriggerRepeatedHapticPulse, ¶ms ); } bool __thiscall winISteamInput_SteamInput002_ShowBindingPanel(struct w_steam_iface *_this, uint64_t inputHandle) { - struct cppISteamInput_SteamInput002_ShowBindingPanel_params params = + struct ISteamInput_SteamInput002_ShowBindingPanel_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_ShowBindingPanel( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_ShowBindingPanel, ¶ms ); return params._ret; } uint32_t __thiscall winISteamInput_SteamInput002_GetInputTypeForHandle(struct w_steam_iface *_this, uint64_t inputHandle) { - struct cppISteamInput_SteamInput002_GetInputTypeForHandle_params params = + struct ISteamInput_SteamInput002_GetInputTypeForHandle_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_GetInputTypeForHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_GetInputTypeForHandle, ¶ms ); return params._ret; } uint64_t __thiscall winISteamInput_SteamInput002_GetControllerForGamepadIndex(struct w_steam_iface *_this, int32_t nIndex) { - struct cppISteamInput_SteamInput002_GetControllerForGamepadIndex_params params = + struct ISteamInput_SteamInput002_GetControllerForGamepadIndex_params params = { .linux_side = _this->u_iface, .nIndex = nIndex, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_GetControllerForGamepadIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_GetControllerForGamepadIndex, ¶ms ); return params._ret; } int32_t __thiscall winISteamInput_SteamInput002_GetGamepadIndexForController(struct w_steam_iface *_this, uint64_t ulinputHandle) { - struct cppISteamInput_SteamInput002_GetGamepadIndexForController_params params = + struct ISteamInput_SteamInput002_GetGamepadIndexForController_params params = { .linux_side = _this->u_iface, .ulinputHandle = ulinputHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_GetGamepadIndexForController( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_GetGamepadIndexForController, ¶ms ); return params._ret; } const char * __thiscall winISteamInput_SteamInput002_GetStringForXboxOrigin(struct w_steam_iface *_this, uint32_t eOrigin) { - struct cppISteamInput_SteamInput002_GetStringForXboxOrigin_params params = + struct ISteamInput_SteamInput002_GetStringForXboxOrigin_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_GetStringForXboxOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_GetStringForXboxOrigin, ¶ms ); return params._ret; } uint32_t __thiscall winISteamInput_SteamInput002_GetActionOriginFromXboxOrigin(struct w_steam_iface *_this, uint64_t inputHandle, uint32_t eOrigin) { - struct cppISteamInput_SteamInput002_GetActionOriginFromXboxOrigin_params params = + struct ISteamInput_SteamInput002_GetActionOriginFromXboxOrigin_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, .eOrigin = eOrigin, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_GetActionOriginFromXboxOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_GetActionOriginFromXboxOrigin, ¶ms ); return params._ret; } uint32_t __thiscall winISteamInput_SteamInput002_TranslateActionOrigin(struct w_steam_iface *_this, uint32_t eDestinationInputType, uint32_t eSourceOrigin) { - struct cppISteamInput_SteamInput002_TranslateActionOrigin_params params = + struct ISteamInput_SteamInput002_TranslateActionOrigin_params params = { .linux_side = _this->u_iface, .eDestinationInputType = eDestinationInputType, .eSourceOrigin = eSourceOrigin, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_TranslateActionOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_TranslateActionOrigin, ¶ms ); return params._ret; } bool __thiscall winISteamInput_SteamInput002_GetDeviceBindingRevision(struct w_steam_iface *_this, uint64_t inputHandle, int32_t *pMajor, int32_t *pMinor) { - struct cppISteamInput_SteamInput002_GetDeviceBindingRevision_params params = + struct ISteamInput_SteamInput002_GetDeviceBindingRevision_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -948,19 +944,19 @@ bool __thiscall winISteamInput_SteamInput002_GetDeviceBindingRevision(struct w_s .pMinor = pMinor, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_GetDeviceBindingRevision( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_GetDeviceBindingRevision, ¶ms ); return params._ret; } uint32_t __thiscall winISteamInput_SteamInput002_GetRemotePlaySessionID(struct w_steam_iface *_this, uint64_t inputHandle) { - struct cppISteamInput_SteamInput002_GetRemotePlaySessionID_params params = + struct ISteamInput_SteamInput002_GetRemotePlaySessionID_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput002_GetRemotePlaySessionID( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput002_GetRemotePlaySessionID, ¶ms ); return params._ret; } @@ -1017,8 +1013,6 @@ struct w_steam_iface *create_winISteamInput_SteamInput002(void *u_iface) return r; } -#include "cppISteamInput_SteamInput005.h" - DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput005_Init, 8) DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput005_Shutdown, 4) DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput005_SetInputActionManifestFilePath, 8) @@ -1069,208 +1063,208 @@ DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput005_GetSessionInputConfiguratio bool __thiscall winISteamInput_SteamInput005_Init(struct w_steam_iface *_this, bool bExplicitlyCallRunFrame) { - struct cppISteamInput_SteamInput005_Init_params params = + struct ISteamInput_SteamInput005_Init_params params = { .linux_side = _this->u_iface, .bExplicitlyCallRunFrame = bExplicitlyCallRunFrame, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_Init( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_Init, ¶ms ); return params._ret; } bool __thiscall winISteamInput_SteamInput005_Shutdown(struct w_steam_iface *_this) { - struct cppISteamInput_SteamInput005_Shutdown_params params = + struct ISteamInput_SteamInput005_Shutdown_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_Shutdown( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_Shutdown, ¶ms ); return params._ret; } bool __thiscall winISteamInput_SteamInput005_SetInputActionManifestFilePath(struct w_steam_iface *_this, const char *pchInputActionManifestAbsolutePath) { - struct cppISteamInput_SteamInput005_SetInputActionManifestFilePath_params params = + struct ISteamInput_SteamInput005_SetInputActionManifestFilePath_params params = { .linux_side = _this->u_iface, .pchInputActionManifestAbsolutePath = pchInputActionManifestAbsolutePath, }; params.pchInputActionManifestAbsolutePath = steamclient_dos_to_unix_path( pchInputActionManifestAbsolutePath, 0 ); TRACE("%p\n", _this); - cppISteamInput_SteamInput005_SetInputActionManifestFilePath( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_SetInputActionManifestFilePath, ¶ms ); steamclient_free_path( params.pchInputActionManifestAbsolutePath ); return params._ret; } void __thiscall winISteamInput_SteamInput005_RunFrame(struct w_steam_iface *_this, bool bReservedValue) { - struct cppISteamInput_SteamInput005_RunFrame_params params = + struct ISteamInput_SteamInput005_RunFrame_params params = { .linux_side = _this->u_iface, .bReservedValue = bReservedValue, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_RunFrame, ¶ms ); } bool __thiscall winISteamInput_SteamInput005_BWaitForData(struct w_steam_iface *_this, bool bWaitForever, uint32_t unTimeout) { - struct cppISteamInput_SteamInput005_BWaitForData_params params = + struct ISteamInput_SteamInput005_BWaitForData_params params = { .linux_side = _this->u_iface, .bWaitForever = bWaitForever, .unTimeout = unTimeout, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_BWaitForData( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_BWaitForData, ¶ms ); return params._ret; } bool __thiscall winISteamInput_SteamInput005_BNewDataAvailable(struct w_steam_iface *_this) { - struct cppISteamInput_SteamInput005_BNewDataAvailable_params params = + struct ISteamInput_SteamInput005_BNewDataAvailable_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_BNewDataAvailable( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_BNewDataAvailable, ¶ms ); return params._ret; } int32_t __thiscall winISteamInput_SteamInput005_GetConnectedControllers(struct w_steam_iface *_this, uint64_t *handlesOut) { - struct cppISteamInput_SteamInput005_GetConnectedControllers_params params = + struct ISteamInput_SteamInput005_GetConnectedControllers_params params = { .linux_side = _this->u_iface, .handlesOut = handlesOut, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_GetConnectedControllers( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_GetConnectedControllers, ¶ms ); return params._ret; } void __thiscall winISteamInput_SteamInput005_EnableDeviceCallbacks(struct w_steam_iface *_this) { - struct cppISteamInput_SteamInput005_EnableDeviceCallbacks_params params = + struct ISteamInput_SteamInput005_EnableDeviceCallbacks_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_EnableDeviceCallbacks( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_EnableDeviceCallbacks, ¶ms ); } void __thiscall winISteamInput_SteamInput005_EnableActionEventCallbacks(struct w_steam_iface *_this, void (*W_STDCALL pCallback)(SteamInputActionEvent_t *)) { - struct cppISteamInput_SteamInput005_EnableActionEventCallbacks_params params = + struct ISteamInput_SteamInput005_EnableActionEventCallbacks_params params = { .linux_side = _this->u_iface, .pCallback = pCallback, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_EnableActionEventCallbacks( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_EnableActionEventCallbacks, ¶ms ); } uint64_t __thiscall winISteamInput_SteamInput005_GetActionSetHandle(struct w_steam_iface *_this, const char *pszActionSetName) { - struct cppISteamInput_SteamInput005_GetActionSetHandle_params params = + struct ISteamInput_SteamInput005_GetActionSetHandle_params params = { .linux_side = _this->u_iface, .pszActionSetName = pszActionSetName, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_GetActionSetHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_GetActionSetHandle, ¶ms ); return params._ret; } void __thiscall winISteamInput_SteamInput005_ActivateActionSet(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetHandle) { - struct cppISteamInput_SteamInput005_ActivateActionSet_params params = + struct ISteamInput_SteamInput005_ActivateActionSet_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, .actionSetHandle = actionSetHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_ActivateActionSet( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_ActivateActionSet, ¶ms ); } uint64_t __thiscall winISteamInput_SteamInput005_GetCurrentActionSet(struct w_steam_iface *_this, uint64_t inputHandle) { - struct cppISteamInput_SteamInput005_GetCurrentActionSet_params params = + struct ISteamInput_SteamInput005_GetCurrentActionSet_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_GetCurrentActionSet( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_GetCurrentActionSet, ¶ms ); return params._ret; } void __thiscall winISteamInput_SteamInput005_ActivateActionSetLayer(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetLayerHandle) { - struct cppISteamInput_SteamInput005_ActivateActionSetLayer_params params = + struct ISteamInput_SteamInput005_ActivateActionSetLayer_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, .actionSetLayerHandle = actionSetLayerHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_ActivateActionSetLayer( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_ActivateActionSetLayer, ¶ms ); } void __thiscall winISteamInput_SteamInput005_DeactivateActionSetLayer(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetLayerHandle) { - struct cppISteamInput_SteamInput005_DeactivateActionSetLayer_params params = + struct ISteamInput_SteamInput005_DeactivateActionSetLayer_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, .actionSetLayerHandle = actionSetLayerHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_DeactivateActionSetLayer( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_DeactivateActionSetLayer, ¶ms ); } void __thiscall winISteamInput_SteamInput005_DeactivateAllActionSetLayers(struct w_steam_iface *_this, uint64_t inputHandle) { - struct cppISteamInput_SteamInput005_DeactivateAllActionSetLayers_params params = + struct ISteamInput_SteamInput005_DeactivateAllActionSetLayers_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_DeactivateAllActionSetLayers( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_DeactivateAllActionSetLayers, ¶ms ); } int32_t __thiscall winISteamInput_SteamInput005_GetActiveActionSetLayers(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t *handlesOut) { - struct cppISteamInput_SteamInput005_GetActiveActionSetLayers_params params = + struct ISteamInput_SteamInput005_GetActiveActionSetLayers_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, .handlesOut = handlesOut, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_GetActiveActionSetLayers( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_GetActiveActionSetLayers, ¶ms ); return params._ret; } uint64_t __thiscall winISteamInput_SteamInput005_GetDigitalActionHandle(struct w_steam_iface *_this, const char *pszActionName) { - struct cppISteamInput_SteamInput005_GetDigitalActionHandle_params params = + struct ISteamInput_SteamInput005_GetDigitalActionHandle_params params = { .linux_side = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_GetDigitalActionHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_GetDigitalActionHandle, ¶ms ); return params._ret; } InputDigitalActionData_t * __thiscall winISteamInput_SteamInput005_GetDigitalActionData(struct w_steam_iface *_this, InputDigitalActionData_t *_ret, uint64_t inputHandle, uint64_t digitalActionHandle) { - struct cppISteamInput_SteamInput005_GetDigitalActionData_params params = + struct ISteamInput_SteamInput005_GetDigitalActionData_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -1278,13 +1272,13 @@ InputDigitalActionData_t * __thiscall winISteamInput_SteamInput005_GetDigitalAct .digitalActionHandle = digitalActionHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_GetDigitalActionData( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_GetDigitalActionData, ¶ms ); 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) { - struct cppISteamInput_SteamInput005_GetDigitalActionOrigins_params params = + struct ISteamInput_SteamInput005_GetDigitalActionOrigins_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -1293,37 +1287,37 @@ int32_t __thiscall winISteamInput_SteamInput005_GetDigitalActionOrigins(struct w .originsOut = originsOut, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_GetDigitalActionOrigins( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_GetDigitalActionOrigins, ¶ms ); return params._ret; } const char * __thiscall winISteamInput_SteamInput005_GetStringForDigitalActionName(struct w_steam_iface *_this, uint64_t eActionHandle) { - struct cppISteamInput_SteamInput005_GetStringForDigitalActionName_params params = + struct ISteamInput_SteamInput005_GetStringForDigitalActionName_params params = { .linux_side = _this->u_iface, .eActionHandle = eActionHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_GetStringForDigitalActionName( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_GetStringForDigitalActionName, ¶ms ); return params._ret; } uint64_t __thiscall winISteamInput_SteamInput005_GetAnalogActionHandle(struct w_steam_iface *_this, const char *pszActionName) { - struct cppISteamInput_SteamInput005_GetAnalogActionHandle_params params = + struct ISteamInput_SteamInput005_GetAnalogActionHandle_params params = { .linux_side = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_GetAnalogActionHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_GetAnalogActionHandle, ¶ms ); return params._ret; } InputAnalogActionData_t * __thiscall winISteamInput_SteamInput005_GetAnalogActionData(struct w_steam_iface *_this, InputAnalogActionData_t *_ret, uint64_t inputHandle, uint64_t analogActionHandle) { - struct cppISteamInput_SteamInput005_GetAnalogActionData_params params = + struct ISteamInput_SteamInput005_GetAnalogActionData_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -1331,13 +1325,13 @@ InputAnalogActionData_t * __thiscall winISteamInput_SteamInput005_GetAnalogActio .analogActionHandle = analogActionHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_GetAnalogActionData( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_GetAnalogActionData, ¶ms ); 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) { - struct cppISteamInput_SteamInput005_GetAnalogActionOrigins_params params = + struct ISteamInput_SteamInput005_GetAnalogActionOrigins_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -1346,62 +1340,62 @@ int32_t __thiscall winISteamInput_SteamInput005_GetAnalogActionOrigins(struct w_ .originsOut = originsOut, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_GetAnalogActionOrigins( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_GetAnalogActionOrigins, ¶ms ); return params._ret; } const char * __thiscall winISteamInput_SteamInput005_GetStringForActionOrigin(struct w_steam_iface *_this, uint32_t eOrigin) { - struct cppISteamInput_SteamInput005_GetStringForActionOrigin_params params = + struct ISteamInput_SteamInput005_GetStringForActionOrigin_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_GetStringForActionOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_GetStringForActionOrigin, ¶ms ); return params._ret; } const char * __thiscall winISteamInput_SteamInput005_GetStringForAnalogActionName(struct w_steam_iface *_this, uint64_t eActionHandle) { - struct cppISteamInput_SteamInput005_GetStringForAnalogActionName_params params = + struct ISteamInput_SteamInput005_GetStringForAnalogActionName_params params = { .linux_side = _this->u_iface, .eActionHandle = eActionHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_GetStringForAnalogActionName( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_GetStringForAnalogActionName, ¶ms ); return params._ret; } void __thiscall winISteamInput_SteamInput005_StopAnalogActionMomentum(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t eAction) { - struct cppISteamInput_SteamInput005_StopAnalogActionMomentum_params params = + struct ISteamInput_SteamInput005_StopAnalogActionMomentum_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, .eAction = eAction, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_StopAnalogActionMomentum( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_StopAnalogActionMomentum, ¶ms ); } InputMotionData_t * __thiscall winISteamInput_SteamInput005_GetMotionData(struct w_steam_iface *_this, InputMotionData_t *_ret, uint64_t inputHandle) { - struct cppISteamInput_SteamInput005_GetMotionData_params params = + struct ISteamInput_SteamInput005_GetMotionData_params params = { .linux_side = _this->u_iface, ._ret = _ret, .inputHandle = inputHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_GetMotionData( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_GetMotionData, ¶ms ); return params._ret; } void __thiscall winISteamInput_SteamInput005_TriggerVibration(struct w_steam_iface *_this, uint64_t inputHandle, uint16_t usLeftSpeed, uint16_t usRightSpeed) { - struct cppISteamInput_SteamInput005_TriggerVibration_params params = + struct ISteamInput_SteamInput005_TriggerVibration_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -1409,12 +1403,12 @@ void __thiscall winISteamInput_SteamInput005_TriggerVibration(struct w_steam_ifa .usRightSpeed = usRightSpeed, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_TriggerVibration( ¶ms ); + 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) { - struct cppISteamInput_SteamInput005_TriggerVibrationExtended_params params = + struct ISteamInput_SteamInput005_TriggerVibrationExtended_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -1424,12 +1418,12 @@ void __thiscall winISteamInput_SteamInput005_TriggerVibrationExtended(struct w_s .usRightTriggerSpeed = usRightTriggerSpeed, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_TriggerVibrationExtended( ¶ms ); + 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) { - struct cppISteamInput_SteamInput005_TriggerSimpleHapticEvent_params params = + struct ISteamInput_SteamInput005_TriggerSimpleHapticEvent_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -1440,12 +1434,12 @@ void __thiscall winISteamInput_SteamInput005_TriggerSimpleHapticEvent(struct w_s .nOtherGainDB = nOtherGainDB, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_TriggerSimpleHapticEvent( ¶ms ); + 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) { - struct cppISteamInput_SteamInput005_SetLEDColor_params params = + struct ISteamInput_SteamInput005_SetLEDColor_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -1455,12 +1449,12 @@ void __thiscall winISteamInput_SteamInput005_SetLEDColor(struct w_steam_iface *_ .nFlags = nFlags, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_SetLEDColor( ¶ms ); + 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) { - struct cppISteamInput_SteamInput005_Legacy_TriggerHapticPulse_params params = + struct ISteamInput_SteamInput005_Legacy_TriggerHapticPulse_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -1468,12 +1462,12 @@ void __thiscall winISteamInput_SteamInput005_Legacy_TriggerHapticPulse(struct w_ .usDurationMicroSec = usDurationMicroSec, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_Legacy_TriggerHapticPulse( ¶ms ); + 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) { - struct cppISteamInput_SteamInput005_Legacy_TriggerRepeatedHapticPulse_params params = + struct ISteamInput_SteamInput005_Legacy_TriggerRepeatedHapticPulse_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -1484,98 +1478,98 @@ void __thiscall winISteamInput_SteamInput005_Legacy_TriggerRepeatedHapticPulse(s .nFlags = nFlags, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_Legacy_TriggerRepeatedHapticPulse( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_Legacy_TriggerRepeatedHapticPulse, ¶ms ); } bool __thiscall winISteamInput_SteamInput005_ShowBindingPanel(struct w_steam_iface *_this, uint64_t inputHandle) { - struct cppISteamInput_SteamInput005_ShowBindingPanel_params params = + struct ISteamInput_SteamInput005_ShowBindingPanel_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_ShowBindingPanel( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_ShowBindingPanel, ¶ms ); return params._ret; } uint32_t __thiscall winISteamInput_SteamInput005_GetInputTypeForHandle(struct w_steam_iface *_this, uint64_t inputHandle) { - struct cppISteamInput_SteamInput005_GetInputTypeForHandle_params params = + struct ISteamInput_SteamInput005_GetInputTypeForHandle_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_GetInputTypeForHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_GetInputTypeForHandle, ¶ms ); return params._ret; } uint64_t __thiscall winISteamInput_SteamInput005_GetControllerForGamepadIndex(struct w_steam_iface *_this, int32_t nIndex) { - struct cppISteamInput_SteamInput005_GetControllerForGamepadIndex_params params = + struct ISteamInput_SteamInput005_GetControllerForGamepadIndex_params params = { .linux_side = _this->u_iface, .nIndex = nIndex, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_GetControllerForGamepadIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_GetControllerForGamepadIndex, ¶ms ); return params._ret; } int32_t __thiscall winISteamInput_SteamInput005_GetGamepadIndexForController(struct w_steam_iface *_this, uint64_t ulinputHandle) { - struct cppISteamInput_SteamInput005_GetGamepadIndexForController_params params = + struct ISteamInput_SteamInput005_GetGamepadIndexForController_params params = { .linux_side = _this->u_iface, .ulinputHandle = ulinputHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_GetGamepadIndexForController( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_GetGamepadIndexForController, ¶ms ); return params._ret; } const char * __thiscall winISteamInput_SteamInput005_GetStringForXboxOrigin(struct w_steam_iface *_this, uint32_t eOrigin) { - struct cppISteamInput_SteamInput005_GetStringForXboxOrigin_params params = + struct ISteamInput_SteamInput005_GetStringForXboxOrigin_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_GetStringForXboxOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_GetStringForXboxOrigin, ¶ms ); return params._ret; } uint32_t __thiscall winISteamInput_SteamInput005_GetActionOriginFromXboxOrigin(struct w_steam_iface *_this, uint64_t inputHandle, uint32_t eOrigin) { - struct cppISteamInput_SteamInput005_GetActionOriginFromXboxOrigin_params params = + struct ISteamInput_SteamInput005_GetActionOriginFromXboxOrigin_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, .eOrigin = eOrigin, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_GetActionOriginFromXboxOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_GetActionOriginFromXboxOrigin, ¶ms ); return params._ret; } uint32_t __thiscall winISteamInput_SteamInput005_TranslateActionOrigin(struct w_steam_iface *_this, uint32_t eDestinationInputType, uint32_t eSourceOrigin) { - struct cppISteamInput_SteamInput005_TranslateActionOrigin_params params = + struct ISteamInput_SteamInput005_TranslateActionOrigin_params params = { .linux_side = _this->u_iface, .eDestinationInputType = eDestinationInputType, .eSourceOrigin = eSourceOrigin, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_TranslateActionOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_TranslateActionOrigin, ¶ms ); return params._ret; } bool __thiscall winISteamInput_SteamInput005_GetDeviceBindingRevision(struct w_steam_iface *_this, uint64_t inputHandle, int32_t *pMajor, int32_t *pMinor) { - struct cppISteamInput_SteamInput005_GetDeviceBindingRevision_params params = + struct ISteamInput_SteamInput005_GetDeviceBindingRevision_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -1583,30 +1577,30 @@ bool __thiscall winISteamInput_SteamInput005_GetDeviceBindingRevision(struct w_s .pMinor = pMinor, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_GetDeviceBindingRevision( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_GetDeviceBindingRevision, ¶ms ); return params._ret; } uint32_t __thiscall winISteamInput_SteamInput005_GetRemotePlaySessionID(struct w_steam_iface *_this, uint64_t inputHandle) { - struct cppISteamInput_SteamInput005_GetRemotePlaySessionID_params params = + struct ISteamInput_SteamInput005_GetRemotePlaySessionID_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_GetRemotePlaySessionID( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_GetRemotePlaySessionID, ¶ms ); return params._ret; } uint16_t __thiscall winISteamInput_SteamInput005_GetSessionInputConfigurationSettings(struct w_steam_iface *_this) { - struct cppISteamInput_SteamInput005_GetSessionInputConfigurationSettings_params params = + struct ISteamInput_SteamInput005_GetSessionInputConfigurationSettings_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput005_GetSessionInputConfigurationSettings( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput005_GetSessionInputConfigurationSettings, ¶ms ); return params._ret; } @@ -1675,8 +1669,6 @@ struct w_steam_iface *create_winISteamInput_SteamInput005(void *u_iface) return r; } -#include "cppISteamInput_SteamInput006.h" - DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput006_Init, 8) DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput006_Shutdown, 4) DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput006_SetInputActionManifestFilePath, 8) @@ -1728,208 +1720,208 @@ DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput006_SetDualSenseTriggerEffect, bool __thiscall winISteamInput_SteamInput006_Init(struct w_steam_iface *_this, bool bExplicitlyCallRunFrame) { - struct cppISteamInput_SteamInput006_Init_params params = + struct ISteamInput_SteamInput006_Init_params params = { .linux_side = _this->u_iface, .bExplicitlyCallRunFrame = bExplicitlyCallRunFrame, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_Init( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_Init, ¶ms ); return params._ret; } bool __thiscall winISteamInput_SteamInput006_Shutdown(struct w_steam_iface *_this) { - struct cppISteamInput_SteamInput006_Shutdown_params params = + struct ISteamInput_SteamInput006_Shutdown_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_Shutdown( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_Shutdown, ¶ms ); return params._ret; } bool __thiscall winISteamInput_SteamInput006_SetInputActionManifestFilePath(struct w_steam_iface *_this, const char *pchInputActionManifestAbsolutePath) { - struct cppISteamInput_SteamInput006_SetInputActionManifestFilePath_params params = + struct ISteamInput_SteamInput006_SetInputActionManifestFilePath_params params = { .linux_side = _this->u_iface, .pchInputActionManifestAbsolutePath = pchInputActionManifestAbsolutePath, }; params.pchInputActionManifestAbsolutePath = steamclient_dos_to_unix_path( pchInputActionManifestAbsolutePath, 0 ); TRACE("%p\n", _this); - cppISteamInput_SteamInput006_SetInputActionManifestFilePath( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_SetInputActionManifestFilePath, ¶ms ); steamclient_free_path( params.pchInputActionManifestAbsolutePath ); return params._ret; } void __thiscall winISteamInput_SteamInput006_RunFrame(struct w_steam_iface *_this, bool bReservedValue) { - struct cppISteamInput_SteamInput006_RunFrame_params params = + struct ISteamInput_SteamInput006_RunFrame_params params = { .linux_side = _this->u_iface, .bReservedValue = bReservedValue, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_RunFrame, ¶ms ); } bool __thiscall winISteamInput_SteamInput006_BWaitForData(struct w_steam_iface *_this, bool bWaitForever, uint32_t unTimeout) { - struct cppISteamInput_SteamInput006_BWaitForData_params params = + struct ISteamInput_SteamInput006_BWaitForData_params params = { .linux_side = _this->u_iface, .bWaitForever = bWaitForever, .unTimeout = unTimeout, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_BWaitForData( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_BWaitForData, ¶ms ); return params._ret; } bool __thiscall winISteamInput_SteamInput006_BNewDataAvailable(struct w_steam_iface *_this) { - struct cppISteamInput_SteamInput006_BNewDataAvailable_params params = + struct ISteamInput_SteamInput006_BNewDataAvailable_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_BNewDataAvailable( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_BNewDataAvailable, ¶ms ); return params._ret; } int32_t __thiscall winISteamInput_SteamInput006_GetConnectedControllers(struct w_steam_iface *_this, uint64_t *handlesOut) { - struct cppISteamInput_SteamInput006_GetConnectedControllers_params params = + struct ISteamInput_SteamInput006_GetConnectedControllers_params params = { .linux_side = _this->u_iface, .handlesOut = handlesOut, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_GetConnectedControllers( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_GetConnectedControllers, ¶ms ); return params._ret; } void __thiscall winISteamInput_SteamInput006_EnableDeviceCallbacks(struct w_steam_iface *_this) { - struct cppISteamInput_SteamInput006_EnableDeviceCallbacks_params params = + struct ISteamInput_SteamInput006_EnableDeviceCallbacks_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_EnableDeviceCallbacks( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_EnableDeviceCallbacks, ¶ms ); } void __thiscall winISteamInput_SteamInput006_EnableActionEventCallbacks(struct w_steam_iface *_this, void (*W_STDCALL pCallback)(SteamInputActionEvent_t *)) { - struct cppISteamInput_SteamInput006_EnableActionEventCallbacks_params params = + struct ISteamInput_SteamInput006_EnableActionEventCallbacks_params params = { .linux_side = _this->u_iface, .pCallback = pCallback, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_EnableActionEventCallbacks( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_EnableActionEventCallbacks, ¶ms ); } uint64_t __thiscall winISteamInput_SteamInput006_GetActionSetHandle(struct w_steam_iface *_this, const char *pszActionSetName) { - struct cppISteamInput_SteamInput006_GetActionSetHandle_params params = + struct ISteamInput_SteamInput006_GetActionSetHandle_params params = { .linux_side = _this->u_iface, .pszActionSetName = pszActionSetName, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_GetActionSetHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_GetActionSetHandle, ¶ms ); return params._ret; } void __thiscall winISteamInput_SteamInput006_ActivateActionSet(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetHandle) { - struct cppISteamInput_SteamInput006_ActivateActionSet_params params = + struct ISteamInput_SteamInput006_ActivateActionSet_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, .actionSetHandle = actionSetHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_ActivateActionSet( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_ActivateActionSet, ¶ms ); } uint64_t __thiscall winISteamInput_SteamInput006_GetCurrentActionSet(struct w_steam_iface *_this, uint64_t inputHandle) { - struct cppISteamInput_SteamInput006_GetCurrentActionSet_params params = + struct ISteamInput_SteamInput006_GetCurrentActionSet_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_GetCurrentActionSet( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_GetCurrentActionSet, ¶ms ); return params._ret; } void __thiscall winISteamInput_SteamInput006_ActivateActionSetLayer(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetLayerHandle) { - struct cppISteamInput_SteamInput006_ActivateActionSetLayer_params params = + struct ISteamInput_SteamInput006_ActivateActionSetLayer_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, .actionSetLayerHandle = actionSetLayerHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_ActivateActionSetLayer( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_ActivateActionSetLayer, ¶ms ); } void __thiscall winISteamInput_SteamInput006_DeactivateActionSetLayer(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetLayerHandle) { - struct cppISteamInput_SteamInput006_DeactivateActionSetLayer_params params = + struct ISteamInput_SteamInput006_DeactivateActionSetLayer_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, .actionSetLayerHandle = actionSetLayerHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_DeactivateActionSetLayer( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_DeactivateActionSetLayer, ¶ms ); } void __thiscall winISteamInput_SteamInput006_DeactivateAllActionSetLayers(struct w_steam_iface *_this, uint64_t inputHandle) { - struct cppISteamInput_SteamInput006_DeactivateAllActionSetLayers_params params = + struct ISteamInput_SteamInput006_DeactivateAllActionSetLayers_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_DeactivateAllActionSetLayers( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_DeactivateAllActionSetLayers, ¶ms ); } int32_t __thiscall winISteamInput_SteamInput006_GetActiveActionSetLayers(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t *handlesOut) { - struct cppISteamInput_SteamInput006_GetActiveActionSetLayers_params params = + struct ISteamInput_SteamInput006_GetActiveActionSetLayers_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, .handlesOut = handlesOut, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_GetActiveActionSetLayers( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_GetActiveActionSetLayers, ¶ms ); return params._ret; } uint64_t __thiscall winISteamInput_SteamInput006_GetDigitalActionHandle(struct w_steam_iface *_this, const char *pszActionName) { - struct cppISteamInput_SteamInput006_GetDigitalActionHandle_params params = + struct ISteamInput_SteamInput006_GetDigitalActionHandle_params params = { .linux_side = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_GetDigitalActionHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_GetDigitalActionHandle, ¶ms ); return params._ret; } InputDigitalActionData_t * __thiscall winISteamInput_SteamInput006_GetDigitalActionData(struct w_steam_iface *_this, InputDigitalActionData_t *_ret, uint64_t inputHandle, uint64_t digitalActionHandle) { - struct cppISteamInput_SteamInput006_GetDigitalActionData_params params = + struct ISteamInput_SteamInput006_GetDigitalActionData_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -1937,13 +1929,13 @@ InputDigitalActionData_t * __thiscall winISteamInput_SteamInput006_GetDigitalAct .digitalActionHandle = digitalActionHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_GetDigitalActionData( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_GetDigitalActionData, ¶ms ); 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) { - struct cppISteamInput_SteamInput006_GetDigitalActionOrigins_params params = + struct ISteamInput_SteamInput006_GetDigitalActionOrigins_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -1952,37 +1944,37 @@ int32_t __thiscall winISteamInput_SteamInput006_GetDigitalActionOrigins(struct w .originsOut = originsOut, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_GetDigitalActionOrigins( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_GetDigitalActionOrigins, ¶ms ); return params._ret; } const char * __thiscall winISteamInput_SteamInput006_GetStringForDigitalActionName(struct w_steam_iface *_this, uint64_t eActionHandle) { - struct cppISteamInput_SteamInput006_GetStringForDigitalActionName_params params = + struct ISteamInput_SteamInput006_GetStringForDigitalActionName_params params = { .linux_side = _this->u_iface, .eActionHandle = eActionHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_GetStringForDigitalActionName( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_GetStringForDigitalActionName, ¶ms ); return params._ret; } uint64_t __thiscall winISteamInput_SteamInput006_GetAnalogActionHandle(struct w_steam_iface *_this, const char *pszActionName) { - struct cppISteamInput_SteamInput006_GetAnalogActionHandle_params params = + struct ISteamInput_SteamInput006_GetAnalogActionHandle_params params = { .linux_side = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_GetAnalogActionHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_GetAnalogActionHandle, ¶ms ); return params._ret; } InputAnalogActionData_t * __thiscall winISteamInput_SteamInput006_GetAnalogActionData(struct w_steam_iface *_this, InputAnalogActionData_t *_ret, uint64_t inputHandle, uint64_t analogActionHandle) { - struct cppISteamInput_SteamInput006_GetAnalogActionData_params params = + struct ISteamInput_SteamInput006_GetAnalogActionData_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -1990,13 +1982,13 @@ InputAnalogActionData_t * __thiscall winISteamInput_SteamInput006_GetAnalogActio .analogActionHandle = analogActionHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_GetAnalogActionData( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_GetAnalogActionData, ¶ms ); 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) { - struct cppISteamInput_SteamInput006_GetAnalogActionOrigins_params params = + struct ISteamInput_SteamInput006_GetAnalogActionOrigins_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -2005,62 +1997,62 @@ int32_t __thiscall winISteamInput_SteamInput006_GetAnalogActionOrigins(struct w_ .originsOut = originsOut, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_GetAnalogActionOrigins( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_GetAnalogActionOrigins, ¶ms ); return params._ret; } const char * __thiscall winISteamInput_SteamInput006_GetStringForActionOrigin(struct w_steam_iface *_this, uint32_t eOrigin) { - struct cppISteamInput_SteamInput006_GetStringForActionOrigin_params params = + struct ISteamInput_SteamInput006_GetStringForActionOrigin_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_GetStringForActionOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_GetStringForActionOrigin, ¶ms ); return params._ret; } const char * __thiscall winISteamInput_SteamInput006_GetStringForAnalogActionName(struct w_steam_iface *_this, uint64_t eActionHandle) { - struct cppISteamInput_SteamInput006_GetStringForAnalogActionName_params params = + struct ISteamInput_SteamInput006_GetStringForAnalogActionName_params params = { .linux_side = _this->u_iface, .eActionHandle = eActionHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_GetStringForAnalogActionName( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_GetStringForAnalogActionName, ¶ms ); return params._ret; } void __thiscall winISteamInput_SteamInput006_StopAnalogActionMomentum(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t eAction) { - struct cppISteamInput_SteamInput006_StopAnalogActionMomentum_params params = + struct ISteamInput_SteamInput006_StopAnalogActionMomentum_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, .eAction = eAction, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_StopAnalogActionMomentum( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_StopAnalogActionMomentum, ¶ms ); } InputMotionData_t * __thiscall winISteamInput_SteamInput006_GetMotionData(struct w_steam_iface *_this, InputMotionData_t *_ret, uint64_t inputHandle) { - struct cppISteamInput_SteamInput006_GetMotionData_params params = + struct ISteamInput_SteamInput006_GetMotionData_params params = { .linux_side = _this->u_iface, ._ret = _ret, .inputHandle = inputHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_GetMotionData( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_GetMotionData, ¶ms ); return params._ret; } void __thiscall winISteamInput_SteamInput006_TriggerVibration(struct w_steam_iface *_this, uint64_t inputHandle, uint16_t usLeftSpeed, uint16_t usRightSpeed) { - struct cppISteamInput_SteamInput006_TriggerVibration_params params = + struct ISteamInput_SteamInput006_TriggerVibration_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -2068,12 +2060,12 @@ void __thiscall winISteamInput_SteamInput006_TriggerVibration(struct w_steam_ifa .usRightSpeed = usRightSpeed, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_TriggerVibration( ¶ms ); + 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) { - struct cppISteamInput_SteamInput006_TriggerVibrationExtended_params params = + struct ISteamInput_SteamInput006_TriggerVibrationExtended_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -2083,12 +2075,12 @@ void __thiscall winISteamInput_SteamInput006_TriggerVibrationExtended(struct w_s .usRightTriggerSpeed = usRightTriggerSpeed, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_TriggerVibrationExtended( ¶ms ); + 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) { - struct cppISteamInput_SteamInput006_TriggerSimpleHapticEvent_params params = + struct ISteamInput_SteamInput006_TriggerSimpleHapticEvent_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -2099,12 +2091,12 @@ void __thiscall winISteamInput_SteamInput006_TriggerSimpleHapticEvent(struct w_s .nOtherGainDB = nOtherGainDB, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_TriggerSimpleHapticEvent( ¶ms ); + 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) { - struct cppISteamInput_SteamInput006_SetLEDColor_params params = + struct ISteamInput_SteamInput006_SetLEDColor_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -2114,12 +2106,12 @@ void __thiscall winISteamInput_SteamInput006_SetLEDColor(struct w_steam_iface *_ .nFlags = nFlags, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_SetLEDColor( ¶ms ); + 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) { - struct cppISteamInput_SteamInput006_Legacy_TriggerHapticPulse_params params = + struct ISteamInput_SteamInput006_Legacy_TriggerHapticPulse_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -2127,12 +2119,12 @@ void __thiscall winISteamInput_SteamInput006_Legacy_TriggerHapticPulse(struct w_ .usDurationMicroSec = usDurationMicroSec, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_Legacy_TriggerHapticPulse( ¶ms ); + 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) { - struct cppISteamInput_SteamInput006_Legacy_TriggerRepeatedHapticPulse_params params = + struct ISteamInput_SteamInput006_Legacy_TriggerRepeatedHapticPulse_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -2143,98 +2135,98 @@ void __thiscall winISteamInput_SteamInput006_Legacy_TriggerRepeatedHapticPulse(s .nFlags = nFlags, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_Legacy_TriggerRepeatedHapticPulse( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_Legacy_TriggerRepeatedHapticPulse, ¶ms ); } bool __thiscall winISteamInput_SteamInput006_ShowBindingPanel(struct w_steam_iface *_this, uint64_t inputHandle) { - struct cppISteamInput_SteamInput006_ShowBindingPanel_params params = + struct ISteamInput_SteamInput006_ShowBindingPanel_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_ShowBindingPanel( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_ShowBindingPanel, ¶ms ); return params._ret; } uint32_t __thiscall winISteamInput_SteamInput006_GetInputTypeForHandle(struct w_steam_iface *_this, uint64_t inputHandle) { - struct cppISteamInput_SteamInput006_GetInputTypeForHandle_params params = + struct ISteamInput_SteamInput006_GetInputTypeForHandle_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_GetInputTypeForHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_GetInputTypeForHandle, ¶ms ); return params._ret; } uint64_t __thiscall winISteamInput_SteamInput006_GetControllerForGamepadIndex(struct w_steam_iface *_this, int32_t nIndex) { - struct cppISteamInput_SteamInput006_GetControllerForGamepadIndex_params params = + struct ISteamInput_SteamInput006_GetControllerForGamepadIndex_params params = { .linux_side = _this->u_iface, .nIndex = nIndex, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_GetControllerForGamepadIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_GetControllerForGamepadIndex, ¶ms ); return params._ret; } int32_t __thiscall winISteamInput_SteamInput006_GetGamepadIndexForController(struct w_steam_iface *_this, uint64_t ulinputHandle) { - struct cppISteamInput_SteamInput006_GetGamepadIndexForController_params params = + struct ISteamInput_SteamInput006_GetGamepadIndexForController_params params = { .linux_side = _this->u_iface, .ulinputHandle = ulinputHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_GetGamepadIndexForController( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_GetGamepadIndexForController, ¶ms ); return params._ret; } const char * __thiscall winISteamInput_SteamInput006_GetStringForXboxOrigin(struct w_steam_iface *_this, uint32_t eOrigin) { - struct cppISteamInput_SteamInput006_GetStringForXboxOrigin_params params = + struct ISteamInput_SteamInput006_GetStringForXboxOrigin_params params = { .linux_side = _this->u_iface, .eOrigin = eOrigin, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_GetStringForXboxOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_GetStringForXboxOrigin, ¶ms ); return params._ret; } uint32_t __thiscall winISteamInput_SteamInput006_GetActionOriginFromXboxOrigin(struct w_steam_iface *_this, uint64_t inputHandle, uint32_t eOrigin) { - struct cppISteamInput_SteamInput006_GetActionOriginFromXboxOrigin_params params = + struct ISteamInput_SteamInput006_GetActionOriginFromXboxOrigin_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, .eOrigin = eOrigin, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_GetActionOriginFromXboxOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_GetActionOriginFromXboxOrigin, ¶ms ); return params._ret; } uint32_t __thiscall winISteamInput_SteamInput006_TranslateActionOrigin(struct w_steam_iface *_this, uint32_t eDestinationInputType, uint32_t eSourceOrigin) { - struct cppISteamInput_SteamInput006_TranslateActionOrigin_params params = + struct ISteamInput_SteamInput006_TranslateActionOrigin_params params = { .linux_side = _this->u_iface, .eDestinationInputType = eDestinationInputType, .eSourceOrigin = eSourceOrigin, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_TranslateActionOrigin( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_TranslateActionOrigin, ¶ms ); return params._ret; } bool __thiscall winISteamInput_SteamInput006_GetDeviceBindingRevision(struct w_steam_iface *_this, uint64_t inputHandle, int32_t *pMajor, int32_t *pMinor) { - struct cppISteamInput_SteamInput006_GetDeviceBindingRevision_params params = + struct ISteamInput_SteamInput006_GetDeviceBindingRevision_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, @@ -2242,43 +2234,43 @@ bool __thiscall winISteamInput_SteamInput006_GetDeviceBindingRevision(struct w_s .pMinor = pMinor, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_GetDeviceBindingRevision( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_GetDeviceBindingRevision, ¶ms ); return params._ret; } uint32_t __thiscall winISteamInput_SteamInput006_GetRemotePlaySessionID(struct w_steam_iface *_this, uint64_t inputHandle) { - struct cppISteamInput_SteamInput006_GetRemotePlaySessionID_params params = + struct ISteamInput_SteamInput006_GetRemotePlaySessionID_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_GetRemotePlaySessionID( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_GetRemotePlaySessionID, ¶ms ); return params._ret; } uint16_t __thiscall winISteamInput_SteamInput006_GetSessionInputConfigurationSettings(struct w_steam_iface *_this) { - struct cppISteamInput_SteamInput006_GetSessionInputConfigurationSettings_params params = + struct ISteamInput_SteamInput006_GetSessionInputConfigurationSettings_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_GetSessionInputConfigurationSettings( ¶ms ); + 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) { - struct cppISteamInput_SteamInput006_SetDualSenseTriggerEffect_params params = + struct ISteamInput_SteamInput006_SetDualSenseTriggerEffect_params params = { .linux_side = _this->u_iface, .inputHandle = inputHandle, .pParam = pParam, }; TRACE("%p\n", _this); - cppISteamInput_SteamInput006_SetDualSenseTriggerEffect( ¶ms ); + STEAMCLIENT_CALL( ISteamInput_SteamInput006_SetDualSenseTriggerEffect, ¶ms ); } extern vtable_ptr winISteamInput_SteamInput006_vtable; diff --git a/lsteamclient/winISteamInventory.c b/lsteamclient/winISteamInventory.c index 00e10ec6..ffd08028 100644 --- a/lsteamclient/winISteamInventory.c +++ b/lsteamclient/winISteamInventory.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamInventory_STEAMINVENTORY_INTERFACE_V001.h" - DEFINE_THISCALL_WRAPPER(winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultStatus, 8) DEFINE_THISCALL_WRAPPER(winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItems, 16) DEFINE_THISCALL_WRAPPER(winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultTimestamp, 8) @@ -32,19 +30,19 @@ DEFINE_THISCALL_WRAPPER(winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetElig uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultStatus(struct w_steam_iface *_this, int32_t resultHandle) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultStatus_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultStatus_params params = { .linux_side = _this->u_iface, .resultHandle = resultHandle, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultStatus, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItems(struct w_steam_iface *_this, int32_t resultHandle, SteamItemDetails_t *pOutItemsArray, uint32_t *punOutItemsArraySize) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItems_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItems_params params = { .linux_side = _this->u_iface, .resultHandle = resultHandle, @@ -52,61 +50,61 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItems( .punOutItemsArraySize = punOutItemsArraySize, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItems( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItems, ¶ms ); return params._ret; } uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultTimestamp(struct w_steam_iface *_this, int32_t resultHandle) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultTimestamp_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultTimestamp_params params = { .linux_side = _this->u_iface, .resultHandle = resultHandle, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultTimestamp( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultTimestamp, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_CheckResultSteamID(struct w_steam_iface *_this, int32_t resultHandle, CSteamID steamIDExpected) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_CheckResultSteamID_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_CheckResultSteamID_params params = { .linux_side = _this->u_iface, .resultHandle = resultHandle, .steamIDExpected = steamIDExpected, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_CheckResultSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V001_CheckResultSteamID, ¶ms ); return params._ret; } void __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_DestroyResult(struct w_steam_iface *_this, int32_t resultHandle) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_DestroyResult_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DestroyResult_params params = { .linux_side = _this->u_iface, .resultHandle = resultHandle, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_DestroyResult( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DestroyResult, ¶ms ); } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetAllItems(struct w_steam_iface *_this, int32_t *pResultHandle) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetAllItems_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetAllItems_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetAllItems( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetAllItems, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID(struct w_steam_iface *_this, int32_t *pResultHandle, const uint64_t *pInstanceIDs, uint32_t unCountInstanceIDs) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, @@ -114,13 +112,13 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID(st .unCountInstanceIDs = unCountInstanceIDs, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult(struct w_steam_iface *_this, int32_t resultHandle, void *pOutBuffer, uint32_t *punOutBufferSize) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult_params params = { .linux_side = _this->u_iface, .resultHandle = resultHandle, @@ -128,13 +126,13 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult .punOutBufferSize = punOutBufferSize, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeResult(struct w_steam_iface *_this, int32_t *pOutResultHandle, const void *pBuffer, uint32_t unBufferSize, bool bRESERVED_MUST_BE_FALSE) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeResult_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeResult_params params = { .linux_side = _this->u_iface, .pOutResultHandle = pOutResultHandle, @@ -143,13 +141,13 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeResu .bRESERVED_MUST_BE_FALSE = bRESERVED_MUST_BE_FALSE, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeResult( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeResult, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayItemDefs, const uint32_t *punArrayQuantity, uint32_t unArrayLength) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, @@ -158,38 +156,38 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems(s .unArrayLength = unArrayLength, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GrantPromoItems(struct w_steam_iface *_this, int32_t *pResultHandle) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GrantPromoItems_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GrantPromoItems_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GrantPromoItems( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GrantPromoItems, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem(struct w_steam_iface *_this, int32_t *pResultHandle, int32_t itemDef) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, .itemDef = itemDef, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayItemDefs, uint32_t unArrayLength) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, @@ -197,13 +195,13 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems(s .unArrayLength = unArrayLength, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem(struct w_steam_iface *_this, int32_t *pResultHandle, uint64_t itemConsume, uint32_t unQuantity) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, @@ -211,13 +209,13 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem(str .unQuantity = unQuantity, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayGenerate, const uint32_t *punArrayGenerateQuantity, uint32_t unArrayGenerateLength, const uint64_t *pArrayDestroy, const uint32_t *punArrayDestroyQuantity, uint32_t unArrayDestroyLength) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, @@ -229,13 +227,13 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems(s .unArrayDestroyLength = unArrayDestroyLength, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_TransferItemQuantity(struct w_steam_iface *_this, int32_t *pResultHandle, uint64_t itemIdSource, uint32_t unQuantity, uint64_t itemIdDest) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_TransferItemQuantity_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TransferItemQuantity_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, @@ -244,36 +242,36 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_TransferItemQua .itemIdDest = itemIdDest, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_TransferItemQuantity( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TransferItemQuantity, ¶ms ); return params._ret; } void __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_SendItemDropHeartbeat(struct w_steam_iface *_this) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_SendItemDropHeartbeat_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SendItemDropHeartbeat_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_SendItemDropHeartbeat( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SendItemDropHeartbeat, ¶ms ); } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDrop(struct w_steam_iface *_this, int32_t *pResultHandle, int32_t dropListDefinition) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDrop_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDrop_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, .dropListDefinition = dropListDefinition, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDrop( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDrop, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems(struct w_steam_iface *_this, int32_t *pResultHandle, CSteamID steamIDTradePartner, const uint64_t *pArrayGive, const uint32_t *pArrayGiveQuantity, uint32_t nArrayGiveLength, const uint64_t *pArrayGet, const uint32_t *pArrayGetQuantity, uint32_t nArrayGetLength) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, @@ -286,37 +284,37 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems(stru .nArrayGetLength = nArrayGetLength, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_LoadItemDefinitions(struct w_steam_iface *_this) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_LoadItemDefinitions_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_LoadItemDefinitions_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_LoadItemDefinitions( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V001_LoadItemDefinitions, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionIDs(struct w_steam_iface *_this, int32_t *pItemDefIDs, uint32_t *punItemDefIDsArraySize) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionIDs_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionIDs_params params = { .linux_side = _this->u_iface, .pItemDefIDs = pItemDefIDs, .punItemDefIDsArraySize = punItemDefIDsArraySize, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionIDs( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionIDs, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionProperty(struct w_steam_iface *_this, int32_t iDefinition, const char *pchPropertyName, char *pchValueBuffer, uint32_t *punValueBufferSizeOut) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionProperty_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionProperty_params params = { .linux_side = _this->u_iface, .iDefinition = iDefinition, @@ -325,25 +323,25 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefiniti .punValueBufferSizeOut = punValueBufferSizeOut, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionProperty( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionProperty, ¶ms ); return params._ret; } uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_RequestEligiblePromoItemDefinitionsIDs(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_RequestEligiblePromoItemDefinitionsIDs_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_RequestEligiblePromoItemDefinitionsIDs_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_RequestEligiblePromoItemDefinitionsIDs( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V001_RequestEligiblePromoItemDefinitionsIDs, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetEligiblePromoItemDefinitionIDs(struct w_steam_iface *_this, CSteamID steamID, int32_t *pItemDefIDs, uint32_t *punItemDefIDsArraySize) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetEligiblePromoItemDefinitionIDs_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetEligiblePromoItemDefinitionIDs_params params = { .linux_side = _this->u_iface, .steamID = steamID, @@ -351,7 +349,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetEligibleProm .punItemDefIDsArraySize = punItemDefIDsArraySize, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetEligiblePromoItemDefinitionIDs( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetEligiblePromoItemDefinitionIDs, ¶ms ); return params._ret; } @@ -397,8 +395,6 @@ struct w_steam_iface *create_winISteamInventory_STEAMINVENTORY_INTERFACE_V001(vo return r; } -#include "cppISteamInventory_STEAMINVENTORY_INTERFACE_V002.h" - DEFINE_THISCALL_WRAPPER(winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultStatus, 8) DEFINE_THISCALL_WRAPPER(winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems, 16) DEFINE_THISCALL_WRAPPER(winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItemProperty, 24) @@ -439,19 +435,19 @@ DEFINE_THISCALL_WRAPPER(winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SubmitU uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultStatus(struct w_steam_iface *_this, int32_t resultHandle) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultStatus_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultStatus_params params = { .linux_side = _this->u_iface, .resultHandle = resultHandle, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultStatus, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems(struct w_steam_iface *_this, int32_t resultHandle, SteamItemDetails_t *pOutItemsArray, uint32_t *punOutItemsArraySize) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems_params params = { .linux_side = _this->u_iface, .resultHandle = resultHandle, @@ -459,13 +455,13 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems( .punOutItemsArraySize = punOutItemsArraySize, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItemProperty(struct w_steam_iface *_this, int32_t resultHandle, uint32_t unItemIndex, const char *pchPropertyName, char *pchValueBuffer, uint32_t *punValueBufferSizeOut) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItemProperty_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItemProperty_params params = { .linux_side = _this->u_iface, .resultHandle = resultHandle, @@ -475,61 +471,61 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItemPr .punValueBufferSizeOut = punValueBufferSizeOut, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItemProperty( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItemProperty, ¶ms ); return params._ret; } uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultTimestamp(struct w_steam_iface *_this, int32_t resultHandle) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultTimestamp_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultTimestamp_params params = { .linux_side = _this->u_iface, .resultHandle = resultHandle, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultTimestamp( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultTimestamp, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_CheckResultSteamID(struct w_steam_iface *_this, int32_t resultHandle, CSteamID steamIDExpected) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_CheckResultSteamID_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_CheckResultSteamID_params params = { .linux_side = _this->u_iface, .resultHandle = resultHandle, .steamIDExpected = steamIDExpected, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_CheckResultSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_CheckResultSteamID, ¶ms ); return params._ret; } void __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_DestroyResult(struct w_steam_iface *_this, int32_t resultHandle) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_DestroyResult_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DestroyResult_params params = { .linux_side = _this->u_iface, .resultHandle = resultHandle, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_DestroyResult( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DestroyResult, ¶ms ); } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetAllItems(struct w_steam_iface *_this, int32_t *pResultHandle) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetAllItems_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetAllItems_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetAllItems( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetAllItems, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID(struct w_steam_iface *_this, int32_t *pResultHandle, const uint64_t *pInstanceIDs, uint32_t unCountInstanceIDs) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, @@ -537,13 +533,13 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID(st .unCountInstanceIDs = unCountInstanceIDs, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult(struct w_steam_iface *_this, int32_t resultHandle, void *pOutBuffer, uint32_t *punOutBufferSize) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult_params params = { .linux_side = _this->u_iface, .resultHandle = resultHandle, @@ -551,13 +547,13 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult .punOutBufferSize = punOutBufferSize, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeResult(struct w_steam_iface *_this, int32_t *pOutResultHandle, const void *pBuffer, uint32_t unBufferSize, bool bRESERVED_MUST_BE_FALSE) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeResult_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeResult_params params = { .linux_side = _this->u_iface, .pOutResultHandle = pOutResultHandle, @@ -566,13 +562,13 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeResu .bRESERVED_MUST_BE_FALSE = bRESERVED_MUST_BE_FALSE, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeResult( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeResult, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayItemDefs, const uint32_t *punArrayQuantity, uint32_t unArrayLength) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, @@ -581,38 +577,38 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems(s .unArrayLength = unArrayLength, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GrantPromoItems(struct w_steam_iface *_this, int32_t *pResultHandle) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GrantPromoItems_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GrantPromoItems_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GrantPromoItems( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GrantPromoItems, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem(struct w_steam_iface *_this, int32_t *pResultHandle, int32_t itemDef) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, .itemDef = itemDef, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayItemDefs, uint32_t unArrayLength) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, @@ -620,13 +616,13 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems(s .unArrayLength = unArrayLength, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem(struct w_steam_iface *_this, int32_t *pResultHandle, uint64_t itemConsume, uint32_t unQuantity) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, @@ -634,13 +630,13 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem(str .unQuantity = unQuantity, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayGenerate, const uint32_t *punArrayGenerateQuantity, uint32_t unArrayGenerateLength, const uint64_t *pArrayDestroy, const uint32_t *punArrayDestroyQuantity, uint32_t unArrayDestroyLength) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, @@ -652,13 +648,13 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems(s .unArrayDestroyLength = unArrayDestroyLength, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_TransferItemQuantity(struct w_steam_iface *_this, int32_t *pResultHandle, uint64_t itemIdSource, uint32_t unQuantity, uint64_t itemIdDest) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_TransferItemQuantity_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TransferItemQuantity_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, @@ -667,36 +663,36 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_TransferItemQua .itemIdDest = itemIdDest, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_TransferItemQuantity( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TransferItemQuantity, ¶ms ); return params._ret; } void __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SendItemDropHeartbeat(struct w_steam_iface *_this) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SendItemDropHeartbeat_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SendItemDropHeartbeat_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SendItemDropHeartbeat( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SendItemDropHeartbeat, ¶ms ); } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDrop(struct w_steam_iface *_this, int32_t *pResultHandle, int32_t dropListDefinition) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDrop_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDrop_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, .dropListDefinition = dropListDefinition, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDrop( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDrop, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems(struct w_steam_iface *_this, int32_t *pResultHandle, CSteamID steamIDTradePartner, const uint64_t *pArrayGive, const uint32_t *pArrayGiveQuantity, uint32_t nArrayGiveLength, const uint64_t *pArrayGet, const uint32_t *pArrayGetQuantity, uint32_t nArrayGetLength) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, @@ -709,37 +705,37 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems(stru .nArrayGetLength = nArrayGetLength, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_LoadItemDefinitions(struct w_steam_iface *_this) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_LoadItemDefinitions_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_LoadItemDefinitions_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_LoadItemDefinitions( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_LoadItemDefinitions, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionIDs(struct w_steam_iface *_this, int32_t *pItemDefIDs, uint32_t *punItemDefIDsArraySize) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionIDs_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionIDs_params params = { .linux_side = _this->u_iface, .pItemDefIDs = pItemDefIDs, .punItemDefIDsArraySize = punItemDefIDsArraySize, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionIDs( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionIDs, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionProperty(struct w_steam_iface *_this, int32_t iDefinition, const char *pchPropertyName, char *pchValueBuffer, uint32_t *punValueBufferSizeOut) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionProperty_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionProperty_params params = { .linux_side = _this->u_iface, .iDefinition = iDefinition, @@ -748,25 +744,25 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefiniti .punValueBufferSizeOut = punValueBufferSizeOut, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionProperty( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionProperty, ¶ms ); return params._ret; } uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestEligiblePromoItemDefinitionsIDs(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestEligiblePromoItemDefinitionsIDs_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestEligiblePromoItemDefinitionsIDs_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestEligiblePromoItemDefinitionsIDs( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestEligiblePromoItemDefinitionsIDs, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetEligiblePromoItemDefinitionIDs(struct w_steam_iface *_this, CSteamID steamID, int32_t *pItemDefIDs, uint32_t *punItemDefIDsArraySize) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetEligiblePromoItemDefinitionIDs_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetEligiblePromoItemDefinitionIDs_params params = { .linux_side = _this->u_iface, .steamID = steamID, @@ -774,13 +770,13 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetEligibleProm .punItemDefIDsArraySize = punItemDefIDsArraySize, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetEligiblePromoItemDefinitionIDs( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetEligiblePromoItemDefinitionIDs, ¶ms ); 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) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartPurchase_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartPurchase_params params = { .linux_side = _this->u_iface, .pArrayItemDefs = pArrayItemDefs, @@ -788,35 +784,35 @@ uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartPurcha .unArrayLength = unArrayLength, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartPurchase( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartPurchase, ¶ms ); return params._ret; } uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestPrices(struct w_steam_iface *_this) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestPrices_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestPrices_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestPrices( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestPrices, ¶ms ); return params._ret; } uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetNumItemsWithPrices(struct w_steam_iface *_this) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetNumItemsWithPrices_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetNumItemsWithPrices_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetNumItemsWithPrices( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetNumItemsWithPrices, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPrices(struct w_steam_iface *_this, int32_t *pArrayItemDefs, uint64_t *pPrices, uint32_t unArrayLength) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPrices_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPrices_params params = { .linux_side = _this->u_iface, .pArrayItemDefs = pArrayItemDefs, @@ -824,37 +820,37 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPri .unArrayLength = unArrayLength, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPrices( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPrices, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemPrice(struct w_steam_iface *_this, int32_t iDefinition, uint64_t *pPrice) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemPrice_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemPrice_params params = { .linux_side = _this->u_iface, .iDefinition = iDefinition, .pPrice = pPrice, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemPrice( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemPrice, ¶ms ); return params._ret; } uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartUpdateProperties(struct w_steam_iface *_this) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartUpdateProperties_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartUpdateProperties_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartUpdateProperties( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartUpdateProperties, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -862,13 +858,13 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty( .pchPropertyName = pchPropertyName, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, const char *pchPropertyValue) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -877,13 +873,13 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty(str .pchPropertyValue = pchPropertyValue, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, bool bValue) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -892,13 +888,13 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2(s .bValue = bValue, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, int64_t nValue) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -907,13 +903,13 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3(s .nValue = nValue, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, float flValue) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -922,20 +918,20 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4(s .flValue = flValue, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SubmitUpdateProperties(struct w_steam_iface *_this, uint64_t handle, int32_t *pResultHandle) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SubmitUpdateProperties_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SubmitUpdateProperties_params params = { .linux_side = _this->u_iface, .handle = handle, .pResultHandle = pResultHandle, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V002_SubmitUpdateProperties( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SubmitUpdateProperties, ¶ms ); return params._ret; } @@ -994,8 +990,6 @@ struct w_steam_iface *create_winISteamInventory_STEAMINVENTORY_INTERFACE_V002(vo return r; } -#include "cppISteamInventory_STEAMINVENTORY_INTERFACE_V003.h" - DEFINE_THISCALL_WRAPPER(winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultStatus, 8) DEFINE_THISCALL_WRAPPER(winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems, 16) DEFINE_THISCALL_WRAPPER(winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItemProperty, 24) @@ -1037,19 +1031,19 @@ DEFINE_THISCALL_WRAPPER(winISteamInventory_STEAMINVENTORY_INTERFACE_V003_Inspect uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultStatus(struct w_steam_iface *_this, int32_t resultHandle) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultStatus_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultStatus_params params = { .linux_side = _this->u_iface, .resultHandle = resultHandle, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultStatus, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems(struct w_steam_iface *_this, int32_t resultHandle, SteamItemDetails_t *pOutItemsArray, uint32_t *punOutItemsArraySize) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems_params params = { .linux_side = _this->u_iface, .resultHandle = resultHandle, @@ -1057,13 +1051,13 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems( .punOutItemsArraySize = punOutItemsArraySize, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItemProperty(struct w_steam_iface *_this, int32_t resultHandle, uint32_t unItemIndex, const char *pchPropertyName, char *pchValueBuffer, uint32_t *punValueBufferSizeOut) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItemProperty_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItemProperty_params params = { .linux_side = _this->u_iface, .resultHandle = resultHandle, @@ -1073,61 +1067,61 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItemPr .punValueBufferSizeOut = punValueBufferSizeOut, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItemProperty( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItemProperty, ¶ms ); return params._ret; } uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultTimestamp(struct w_steam_iface *_this, int32_t resultHandle) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultTimestamp_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultTimestamp_params params = { .linux_side = _this->u_iface, .resultHandle = resultHandle, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultTimestamp( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultTimestamp, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_CheckResultSteamID(struct w_steam_iface *_this, int32_t resultHandle, CSteamID steamIDExpected) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_CheckResultSteamID_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_CheckResultSteamID_params params = { .linux_side = _this->u_iface, .resultHandle = resultHandle, .steamIDExpected = steamIDExpected, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_CheckResultSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_CheckResultSteamID, ¶ms ); return params._ret; } void __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_DestroyResult(struct w_steam_iface *_this, int32_t resultHandle) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_DestroyResult_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DestroyResult_params params = { .linux_side = _this->u_iface, .resultHandle = resultHandle, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_DestroyResult( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DestroyResult, ¶ms ); } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetAllItems(struct w_steam_iface *_this, int32_t *pResultHandle) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetAllItems_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetAllItems_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetAllItems( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetAllItems, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID(struct w_steam_iface *_this, int32_t *pResultHandle, const uint64_t *pInstanceIDs, uint32_t unCountInstanceIDs) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, @@ -1135,13 +1129,13 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID(st .unCountInstanceIDs = unCountInstanceIDs, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult(struct w_steam_iface *_this, int32_t resultHandle, void *pOutBuffer, uint32_t *punOutBufferSize) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult_params params = { .linux_side = _this->u_iface, .resultHandle = resultHandle, @@ -1149,13 +1143,13 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult .punOutBufferSize = punOutBufferSize, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeResult(struct w_steam_iface *_this, int32_t *pOutResultHandle, const void *pBuffer, uint32_t unBufferSize, bool bRESERVED_MUST_BE_FALSE) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeResult_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeResult_params params = { .linux_side = _this->u_iface, .pOutResultHandle = pOutResultHandle, @@ -1164,13 +1158,13 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeResu .bRESERVED_MUST_BE_FALSE = bRESERVED_MUST_BE_FALSE, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeResult( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeResult, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayItemDefs, const uint32_t *punArrayQuantity, uint32_t unArrayLength) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, @@ -1179,38 +1173,38 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems(s .unArrayLength = unArrayLength, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GrantPromoItems(struct w_steam_iface *_this, int32_t *pResultHandle) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GrantPromoItems_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GrantPromoItems_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GrantPromoItems( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GrantPromoItems, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem(struct w_steam_iface *_this, int32_t *pResultHandle, int32_t itemDef) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, .itemDef = itemDef, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayItemDefs, uint32_t unArrayLength) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, @@ -1218,13 +1212,13 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems(s .unArrayLength = unArrayLength, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem(struct w_steam_iface *_this, int32_t *pResultHandle, uint64_t itemConsume, uint32_t unQuantity) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, @@ -1232,13 +1226,13 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem(str .unQuantity = unQuantity, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayGenerate, const uint32_t *punArrayGenerateQuantity, uint32_t unArrayGenerateLength, const uint64_t *pArrayDestroy, const uint32_t *punArrayDestroyQuantity, uint32_t unArrayDestroyLength) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, @@ -1250,13 +1244,13 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems(s .unArrayDestroyLength = unArrayDestroyLength, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_TransferItemQuantity(struct w_steam_iface *_this, int32_t *pResultHandle, uint64_t itemIdSource, uint32_t unQuantity, uint64_t itemIdDest) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_TransferItemQuantity_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TransferItemQuantity_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, @@ -1265,36 +1259,36 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_TransferItemQua .itemIdDest = itemIdDest, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_TransferItemQuantity( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TransferItemQuantity, ¶ms ); return params._ret; } void __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SendItemDropHeartbeat(struct w_steam_iface *_this) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SendItemDropHeartbeat_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SendItemDropHeartbeat_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SendItemDropHeartbeat( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SendItemDropHeartbeat, ¶ms ); } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDrop(struct w_steam_iface *_this, int32_t *pResultHandle, int32_t dropListDefinition) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDrop_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDrop_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, .dropListDefinition = dropListDefinition, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDrop( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDrop, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems(struct w_steam_iface *_this, int32_t *pResultHandle, CSteamID steamIDTradePartner, const uint64_t *pArrayGive, const uint32_t *pArrayGiveQuantity, uint32_t nArrayGiveLength, const uint64_t *pArrayGet, const uint32_t *pArrayGetQuantity, uint32_t nArrayGetLength) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, @@ -1307,37 +1301,37 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems(stru .nArrayGetLength = nArrayGetLength, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_LoadItemDefinitions(struct w_steam_iface *_this) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_LoadItemDefinitions_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_LoadItemDefinitions_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_LoadItemDefinitions( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_LoadItemDefinitions, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionIDs(struct w_steam_iface *_this, int32_t *pItemDefIDs, uint32_t *punItemDefIDsArraySize) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionIDs_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionIDs_params params = { .linux_side = _this->u_iface, .pItemDefIDs = pItemDefIDs, .punItemDefIDsArraySize = punItemDefIDsArraySize, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionIDs( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionIDs, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionProperty(struct w_steam_iface *_this, int32_t iDefinition, const char *pchPropertyName, char *pchValueBuffer, uint32_t *punValueBufferSizeOut) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionProperty_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionProperty_params params = { .linux_side = _this->u_iface, .iDefinition = iDefinition, @@ -1346,25 +1340,25 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefiniti .punValueBufferSizeOut = punValueBufferSizeOut, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionProperty( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionProperty, ¶ms ); return params._ret; } uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestEligiblePromoItemDefinitionsIDs(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestEligiblePromoItemDefinitionsIDs_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestEligiblePromoItemDefinitionsIDs_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestEligiblePromoItemDefinitionsIDs( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestEligiblePromoItemDefinitionsIDs, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetEligiblePromoItemDefinitionIDs(struct w_steam_iface *_this, CSteamID steamID, int32_t *pItemDefIDs, uint32_t *punItemDefIDsArraySize) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetEligiblePromoItemDefinitionIDs_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetEligiblePromoItemDefinitionIDs_params params = { .linux_side = _this->u_iface, .steamID = steamID, @@ -1372,13 +1366,13 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetEligibleProm .punItemDefIDsArraySize = punItemDefIDsArraySize, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetEligiblePromoItemDefinitionIDs( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetEligiblePromoItemDefinitionIDs, ¶ms ); 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) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartPurchase_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartPurchase_params params = { .linux_side = _this->u_iface, .pArrayItemDefs = pArrayItemDefs, @@ -1386,35 +1380,35 @@ uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartPurcha .unArrayLength = unArrayLength, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartPurchase( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartPurchase, ¶ms ); return params._ret; } uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestPrices(struct w_steam_iface *_this) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestPrices_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestPrices_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestPrices( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestPrices, ¶ms ); return params._ret; } uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetNumItemsWithPrices(struct w_steam_iface *_this) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetNumItemsWithPrices_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetNumItemsWithPrices_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetNumItemsWithPrices( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetNumItemsWithPrices, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPrices(struct w_steam_iface *_this, int32_t *pArrayItemDefs, uint64_t *pCurrentPrices, uint64_t *pBasePrices, uint32_t unArrayLength) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPrices_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPrices_params params = { .linux_side = _this->u_iface, .pArrayItemDefs = pArrayItemDefs, @@ -1423,13 +1417,13 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPri .unArrayLength = unArrayLength, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPrices( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPrices, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemPrice(struct w_steam_iface *_this, int32_t iDefinition, uint64_t *pCurrentPrice, uint64_t *pBasePrice) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemPrice_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemPrice_params params = { .linux_side = _this->u_iface, .iDefinition = iDefinition, @@ -1437,24 +1431,24 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemPrice(st .pBasePrice = pBasePrice, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemPrice( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemPrice, ¶ms ); return params._ret; } uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartUpdateProperties(struct w_steam_iface *_this) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartUpdateProperties_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartUpdateProperties_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartUpdateProperties( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartUpdateProperties, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -1462,13 +1456,13 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty( .pchPropertyName = pchPropertyName, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, const char *pchPropertyValue) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -1477,13 +1471,13 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty(str .pchPropertyValue = pchPropertyValue, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, bool bValue) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -1492,13 +1486,13 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2(s .bValue = bValue, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, int64_t nValue) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -1507,13 +1501,13 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3(s .nValue = nValue, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, float flValue) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -1522,33 +1516,33 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4(s .flValue = flValue, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateProperties(struct w_steam_iface *_this, uint64_t handle, int32_t *pResultHandle) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateProperties_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateProperties_params params = { .linux_side = _this->u_iface, .handle = handle, .pResultHandle = pResultHandle, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateProperties( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateProperties, ¶ms ); return params._ret; } bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_InspectItem(struct w_steam_iface *_this, int32_t *pResultHandle, const char *pchItemToken) { - struct cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_InspectItem_params params = + struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_InspectItem_params params = { .linux_side = _this->u_iface, .pResultHandle = pResultHandle, .pchItemToken = pchItemToken, }; TRACE("%p\n", _this); - cppISteamInventory_STEAMINVENTORY_INTERFACE_V003_InspectItem( ¶ms ); + STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_InspectItem, ¶ms ); return params._ret; } diff --git a/lsteamclient/winISteamMasterServerUpdater.c b/lsteamclient/winISteamMasterServerUpdater.c index b6fdf0b3..b793d966 100644 --- a/lsteamclient/winISteamMasterServerUpdater.c +++ b/lsteamclient/winISteamMasterServerUpdater.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamMasterServerUpdater_SteamMasterServerUpdater001.h" - DEFINE_THISCALL_WRAPPER(winISteamMasterServerUpdater_SteamMasterServerUpdater001_SetActive, 8) DEFINE_THISCALL_WRAPPER(winISteamMasterServerUpdater_SteamMasterServerUpdater001_SetHeartbeatInterval, 8) DEFINE_THISCALL_WRAPPER(winISteamMasterServerUpdater_SteamMasterServerUpdater001_HandleIncomingPacket, 20) @@ -22,29 +20,29 @@ DEFINE_THISCALL_WRAPPER(winISteamMasterServerUpdater_SteamMasterServerUpdater001 void __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_SetActive(struct w_steam_iface *_this, bool bActive) { - struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_SetActive_params params = + struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetActive_params params = { .linux_side = _this->u_iface, .bActive = bActive, }; TRACE("%p\n", _this); - cppISteamMasterServerUpdater_SteamMasterServerUpdater001_SetActive( ¶ms ); + STEAMCLIENT_CALL( ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetActive, ¶ms ); } void __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_SetHeartbeatInterval(struct w_steam_iface *_this, int32_t iHeartbeatInterval) { - struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_SetHeartbeatInterval_params params = + struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetHeartbeatInterval_params params = { .linux_side = _this->u_iface, .iHeartbeatInterval = iHeartbeatInterval, }; TRACE("%p\n", _this); - cppISteamMasterServerUpdater_SteamMasterServerUpdater001_SetHeartbeatInterval( ¶ms ); + STEAMCLIENT_CALL( ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetHeartbeatInterval, ¶ms ); } bool __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_HandleIncomingPacket(struct w_steam_iface *_this, const void *pData, int32_t cbData, uint32_t srcIP, uint16_t srcPort) { - struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_HandleIncomingPacket_params params = + struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_HandleIncomingPacket_params params = { .linux_side = _this->u_iface, .pData = pData, @@ -53,13 +51,13 @@ bool __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_HandleI .srcPort = srcPort, }; TRACE("%p\n", _this); - cppISteamMasterServerUpdater_SteamMasterServerUpdater001_HandleIncomingPacket( ¶ms ); + STEAMCLIENT_CALL( ISteamMasterServerUpdater_SteamMasterServerUpdater001_HandleIncomingPacket, ¶ms ); 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) { - struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNextOutgoingPacket_params params = + struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNextOutgoingPacket_params params = { .linux_side = _this->u_iface, .pOut = pOut, @@ -68,13 +66,13 @@ int32_t __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_GetN .pPort = pPort, }; TRACE("%p\n", _this); - cppISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNextOutgoingPacket( ¶ms ); + STEAMCLIENT_CALL( ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNextOutgoingPacket, ¶ms ); return params._ret; } void __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasicServerData(struct w_steam_iface *_this, uint16_t nProtocolVersion, bool bDedicatedServer, const char *pRegionName, const char *pProductName, uint16_t nMaxReportedClients, bool bPasswordProtected, const char *pGameDescription) { - struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasicServerData_params params = + struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasicServerData_params params = { .linux_side = _this->u_iface, .nProtocolVersion = nProtocolVersion, @@ -86,100 +84,100 @@ void __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasi .pGameDescription = pGameDescription, }; TRACE("%p\n", _this); - cppISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasicServerData( ¶ms ); + STEAMCLIENT_CALL( ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasicServerData, ¶ms ); } void __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_ClearAllKeyValues(struct w_steam_iface *_this) { - struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_ClearAllKeyValues_params params = + struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_ClearAllKeyValues_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMasterServerUpdater_SteamMasterServerUpdater001_ClearAllKeyValues( ¶ms ); + STEAMCLIENT_CALL( ISteamMasterServerUpdater_SteamMasterServerUpdater001_ClearAllKeyValues, ¶ms ); } void __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_SetKeyValue(struct w_steam_iface *_this, const char *pKey, const char *pValue) { - struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_SetKeyValue_params params = + struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetKeyValue_params params = { .linux_side = _this->u_iface, .pKey = pKey, .pValue = pValue, }; TRACE("%p\n", _this); - cppISteamMasterServerUpdater_SteamMasterServerUpdater001_SetKeyValue( ¶ms ); + STEAMCLIENT_CALL( ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetKeyValue, ¶ms ); } void __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_NotifyShutdown(struct w_steam_iface *_this) { - struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_NotifyShutdown_params params = + struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_NotifyShutdown_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMasterServerUpdater_SteamMasterServerUpdater001_NotifyShutdown( ¶ms ); + STEAMCLIENT_CALL( ISteamMasterServerUpdater_SteamMasterServerUpdater001_NotifyShutdown, ¶ms ); } bool __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_WasRestartRequested(struct w_steam_iface *_this) { - struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_WasRestartRequested_params params = + struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_WasRestartRequested_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMasterServerUpdater_SteamMasterServerUpdater001_WasRestartRequested( ¶ms ); + STEAMCLIENT_CALL( ISteamMasterServerUpdater_SteamMasterServerUpdater001_WasRestartRequested, ¶ms ); return params._ret; } void __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_ForceHeartbeat(struct w_steam_iface *_this) { - struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_ForceHeartbeat_params params = + struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_ForceHeartbeat_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMasterServerUpdater_SteamMasterServerUpdater001_ForceHeartbeat( ¶ms ); + STEAMCLIENT_CALL( ISteamMasterServerUpdater_SteamMasterServerUpdater001_ForceHeartbeat, ¶ms ); } bool __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_AddMasterServer(struct w_steam_iface *_this, const char *pServerAddress) { - struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_AddMasterServer_params params = + struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_AddMasterServer_params params = { .linux_side = _this->u_iface, .pServerAddress = pServerAddress, }; TRACE("%p\n", _this); - cppISteamMasterServerUpdater_SteamMasterServerUpdater001_AddMasterServer( ¶ms ); + STEAMCLIENT_CALL( ISteamMasterServerUpdater_SteamMasterServerUpdater001_AddMasterServer, ¶ms ); return params._ret; } bool __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_RemoveMasterServer(struct w_steam_iface *_this, const char *pServerAddress) { - struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_RemoveMasterServer_params params = + struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_RemoveMasterServer_params params = { .linux_side = _this->u_iface, .pServerAddress = pServerAddress, }; TRACE("%p\n", _this); - cppISteamMasterServerUpdater_SteamMasterServerUpdater001_RemoveMasterServer( ¶ms ); + STEAMCLIENT_CALL( ISteamMasterServerUpdater_SteamMasterServerUpdater001_RemoveMasterServer, ¶ms ); return params._ret; } int32_t __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNumMasterServers(struct w_steam_iface *_this) { - struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNumMasterServers_params params = + struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNumMasterServers_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNumMasterServers( ¶ms ); + 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) { - struct cppISteamMasterServerUpdater_SteamMasterServerUpdater001_GetMasterServerAddress_params params = + struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetMasterServerAddress_params params = { .linux_side = _this->u_iface, .iServer = iServer, @@ -187,7 +185,7 @@ int32_t __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_GetM .outBufferSize = outBufferSize, }; TRACE("%p\n", _this); - cppISteamMasterServerUpdater_SteamMasterServerUpdater001_GetMasterServerAddress( ¶ms ); + STEAMCLIENT_CALL( ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetMasterServerAddress, ¶ms ); return params._ret; } diff --git a/lsteamclient/winISteamMatchmaking.c b/lsteamclient/winISteamMatchmaking.c index e126fc33..13a4d04f 100644 --- a/lsteamclient/winISteamMatchmaking.c +++ b/lsteamclient/winISteamMatchmaking.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamMatchmaking_SteamMatchMaking001.h" - DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking001_GetFavoriteGameCount, 4) DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame, 28) DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame, 24) @@ -30,18 +28,18 @@ DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking001_RequestLobbyDat int32_t __thiscall winISteamMatchmaking_SteamMatchMaking001_GetFavoriteGameCount(struct w_steam_iface *_this) { - struct cppISteamMatchmaking_SteamMatchMaking001_GetFavoriteGameCount_params params = + struct ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGameCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking001_GetFavoriteGameCount( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGameCount, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) { - struct cppISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame_params params = + struct ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame_params params = { .linux_side = _this->u_iface, .iGame = iGame, @@ -52,13 +50,13 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame(struct .pRTime32LastPlayedOnServer = pRTime32LastPlayedOnServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame, ¶ms ); 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) { - struct cppISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame_params params = + struct ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, @@ -68,13 +66,13 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame(stru .rTime32LastPlayedOnServer = rTime32LastPlayedOnServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint32_t unFlags) { - struct cppISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame_params params = + struct ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, @@ -83,13 +81,13 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame(stru .unFlags = unFlags, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame2(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) { - struct cppISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame2_params params = + struct ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame2_params params = { .linux_side = _this->u_iface, .iGame = iGame, @@ -101,13 +99,13 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame2(struct .pRTime32LastPlayedOnServer = pRTime32LastPlayedOnServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame2( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame2, ¶ms ); 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) { - struct cppISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame2_params params = + struct ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame2_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, @@ -118,13 +116,13 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame2(str .rTime32LastPlayedOnServer = rTime32LastPlayedOnServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame2( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame2, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame2(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) { - struct cppISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame2_params params = + struct ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame2_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, @@ -134,13 +132,13 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame2(str .unFlags = unFlags, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame2( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame2, ¶ms ); return params._ret; } void __thiscall winISteamMatchmaking_SteamMatchMaking001_RequestLobbyList(struct w_steam_iface *_this, uint64_t ulGameID, MatchMakingKeyValuePair_t *pFilters, uint32_t nFilters) { - struct cppISteamMatchmaking_SteamMatchMaking001_RequestLobbyList_params params = + struct ISteamMatchmaking_SteamMatchMaking001_RequestLobbyList_params params = { .linux_side = _this->u_iface, .ulGameID = ulGameID, @@ -148,84 +146,84 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking001_RequestLobbyList(struct .nFilters = nFilters, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking001_RequestLobbyList( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking001_RequestLobbyList, ¶ms ); } CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking001_GetLobbyByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iLobby) { - struct cppISteamMatchmaking_SteamMatchMaking001_GetLobbyByIndex_params params = + struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iLobby = iLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking001_GetLobbyByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking001_GetLobbyByIndex, ¶ms ); return params._ret; } void __thiscall winISteamMatchmaking_SteamMatchMaking001_CreateLobby(struct w_steam_iface *_this, uint64_t ulGameID, bool bPrivate) { - struct cppISteamMatchmaking_SteamMatchMaking001_CreateLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking001_CreateLobby_params params = { .linux_side = _this->u_iface, .ulGameID = ulGameID, .bPrivate = bPrivate, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking001_CreateLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking001_CreateLobby, ¶ms ); } void __thiscall winISteamMatchmaking_SteamMatchMaking001_JoinLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking001_JoinLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking001_JoinLobby_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking001_JoinLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking001_JoinLobby, ¶ms ); } void __thiscall winISteamMatchmaking_SteamMatchMaking001_LeaveLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking001_LeaveLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking001_LeaveLobby_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking001_LeaveLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking001_LeaveLobby, ¶ms ); } bool __thiscall winISteamMatchmaking_SteamMatchMaking001_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) { - struct cppISteamMatchmaking_SteamMatchMaking001_InviteUserToLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking001_InviteUserToLobby_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDInvitee = steamIDInvitee, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking001_InviteUserToLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking001_InviteUserToLobby, ¶ms ); return params._ret; } int32_t __thiscall winISteamMatchmaking_SteamMatchMaking001_GetNumLobbyMembers(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking001_GetNumLobbyMembers_params params = + struct ISteamMatchmaking_SteamMatchMaking001_GetNumLobbyMembers_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking001_GetNumLobbyMembers( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking001_GetNumLobbyMembers, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDLobby, int32_t iMember) { - struct cppISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberByIndex_params params = + struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -233,26 +231,26 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberByI .iMember = iMember, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberByIndex, ¶ms ); return params._ret; } const char * __thiscall winISteamMatchmaking_SteamMatchMaking001_GetLobbyData(struct w_steam_iface *_this, CSteamID SteamIDLobby, const char *pchKey) { - struct cppISteamMatchmaking_SteamMatchMaking001_GetLobbyData_params params = + struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyData_params params = { .linux_side = _this->u_iface, .SteamIDLobby = SteamIDLobby, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking001_GetLobbyData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking001_GetLobbyData, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking001_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { - struct cppISteamMatchmaking_SteamMatchMaking001_SetLobbyData_params params = + struct ISteamMatchmaking_SteamMatchMaking001_SetLobbyData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -260,13 +258,13 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking001_SetLobbyData(struct w_s .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking001_SetLobbyData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking001_SetLobbyData, ¶ms ); return params._ret; } const char * __thiscall winISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDUser, const char *pchKey) { - struct cppISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberData_params params = + struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -274,13 +272,13 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberD .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberData, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { - struct cppISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData_params params = + struct ISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -288,13 +286,13 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData(stru .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) { - struct cppISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMsg_params params = + struct ISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMsg_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -302,13 +300,13 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMsg(struct .cubMsgBody = cubMsgBody, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMsg( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMsg, ¶ms ); 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) { - struct cppISteamMatchmaking_SteamMatchMaking001_GetLobbyChatEntry_params params = + struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyChatEntry_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -319,19 +317,19 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking001_GetLobbyChatEntry(st .peChatEntryType = peChatEntryType, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking001_GetLobbyChatEntry( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking001_GetLobbyChatEntry, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking001_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking001_RequestLobbyData_params params = + struct ISteamMatchmaking_SteamMatchMaking001_RequestLobbyData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking001_RequestLobbyData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking001_RequestLobbyData, ¶ms ); return params._ret; } @@ -375,8 +373,6 @@ struct w_steam_iface *create_winISteamMatchmaking_SteamMatchMaking001(void *u_if return r; } -#include "cppISteamMatchmaking_SteamMatchMaking002.h" - DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking002_GetFavoriteGameCount, 4) DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame, 32) DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking002_AddFavoriteGame, 28) @@ -400,18 +396,18 @@ DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking002_SetLobbyGameSer int32_t __thiscall winISteamMatchmaking_SteamMatchMaking002_GetFavoriteGameCount(struct w_steam_iface *_this) { - struct cppISteamMatchmaking_SteamMatchMaking002_GetFavoriteGameCount_params params = + struct ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGameCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking002_GetFavoriteGameCount( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGameCount, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) { - struct cppISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame_params params = + struct ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame_params params = { .linux_side = _this->u_iface, .iGame = iGame, @@ -423,13 +419,13 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame(struct .pRTime32LastPlayedOnServer = pRTime32LastPlayedOnServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame, ¶ms ); 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) { - struct cppISteamMatchmaking_SteamMatchMaking002_AddFavoriteGame_params params = + struct ISteamMatchmaking_SteamMatchMaking002_AddFavoriteGame_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, @@ -440,13 +436,13 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking002_AddFavoriteGame(stru .rTime32LastPlayedOnServer = rTime32LastPlayedOnServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking002_AddFavoriteGame( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking002_AddFavoriteGame, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking002_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) { - struct cppISteamMatchmaking_SteamMatchMaking002_RemoveFavoriteGame_params params = + struct ISteamMatchmaking_SteamMatchMaking002_RemoveFavoriteGame_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, @@ -456,94 +452,94 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking002_RemoveFavoriteGame(stru .unFlags = unFlags, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking002_RemoveFavoriteGame( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking002_RemoveFavoriteGame, ¶ms ); return params._ret; } void __thiscall winISteamMatchmaking_SteamMatchMaking002_RequestLobbyList(struct w_steam_iface *_this) { - struct cppISteamMatchmaking_SteamMatchMaking002_RequestLobbyList_params params = + struct ISteamMatchmaking_SteamMatchMaking002_RequestLobbyList_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking002_RequestLobbyList( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking002_RequestLobbyList, ¶ms ); } CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking002_GetLobbyByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iLobby) { - struct cppISteamMatchmaking_SteamMatchMaking002_GetLobbyByIndex_params params = + struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iLobby = iLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking002_GetLobbyByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking002_GetLobbyByIndex, ¶ms ); return params._ret; } void __thiscall winISteamMatchmaking_SteamMatchMaking002_CreateLobby(struct w_steam_iface *_this, bool bPrivate) { - struct cppISteamMatchmaking_SteamMatchMaking002_CreateLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking002_CreateLobby_params params = { .linux_side = _this->u_iface, .bPrivate = bPrivate, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking002_CreateLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking002_CreateLobby, ¶ms ); } void __thiscall winISteamMatchmaking_SteamMatchMaking002_JoinLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking002_JoinLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking002_JoinLobby_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking002_JoinLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking002_JoinLobby, ¶ms ); } void __thiscall winISteamMatchmaking_SteamMatchMaking002_LeaveLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking002_LeaveLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking002_LeaveLobby_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking002_LeaveLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking002_LeaveLobby, ¶ms ); } bool __thiscall winISteamMatchmaking_SteamMatchMaking002_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) { - struct cppISteamMatchmaking_SteamMatchMaking002_InviteUserToLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking002_InviteUserToLobby_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDInvitee = steamIDInvitee, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking002_InviteUserToLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking002_InviteUserToLobby, ¶ms ); return params._ret; } int32_t __thiscall winISteamMatchmaking_SteamMatchMaking002_GetNumLobbyMembers(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking002_GetNumLobbyMembers_params params = + struct ISteamMatchmaking_SteamMatchMaking002_GetNumLobbyMembers_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking002_GetNumLobbyMembers( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking002_GetNumLobbyMembers, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDLobby, int32_t iMember) { - struct cppISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberByIndex_params params = + struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -551,26 +547,26 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberByI .iMember = iMember, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberByIndex, ¶ms ); return params._ret; } const char * __thiscall winISteamMatchmaking_SteamMatchMaking002_GetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey) { - struct cppISteamMatchmaking_SteamMatchMaking002_GetLobbyData_params params = + struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking002_GetLobbyData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking002_GetLobbyData, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking002_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { - struct cppISteamMatchmaking_SteamMatchMaking002_SetLobbyData_params params = + struct ISteamMatchmaking_SteamMatchMaking002_SetLobbyData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -578,13 +574,13 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking002_SetLobbyData(struct w_s .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking002_SetLobbyData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking002_SetLobbyData, ¶ms ); return params._ret; } const char * __thiscall winISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDUser, const char *pchKey) { - struct cppISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberData_params params = + struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -592,13 +588,13 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberD .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberData, ¶ms ); return params._ret; } void __thiscall winISteamMatchmaking_SteamMatchMaking002_SetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { - struct cppISteamMatchmaking_SteamMatchMaking002_SetLobbyMemberData_params params = + struct ISteamMatchmaking_SteamMatchMaking002_SetLobbyMemberData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -606,12 +602,12 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking002_SetLobbyMemberData(stru .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking002_SetLobbyMemberData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking002_SetLobbyMemberData, ¶ms ); } bool __thiscall winISteamMatchmaking_SteamMatchMaking002_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) { - struct cppISteamMatchmaking_SteamMatchMaking002_SendLobbyChatMsg_params params = + struct ISteamMatchmaking_SteamMatchMaking002_SendLobbyChatMsg_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -619,13 +615,13 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking002_SendLobbyChatMsg(struct .cubMsgBody = cubMsgBody, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking002_SendLobbyChatMsg( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking002_SendLobbyChatMsg, ¶ms ); 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) { - struct cppISteamMatchmaking_SteamMatchMaking002_GetLobbyChatEntry_params params = + struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyChatEntry_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -636,25 +632,25 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking002_GetLobbyChatEntry(st .peChatEntryType = peChatEntryType, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking002_GetLobbyChatEntry( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking002_GetLobbyChatEntry, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking002_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking002_RequestLobbyData_params params = + struct ISteamMatchmaking_SteamMatchMaking002_RequestLobbyData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking002_RequestLobbyData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking002_RequestLobbyData, ¶ms ); return params._ret; } void __thiscall winISteamMatchmaking_SteamMatchMaking002_SetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t unGameServerIP, uint16_t unGameServerPort, CSteamID steamIDGameServer) { - struct cppISteamMatchmaking_SteamMatchMaking002_SetLobbyGameServer_params params = + struct ISteamMatchmaking_SteamMatchMaking002_SetLobbyGameServer_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -663,7 +659,7 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking002_SetLobbyGameServer(stru .steamIDGameServer = steamIDGameServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking002_SetLobbyGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking002_SetLobbyGameServer, ¶ms ); } extern vtable_ptr winISteamMatchmaking_SteamMatchMaking002_vtable; @@ -704,8 +700,6 @@ struct w_steam_iface *create_winISteamMatchmaking_SteamMatchMaking002(void *u_if return r; } -#include "cppISteamMatchmaking_SteamMatchMaking003.h" - DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking003_GetFavoriteGameCount, 4) DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame, 32) DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking003_AddFavoriteGame, 28) @@ -737,18 +731,18 @@ DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking003_RequestFriendsL int32_t __thiscall winISteamMatchmaking_SteamMatchMaking003_GetFavoriteGameCount(struct w_steam_iface *_this) { - struct cppISteamMatchmaking_SteamMatchMaking003_GetFavoriteGameCount_params params = + struct ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGameCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking003_GetFavoriteGameCount( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGameCount, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) { - struct cppISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame_params params = + struct ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame_params params = { .linux_side = _this->u_iface, .iGame = iGame, @@ -760,13 +754,13 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame(struct .pRTime32LastPlayedOnServer = pRTime32LastPlayedOnServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame, ¶ms ); 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) { - struct cppISteamMatchmaking_SteamMatchMaking003_AddFavoriteGame_params params = + struct ISteamMatchmaking_SteamMatchMaking003_AddFavoriteGame_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, @@ -777,13 +771,13 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking003_AddFavoriteGame(stru .rTime32LastPlayedOnServer = rTime32LastPlayedOnServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking003_AddFavoriteGame( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_AddFavoriteGame, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking003_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) { - struct cppISteamMatchmaking_SteamMatchMaking003_RemoveFavoriteGame_params params = + struct ISteamMatchmaking_SteamMatchMaking003_RemoveFavoriteGame_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, @@ -793,35 +787,35 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking003_RemoveFavoriteGame(stru .unFlags = unFlags, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking003_RemoveFavoriteGame( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_RemoveFavoriteGame, ¶ms ); return params._ret; } void __thiscall winISteamMatchmaking_SteamMatchMaking003_RequestLobbyList(struct w_steam_iface *_this) { - struct cppISteamMatchmaking_SteamMatchMaking003_RequestLobbyList_params params = + struct ISteamMatchmaking_SteamMatchMaking003_RequestLobbyList_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking003_RequestLobbyList( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_RequestLobbyList, ¶ms ); } void __thiscall winISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListFilter(struct w_steam_iface *_this, const char *pchKeyToMatch, const char *pchValueToMatch) { - struct cppISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListFilter_params params = + struct ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListFilter_params params = { .linux_side = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, .pchValueToMatch = pchValueToMatch, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListFilter( ¶ms ); + 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) { - struct cppISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListNumericalFilter_params params = + struct ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListNumericalFilter_params params = { .linux_side = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, @@ -829,93 +823,93 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListNume .nComparisonType = nComparisonType, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListNumericalFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListNumericalFilter, ¶ms ); } void __thiscall winISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListSlotsAvailableFilter(struct w_steam_iface *_this) { - struct cppISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListSlotsAvailableFilter_params params = + struct ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListSlotsAvailableFilter_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListSlotsAvailableFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListSlotsAvailableFilter, ¶ms ); } CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iLobby) { - struct cppISteamMatchmaking_SteamMatchMaking003_GetLobbyByIndex_params params = + struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iLobby = iLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking003_GetLobbyByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_GetLobbyByIndex, ¶ms ); return params._ret; } void __thiscall winISteamMatchmaking_SteamMatchMaking003_CreateLobby(struct w_steam_iface *_this, bool bPrivate) { - struct cppISteamMatchmaking_SteamMatchMaking003_CreateLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking003_CreateLobby_params params = { .linux_side = _this->u_iface, .bPrivate = bPrivate, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking003_CreateLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_CreateLobby, ¶ms ); } void __thiscall winISteamMatchmaking_SteamMatchMaking003_JoinLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking003_JoinLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking003_JoinLobby_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking003_JoinLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_JoinLobby, ¶ms ); } void __thiscall winISteamMatchmaking_SteamMatchMaking003_LeaveLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking003_LeaveLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking003_LeaveLobby_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking003_LeaveLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_LeaveLobby, ¶ms ); } bool __thiscall winISteamMatchmaking_SteamMatchMaking003_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) { - struct cppISteamMatchmaking_SteamMatchMaking003_InviteUserToLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking003_InviteUserToLobby_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDInvitee = steamIDInvitee, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking003_InviteUserToLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_InviteUserToLobby, ¶ms ); return params._ret; } int32_t __thiscall winISteamMatchmaking_SteamMatchMaking003_GetNumLobbyMembers(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking003_GetNumLobbyMembers_params params = + struct ISteamMatchmaking_SteamMatchMaking003_GetNumLobbyMembers_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking003_GetNumLobbyMembers( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_GetNumLobbyMembers, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDLobby, int32_t iMember) { - struct cppISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberByIndex_params params = + struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -923,26 +917,26 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberByI .iMember = iMember, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberByIndex, ¶ms ); return params._ret; } const char * __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey) { - struct cppISteamMatchmaking_SteamMatchMaking003_GetLobbyData_params params = + struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking003_GetLobbyData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_GetLobbyData, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { - struct cppISteamMatchmaking_SteamMatchMaking003_SetLobbyData_params params = + struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -950,13 +944,13 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyData(struct w_s .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking003_SetLobbyData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_SetLobbyData, ¶ms ); return params._ret; } const char * __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDUser, const char *pchKey) { - struct cppISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberData_params params = + struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -964,13 +958,13 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberD .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberData, ¶ms ); return params._ret; } void __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { - struct cppISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberData_params params = + struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -978,12 +972,12 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberData(stru .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberData, ¶ms ); } bool __thiscall winISteamMatchmaking_SteamMatchMaking003_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) { - struct cppISteamMatchmaking_SteamMatchMaking003_SendLobbyChatMsg_params params = + struct ISteamMatchmaking_SteamMatchMaking003_SendLobbyChatMsg_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -991,13 +985,13 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking003_SendLobbyChatMsg(struct .cubMsgBody = cubMsgBody, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking003_SendLobbyChatMsg( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_SendLobbyChatMsg, ¶ms ); 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) { - struct cppISteamMatchmaking_SteamMatchMaking003_GetLobbyChatEntry_params params = + struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyChatEntry_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -1008,25 +1002,25 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyChatEntry(st .peChatEntryType = peChatEntryType, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking003_GetLobbyChatEntry( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_GetLobbyChatEntry, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking003_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking003_RequestLobbyData_params params = + struct ISteamMatchmaking_SteamMatchMaking003_RequestLobbyData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking003_RequestLobbyData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_RequestLobbyData, ¶ms ); return params._ret; } void __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t unGameServerIP, uint16_t unGameServerPort, CSteamID steamIDGameServer) { - struct cppISteamMatchmaking_SteamMatchMaking003_SetLobbyGameServer_params params = + struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyGameServer_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -1035,12 +1029,12 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyGameServer(stru .steamIDGameServer = steamIDGameServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking003_SetLobbyGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_SetLobbyGameServer, ¶ms ); } bool __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) { - struct cppISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer_params params = + struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -1049,55 +1043,55 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer(stru .psteamIDGameServer = psteamIDGameServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) { - struct cppISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberLimit_params params = + struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberLimit_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .cMaxMembers = cMaxMembers, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberLimit( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberLimit, ¶ms ); return params._ret; } int32_t __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberLimit_params params = + struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberLimit_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberLimit( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberLimit, ¶ms ); return params._ret; } void __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled(struct w_steam_iface *_this, CSteamID steamIDLobby, bool bVoiceEnabled) { - struct cppISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled_params params = + struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .bVoiceEnabled = bVoiceEnabled, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled, ¶ms ); } bool __thiscall winISteamMatchmaking_SteamMatchMaking003_RequestFriendsLobbies(struct w_steam_iface *_this) { - struct cppISteamMatchmaking_SteamMatchMaking003_RequestFriendsLobbies_params params = + struct ISteamMatchmaking_SteamMatchMaking003_RequestFriendsLobbies_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking003_RequestFriendsLobbies( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_RequestFriendsLobbies, ¶ms ); return params._ret; } @@ -1147,8 +1141,6 @@ struct w_steam_iface *create_winISteamMatchmaking_SteamMatchMaking003(void *u_if return r; } -#include "cppISteamMatchmaking_SteamMatchMaking004.h" - DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking004_GetFavoriteGameCount, 4) DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame, 32) DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking004_AddFavoriteGame, 28) @@ -1179,18 +1171,18 @@ DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking004_RequestFriendsL int32_t __thiscall winISteamMatchmaking_SteamMatchMaking004_GetFavoriteGameCount(struct w_steam_iface *_this) { - struct cppISteamMatchmaking_SteamMatchMaking004_GetFavoriteGameCount_params params = + struct ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGameCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking004_GetFavoriteGameCount( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGameCount, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) { - struct cppISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame_params params = + struct ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame_params params = { .linux_side = _this->u_iface, .iGame = iGame, @@ -1202,13 +1194,13 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame(struct .pRTime32LastPlayedOnServer = pRTime32LastPlayedOnServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame, ¶ms ); 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) { - struct cppISteamMatchmaking_SteamMatchMaking004_AddFavoriteGame_params params = + struct ISteamMatchmaking_SteamMatchMaking004_AddFavoriteGame_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, @@ -1219,13 +1211,13 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking004_AddFavoriteGame(stru .rTime32LastPlayedOnServer = rTime32LastPlayedOnServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking004_AddFavoriteGame( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_AddFavoriteGame, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking004_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) { - struct cppISteamMatchmaking_SteamMatchMaking004_RemoveFavoriteGame_params params = + struct ISteamMatchmaking_SteamMatchMaking004_RemoveFavoriteGame_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, @@ -1235,35 +1227,35 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking004_RemoveFavoriteGame(stru .unFlags = unFlags, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking004_RemoveFavoriteGame( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_RemoveFavoriteGame, ¶ms ); return params._ret; } void __thiscall winISteamMatchmaking_SteamMatchMaking004_RequestLobbyList(struct w_steam_iface *_this) { - struct cppISteamMatchmaking_SteamMatchMaking004_RequestLobbyList_params params = + struct ISteamMatchmaking_SteamMatchMaking004_RequestLobbyList_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking004_RequestLobbyList( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_RequestLobbyList, ¶ms ); } void __thiscall winISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListFilter(struct w_steam_iface *_this, const char *pchKeyToMatch, const char *pchValueToMatch) { - struct cppISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListFilter_params params = + struct ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListFilter_params params = { .linux_side = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, .pchValueToMatch = pchValueToMatch, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListFilter( ¶ms ); + 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) { - struct cppISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListNumericalFilter_params params = + struct ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListNumericalFilter_params params = { .linux_side = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, @@ -1271,93 +1263,93 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListNume .nComparisonType = nComparisonType, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListNumericalFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListNumericalFilter, ¶ms ); } void __thiscall winISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListSlotsAvailableFilter(struct w_steam_iface *_this) { - struct cppISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListSlotsAvailableFilter_params params = + struct ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListSlotsAvailableFilter_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListSlotsAvailableFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListSlotsAvailableFilter, ¶ms ); } CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iLobby) { - struct cppISteamMatchmaking_SteamMatchMaking004_GetLobbyByIndex_params params = + struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iLobby = iLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking004_GetLobbyByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_GetLobbyByIndex, ¶ms ); return params._ret; } void __thiscall winISteamMatchmaking_SteamMatchMaking004_CreateLobby(struct w_steam_iface *_this, bool bPrivate) { - struct cppISteamMatchmaking_SteamMatchMaking004_CreateLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking004_CreateLobby_params params = { .linux_side = _this->u_iface, .bPrivate = bPrivate, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking004_CreateLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_CreateLobby, ¶ms ); } void __thiscall winISteamMatchmaking_SteamMatchMaking004_JoinLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking004_JoinLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking004_JoinLobby_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking004_JoinLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_JoinLobby, ¶ms ); } void __thiscall winISteamMatchmaking_SteamMatchMaking004_LeaveLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking004_LeaveLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking004_LeaveLobby_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking004_LeaveLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_LeaveLobby, ¶ms ); } bool __thiscall winISteamMatchmaking_SteamMatchMaking004_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) { - struct cppISteamMatchmaking_SteamMatchMaking004_InviteUserToLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking004_InviteUserToLobby_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDInvitee = steamIDInvitee, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking004_InviteUserToLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_InviteUserToLobby, ¶ms ); return params._ret; } int32_t __thiscall winISteamMatchmaking_SteamMatchMaking004_GetNumLobbyMembers(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking004_GetNumLobbyMembers_params params = + struct ISteamMatchmaking_SteamMatchMaking004_GetNumLobbyMembers_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking004_GetNumLobbyMembers( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_GetNumLobbyMembers, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDLobby, int32_t iMember) { - struct cppISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberByIndex_params params = + struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -1365,26 +1357,26 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberByI .iMember = iMember, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberByIndex, ¶ms ); return params._ret; } const char * __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey) { - struct cppISteamMatchmaking_SteamMatchMaking004_GetLobbyData_params params = + struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking004_GetLobbyData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_GetLobbyData, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking004_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { - struct cppISteamMatchmaking_SteamMatchMaking004_SetLobbyData_params params = + struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -1392,13 +1384,13 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking004_SetLobbyData(struct w_s .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking004_SetLobbyData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_SetLobbyData, ¶ms ); return params._ret; } const char * __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDUser, const char *pchKey) { - struct cppISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberData_params params = + struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -1406,13 +1398,13 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberD .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberData, ¶ms ); return params._ret; } void __thiscall winISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { - struct cppISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberData_params params = + struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -1420,12 +1412,12 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberData(stru .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberData, ¶ms ); } bool __thiscall winISteamMatchmaking_SteamMatchMaking004_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) { - struct cppISteamMatchmaking_SteamMatchMaking004_SendLobbyChatMsg_params params = + struct ISteamMatchmaking_SteamMatchMaking004_SendLobbyChatMsg_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -1433,13 +1425,13 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking004_SendLobbyChatMsg(struct .cubMsgBody = cubMsgBody, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking004_SendLobbyChatMsg( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_SendLobbyChatMsg, ¶ms ); 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) { - struct cppISteamMatchmaking_SteamMatchMaking004_GetLobbyChatEntry_params params = + struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyChatEntry_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -1450,25 +1442,25 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyChatEntry(st .peChatEntryType = peChatEntryType, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking004_GetLobbyChatEntry( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_GetLobbyChatEntry, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking004_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking004_RequestLobbyData_params params = + struct ISteamMatchmaking_SteamMatchMaking004_RequestLobbyData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking004_RequestLobbyData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_RequestLobbyData, ¶ms ); return params._ret; } void __thiscall winISteamMatchmaking_SteamMatchMaking004_SetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t unGameServerIP, uint16_t unGameServerPort, CSteamID steamIDGameServer) { - struct cppISteamMatchmaking_SteamMatchMaking004_SetLobbyGameServer_params params = + struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyGameServer_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -1477,12 +1469,12 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking004_SetLobbyGameServer(stru .steamIDGameServer = steamIDGameServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking004_SetLobbyGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_SetLobbyGameServer, ¶ms ); } bool __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) { - struct cppISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer_params params = + struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -1491,43 +1483,43 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer(stru .psteamIDGameServer = psteamIDGameServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) { - struct cppISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberLimit_params params = + struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberLimit_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .cMaxMembers = cMaxMembers, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberLimit( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberLimit, ¶ms ); return params._ret; } int32_t __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberLimit_params params = + struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberLimit_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberLimit( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberLimit, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking004_RequestFriendsLobbies(struct w_steam_iface *_this) { - struct cppISteamMatchmaking_SteamMatchMaking004_RequestFriendsLobbies_params params = + struct ISteamMatchmaking_SteamMatchMaking004_RequestFriendsLobbies_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking004_RequestFriendsLobbies( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_RequestFriendsLobbies, ¶ms ); return params._ret; } @@ -1576,8 +1568,6 @@ struct w_steam_iface *create_winISteamMatchmaking_SteamMatchMaking004(void *u_if return r; } -#include "cppISteamMatchmaking_SteamMatchMaking005.h" - DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking005_GetFavoriteGameCount, 4) DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame, 32) DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking005_AddFavoriteGame, 28) @@ -1612,18 +1602,18 @@ DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking005_GetLobbyDistanc int32_t __thiscall winISteamMatchmaking_SteamMatchMaking005_GetFavoriteGameCount(struct w_steam_iface *_this) { - struct cppISteamMatchmaking_SteamMatchMaking005_GetFavoriteGameCount_params params = + struct ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGameCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking005_GetFavoriteGameCount( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGameCount, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) { - struct cppISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame_params params = + struct ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame_params params = { .linux_side = _this->u_iface, .iGame = iGame, @@ -1635,13 +1625,13 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame(struct .pRTime32LastPlayedOnServer = pRTime32LastPlayedOnServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame, ¶ms ); 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) { - struct cppISteamMatchmaking_SteamMatchMaking005_AddFavoriteGame_params params = + struct ISteamMatchmaking_SteamMatchMaking005_AddFavoriteGame_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, @@ -1652,13 +1642,13 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking005_AddFavoriteGame(stru .rTime32LastPlayedOnServer = rTime32LastPlayedOnServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking005_AddFavoriteGame( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_AddFavoriteGame, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking005_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) { - struct cppISteamMatchmaking_SteamMatchMaking005_RemoveFavoriteGame_params params = + struct ISteamMatchmaking_SteamMatchMaking005_RemoveFavoriteGame_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, @@ -1668,35 +1658,35 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking005_RemoveFavoriteGame(stru .unFlags = unFlags, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking005_RemoveFavoriteGame( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_RemoveFavoriteGame, ¶ms ); return params._ret; } void __thiscall winISteamMatchmaking_SteamMatchMaking005_RequestLobbyList(struct w_steam_iface *_this) { - struct cppISteamMatchmaking_SteamMatchMaking005_RequestLobbyList_params params = + struct ISteamMatchmaking_SteamMatchMaking005_RequestLobbyList_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking005_RequestLobbyList( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_RequestLobbyList, ¶ms ); } void __thiscall winISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListFilter(struct w_steam_iface *_this, const char *pchKeyToMatch, const char *pchValueToMatch) { - struct cppISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListFilter_params params = + struct ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListFilter_params params = { .linux_side = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, .pchValueToMatch = pchValueToMatch, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListFilter( ¶ms ); + 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) { - struct cppISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNumericalFilter_params params = + struct ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNumericalFilter_params params = { .linux_side = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, @@ -1704,105 +1694,105 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNume .nComparisonType = nComparisonType, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNumericalFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNumericalFilter, ¶ms ); } void __thiscall winISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListSlotsAvailableFilter(struct w_steam_iface *_this) { - struct cppISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListSlotsAvailableFilter_params params = + struct ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListSlotsAvailableFilter_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListSlotsAvailableFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListSlotsAvailableFilter, ¶ms ); } void __thiscall winISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNearValueFilter(struct w_steam_iface *_this, const char *pchKeyToMatch, int32_t nValueToBeCloseTo) { - struct cppISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNearValueFilter_params params = + struct ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNearValueFilter_params params = { .linux_side = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, .nValueToBeCloseTo = nValueToBeCloseTo, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNearValueFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNearValueFilter, ¶ms ); } CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iLobby) { - struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyByIndex_params params = + struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iLobby = iLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking005_GetLobbyByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_GetLobbyByIndex, ¶ms ); return params._ret; } void __thiscall winISteamMatchmaking_SteamMatchMaking005_CreateLobby(struct w_steam_iface *_this, uint32_t eLobbyType) { - struct cppISteamMatchmaking_SteamMatchMaking005_CreateLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking005_CreateLobby_params params = { .linux_side = _this->u_iface, .eLobbyType = eLobbyType, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking005_CreateLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_CreateLobby, ¶ms ); } void __thiscall winISteamMatchmaking_SteamMatchMaking005_JoinLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking005_JoinLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking005_JoinLobby_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking005_JoinLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_JoinLobby, ¶ms ); } void __thiscall winISteamMatchmaking_SteamMatchMaking005_LeaveLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking005_LeaveLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking005_LeaveLobby_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking005_LeaveLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_LeaveLobby, ¶ms ); } bool __thiscall winISteamMatchmaking_SteamMatchMaking005_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) { - struct cppISteamMatchmaking_SteamMatchMaking005_InviteUserToLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking005_InviteUserToLobby_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDInvitee = steamIDInvitee, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking005_InviteUserToLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_InviteUserToLobby, ¶ms ); return params._ret; } int32_t __thiscall winISteamMatchmaking_SteamMatchMaking005_GetNumLobbyMembers(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking005_GetNumLobbyMembers_params params = + struct ISteamMatchmaking_SteamMatchMaking005_GetNumLobbyMembers_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking005_GetNumLobbyMembers( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_GetNumLobbyMembers, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDLobby, int32_t iMember) { - struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberByIndex_params params = + struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -1810,26 +1800,26 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberByI .iMember = iMember, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberByIndex, ¶ms ); return params._ret; } const char * __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey) { - struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyData_params params = + struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking005_GetLobbyData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_GetLobbyData, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking005_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { - struct cppISteamMatchmaking_SteamMatchMaking005_SetLobbyData_params params = + struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -1837,13 +1827,13 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking005_SetLobbyData(struct w_s .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking005_SetLobbyData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_SetLobbyData, ¶ms ); return params._ret; } const char * __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDUser, const char *pchKey) { - struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberData_params params = + struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -1851,13 +1841,13 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberD .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberData, ¶ms ); return params._ret; } void __thiscall winISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { - struct cppISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberData_params params = + struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -1865,12 +1855,12 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberData(stru .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberData, ¶ms ); } bool __thiscall winISteamMatchmaking_SteamMatchMaking005_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) { - struct cppISteamMatchmaking_SteamMatchMaking005_SendLobbyChatMsg_params params = + struct ISteamMatchmaking_SteamMatchMaking005_SendLobbyChatMsg_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -1878,13 +1868,13 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking005_SendLobbyChatMsg(struct .cubMsgBody = cubMsgBody, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking005_SendLobbyChatMsg( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_SendLobbyChatMsg, ¶ms ); 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) { - struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyChatEntry_params params = + struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyChatEntry_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -1895,25 +1885,25 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyChatEntry(st .peChatEntryType = peChatEntryType, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking005_GetLobbyChatEntry( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_GetLobbyChatEntry, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking005_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking005_RequestLobbyData_params params = + struct ISteamMatchmaking_SteamMatchMaking005_RequestLobbyData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking005_RequestLobbyData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_RequestLobbyData, ¶ms ); return params._ret; } void __thiscall winISteamMatchmaking_SteamMatchMaking005_SetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t unGameServerIP, uint16_t unGameServerPort, CSteamID steamIDGameServer) { - struct cppISteamMatchmaking_SteamMatchMaking005_SetLobbyGameServer_params params = + struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyGameServer_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -1922,12 +1912,12 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking005_SetLobbyGameServer(stru .steamIDGameServer = steamIDGameServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking005_SetLobbyGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_SetLobbyGameServer, ¶ms ); } bool __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) { - struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer_params params = + struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -1936,81 +1926,81 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer(stru .psteamIDGameServer = psteamIDGameServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) { - struct cppISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberLimit_params params = + struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberLimit_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .cMaxMembers = cMaxMembers, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberLimit( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberLimit, ¶ms ); return params._ret; } int32_t __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberLimit_params params = + struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberLimit_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberLimit( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberLimit, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking005_RequestFriendsLobbies(struct w_steam_iface *_this) { - struct cppISteamMatchmaking_SteamMatchMaking005_RequestFriendsLobbies_params params = + struct ISteamMatchmaking_SteamMatchMaking005_RequestFriendsLobbies_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking005_RequestFriendsLobbies( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_RequestFriendsLobbies, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking005_SetLobbyType(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t eLobbyType) { - struct cppISteamMatchmaking_SteamMatchMaking005_SetLobbyType_params params = + struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyType_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .eLobbyType = eLobbyType, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking005_SetLobbyType( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_SetLobbyType, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyOwner(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyOwner_params params = + struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyOwner_params params = { .linux_side = _this->u_iface, ._ret = _ret, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking005_GetLobbyOwner( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_GetLobbyOwner, ¶ms ); return params._ret; } float __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyDistance(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking005_GetLobbyDistance_params params = + struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyDistance_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking005_GetLobbyDistance( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_GetLobbyDistance, ¶ms ); return params._ret; } @@ -2063,8 +2053,6 @@ struct w_steam_iface *create_winISteamMatchmaking_SteamMatchMaking005(void *u_if return r; } -#include "cppISteamMatchmaking_SteamMatchMaking006.h" - DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking006_GetFavoriteGameCount, 4) DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame, 32) DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking006_AddFavoriteGame, 28) @@ -2096,18 +2084,18 @@ DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking006_GetLobbyOwner, int32_t __thiscall winISteamMatchmaking_SteamMatchMaking006_GetFavoriteGameCount(struct w_steam_iface *_this) { - struct cppISteamMatchmaking_SteamMatchMaking006_GetFavoriteGameCount_params params = + struct ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGameCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking006_GetFavoriteGameCount( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGameCount, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) { - struct cppISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame_params params = + struct ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame_params params = { .linux_side = _this->u_iface, .iGame = iGame, @@ -2119,13 +2107,13 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame(struct .pRTime32LastPlayedOnServer = pRTime32LastPlayedOnServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame, ¶ms ); 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) { - struct cppISteamMatchmaking_SteamMatchMaking006_AddFavoriteGame_params params = + struct ISteamMatchmaking_SteamMatchMaking006_AddFavoriteGame_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, @@ -2136,13 +2124,13 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking006_AddFavoriteGame(stru .rTime32LastPlayedOnServer = rTime32LastPlayedOnServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking006_AddFavoriteGame( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_AddFavoriteGame, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking006_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) { - struct cppISteamMatchmaking_SteamMatchMaking006_RemoveFavoriteGame_params params = + struct ISteamMatchmaking_SteamMatchMaking006_RemoveFavoriteGame_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, @@ -2152,36 +2140,36 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking006_RemoveFavoriteGame(stru .unFlags = unFlags, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking006_RemoveFavoriteGame( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_RemoveFavoriteGame, ¶ms ); return params._ret; } uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking006_RequestLobbyList(struct w_steam_iface *_this) { - struct cppISteamMatchmaking_SteamMatchMaking006_RequestLobbyList_params params = + struct ISteamMatchmaking_SteamMatchMaking006_RequestLobbyList_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking006_RequestLobbyList( ¶ms ); + 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) { - struct cppISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListFilter_params params = + struct ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListFilter_params params = { .linux_side = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, .pchValueToMatch = pchValueToMatch, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListFilter( ¶ms ); + 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) { - struct cppISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNumericalFilter_params params = + struct ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNumericalFilter_params params = { .linux_side = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, @@ -2189,97 +2177,97 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNume .nComparisonType = nComparisonType, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNumericalFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNumericalFilter, ¶ms ); } void __thiscall winISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNearValueFilter(struct w_steam_iface *_this, const char *pchKeyToMatch, int32_t nValueToBeCloseTo) { - struct cppISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNearValueFilter_params params = + struct ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNearValueFilter_params params = { .linux_side = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, .nValueToBeCloseTo = nValueToBeCloseTo, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNearValueFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNearValueFilter, ¶ms ); } CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iLobby) { - struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyByIndex_params params = + struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iLobby = iLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking006_GetLobbyByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_GetLobbyByIndex, ¶ms ); return params._ret; } uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking006_CreateLobby(struct w_steam_iface *_this, uint32_t eLobbyType) { - struct cppISteamMatchmaking_SteamMatchMaking006_CreateLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking006_CreateLobby_params params = { .linux_side = _this->u_iface, .eLobbyType = eLobbyType, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking006_CreateLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_CreateLobby, ¶ms ); return params._ret; } uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking006_JoinLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking006_JoinLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking006_JoinLobby_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking006_JoinLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_JoinLobby, ¶ms ); return params._ret; } void __thiscall winISteamMatchmaking_SteamMatchMaking006_LeaveLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking006_LeaveLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking006_LeaveLobby_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking006_LeaveLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_LeaveLobby, ¶ms ); } bool __thiscall winISteamMatchmaking_SteamMatchMaking006_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) { - struct cppISteamMatchmaking_SteamMatchMaking006_InviteUserToLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking006_InviteUserToLobby_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDInvitee = steamIDInvitee, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking006_InviteUserToLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_InviteUserToLobby, ¶ms ); return params._ret; } int32_t __thiscall winISteamMatchmaking_SteamMatchMaking006_GetNumLobbyMembers(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking006_GetNumLobbyMembers_params params = + struct ISteamMatchmaking_SteamMatchMaking006_GetNumLobbyMembers_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking006_GetNumLobbyMembers( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_GetNumLobbyMembers, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDLobby, int32_t iMember) { - struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberByIndex_params params = + struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -2287,26 +2275,26 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberByI .iMember = iMember, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberByIndex, ¶ms ); return params._ret; } const char * __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey) { - struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyData_params params = + struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking006_GetLobbyData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_GetLobbyData, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking006_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { - struct cppISteamMatchmaking_SteamMatchMaking006_SetLobbyData_params params = + struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -2314,13 +2302,13 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking006_SetLobbyData(struct w_s .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking006_SetLobbyData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_SetLobbyData, ¶ms ); return params._ret; } const char * __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDUser, const char *pchKey) { - struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberData_params params = + struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -2328,13 +2316,13 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberD .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberData, ¶ms ); return params._ret; } void __thiscall winISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { - struct cppISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberData_params params = + struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -2342,12 +2330,12 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberData(stru .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberData, ¶ms ); } bool __thiscall winISteamMatchmaking_SteamMatchMaking006_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) { - struct cppISteamMatchmaking_SteamMatchMaking006_SendLobbyChatMsg_params params = + struct ISteamMatchmaking_SteamMatchMaking006_SendLobbyChatMsg_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -2355,13 +2343,13 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking006_SendLobbyChatMsg(struct .cubMsgBody = cubMsgBody, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking006_SendLobbyChatMsg( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_SendLobbyChatMsg, ¶ms ); 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) { - struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyChatEntry_params params = + struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyChatEntry_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -2372,25 +2360,25 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyChatEntry(st .peChatEntryType = peChatEntryType, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking006_GetLobbyChatEntry( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_GetLobbyChatEntry, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking006_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking006_RequestLobbyData_params params = + struct ISteamMatchmaking_SteamMatchMaking006_RequestLobbyData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking006_RequestLobbyData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_RequestLobbyData, ¶ms ); return params._ret; } void __thiscall winISteamMatchmaking_SteamMatchMaking006_SetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t unGameServerIP, uint16_t unGameServerPort, CSteamID steamIDGameServer) { - struct cppISteamMatchmaking_SteamMatchMaking006_SetLobbyGameServer_params params = + struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyGameServer_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -2399,12 +2387,12 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking006_SetLobbyGameServer(stru .steamIDGameServer = steamIDGameServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking006_SetLobbyGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_SetLobbyGameServer, ¶ms ); } bool __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) { - struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer_params params = + struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -2413,58 +2401,58 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer(stru .psteamIDGameServer = psteamIDGameServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) { - struct cppISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberLimit_params params = + struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberLimit_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .cMaxMembers = cMaxMembers, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberLimit( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberLimit, ¶ms ); return params._ret; } int32_t __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberLimit_params params = + struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberLimit_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberLimit( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberLimit, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking006_SetLobbyType(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t eLobbyType) { - struct cppISteamMatchmaking_SteamMatchMaking006_SetLobbyType_params params = + struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyType_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .eLobbyType = eLobbyType, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking006_SetLobbyType( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_SetLobbyType, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyOwner(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking006_GetLobbyOwner_params params = + struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyOwner_params params = { .linux_side = _this->u_iface, ._ret = _ret, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking006_GetLobbyOwner( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_GetLobbyOwner, ¶ms ); return params._ret; } @@ -2514,8 +2502,6 @@ struct w_steam_iface *create_winISteamMatchmaking_SteamMatchMaking006(void *u_if return r; } -#include "cppISteamMatchmaking_SteamMatchMaking007.h" - DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking007_GetFavoriteGameCount, 4) DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame, 32) DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking007_AddFavoriteGame, 28) @@ -2553,18 +2539,18 @@ DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking007_SetLobbyOwner, int32_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetFavoriteGameCount(struct w_steam_iface *_this) { - struct cppISteamMatchmaking_SteamMatchMaking007_GetFavoriteGameCount_params params = + struct ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGameCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_GetFavoriteGameCount( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGameCount, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) { - struct cppISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame_params params = + struct ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame_params params = { .linux_side = _this->u_iface, .iGame = iGame, @@ -2576,13 +2562,13 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame(struct .pRTime32LastPlayedOnServer = pRTime32LastPlayedOnServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame, ¶ms ); 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) { - struct cppISteamMatchmaking_SteamMatchMaking007_AddFavoriteGame_params params = + struct ISteamMatchmaking_SteamMatchMaking007_AddFavoriteGame_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, @@ -2593,13 +2579,13 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking007_AddFavoriteGame(stru .rTime32LastPlayedOnServer = rTime32LastPlayedOnServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_AddFavoriteGame( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_AddFavoriteGame, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking007_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) { - struct cppISteamMatchmaking_SteamMatchMaking007_RemoveFavoriteGame_params params = + struct ISteamMatchmaking_SteamMatchMaking007_RemoveFavoriteGame_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, @@ -2609,24 +2595,24 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking007_RemoveFavoriteGame(stru .unFlags = unFlags, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_RemoveFavoriteGame( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_RemoveFavoriteGame, ¶ms ); return params._ret; } uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking007_RequestLobbyList(struct w_steam_iface *_this) { - struct cppISteamMatchmaking_SteamMatchMaking007_RequestLobbyList_params params = + struct ISteamMatchmaking_SteamMatchMaking007_RequestLobbyList_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_RequestLobbyList( ¶ms ); + 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) { - struct cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListStringFilter_params params = + struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListStringFilter_params params = { .linux_side = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, @@ -2634,12 +2620,12 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListStri .eComparisonType = eComparisonType, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListStringFilter( ¶ms ); + 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) { - struct cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNumericalFilter_params params = + struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNumericalFilter_params params = { .linux_side = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, @@ -2647,109 +2633,109 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNume .eComparisonType = eComparisonType, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNumericalFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNumericalFilter, ¶ms ); } void __thiscall winISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNearValueFilter(struct w_steam_iface *_this, const char *pchKeyToMatch, int32_t nValueToBeCloseTo) { - struct cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNearValueFilter_params params = + struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNearValueFilter_params params = { .linux_side = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, .nValueToBeCloseTo = nValueToBeCloseTo, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNearValueFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNearValueFilter, ¶ms ); } void __thiscall winISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListFilterSlotsAvailable(struct w_steam_iface *_this, int32_t nSlotsAvailable) { - struct cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListFilterSlotsAvailable_params params = + struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListFilterSlotsAvailable_params params = { .linux_side = _this->u_iface, .nSlotsAvailable = nSlotsAvailable, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListFilterSlotsAvailable( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListFilterSlotsAvailable, ¶ms ); } CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iLobby) { - struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyByIndex_params params = + struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iLobby = iLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_GetLobbyByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_GetLobbyByIndex, ¶ms ); return params._ret; } uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking007_CreateLobby(struct w_steam_iface *_this, uint32_t eLobbyType, int32_t cMaxMembers) { - struct cppISteamMatchmaking_SteamMatchMaking007_CreateLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking007_CreateLobby_params params = { .linux_side = _this->u_iface, .eLobbyType = eLobbyType, .cMaxMembers = cMaxMembers, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_CreateLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_CreateLobby, ¶ms ); return params._ret; } uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking007_JoinLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking007_JoinLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking007_JoinLobby_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_JoinLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_JoinLobby, ¶ms ); return params._ret; } void __thiscall winISteamMatchmaking_SteamMatchMaking007_LeaveLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking007_LeaveLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking007_LeaveLobby_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_LeaveLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_LeaveLobby, ¶ms ); } bool __thiscall winISteamMatchmaking_SteamMatchMaking007_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) { - struct cppISteamMatchmaking_SteamMatchMaking007_InviteUserToLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking007_InviteUserToLobby_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDInvitee = steamIDInvitee, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_InviteUserToLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_InviteUserToLobby, ¶ms ); return params._ret; } int32_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetNumLobbyMembers(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking007_GetNumLobbyMembers_params params = + struct ISteamMatchmaking_SteamMatchMaking007_GetNumLobbyMembers_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_GetNumLobbyMembers( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_GetNumLobbyMembers, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDLobby, int32_t iMember) { - struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberByIndex_params params = + struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -2757,26 +2743,26 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberByI .iMember = iMember, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberByIndex, ¶ms ); return params._ret; } const char * __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey) { - struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyData_params params = + struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_GetLobbyData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_GetLobbyData, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { - struct cppISteamMatchmaking_SteamMatchMaking007_SetLobbyData_params params = + struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -2784,25 +2770,25 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyData(struct w_s .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_SetLobbyData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_SetLobbyData, ¶ms ); return params._ret; } int32_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyDataCount(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyDataCount_params params = + struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataCount_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_GetLobbyDataCount( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataCount, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t iLobbyData, char *pchKey, int32_t cchKeyBufferSize, char *pchValue, int32_t cchValueBufferSize) { - struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex_params params = + struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -2813,26 +2799,26 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex(str .cchValueBufferSize = cchValueBufferSize, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking007_DeleteLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey) { - struct cppISteamMatchmaking_SteamMatchMaking007_DeleteLobbyData_params params = + struct ISteamMatchmaking_SteamMatchMaking007_DeleteLobbyData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_DeleteLobbyData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_DeleteLobbyData, ¶ms ); return params._ret; } const char * __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDUser, const char *pchKey) { - struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberData_params params = + struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -2840,13 +2826,13 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberD .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberData, ¶ms ); return params._ret; } void __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { - struct cppISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberData_params params = + struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -2854,12 +2840,12 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberData(stru .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberData, ¶ms ); } bool __thiscall winISteamMatchmaking_SteamMatchMaking007_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) { - struct cppISteamMatchmaking_SteamMatchMaking007_SendLobbyChatMsg_params params = + struct ISteamMatchmaking_SteamMatchMaking007_SendLobbyChatMsg_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -2867,13 +2853,13 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking007_SendLobbyChatMsg(struct .cubMsgBody = cubMsgBody, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_SendLobbyChatMsg( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_SendLobbyChatMsg, ¶ms ); 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) { - struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyChatEntry_params params = + struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyChatEntry_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -2884,25 +2870,25 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyChatEntry(st .peChatEntryType = peChatEntryType, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_GetLobbyChatEntry( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_GetLobbyChatEntry, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking007_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking007_RequestLobbyData_params params = + struct ISteamMatchmaking_SteamMatchMaking007_RequestLobbyData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_RequestLobbyData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_RequestLobbyData, ¶ms ); return params._ret; } void __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t unGameServerIP, uint16_t unGameServerPort, CSteamID steamIDGameServer) { - struct cppISteamMatchmaking_SteamMatchMaking007_SetLobbyGameServer_params params = + struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyGameServer_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -2911,12 +2897,12 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyGameServer(stru .steamIDGameServer = steamIDGameServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_SetLobbyGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_SetLobbyGameServer, ¶ms ); } bool __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) { - struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer_params params = + struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -2925,84 +2911,84 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer(stru .psteamIDGameServer = psteamIDGameServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) { - struct cppISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberLimit_params params = + struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberLimit_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .cMaxMembers = cMaxMembers, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberLimit( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberLimit, ¶ms ); return params._ret; } int32_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberLimit_params params = + struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberLimit_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberLimit( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberLimit, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyType(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t eLobbyType) { - struct cppISteamMatchmaking_SteamMatchMaking007_SetLobbyType_params params = + struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyType_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .eLobbyType = eLobbyType, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_SetLobbyType( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_SetLobbyType, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyJoinable(struct w_steam_iface *_this, CSteamID steamIDLobby, bool bLobbyJoinable) { - struct cppISteamMatchmaking_SteamMatchMaking007_SetLobbyJoinable_params params = + struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyJoinable_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .bLobbyJoinable = bLobbyJoinable, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_SetLobbyJoinable( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_SetLobbyJoinable, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyOwner(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyOwner_params params = + struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyOwner_params params = { .linux_side = _this->u_iface, ._ret = _ret, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_GetLobbyOwner( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_GetLobbyOwner, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyOwner(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDNewOwner) { - struct cppISteamMatchmaking_SteamMatchMaking007_SetLobbyOwner_params params = + struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyOwner_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDNewOwner = steamIDNewOwner, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking007_SetLobbyOwner( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_SetLobbyOwner, ¶ms ); return params._ret; } @@ -3058,8 +3044,6 @@ struct w_steam_iface *create_winISteamMatchmaking_SteamMatchMaking007(void *u_if return r; } -#include "cppISteamMatchmaking_SteamMatchMaking008.h" - DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking008_GetFavoriteGameCount, 4) DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame, 32) DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking008_AddFavoriteGame, 28) @@ -3099,18 +3083,18 @@ DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking008_SetLobbyOwner, int32_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetFavoriteGameCount(struct w_steam_iface *_this) { - struct cppISteamMatchmaking_SteamMatchMaking008_GetFavoriteGameCount_params params = + struct ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGameCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_GetFavoriteGameCount( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGameCount, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) { - struct cppISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame_params params = + struct ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame_params params = { .linux_side = _this->u_iface, .iGame = iGame, @@ -3122,13 +3106,13 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame(struct .pRTime32LastPlayedOnServer = pRTime32LastPlayedOnServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame, ¶ms ); 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) { - struct cppISteamMatchmaking_SteamMatchMaking008_AddFavoriteGame_params params = + struct ISteamMatchmaking_SteamMatchMaking008_AddFavoriteGame_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, @@ -3139,13 +3123,13 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking008_AddFavoriteGame(stru .rTime32LastPlayedOnServer = rTime32LastPlayedOnServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_AddFavoriteGame( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_AddFavoriteGame, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking008_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) { - struct cppISteamMatchmaking_SteamMatchMaking008_RemoveFavoriteGame_params params = + struct ISteamMatchmaking_SteamMatchMaking008_RemoveFavoriteGame_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, @@ -3155,24 +3139,24 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking008_RemoveFavoriteGame(stru .unFlags = unFlags, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_RemoveFavoriteGame( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_RemoveFavoriteGame, ¶ms ); return params._ret; } uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking008_RequestLobbyList(struct w_steam_iface *_this) { - struct cppISteamMatchmaking_SteamMatchMaking008_RequestLobbyList_params params = + struct ISteamMatchmaking_SteamMatchMaking008_RequestLobbyList_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_RequestLobbyList( ¶ms ); + 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) { - struct cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListStringFilter_params params = + struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListStringFilter_params params = { .linux_side = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, @@ -3180,12 +3164,12 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListStri .eComparisonType = eComparisonType, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListStringFilter( ¶ms ); + 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) { - struct cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNumericalFilter_params params = + struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNumericalFilter_params params = { .linux_side = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, @@ -3193,131 +3177,131 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNume .eComparisonType = eComparisonType, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNumericalFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNumericalFilter, ¶ms ); } void __thiscall winISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNearValueFilter(struct w_steam_iface *_this, const char *pchKeyToMatch, int32_t nValueToBeCloseTo) { - struct cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNearValueFilter_params params = + struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNearValueFilter_params params = { .linux_side = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, .nValueToBeCloseTo = nValueToBeCloseTo, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNearValueFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNearValueFilter, ¶ms ); } void __thiscall winISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListFilterSlotsAvailable(struct w_steam_iface *_this, int32_t nSlotsAvailable) { - struct cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListFilterSlotsAvailable_params params = + struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListFilterSlotsAvailable_params params = { .linux_side = _this->u_iface, .nSlotsAvailable = nSlotsAvailable, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListFilterSlotsAvailable( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListFilterSlotsAvailable, ¶ms ); } void __thiscall winISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListDistanceFilter(struct w_steam_iface *_this, uint32_t eLobbyDistanceFilter) { - struct cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListDistanceFilter_params params = + struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListDistanceFilter_params params = { .linux_side = _this->u_iface, .eLobbyDistanceFilter = eLobbyDistanceFilter, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListDistanceFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListDistanceFilter, ¶ms ); } void __thiscall winISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListResultCountFilter(struct w_steam_iface *_this, int32_t cMaxResults) { - struct cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListResultCountFilter_params params = + struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListResultCountFilter_params params = { .linux_side = _this->u_iface, .cMaxResults = cMaxResults, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListResultCountFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListResultCountFilter, ¶ms ); } CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iLobby) { - struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyByIndex_params params = + struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iLobby = iLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_GetLobbyByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_GetLobbyByIndex, ¶ms ); return params._ret; } uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking008_CreateLobby(struct w_steam_iface *_this, uint32_t eLobbyType, int32_t cMaxMembers) { - struct cppISteamMatchmaking_SteamMatchMaking008_CreateLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking008_CreateLobby_params params = { .linux_side = _this->u_iface, .eLobbyType = eLobbyType, .cMaxMembers = cMaxMembers, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_CreateLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_CreateLobby, ¶ms ); return params._ret; } uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking008_JoinLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking008_JoinLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking008_JoinLobby_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_JoinLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_JoinLobby, ¶ms ); return params._ret; } void __thiscall winISteamMatchmaking_SteamMatchMaking008_LeaveLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking008_LeaveLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking008_LeaveLobby_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_LeaveLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_LeaveLobby, ¶ms ); } bool __thiscall winISteamMatchmaking_SteamMatchMaking008_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) { - struct cppISteamMatchmaking_SteamMatchMaking008_InviteUserToLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking008_InviteUserToLobby_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDInvitee = steamIDInvitee, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_InviteUserToLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_InviteUserToLobby, ¶ms ); return params._ret; } int32_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetNumLobbyMembers(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking008_GetNumLobbyMembers_params params = + struct ISteamMatchmaking_SteamMatchMaking008_GetNumLobbyMembers_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_GetNumLobbyMembers( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_GetNumLobbyMembers, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDLobby, int32_t iMember) { - struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberByIndex_params params = + struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -3325,26 +3309,26 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberByI .iMember = iMember, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberByIndex, ¶ms ); return params._ret; } const char * __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey) { - struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyData_params params = + struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_GetLobbyData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_GetLobbyData, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { - struct cppISteamMatchmaking_SteamMatchMaking008_SetLobbyData_params params = + struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -3352,25 +3336,25 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyData(struct w_s .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_SetLobbyData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_SetLobbyData, ¶ms ); return params._ret; } int32_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyDataCount(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyDataCount_params params = + struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataCount_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_GetLobbyDataCount( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataCount, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t iLobbyData, char *pchKey, int32_t cchKeyBufferSize, char *pchValue, int32_t cchValueBufferSize) { - struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex_params params = + struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -3381,26 +3365,26 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex(str .cchValueBufferSize = cchValueBufferSize, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking008_DeleteLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey) { - struct cppISteamMatchmaking_SteamMatchMaking008_DeleteLobbyData_params params = + struct ISteamMatchmaking_SteamMatchMaking008_DeleteLobbyData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_DeleteLobbyData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_DeleteLobbyData, ¶ms ); return params._ret; } const char * __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDUser, const char *pchKey) { - struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberData_params params = + struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -3408,13 +3392,13 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberD .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberData, ¶ms ); return params._ret; } void __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { - struct cppISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberData_params params = + struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -3422,12 +3406,12 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberData(stru .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberData, ¶ms ); } bool __thiscall winISteamMatchmaking_SteamMatchMaking008_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) { - struct cppISteamMatchmaking_SteamMatchMaking008_SendLobbyChatMsg_params params = + struct ISteamMatchmaking_SteamMatchMaking008_SendLobbyChatMsg_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -3435,13 +3419,13 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking008_SendLobbyChatMsg(struct .cubMsgBody = cubMsgBody, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_SendLobbyChatMsg( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_SendLobbyChatMsg, ¶ms ); 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) { - struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyChatEntry_params params = + struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyChatEntry_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -3452,25 +3436,25 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyChatEntry(st .peChatEntryType = peChatEntryType, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_GetLobbyChatEntry( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_GetLobbyChatEntry, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking008_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking008_RequestLobbyData_params params = + struct ISteamMatchmaking_SteamMatchMaking008_RequestLobbyData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_RequestLobbyData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_RequestLobbyData, ¶ms ); return params._ret; } void __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t unGameServerIP, uint16_t unGameServerPort, CSteamID steamIDGameServer) { - struct cppISteamMatchmaking_SteamMatchMaking008_SetLobbyGameServer_params params = + struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyGameServer_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -3479,12 +3463,12 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyGameServer(stru .steamIDGameServer = steamIDGameServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_SetLobbyGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_SetLobbyGameServer, ¶ms ); } bool __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) { - struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer_params params = + struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -3493,84 +3477,84 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer(stru .psteamIDGameServer = psteamIDGameServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) { - struct cppISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberLimit_params params = + struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberLimit_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .cMaxMembers = cMaxMembers, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberLimit( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberLimit, ¶ms ); return params._ret; } int32_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberLimit_params params = + struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberLimit_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberLimit( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberLimit, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyType(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t eLobbyType) { - struct cppISteamMatchmaking_SteamMatchMaking008_SetLobbyType_params params = + struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyType_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .eLobbyType = eLobbyType, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_SetLobbyType( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_SetLobbyType, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyJoinable(struct w_steam_iface *_this, CSteamID steamIDLobby, bool bLobbyJoinable) { - struct cppISteamMatchmaking_SteamMatchMaking008_SetLobbyJoinable_params params = + struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyJoinable_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .bLobbyJoinable = bLobbyJoinable, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_SetLobbyJoinable( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_SetLobbyJoinable, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyOwner(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking008_GetLobbyOwner_params params = + struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyOwner_params params = { .linux_side = _this->u_iface, ._ret = _ret, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_GetLobbyOwner( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_GetLobbyOwner, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyOwner(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDNewOwner) { - struct cppISteamMatchmaking_SteamMatchMaking008_SetLobbyOwner_params params = + struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyOwner_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDNewOwner = steamIDNewOwner, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking008_SetLobbyOwner( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_SetLobbyOwner, ¶ms ); return params._ret; } @@ -3628,8 +3612,6 @@ struct w_steam_iface *create_winISteamMatchmaking_SteamMatchMaking008(void *u_if return r; } -#include "cppISteamMatchmaking_SteamMatchMaking009.h" - DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking009_GetFavoriteGameCount, 4) DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame, 32) DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking009_AddFavoriteGame, 28) @@ -3671,18 +3653,18 @@ DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking009_SetLinkedLobby, int32_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetFavoriteGameCount(struct w_steam_iface *_this) { - struct cppISteamMatchmaking_SteamMatchMaking009_GetFavoriteGameCount_params params = + struct ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGameCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_GetFavoriteGameCount( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGameCount, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) { - struct cppISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame_params params = + struct ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame_params params = { .linux_side = _this->u_iface, .iGame = iGame, @@ -3694,13 +3676,13 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame(struct .pRTime32LastPlayedOnServer = pRTime32LastPlayedOnServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame, ¶ms ); 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) { - struct cppISteamMatchmaking_SteamMatchMaking009_AddFavoriteGame_params params = + struct ISteamMatchmaking_SteamMatchMaking009_AddFavoriteGame_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, @@ -3711,13 +3693,13 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking009_AddFavoriteGame(stru .rTime32LastPlayedOnServer = rTime32LastPlayedOnServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_AddFavoriteGame( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_AddFavoriteGame, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking009_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) { - struct cppISteamMatchmaking_SteamMatchMaking009_RemoveFavoriteGame_params params = + struct ISteamMatchmaking_SteamMatchMaking009_RemoveFavoriteGame_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, @@ -3727,24 +3709,24 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking009_RemoveFavoriteGame(stru .unFlags = unFlags, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_RemoveFavoriteGame( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_RemoveFavoriteGame, ¶ms ); return params._ret; } uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking009_RequestLobbyList(struct w_steam_iface *_this) { - struct cppISteamMatchmaking_SteamMatchMaking009_RequestLobbyList_params params = + struct ISteamMatchmaking_SteamMatchMaking009_RequestLobbyList_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_RequestLobbyList( ¶ms ); + 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) { - struct cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListStringFilter_params params = + struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListStringFilter_params params = { .linux_side = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, @@ -3752,12 +3734,12 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListStri .eComparisonType = eComparisonType, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListStringFilter( ¶ms ); + 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) { - struct cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNumericalFilter_params params = + struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNumericalFilter_params params = { .linux_side = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, @@ -3765,142 +3747,142 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNume .eComparisonType = eComparisonType, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNumericalFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNumericalFilter, ¶ms ); } void __thiscall winISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNearValueFilter(struct w_steam_iface *_this, const char *pchKeyToMatch, int32_t nValueToBeCloseTo) { - struct cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNearValueFilter_params params = + struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNearValueFilter_params params = { .linux_side = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, .nValueToBeCloseTo = nValueToBeCloseTo, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNearValueFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNearValueFilter, ¶ms ); } void __thiscall winISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListFilterSlotsAvailable(struct w_steam_iface *_this, int32_t nSlotsAvailable) { - struct cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListFilterSlotsAvailable_params params = + struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListFilterSlotsAvailable_params params = { .linux_side = _this->u_iface, .nSlotsAvailable = nSlotsAvailable, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListFilterSlotsAvailable( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListFilterSlotsAvailable, ¶ms ); } void __thiscall winISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListDistanceFilter(struct w_steam_iface *_this, uint32_t eLobbyDistanceFilter) { - struct cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListDistanceFilter_params params = + struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListDistanceFilter_params params = { .linux_side = _this->u_iface, .eLobbyDistanceFilter = eLobbyDistanceFilter, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListDistanceFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListDistanceFilter, ¶ms ); } void __thiscall winISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListResultCountFilter(struct w_steam_iface *_this, int32_t cMaxResults) { - struct cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListResultCountFilter_params params = + struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListResultCountFilter_params params = { .linux_side = _this->u_iface, .cMaxResults = cMaxResults, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListResultCountFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListResultCountFilter, ¶ms ); } void __thiscall winISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListCompatibleMembersFilter(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListCompatibleMembersFilter_params params = + struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListCompatibleMembersFilter_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListCompatibleMembersFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListCompatibleMembersFilter, ¶ms ); } CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iLobby) { - struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyByIndex_params params = + struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, .iLobby = iLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_GetLobbyByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_GetLobbyByIndex, ¶ms ); return params._ret; } uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking009_CreateLobby(struct w_steam_iface *_this, uint32_t eLobbyType, int32_t cMaxMembers) { - struct cppISteamMatchmaking_SteamMatchMaking009_CreateLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking009_CreateLobby_params params = { .linux_side = _this->u_iface, .eLobbyType = eLobbyType, .cMaxMembers = cMaxMembers, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_CreateLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_CreateLobby, ¶ms ); return params._ret; } uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking009_JoinLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking009_JoinLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking009_JoinLobby_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_JoinLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_JoinLobby, ¶ms ); return params._ret; } void __thiscall winISteamMatchmaking_SteamMatchMaking009_LeaveLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking009_LeaveLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking009_LeaveLobby_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_LeaveLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_LeaveLobby, ¶ms ); } bool __thiscall winISteamMatchmaking_SteamMatchMaking009_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) { - struct cppISteamMatchmaking_SteamMatchMaking009_InviteUserToLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking009_InviteUserToLobby_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDInvitee = steamIDInvitee, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_InviteUserToLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_InviteUserToLobby, ¶ms ); return params._ret; } int32_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetNumLobbyMembers(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking009_GetNumLobbyMembers_params params = + struct ISteamMatchmaking_SteamMatchMaking009_GetNumLobbyMembers_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_GetNumLobbyMembers( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_GetNumLobbyMembers, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDLobby, int32_t iMember) { - struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberByIndex_params params = + struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberByIndex_params params = { .linux_side = _this->u_iface, ._ret = _ret, @@ -3908,26 +3890,26 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberByI .iMember = iMember, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberByIndex, ¶ms ); return params._ret; } const char * __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey) { - struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyData_params params = + struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_GetLobbyData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_GetLobbyData, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { - struct cppISteamMatchmaking_SteamMatchMaking009_SetLobbyData_params params = + struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -3935,25 +3917,25 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyData(struct w_s .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_SetLobbyData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_SetLobbyData, ¶ms ); return params._ret; } int32_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyDataCount(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyDataCount_params params = + struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataCount_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_GetLobbyDataCount( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataCount, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t iLobbyData, char *pchKey, int32_t cchKeyBufferSize, char *pchValue, int32_t cchValueBufferSize) { - struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex_params params = + struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -3964,26 +3946,26 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex(str .cchValueBufferSize = cchValueBufferSize, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking009_DeleteLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey) { - struct cppISteamMatchmaking_SteamMatchMaking009_DeleteLobbyData_params params = + struct ISteamMatchmaking_SteamMatchMaking009_DeleteLobbyData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_DeleteLobbyData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_DeleteLobbyData, ¶ms ); return params._ret; } const char * __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDUser, const char *pchKey) { - struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberData_params params = + struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -3991,13 +3973,13 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberD .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberData, ¶ms ); return params._ret; } void __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { - struct cppISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberData_params params = + struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -4005,12 +3987,12 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberData(stru .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberData, ¶ms ); } bool __thiscall winISteamMatchmaking_SteamMatchMaking009_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) { - struct cppISteamMatchmaking_SteamMatchMaking009_SendLobbyChatMsg_params params = + struct ISteamMatchmaking_SteamMatchMaking009_SendLobbyChatMsg_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -4018,13 +4000,13 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking009_SendLobbyChatMsg(struct .cubMsgBody = cubMsgBody, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_SendLobbyChatMsg( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_SendLobbyChatMsg, ¶ms ); 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) { - struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyChatEntry_params params = + struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyChatEntry_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -4035,25 +4017,25 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyChatEntry(st .peChatEntryType = peChatEntryType, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_GetLobbyChatEntry( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_GetLobbyChatEntry, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking009_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking009_RequestLobbyData_params params = + struct ISteamMatchmaking_SteamMatchMaking009_RequestLobbyData_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_RequestLobbyData( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_RequestLobbyData, ¶ms ); return params._ret; } void __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t unGameServerIP, uint16_t unGameServerPort, CSteamID steamIDGameServer) { - struct cppISteamMatchmaking_SteamMatchMaking009_SetLobbyGameServer_params params = + struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyGameServer_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -4062,12 +4044,12 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyGameServer(stru .steamIDGameServer = steamIDGameServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_SetLobbyGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_SetLobbyGameServer, ¶ms ); } bool __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) { - struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer_params params = + struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, @@ -4076,97 +4058,97 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer(stru .psteamIDGameServer = psteamIDGameServer, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) { - struct cppISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberLimit_params params = + struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberLimit_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .cMaxMembers = cMaxMembers, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberLimit( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberLimit, ¶ms ); return params._ret; } int32_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberLimit_params params = + struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberLimit_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberLimit( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberLimit, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyType(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t eLobbyType) { - struct cppISteamMatchmaking_SteamMatchMaking009_SetLobbyType_params params = + struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyType_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .eLobbyType = eLobbyType, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_SetLobbyType( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_SetLobbyType, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyJoinable(struct w_steam_iface *_this, CSteamID steamIDLobby, bool bLobbyJoinable) { - struct cppISteamMatchmaking_SteamMatchMaking009_SetLobbyJoinable_params params = + struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyJoinable_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .bLobbyJoinable = bLobbyJoinable, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_SetLobbyJoinable( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_SetLobbyJoinable, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyOwner(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDLobby) { - struct cppISteamMatchmaking_SteamMatchMaking009_GetLobbyOwner_params params = + struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyOwner_params params = { .linux_side = _this->u_iface, ._ret = _ret, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_GetLobbyOwner( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_GetLobbyOwner, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDNewOwner) { - struct cppISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner_params params = + struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDNewOwner = steamIDNewOwner, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner, ¶ms ); return params._ret; } bool __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLinkedLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDLobbyDependent) { - struct cppISteamMatchmaking_SteamMatchMaking009_SetLinkedLobby_params params = + struct ISteamMatchmaking_SteamMatchMaking009_SetLinkedLobby_params params = { .linux_side = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDLobbyDependent = steamIDLobbyDependent, }; TRACE("%p\n", _this); - cppISteamMatchmaking_SteamMatchMaking009_SetLinkedLobby( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_SetLinkedLobby, ¶ms ); return params._ret; } diff --git a/lsteamclient/winISteamMatchmakingServers.c b/lsteamclient/winISteamMatchmakingServers.c index b277a47b..620d584b 100644 --- a/lsteamclient/winISteamMatchmakingServers.c +++ b/lsteamclient/winISteamMatchmakingServers.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamMatchmakingServers_SteamMatchMakingServers001.h" - DEFINE_THISCALL_WRAPPER(winISteamMatchmakingServers_SteamMatchMakingServers001_RequestInternetServerList, 20) DEFINE_THISCALL_WRAPPER(winISteamMatchmakingServers_SteamMatchMakingServers001_RequestLANServerList, 12) DEFINE_THISCALL_WRAPPER(winISteamMatchmakingServers_SteamMatchMakingServers001_RequestFriendsServerList, 20) @@ -24,7 +22,7 @@ DEFINE_THISCALL_WRAPPER(winISteamMatchmakingServers_SteamMatchMakingServers001_C void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RequestInternetServerList(struct w_steam_iface *_this, uint32_t iApp, MatchMakingKeyValuePair_t **ppchFilters, uint32_t nFilters, w_ISteamMatchmakingServerListResponse *pRequestServersResponse) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestInternetServerList_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestInternetServerList_params params = { .linux_side = _this->u_iface, .iApp = iApp, @@ -33,24 +31,24 @@ void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RequestIn .pRequestServersResponse = pRequestServersResponse, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestInternetServerList( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers001_RequestInternetServerList, ¶ms ); } void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RequestLANServerList(struct w_steam_iface *_this, uint32_t iApp, w_ISteamMatchmakingServerListResponse *pRequestServersResponse) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestLANServerList_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestLANServerList_params params = { .linux_side = _this->u_iface, .iApp = iApp, .pRequestServersResponse = pRequestServersResponse, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestLANServerList( ¶ms ); + 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 *pRequestServersResponse) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestFriendsServerList_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestFriendsServerList_params params = { .linux_side = _this->u_iface, .iApp = iApp, @@ -59,12 +57,12 @@ void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RequestFr .pRequestServersResponse = pRequestServersResponse, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestFriendsServerList( ¶ms ); + 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 *pRequestServersResponse) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestFavoritesServerList_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestFavoritesServerList_params params = { .linux_side = _this->u_iface, .iApp = iApp, @@ -73,12 +71,12 @@ void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RequestFa .pRequestServersResponse = pRequestServersResponse, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestFavoritesServerList( ¶ms ); + 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 *pRequestServersResponse) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestHistoryServerList_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestHistoryServerList_params params = { .linux_side = _this->u_iface, .iApp = iApp, @@ -87,12 +85,12 @@ void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RequestHi .pRequestServersResponse = pRequestServersResponse, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestHistoryServerList( ¶ms ); + 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 *pRequestServersResponse) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestSpectatorServerList_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestSpectatorServerList_params params = { .linux_side = _this->u_iface, .iApp = iApp, @@ -101,83 +99,83 @@ void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RequestSp .pRequestServersResponse = pRequestServersResponse, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers001_RequestSpectatorServerList( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers001_RequestSpectatorServerList, ¶ms ); } gameserveritem_t_105 * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_GetServerDetails(struct w_steam_iface *_this, uint32_t eType, int32_t iServer) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers001_GetServerDetails_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers001_GetServerDetails_params params = { .linux_side = _this->u_iface, .eType = eType, .iServer = iServer, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers001_GetServerDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers001_GetServerDetails, ¶ms ); return params._ret; } void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_CancelQuery(struct w_steam_iface *_this, uint32_t eType) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers001_CancelQuery_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers001_CancelQuery_params params = { .linux_side = _this->u_iface, .eType = eType, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers001_CancelQuery( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers001_CancelQuery, ¶ms ); } void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RefreshQuery(struct w_steam_iface *_this, uint32_t eType) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RefreshQuery_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers001_RefreshQuery_params params = { .linux_side = _this->u_iface, .eType = eType, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers001_RefreshQuery( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers001_RefreshQuery, ¶ms ); } bool __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_IsRefreshing(struct w_steam_iface *_this, uint32_t eType) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers001_IsRefreshing_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers001_IsRefreshing_params params = { .linux_side = _this->u_iface, .eType = eType, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers001_IsRefreshing( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers001_IsRefreshing, ¶ms ); return params._ret; } int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_GetServerCount(struct w_steam_iface *_this, uint32_t eType) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers001_GetServerCount_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers001_GetServerCount_params params = { .linux_side = _this->u_iface, .eType = eType, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers001_GetServerCount( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers001_GetServerCount, ¶ms ); return params._ret; } void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RefreshServer(struct w_steam_iface *_this, uint32_t eType, int32_t iServer) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers001_RefreshServer_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers001_RefreshServer_params params = { .linux_side = _this->u_iface, .eType = eType, .iServer = iServer, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers001_RefreshServer( ¶ms ); + 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) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers001_PingServer_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers001_PingServer_params params = { .linux_side = _this->u_iface, .unIP = unIP, @@ -185,13 +183,13 @@ int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_PingSe .pRequestServersResponse = pRequestServersResponse, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers001_PingServer( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers001_PingServer, ¶ms ); return params._ret; } int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_PlayerDetails(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort, w_ISteamMatchmakingPlayersResponse *pRequestServersResponse) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers001_PlayerDetails_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers001_PlayerDetails_params params = { .linux_side = _this->u_iface, .unIP = unIP, @@ -199,13 +197,13 @@ int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_Player .pRequestServersResponse = pRequestServersResponse, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers001_PlayerDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers001_PlayerDetails, ¶ms ); return params._ret; } int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_ServerRules(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort, w_ISteamMatchmakingRulesResponse *pRequestServersResponse) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers001_ServerRules_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers001_ServerRules_params params = { .linux_side = _this->u_iface, .unIP = unIP, @@ -213,19 +211,19 @@ int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_Server .pRequestServersResponse = pRequestServersResponse, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers001_ServerRules( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers001_ServerRules, ¶ms ); return params._ret; } void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_CancelServerQuery(struct w_steam_iface *_this, int32_t hServerQuery) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers001_CancelServerQuery_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers001_CancelServerQuery_params params = { .linux_side = _this->u_iface, .hServerQuery = hServerQuery, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers001_CancelServerQuery( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers001_CancelServerQuery, ¶ms ); } extern vtable_ptr winISteamMatchmakingServers_SteamMatchMakingServers001_vtable; @@ -262,8 +260,6 @@ struct w_steam_iface *create_winISteamMatchmakingServers_SteamMatchMakingServers return r; } -#include "cppISteamMatchmakingServers_SteamMatchMakingServers002.h" - DEFINE_THISCALL_WRAPPER(winISteamMatchmakingServers_SteamMatchMakingServers002_RequestInternetServerList, 20) DEFINE_THISCALL_WRAPPER(winISteamMatchmakingServers_SteamMatchMakingServers002_RequestLANServerList, 12) DEFINE_THISCALL_WRAPPER(winISteamMatchmakingServers_SteamMatchMakingServers002_RequestFriendsServerList, 20) @@ -284,7 +280,7 @@ DEFINE_THISCALL_WRAPPER(winISteamMatchmakingServers_SteamMatchMakingServers002_C void * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_RequestInternetServerList(struct w_steam_iface *_this, uint32_t iApp, MatchMakingKeyValuePair_t **ppchFilters, uint32_t nFilters, w_ISteamMatchmakingServerListResponse *pRequestServersResponse) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestInternetServerList_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestInternetServerList_params params = { .linux_side = _this->u_iface, .iApp = iApp, @@ -293,26 +289,26 @@ void * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_Request .pRequestServersResponse = pRequestServersResponse, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestInternetServerList( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers002_RequestInternetServerList, ¶ms ); return params._ret; } void * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_RequestLANServerList(struct w_steam_iface *_this, uint32_t iApp, w_ISteamMatchmakingServerListResponse *pRequestServersResponse) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestLANServerList_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestLANServerList_params params = { .linux_side = _this->u_iface, .iApp = iApp, .pRequestServersResponse = pRequestServersResponse, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestLANServerList( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers002_RequestLANServerList, ¶ms ); return params._ret; } void * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_RequestFriendsServerList(struct w_steam_iface *_this, uint32_t iApp, MatchMakingKeyValuePair_t **ppchFilters, uint32_t nFilters, w_ISteamMatchmakingServerListResponse *pRequestServersResponse) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestFriendsServerList_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestFriendsServerList_params params = { .linux_side = _this->u_iface, .iApp = iApp, @@ -321,13 +317,13 @@ void * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_Request .pRequestServersResponse = pRequestServersResponse, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestFriendsServerList( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers002_RequestFriendsServerList, ¶ms ); return params._ret; } void * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_RequestFavoritesServerList(struct w_steam_iface *_this, uint32_t iApp, MatchMakingKeyValuePair_t **ppchFilters, uint32_t nFilters, w_ISteamMatchmakingServerListResponse *pRequestServersResponse) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestFavoritesServerList_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestFavoritesServerList_params params = { .linux_side = _this->u_iface, .iApp = iApp, @@ -336,13 +332,13 @@ void * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_Request .pRequestServersResponse = pRequestServersResponse, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestFavoritesServerList( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers002_RequestFavoritesServerList, ¶ms ); return params._ret; } void * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_RequestHistoryServerList(struct w_steam_iface *_this, uint32_t iApp, MatchMakingKeyValuePair_t **ppchFilters, uint32_t nFilters, w_ISteamMatchmakingServerListResponse *pRequestServersResponse) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestHistoryServerList_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestHistoryServerList_params params = { .linux_side = _this->u_iface, .iApp = iApp, @@ -351,13 +347,13 @@ void * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_Request .pRequestServersResponse = pRequestServersResponse, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestHistoryServerList( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers002_RequestHistoryServerList, ¶ms ); return params._ret; } void * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_RequestSpectatorServerList(struct w_steam_iface *_this, uint32_t iApp, MatchMakingKeyValuePair_t **ppchFilters, uint32_t nFilters, w_ISteamMatchmakingServerListResponse *pRequestServersResponse) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestSpectatorServerList_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestSpectatorServerList_params params = { .linux_side = _this->u_iface, .iApp = iApp, @@ -366,95 +362,95 @@ void * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_Request .pRequestServersResponse = pRequestServersResponse, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers002_RequestSpectatorServerList( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers002_RequestSpectatorServerList, ¶ms ); return params._ret; } void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_ReleaseRequest(struct w_steam_iface *_this, void *hServerListRequest) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers002_ReleaseRequest_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers002_ReleaseRequest_params params = { .linux_side = _this->u_iface, .hServerListRequest = hServerListRequest, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers002_ReleaseRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers002_ReleaseRequest, ¶ms ); } gameserveritem_t_105 * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_GetServerDetails(struct w_steam_iface *_this, void *hRequest, int32_t iServer) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers002_GetServerDetails_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers002_GetServerDetails_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, .iServer = iServer, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers002_GetServerDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers002_GetServerDetails, ¶ms ); return params._ret; } void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_CancelQuery(struct w_steam_iface *_this, void *hRequest) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers002_CancelQuery_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers002_CancelQuery_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers002_CancelQuery( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers002_CancelQuery, ¶ms ); } void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_RefreshQuery(struct w_steam_iface *_this, void *hRequest) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RefreshQuery_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers002_RefreshQuery_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers002_RefreshQuery( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers002_RefreshQuery, ¶ms ); } bool __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_IsRefreshing(struct w_steam_iface *_this, void *hRequest) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers002_IsRefreshing_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers002_IsRefreshing_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers002_IsRefreshing( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers002_IsRefreshing, ¶ms ); return params._ret; } int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_GetServerCount(struct w_steam_iface *_this, void *hRequest) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers002_GetServerCount_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers002_GetServerCount_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers002_GetServerCount( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers002_GetServerCount, ¶ms ); return params._ret; } void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_RefreshServer(struct w_steam_iface *_this, void *hRequest, int32_t iServer) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers002_RefreshServer_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers002_RefreshServer_params params = { .linux_side = _this->u_iface, .hRequest = hRequest, .iServer = iServer, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers002_RefreshServer( ¶ms ); + 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) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers002_PingServer_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers002_PingServer_params params = { .linux_side = _this->u_iface, .unIP = unIP, @@ -462,13 +458,13 @@ int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_PingSe .pRequestServersResponse = pRequestServersResponse, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers002_PingServer( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers002_PingServer, ¶ms ); return params._ret; } int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_PlayerDetails(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort, w_ISteamMatchmakingPlayersResponse *pRequestServersResponse) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers002_PlayerDetails_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers002_PlayerDetails_params params = { .linux_side = _this->u_iface, .unIP = unIP, @@ -476,13 +472,13 @@ int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_Player .pRequestServersResponse = pRequestServersResponse, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers002_PlayerDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers002_PlayerDetails, ¶ms ); return params._ret; } int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_ServerRules(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort, w_ISteamMatchmakingRulesResponse *pRequestServersResponse) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers002_ServerRules_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers002_ServerRules_params params = { .linux_side = _this->u_iface, .unIP = unIP, @@ -490,19 +486,19 @@ int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_Server .pRequestServersResponse = pRequestServersResponse, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers002_ServerRules( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers002_ServerRules, ¶ms ); return params._ret; } void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_CancelServerQuery(struct w_steam_iface *_this, int32_t hServerQuery) { - struct cppISteamMatchmakingServers_SteamMatchMakingServers002_CancelServerQuery_params params = + struct ISteamMatchmakingServers_SteamMatchMakingServers002_CancelServerQuery_params params = { .linux_side = _this->u_iface, .hServerQuery = hServerQuery, }; TRACE("%p\n", _this); - cppISteamMatchmakingServers_SteamMatchMakingServers002_CancelServerQuery( ¶ms ); + STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers002_CancelServerQuery, ¶ms ); } extern vtable_ptr winISteamMatchmakingServers_SteamMatchMakingServers002_vtable; diff --git a/lsteamclient/winISteamMusic.c b/lsteamclient/winISteamMusic.c index 1a8e071c..a2fa834e 100644 --- a/lsteamclient/winISteamMusic.c +++ b/lsteamclient/winISteamMusic.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001.h" - DEFINE_THISCALL_WRAPPER(winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsEnabled, 4) DEFINE_THISCALL_WRAPPER(winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsPlaying, 4) DEFINE_THISCALL_WRAPPER(winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetPlaybackStatus, 4) @@ -17,96 +15,96 @@ DEFINE_THISCALL_WRAPPER(winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetVolume bool __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsEnabled(struct w_steam_iface *_this) { - struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsEnabled_params params = + struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsEnabled_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsEnabled( ¶ms ); + STEAMCLIENT_CALL( ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsEnabled, ¶ms ); return params._ret; } bool __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsPlaying(struct w_steam_iface *_this) { - struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsPlaying_params params = + struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsPlaying_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsPlaying( ¶ms ); + STEAMCLIENT_CALL( ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsPlaying, ¶ms ); return params._ret; } uint32_t __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetPlaybackStatus(struct w_steam_iface *_this) { - struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetPlaybackStatus_params params = + struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetPlaybackStatus_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetPlaybackStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetPlaybackStatus, ¶ms ); return params._ret; } void __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Play(struct w_steam_iface *_this) { - struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Play_params params = + struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Play_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Play( ¶ms ); + STEAMCLIENT_CALL( ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Play, ¶ms ); } void __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Pause(struct w_steam_iface *_this) { - struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Pause_params params = + struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Pause_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Pause( ¶ms ); + STEAMCLIENT_CALL( ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Pause, ¶ms ); } void __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayPrevious(struct w_steam_iface *_this) { - struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayPrevious_params params = + struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayPrevious_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayPrevious( ¶ms ); + STEAMCLIENT_CALL( ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayPrevious, ¶ms ); } void __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayNext(struct w_steam_iface *_this) { - struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayNext_params params = + struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayNext_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayNext( ¶ms ); + STEAMCLIENT_CALL( ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayNext, ¶ms ); } void __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_SetVolume(struct w_steam_iface *_this, float flVolume) { - struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_SetVolume_params params = + struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_SetVolume_params params = { .linux_side = _this->u_iface, .flVolume = flVolume, }; TRACE("%p\n", _this); - cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_SetVolume( ¶ms ); + STEAMCLIENT_CALL( ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_SetVolume, ¶ms ); } float __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetVolume(struct w_steam_iface *_this) { - struct cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetVolume_params params = + struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetVolume_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetVolume( ¶ms ); + STEAMCLIENT_CALL( ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetVolume, ¶ms ); return params._ret; } diff --git a/lsteamclient/winISteamMusicRemote.c b/lsteamclient/winISteamMusicRemote.c index dd194d60..883c7b68 100644 --- a/lsteamclient/winISteamMusicRemote.c +++ b/lsteamclient/winISteamMusicRemote.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001.h" - DEFINE_THISCALL_WRAPPER(winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_RegisterSteamMusicRemote, 8) DEFINE_THISCALL_WRAPPER(winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_DeregisterSteamMusicRemote, 4) DEFINE_THISCALL_WRAPPER(winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BIsCurrentMusicRemote, 4) @@ -40,291 +38,291 @@ DEFINE_THISCALL_WRAPPER(winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION0 bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_RegisterSteamMusicRemote(struct w_steam_iface *_this, const char *pchName) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_RegisterSteamMusicRemote_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_RegisterSteamMusicRemote_params params = { .linux_side = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_RegisterSteamMusicRemote( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_RegisterSteamMusicRemote, ¶ms ); return params._ret; } bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_DeregisterSteamMusicRemote(struct w_steam_iface *_this) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_DeregisterSteamMusicRemote_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_DeregisterSteamMusicRemote_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_DeregisterSteamMusicRemote( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_DeregisterSteamMusicRemote, ¶ms ); return params._ret; } bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BIsCurrentMusicRemote(struct w_steam_iface *_this) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BIsCurrentMusicRemote_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BIsCurrentMusicRemote_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BIsCurrentMusicRemote( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BIsCurrentMusicRemote, ¶ms ); return params._ret; } bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BActivationSuccess(struct w_steam_iface *_this, bool bValue) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BActivationSuccess_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BActivationSuccess_params params = { .linux_side = _this->u_iface, .bValue = bValue, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BActivationSuccess( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BActivationSuccess, ¶ms ); return params._ret; } bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetDisplayName(struct w_steam_iface *_this, const char *pchDisplayName) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetDisplayName_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetDisplayName_params params = { .linux_side = _this->u_iface, .pchDisplayName = pchDisplayName, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetDisplayName( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetDisplayName, ¶ms ); return params._ret; } bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPNGIcon_64x64(struct w_steam_iface *_this, void *pvBuffer, uint32_t cbBufferLength) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPNGIcon_64x64_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPNGIcon_64x64_params params = { .linux_side = _this->u_iface, .pvBuffer = pvBuffer, .cbBufferLength = cbBufferLength, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPNGIcon_64x64( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPNGIcon_64x64, ¶ms ); return params._ret; } bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayPrevious(struct w_steam_iface *_this, bool bValue) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayPrevious_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayPrevious_params params = { .linux_side = _this->u_iface, .bValue = bValue, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayPrevious( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayPrevious, ¶ms ); return params._ret; } bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayNext(struct w_steam_iface *_this, bool bValue) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayNext_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayNext_params params = { .linux_side = _this->u_iface, .bValue = bValue, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayNext( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayNext, ¶ms ); return params._ret; } bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableShuffled(struct w_steam_iface *_this, bool bValue) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableShuffled_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableShuffled_params params = { .linux_side = _this->u_iface, .bValue = bValue, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableShuffled( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableShuffled, ¶ms ); return params._ret; } bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableLooped(struct w_steam_iface *_this, bool bValue) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableLooped_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableLooped_params params = { .linux_side = _this->u_iface, .bValue = bValue, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableLooped( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableLooped, ¶ms ); return params._ret; } bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableQueue(struct w_steam_iface *_this, bool bValue) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableQueue_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableQueue_params params = { .linux_side = _this->u_iface, .bValue = bValue, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableQueue( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableQueue, ¶ms ); return params._ret; } bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlaylists(struct w_steam_iface *_this, bool bValue) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlaylists_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlaylists_params params = { .linux_side = _this->u_iface, .bValue = bValue, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlaylists( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlaylists, ¶ms ); return params._ret; } bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdatePlaybackStatus(struct w_steam_iface *_this, uint32_t nStatus) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdatePlaybackStatus_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdatePlaybackStatus_params params = { .linux_side = _this->u_iface, .nStatus = nStatus, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdatePlaybackStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdatePlaybackStatus, ¶ms ); return params._ret; } bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateShuffled(struct w_steam_iface *_this, bool bValue) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateShuffled_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateShuffled_params params = { .linux_side = _this->u_iface, .bValue = bValue, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateShuffled( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateShuffled, ¶ms ); return params._ret; } bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateLooped(struct w_steam_iface *_this, bool bValue) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateLooped_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateLooped_params params = { .linux_side = _this->u_iface, .bValue = bValue, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateLooped( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateLooped, ¶ms ); return params._ret; } bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateVolume(struct w_steam_iface *_this, float flValue) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateVolume_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateVolume_params params = { .linux_side = _this->u_iface, .flValue = flValue, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateVolume( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateVolume, ¶ms ); return params._ret; } bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryWillChange(struct w_steam_iface *_this) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryWillChange_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryWillChange_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryWillChange( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryWillChange, ¶ms ); return params._ret; } bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryIsAvailable(struct w_steam_iface *_this, bool bAvailable) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryIsAvailable_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryIsAvailable_params params = { .linux_side = _this->u_iface, .bAvailable = bAvailable, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryIsAvailable( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryIsAvailable, ¶ms ); return params._ret; } bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryText(struct w_steam_iface *_this, const char *pchText) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryText_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryText_params params = { .linux_side = _this->u_iface, .pchText = pchText, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryText( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryText, ¶ms ); return params._ret; } bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryElapsedSeconds(struct w_steam_iface *_this, int32_t nValue) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryElapsedSeconds_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryElapsedSeconds_params params = { .linux_side = _this->u_iface, .nValue = nValue, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryElapsedSeconds( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryElapsedSeconds, ¶ms ); return params._ret; } bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryCoverArt(struct w_steam_iface *_this, void *pvBuffer, uint32_t cbBufferLength) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryCoverArt_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryCoverArt_params params = { .linux_side = _this->u_iface, .pvBuffer = pvBuffer, .cbBufferLength = cbBufferLength, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryCoverArt( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryCoverArt, ¶ms ); return params._ret; } bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryDidChange(struct w_steam_iface *_this) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryDidChange_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryDidChange_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryDidChange( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryDidChange, ¶ms ); return params._ret; } bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueWillChange(struct w_steam_iface *_this) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueWillChange_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueWillChange_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueWillChange( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueWillChange, ¶ms ); return params._ret; } bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetQueueEntries(struct w_steam_iface *_this) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetQueueEntries_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetQueueEntries_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetQueueEntries( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetQueueEntries, ¶ms ); return params._ret; } bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQueueEntry(struct w_steam_iface *_this, int32_t nID, int32_t nPosition, const char *pchEntryText) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQueueEntry_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQueueEntry_params params = { .linux_side = _this->u_iface, .nID = nID, @@ -332,58 +330,58 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQu .pchEntryText = pchEntryText, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQueueEntry( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQueueEntry, ¶ms ); return params._ret; } bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentQueueEntry(struct w_steam_iface *_this, int32_t nID) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentQueueEntry_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentQueueEntry_params params = { .linux_side = _this->u_iface, .nID = nID, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentQueueEntry( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentQueueEntry, ¶ms ); return params._ret; } bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueDidChange(struct w_steam_iface *_this) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueDidChange_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueDidChange_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueDidChange( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueDidChange, ¶ms ); return params._ret; } bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistWillChange(struct w_steam_iface *_this) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistWillChange_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistWillChange_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistWillChange( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistWillChange, ¶ms ); return params._ret; } bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetPlaylistEntries(struct w_steam_iface *_this) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetPlaylistEntries_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetPlaylistEntries_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetPlaylistEntries( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetPlaylistEntries, ¶ms ); return params._ret; } bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPlaylistEntry(struct w_steam_iface *_this, int32_t nID, int32_t nPosition, const char *pchEntryText) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPlaylistEntry_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPlaylistEntry_params params = { .linux_side = _this->u_iface, .nID = nID, @@ -391,30 +389,30 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPl .pchEntryText = pchEntryText, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPlaylistEntry( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPlaylistEntry, ¶ms ); return params._ret; } bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentPlaylistEntry(struct w_steam_iface *_this, int32_t nID) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentPlaylistEntry_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentPlaylistEntry_params params = { .linux_side = _this->u_iface, .nID = nID, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentPlaylistEntry( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentPlaylistEntry, ¶ms ); return params._ret; } bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistDidChange(struct w_steam_iface *_this) { - struct cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistDidChange_params params = + struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistDidChange_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistDidChange( ¶ms ); + STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistDidChange, ¶ms ); return params._ret; } diff --git a/lsteamclient/winISteamNetworking.c b/lsteamclient/winISteamNetworking.c index 66ad49d9..440deb85 100644 --- a/lsteamclient/winISteamNetworking.c +++ b/lsteamclient/winISteamNetworking.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamNetworking_SteamNetworking001.h" - DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking001_CreateListenSocket, 16) DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking001_CreateP2PConnectionSocket, 20) DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking001_CreateConnectionSocket, 16) @@ -20,7 +18,7 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking001_GetListenSocketIn uint32_t __thiscall winISteamNetworking_SteamNetworking001_CreateListenSocket(struct w_steam_iface *_this, int32_t nVirtualP2PPort, uint32_t nIP, uint16_t nPort) { - struct cppISteamNetworking_SteamNetworking001_CreateListenSocket_params params = + struct ISteamNetworking_SteamNetworking001_CreateListenSocket_params params = { .linux_side = _this->u_iface, .nVirtualP2PPort = nVirtualP2PPort, @@ -28,13 +26,13 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking001_CreateListenSocket(st .nPort = nPort, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking001_CreateListenSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking001_CreateListenSocket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworking_SteamNetworking001_CreateP2PConnectionSocket(struct w_steam_iface *_this, CSteamID steamIDTarget, int32_t nVirtualPort, int32_t nTimeoutSec) { - struct cppISteamNetworking_SteamNetworking001_CreateP2PConnectionSocket_params params = + struct ISteamNetworking_SteamNetworking001_CreateP2PConnectionSocket_params params = { .linux_side = _this->u_iface, .steamIDTarget = steamIDTarget, @@ -42,13 +40,13 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking001_CreateP2PConnectionSo .nTimeoutSec = nTimeoutSec, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking001_CreateP2PConnectionSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking001_CreateP2PConnectionSocket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworking_SteamNetworking001_CreateConnectionSocket(struct w_steam_iface *_this, uint32_t nIP, uint16_t nPort, int32_t nTimeoutSec) { - struct cppISteamNetworking_SteamNetworking001_CreateConnectionSocket_params params = + struct ISteamNetworking_SteamNetworking001_CreateConnectionSocket_params params = { .linux_side = _this->u_iface, .nIP = nIP, @@ -56,39 +54,39 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking001_CreateConnectionSocke .nTimeoutSec = nTimeoutSec, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking001_CreateConnectionSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking001_CreateConnectionSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking001_DestroySocket(struct w_steam_iface *_this, uint32_t hSocket, bool bNotifyRemoteEnd) { - struct cppISteamNetworking_SteamNetworking001_DestroySocket_params params = + struct ISteamNetworking_SteamNetworking001_DestroySocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, .bNotifyRemoteEnd = bNotifyRemoteEnd, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking001_DestroySocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking001_DestroySocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking001_DestroyListenSocket(struct w_steam_iface *_this, uint32_t hSocket, bool bNotifyRemoteEnd) { - struct cppISteamNetworking_SteamNetworking001_DestroyListenSocket_params params = + struct ISteamNetworking_SteamNetworking001_DestroyListenSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, .bNotifyRemoteEnd = bNotifyRemoteEnd, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking001_DestroyListenSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking001_DestroyListenSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking001_SendDataOnSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubData, uint32_t cubData, bool bReliable) { - struct cppISteamNetworking_SteamNetworking001_SendDataOnSocket_params params = + struct ISteamNetworking_SteamNetworking001_SendDataOnSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, @@ -97,26 +95,26 @@ bool __thiscall winISteamNetworking_SteamNetworking001_SendDataOnSocket(struct w .bReliable = bReliable, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking001_SendDataOnSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking001_SendDataOnSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket(struct w_steam_iface *_this, uint32_t hSocket, uint32_t *pcubMsgSize) { - struct cppISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket_params params = + struct ISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, .pcubMsgSize = pcubMsgSize, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking001_RetrieveDataFromSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) { - struct cppISteamNetworking_SteamNetworking001_RetrieveDataFromSocket_params params = + struct ISteamNetworking_SteamNetworking001_RetrieveDataFromSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, @@ -125,13 +123,13 @@ bool __thiscall winISteamNetworking_SteamNetworking001_RetrieveDataFromSocket(st .pcubMsgSize = pcubMsgSize, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking001_RetrieveDataFromSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking001_RetrieveDataFromSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking001_IsDataAvailable(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pcubMsgSize, uint32_t *phSocket) { - struct cppISteamNetworking_SteamNetworking001_IsDataAvailable_params params = + struct ISteamNetworking_SteamNetworking001_IsDataAvailable_params params = { .linux_side = _this->u_iface, .hListenSocket = hListenSocket, @@ -139,13 +137,13 @@ bool __thiscall winISteamNetworking_SteamNetworking001_IsDataAvailable(struct w_ .phSocket = phSocket, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking001_IsDataAvailable( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking001_IsDataAvailable, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking001_RetrieveData(struct w_steam_iface *_this, uint32_t hListenSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, uint32_t *phSocket) { - struct cppISteamNetworking_SteamNetworking001_RetrieveData_params params = + struct ISteamNetworking_SteamNetworking001_RetrieveData_params params = { .linux_side = _this->u_iface, .hListenSocket = hListenSocket, @@ -155,13 +153,13 @@ bool __thiscall winISteamNetworking_SteamNetworking001_RetrieveData(struct w_ste .phSocket = phSocket, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking001_RetrieveData( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking001_RetrieveData, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking001_GetSocketInfo(struct w_steam_iface *_this, uint32_t hSocket, CSteamID *pSteamIDRemote, int32_t *peSocketStatus, uint32_t *punIPRemote, uint16_t *punPortRemote) { - struct cppISteamNetworking_SteamNetworking001_GetSocketInfo_params params = + struct ISteamNetworking_SteamNetworking001_GetSocketInfo_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, @@ -171,13 +169,13 @@ bool __thiscall winISteamNetworking_SteamNetworking001_GetSocketInfo(struct w_st .punPortRemote = punPortRemote, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking001_GetSocketInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking001_GetSocketInfo, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking001_GetListenSocketInfo(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pnIP, uint16_t *pnPort) { - struct cppISteamNetworking_SteamNetworking001_GetListenSocketInfo_params params = + struct ISteamNetworking_SteamNetworking001_GetListenSocketInfo_params params = { .linux_side = _this->u_iface, .hListenSocket = hListenSocket, @@ -185,7 +183,7 @@ bool __thiscall winISteamNetworking_SteamNetworking001_GetListenSocketInfo(struc .pnPort = pnPort, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking001_GetListenSocketInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking001_GetListenSocketInfo, ¶ms ); return params._ret; } @@ -219,8 +217,6 @@ struct w_steam_iface *create_winISteamNetworking_SteamNetworking001(void *u_ifac return r; } -#include "cppISteamNetworking_SteamNetworking002.h" - DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking002_CreateListenSocket, 20) DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking002_CreateP2PConnectionSocket, 24) DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking002_CreateConnectionSocket, 16) @@ -238,7 +234,7 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking002_GetMaxPacketSize, uint32_t __thiscall winISteamNetworking_SteamNetworking002_CreateListenSocket(struct w_steam_iface *_this, int32_t nVirtualP2PPort, uint32_t nIP, uint16_t nPort, bool bAllowUseOfPacketRelay) { - struct cppISteamNetworking_SteamNetworking002_CreateListenSocket_params params = + struct ISteamNetworking_SteamNetworking002_CreateListenSocket_params params = { .linux_side = _this->u_iface, .nVirtualP2PPort = nVirtualP2PPort, @@ -247,13 +243,13 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking002_CreateListenSocket(st .bAllowUseOfPacketRelay = bAllowUseOfPacketRelay, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking002_CreateListenSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking002_CreateListenSocket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworking_SteamNetworking002_CreateP2PConnectionSocket(struct w_steam_iface *_this, CSteamID steamIDTarget, int32_t nVirtualPort, int32_t nTimeoutSec, bool bAllowUseOfPacketRelay) { - struct cppISteamNetworking_SteamNetworking002_CreateP2PConnectionSocket_params params = + struct ISteamNetworking_SteamNetworking002_CreateP2PConnectionSocket_params params = { .linux_side = _this->u_iface, .steamIDTarget = steamIDTarget, @@ -262,13 +258,13 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking002_CreateP2PConnectionSo .bAllowUseOfPacketRelay = bAllowUseOfPacketRelay, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking002_CreateP2PConnectionSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking002_CreateP2PConnectionSocket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworking_SteamNetworking002_CreateConnectionSocket(struct w_steam_iface *_this, uint32_t nIP, uint16_t nPort, int32_t nTimeoutSec) { - struct cppISteamNetworking_SteamNetworking002_CreateConnectionSocket_params params = + struct ISteamNetworking_SteamNetworking002_CreateConnectionSocket_params params = { .linux_side = _this->u_iface, .nIP = nIP, @@ -276,39 +272,39 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking002_CreateConnectionSocke .nTimeoutSec = nTimeoutSec, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking002_CreateConnectionSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking002_CreateConnectionSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking002_DestroySocket(struct w_steam_iface *_this, uint32_t hSocket, bool bNotifyRemoteEnd) { - struct cppISteamNetworking_SteamNetworking002_DestroySocket_params params = + struct ISteamNetworking_SteamNetworking002_DestroySocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, .bNotifyRemoteEnd = bNotifyRemoteEnd, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking002_DestroySocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking002_DestroySocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking002_DestroyListenSocket(struct w_steam_iface *_this, uint32_t hSocket, bool bNotifyRemoteEnd) { - struct cppISteamNetworking_SteamNetworking002_DestroyListenSocket_params params = + struct ISteamNetworking_SteamNetworking002_DestroyListenSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, .bNotifyRemoteEnd = bNotifyRemoteEnd, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking002_DestroyListenSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking002_DestroyListenSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking002_SendDataOnSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubData, uint32_t cubData, bool bReliable) { - struct cppISteamNetworking_SteamNetworking002_SendDataOnSocket_params params = + struct ISteamNetworking_SteamNetworking002_SendDataOnSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, @@ -317,26 +313,26 @@ bool __thiscall winISteamNetworking_SteamNetworking002_SendDataOnSocket(struct w .bReliable = bReliable, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking002_SendDataOnSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking002_SendDataOnSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket(struct w_steam_iface *_this, uint32_t hSocket, uint32_t *pcubMsgSize) { - struct cppISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket_params params = + struct ISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, .pcubMsgSize = pcubMsgSize, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking002_RetrieveDataFromSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) { - struct cppISteamNetworking_SteamNetworking002_RetrieveDataFromSocket_params params = + struct ISteamNetworking_SteamNetworking002_RetrieveDataFromSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, @@ -345,13 +341,13 @@ bool __thiscall winISteamNetworking_SteamNetworking002_RetrieveDataFromSocket(st .pcubMsgSize = pcubMsgSize, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking002_RetrieveDataFromSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking002_RetrieveDataFromSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking002_IsDataAvailable(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pcubMsgSize, uint32_t *phSocket) { - struct cppISteamNetworking_SteamNetworking002_IsDataAvailable_params params = + struct ISteamNetworking_SteamNetworking002_IsDataAvailable_params params = { .linux_side = _this->u_iface, .hListenSocket = hListenSocket, @@ -359,13 +355,13 @@ bool __thiscall winISteamNetworking_SteamNetworking002_IsDataAvailable(struct w_ .phSocket = phSocket, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking002_IsDataAvailable( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking002_IsDataAvailable, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking002_RetrieveData(struct w_steam_iface *_this, uint32_t hListenSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, uint32_t *phSocket) { - struct cppISteamNetworking_SteamNetworking002_RetrieveData_params params = + struct ISteamNetworking_SteamNetworking002_RetrieveData_params params = { .linux_side = _this->u_iface, .hListenSocket = hListenSocket, @@ -375,13 +371,13 @@ bool __thiscall winISteamNetworking_SteamNetworking002_RetrieveData(struct w_ste .phSocket = phSocket, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking002_RetrieveData( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking002_RetrieveData, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking002_GetSocketInfo(struct w_steam_iface *_this, uint32_t hSocket, CSteamID *pSteamIDRemote, int32_t *peSocketStatus, uint32_t *punIPRemote, uint16_t *punPortRemote) { - struct cppISteamNetworking_SteamNetworking002_GetSocketInfo_params params = + struct ISteamNetworking_SteamNetworking002_GetSocketInfo_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, @@ -391,13 +387,13 @@ bool __thiscall winISteamNetworking_SteamNetworking002_GetSocketInfo(struct w_st .punPortRemote = punPortRemote, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking002_GetSocketInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking002_GetSocketInfo, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking002_GetListenSocketInfo(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pnIP, uint16_t *pnPort) { - struct cppISteamNetworking_SteamNetworking002_GetListenSocketInfo_params params = + struct ISteamNetworking_SteamNetworking002_GetListenSocketInfo_params params = { .linux_side = _this->u_iface, .hListenSocket = hListenSocket, @@ -405,31 +401,31 @@ bool __thiscall winISteamNetworking_SteamNetworking002_GetListenSocketInfo(struc .pnPort = pnPort, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking002_GetListenSocketInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking002_GetListenSocketInfo, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworking_SteamNetworking002_GetSocketConnectionType(struct w_steam_iface *_this, uint32_t hSocket) { - struct cppISteamNetworking_SteamNetworking002_GetSocketConnectionType_params params = + struct ISteamNetworking_SteamNetworking002_GetSocketConnectionType_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking002_GetSocketConnectionType( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking002_GetSocketConnectionType, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworking_SteamNetworking002_GetMaxPacketSize(struct w_steam_iface *_this, uint32_t hSocket) { - struct cppISteamNetworking_SteamNetworking002_GetMaxPacketSize_params params = + struct ISteamNetworking_SteamNetworking002_GetMaxPacketSize_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking002_GetMaxPacketSize( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking002_GetMaxPacketSize, ¶ms ); return params._ret; } @@ -465,8 +461,6 @@ struct w_steam_iface *create_winISteamNetworking_SteamNetworking002(void *u_ifac return r; } -#include "cppISteamNetworking_SteamNetworking003.h" - DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking003_SendP2PPacket, 24) DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking003_IsP2PPacketAvailable, 8) DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking003_ReadP2PPacket, 20) @@ -490,7 +484,7 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking003_GetMaxPacketSize, bool __thiscall winISteamNetworking_SteamNetworking003_SendP2PPacket(struct w_steam_iface *_this, CSteamID steamIDRemote, const void *pubData, uint32_t cubData, uint32_t eP2PSendType) { - struct cppISteamNetworking_SteamNetworking003_SendP2PPacket_params params = + struct ISteamNetworking_SteamNetworking003_SendP2PPacket_params params = { .linux_side = _this->u_iface, .steamIDRemote = steamIDRemote, @@ -499,25 +493,25 @@ bool __thiscall winISteamNetworking_SteamNetworking003_SendP2PPacket(struct w_st .eP2PSendType = eP2PSendType, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking003_SendP2PPacket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking003_SendP2PPacket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking003_IsP2PPacketAvailable(struct w_steam_iface *_this, uint32_t *pcubMsgSize) { - struct cppISteamNetworking_SteamNetworking003_IsP2PPacketAvailable_params params = + struct ISteamNetworking_SteamNetworking003_IsP2PPacketAvailable_params params = { .linux_side = _this->u_iface, .pcubMsgSize = pcubMsgSize, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking003_IsP2PPacketAvailable( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking003_IsP2PPacketAvailable, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking003_ReadP2PPacket(struct w_steam_iface *_this, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, CSteamID *psteamIDRemote) { - struct cppISteamNetworking_SteamNetworking003_ReadP2PPacket_params params = + struct ISteamNetworking_SteamNetworking003_ReadP2PPacket_params params = { .linux_side = _this->u_iface, .pubDest = pubDest, @@ -526,50 +520,50 @@ bool __thiscall winISteamNetworking_SteamNetworking003_ReadP2PPacket(struct w_st .psteamIDRemote = psteamIDRemote, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking003_ReadP2PPacket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking003_ReadP2PPacket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking003_AcceptP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) { - struct cppISteamNetworking_SteamNetworking003_AcceptP2PSessionWithUser_params params = + struct ISteamNetworking_SteamNetworking003_AcceptP2PSessionWithUser_params params = { .linux_side = _this->u_iface, .steamIDRemote = steamIDRemote, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking003_AcceptP2PSessionWithUser( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking003_AcceptP2PSessionWithUser, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking003_CloseP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) { - struct cppISteamNetworking_SteamNetworking003_CloseP2PSessionWithUser_params params = + struct ISteamNetworking_SteamNetworking003_CloseP2PSessionWithUser_params params = { .linux_side = _this->u_iface, .steamIDRemote = steamIDRemote, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking003_CloseP2PSessionWithUser( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking003_CloseP2PSessionWithUser, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking003_GetP2PSessionState(struct w_steam_iface *_this, CSteamID steamIDRemote, P2PSessionState_t *pConnectionState) { - struct cppISteamNetworking_SteamNetworking003_GetP2PSessionState_params params = + struct ISteamNetworking_SteamNetworking003_GetP2PSessionState_params params = { .linux_side = _this->u_iface, .steamIDRemote = steamIDRemote, .pConnectionState = pConnectionState, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking003_GetP2PSessionState( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking003_GetP2PSessionState, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworking_SteamNetworking003_CreateListenSocket(struct w_steam_iface *_this, int32_t nVirtualP2PPort, uint32_t nIP, uint16_t nPort, bool bAllowUseOfPacketRelay) { - struct cppISteamNetworking_SteamNetworking003_CreateListenSocket_params params = + struct ISteamNetworking_SteamNetworking003_CreateListenSocket_params params = { .linux_side = _this->u_iface, .nVirtualP2PPort = nVirtualP2PPort, @@ -578,13 +572,13 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking003_CreateListenSocket(st .bAllowUseOfPacketRelay = bAllowUseOfPacketRelay, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking003_CreateListenSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking003_CreateListenSocket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworking_SteamNetworking003_CreateP2PConnectionSocket(struct w_steam_iface *_this, CSteamID steamIDTarget, int32_t nVirtualPort, int32_t nTimeoutSec, bool bAllowUseOfPacketRelay) { - struct cppISteamNetworking_SteamNetworking003_CreateP2PConnectionSocket_params params = + struct ISteamNetworking_SteamNetworking003_CreateP2PConnectionSocket_params params = { .linux_side = _this->u_iface, .steamIDTarget = steamIDTarget, @@ -593,13 +587,13 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking003_CreateP2PConnectionSo .bAllowUseOfPacketRelay = bAllowUseOfPacketRelay, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking003_CreateP2PConnectionSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking003_CreateP2PConnectionSocket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworking_SteamNetworking003_CreateConnectionSocket(struct w_steam_iface *_this, uint32_t nIP, uint16_t nPort, int32_t nTimeoutSec) { - struct cppISteamNetworking_SteamNetworking003_CreateConnectionSocket_params params = + struct ISteamNetworking_SteamNetworking003_CreateConnectionSocket_params params = { .linux_side = _this->u_iface, .nIP = nIP, @@ -607,39 +601,39 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking003_CreateConnectionSocke .nTimeoutSec = nTimeoutSec, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking003_CreateConnectionSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking003_CreateConnectionSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking003_DestroySocket(struct w_steam_iface *_this, uint32_t hSocket, bool bNotifyRemoteEnd) { - struct cppISteamNetworking_SteamNetworking003_DestroySocket_params params = + struct ISteamNetworking_SteamNetworking003_DestroySocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, .bNotifyRemoteEnd = bNotifyRemoteEnd, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking003_DestroySocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking003_DestroySocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking003_DestroyListenSocket(struct w_steam_iface *_this, uint32_t hSocket, bool bNotifyRemoteEnd) { - struct cppISteamNetworking_SteamNetworking003_DestroyListenSocket_params params = + struct ISteamNetworking_SteamNetworking003_DestroyListenSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, .bNotifyRemoteEnd = bNotifyRemoteEnd, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking003_DestroyListenSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking003_DestroyListenSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking003_SendDataOnSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubData, uint32_t cubData, bool bReliable) { - struct cppISteamNetworking_SteamNetworking003_SendDataOnSocket_params params = + struct ISteamNetworking_SteamNetworking003_SendDataOnSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, @@ -648,26 +642,26 @@ bool __thiscall winISteamNetworking_SteamNetworking003_SendDataOnSocket(struct w .bReliable = bReliable, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking003_SendDataOnSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking003_SendDataOnSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket(struct w_steam_iface *_this, uint32_t hSocket, uint32_t *pcubMsgSize) { - struct cppISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket_params params = + struct ISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, .pcubMsgSize = pcubMsgSize, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking003_RetrieveDataFromSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) { - struct cppISteamNetworking_SteamNetworking003_RetrieveDataFromSocket_params params = + struct ISteamNetworking_SteamNetworking003_RetrieveDataFromSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, @@ -676,13 +670,13 @@ bool __thiscall winISteamNetworking_SteamNetworking003_RetrieveDataFromSocket(st .pcubMsgSize = pcubMsgSize, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking003_RetrieveDataFromSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking003_RetrieveDataFromSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking003_IsDataAvailable(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pcubMsgSize, uint32_t *phSocket) { - struct cppISteamNetworking_SteamNetworking003_IsDataAvailable_params params = + struct ISteamNetworking_SteamNetworking003_IsDataAvailable_params params = { .linux_side = _this->u_iface, .hListenSocket = hListenSocket, @@ -690,13 +684,13 @@ bool __thiscall winISteamNetworking_SteamNetworking003_IsDataAvailable(struct w_ .phSocket = phSocket, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking003_IsDataAvailable( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking003_IsDataAvailable, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking003_RetrieveData(struct w_steam_iface *_this, uint32_t hListenSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, uint32_t *phSocket) { - struct cppISteamNetworking_SteamNetworking003_RetrieveData_params params = + struct ISteamNetworking_SteamNetworking003_RetrieveData_params params = { .linux_side = _this->u_iface, .hListenSocket = hListenSocket, @@ -706,13 +700,13 @@ bool __thiscall winISteamNetworking_SteamNetworking003_RetrieveData(struct w_ste .phSocket = phSocket, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking003_RetrieveData( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking003_RetrieveData, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking003_GetSocketInfo(struct w_steam_iface *_this, uint32_t hSocket, CSteamID *pSteamIDRemote, int32_t *peSocketStatus, uint32_t *punIPRemote, uint16_t *punPortRemote) { - struct cppISteamNetworking_SteamNetworking003_GetSocketInfo_params params = + struct ISteamNetworking_SteamNetworking003_GetSocketInfo_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, @@ -722,13 +716,13 @@ bool __thiscall winISteamNetworking_SteamNetworking003_GetSocketInfo(struct w_st .punPortRemote = punPortRemote, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking003_GetSocketInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking003_GetSocketInfo, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking003_GetListenSocketInfo(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pnIP, uint16_t *pnPort) { - struct cppISteamNetworking_SteamNetworking003_GetListenSocketInfo_params params = + struct ISteamNetworking_SteamNetworking003_GetListenSocketInfo_params params = { .linux_side = _this->u_iface, .hListenSocket = hListenSocket, @@ -736,31 +730,31 @@ bool __thiscall winISteamNetworking_SteamNetworking003_GetListenSocketInfo(struc .pnPort = pnPort, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking003_GetListenSocketInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking003_GetListenSocketInfo, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworking_SteamNetworking003_GetSocketConnectionType(struct w_steam_iface *_this, uint32_t hSocket) { - struct cppISteamNetworking_SteamNetworking003_GetSocketConnectionType_params params = + struct ISteamNetworking_SteamNetworking003_GetSocketConnectionType_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking003_GetSocketConnectionType( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking003_GetSocketConnectionType, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworking_SteamNetworking003_GetMaxPacketSize(struct w_steam_iface *_this, uint32_t hSocket) { - struct cppISteamNetworking_SteamNetworking003_GetMaxPacketSize_params params = + struct ISteamNetworking_SteamNetworking003_GetMaxPacketSize_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking003_GetMaxPacketSize( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking003_GetMaxPacketSize, ¶ms ); return params._ret; } @@ -802,8 +796,6 @@ struct w_steam_iface *create_winISteamNetworking_SteamNetworking003(void *u_ifac return r; } -#include "cppISteamNetworking_SteamNetworking004.h" - DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking004_SendP2PPacket, 28) DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking004_IsP2PPacketAvailable, 12) DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking004_ReadP2PPacket, 24) @@ -827,7 +819,7 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking004_GetMaxPacketSize, bool __thiscall winISteamNetworking_SteamNetworking004_SendP2PPacket(struct w_steam_iface *_this, CSteamID steamIDRemote, const void *pubData, uint32_t cubData, uint32_t eP2PSendType, int32_t nVirtualPort) { - struct cppISteamNetworking_SteamNetworking004_SendP2PPacket_params params = + struct ISteamNetworking_SteamNetworking004_SendP2PPacket_params params = { .linux_side = _this->u_iface, .steamIDRemote = steamIDRemote, @@ -837,26 +829,26 @@ bool __thiscall winISteamNetworking_SteamNetworking004_SendP2PPacket(struct w_st .nVirtualPort = nVirtualPort, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking004_SendP2PPacket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking004_SendP2PPacket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking004_IsP2PPacketAvailable(struct w_steam_iface *_this, uint32_t *pcubMsgSize, int32_t nVirtualPort) { - struct cppISteamNetworking_SteamNetworking004_IsP2PPacketAvailable_params params = + struct ISteamNetworking_SteamNetworking004_IsP2PPacketAvailable_params params = { .linux_side = _this->u_iface, .pcubMsgSize = pcubMsgSize, .nVirtualPort = nVirtualPort, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking004_IsP2PPacketAvailable( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking004_IsP2PPacketAvailable, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking004_ReadP2PPacket(struct w_steam_iface *_this, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, CSteamID *psteamIDRemote, int32_t nVirtualPort) { - struct cppISteamNetworking_SteamNetworking004_ReadP2PPacket_params params = + struct ISteamNetworking_SteamNetworking004_ReadP2PPacket_params params = { .linux_side = _this->u_iface, .pubDest = pubDest, @@ -866,50 +858,50 @@ bool __thiscall winISteamNetworking_SteamNetworking004_ReadP2PPacket(struct w_st .nVirtualPort = nVirtualPort, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking004_ReadP2PPacket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking004_ReadP2PPacket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking004_AcceptP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) { - struct cppISteamNetworking_SteamNetworking004_AcceptP2PSessionWithUser_params params = + struct ISteamNetworking_SteamNetworking004_AcceptP2PSessionWithUser_params params = { .linux_side = _this->u_iface, .steamIDRemote = steamIDRemote, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking004_AcceptP2PSessionWithUser( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking004_AcceptP2PSessionWithUser, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking004_CloseP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) { - struct cppISteamNetworking_SteamNetworking004_CloseP2PSessionWithUser_params params = + struct ISteamNetworking_SteamNetworking004_CloseP2PSessionWithUser_params params = { .linux_side = _this->u_iface, .steamIDRemote = steamIDRemote, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking004_CloseP2PSessionWithUser( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking004_CloseP2PSessionWithUser, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking004_GetP2PSessionState(struct w_steam_iface *_this, CSteamID steamIDRemote, P2PSessionState_t *pConnectionState) { - struct cppISteamNetworking_SteamNetworking004_GetP2PSessionState_params params = + struct ISteamNetworking_SteamNetworking004_GetP2PSessionState_params params = { .linux_side = _this->u_iface, .steamIDRemote = steamIDRemote, .pConnectionState = pConnectionState, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking004_GetP2PSessionState( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking004_GetP2PSessionState, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworking_SteamNetworking004_CreateListenSocket(struct w_steam_iface *_this, int32_t nVirtualP2PPort, uint32_t nIP, uint16_t nPort, bool bAllowUseOfPacketRelay) { - struct cppISteamNetworking_SteamNetworking004_CreateListenSocket_params params = + struct ISteamNetworking_SteamNetworking004_CreateListenSocket_params params = { .linux_side = _this->u_iface, .nVirtualP2PPort = nVirtualP2PPort, @@ -918,13 +910,13 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking004_CreateListenSocket(st .bAllowUseOfPacketRelay = bAllowUseOfPacketRelay, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking004_CreateListenSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking004_CreateListenSocket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworking_SteamNetworking004_CreateP2PConnectionSocket(struct w_steam_iface *_this, CSteamID steamIDTarget, int32_t nVirtualPort, int32_t nTimeoutSec, bool bAllowUseOfPacketRelay) { - struct cppISteamNetworking_SteamNetworking004_CreateP2PConnectionSocket_params params = + struct ISteamNetworking_SteamNetworking004_CreateP2PConnectionSocket_params params = { .linux_side = _this->u_iface, .steamIDTarget = steamIDTarget, @@ -933,13 +925,13 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking004_CreateP2PConnectionSo .bAllowUseOfPacketRelay = bAllowUseOfPacketRelay, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking004_CreateP2PConnectionSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking004_CreateP2PConnectionSocket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworking_SteamNetworking004_CreateConnectionSocket(struct w_steam_iface *_this, uint32_t nIP, uint16_t nPort, int32_t nTimeoutSec) { - struct cppISteamNetworking_SteamNetworking004_CreateConnectionSocket_params params = + struct ISteamNetworking_SteamNetworking004_CreateConnectionSocket_params params = { .linux_side = _this->u_iface, .nIP = nIP, @@ -947,39 +939,39 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking004_CreateConnectionSocke .nTimeoutSec = nTimeoutSec, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking004_CreateConnectionSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking004_CreateConnectionSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking004_DestroySocket(struct w_steam_iface *_this, uint32_t hSocket, bool bNotifyRemoteEnd) { - struct cppISteamNetworking_SteamNetworking004_DestroySocket_params params = + struct ISteamNetworking_SteamNetworking004_DestroySocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, .bNotifyRemoteEnd = bNotifyRemoteEnd, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking004_DestroySocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking004_DestroySocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking004_DestroyListenSocket(struct w_steam_iface *_this, uint32_t hSocket, bool bNotifyRemoteEnd) { - struct cppISteamNetworking_SteamNetworking004_DestroyListenSocket_params params = + struct ISteamNetworking_SteamNetworking004_DestroyListenSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, .bNotifyRemoteEnd = bNotifyRemoteEnd, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking004_DestroyListenSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking004_DestroyListenSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking004_SendDataOnSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubData, uint32_t cubData, bool bReliable) { - struct cppISteamNetworking_SteamNetworking004_SendDataOnSocket_params params = + struct ISteamNetworking_SteamNetworking004_SendDataOnSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, @@ -988,26 +980,26 @@ bool __thiscall winISteamNetworking_SteamNetworking004_SendDataOnSocket(struct w .bReliable = bReliable, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking004_SendDataOnSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking004_SendDataOnSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket(struct w_steam_iface *_this, uint32_t hSocket, uint32_t *pcubMsgSize) { - struct cppISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket_params params = + struct ISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, .pcubMsgSize = pcubMsgSize, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking004_RetrieveDataFromSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) { - struct cppISteamNetworking_SteamNetworking004_RetrieveDataFromSocket_params params = + struct ISteamNetworking_SteamNetworking004_RetrieveDataFromSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, @@ -1016,13 +1008,13 @@ bool __thiscall winISteamNetworking_SteamNetworking004_RetrieveDataFromSocket(st .pcubMsgSize = pcubMsgSize, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking004_RetrieveDataFromSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking004_RetrieveDataFromSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking004_IsDataAvailable(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pcubMsgSize, uint32_t *phSocket) { - struct cppISteamNetworking_SteamNetworking004_IsDataAvailable_params params = + struct ISteamNetworking_SteamNetworking004_IsDataAvailable_params params = { .linux_side = _this->u_iface, .hListenSocket = hListenSocket, @@ -1030,13 +1022,13 @@ bool __thiscall winISteamNetworking_SteamNetworking004_IsDataAvailable(struct w_ .phSocket = phSocket, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking004_IsDataAvailable( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking004_IsDataAvailable, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking004_RetrieveData(struct w_steam_iface *_this, uint32_t hListenSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, uint32_t *phSocket) { - struct cppISteamNetworking_SteamNetworking004_RetrieveData_params params = + struct ISteamNetworking_SteamNetworking004_RetrieveData_params params = { .linux_side = _this->u_iface, .hListenSocket = hListenSocket, @@ -1046,13 +1038,13 @@ bool __thiscall winISteamNetworking_SteamNetworking004_RetrieveData(struct w_ste .phSocket = phSocket, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking004_RetrieveData( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking004_RetrieveData, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking004_GetSocketInfo(struct w_steam_iface *_this, uint32_t hSocket, CSteamID *pSteamIDRemote, int32_t *peSocketStatus, uint32_t *punIPRemote, uint16_t *punPortRemote) { - struct cppISteamNetworking_SteamNetworking004_GetSocketInfo_params params = + struct ISteamNetworking_SteamNetworking004_GetSocketInfo_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, @@ -1062,13 +1054,13 @@ bool __thiscall winISteamNetworking_SteamNetworking004_GetSocketInfo(struct w_st .punPortRemote = punPortRemote, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking004_GetSocketInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking004_GetSocketInfo, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking004_GetListenSocketInfo(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pnIP, uint16_t *pnPort) { - struct cppISteamNetworking_SteamNetworking004_GetListenSocketInfo_params params = + struct ISteamNetworking_SteamNetworking004_GetListenSocketInfo_params params = { .linux_side = _this->u_iface, .hListenSocket = hListenSocket, @@ -1076,31 +1068,31 @@ bool __thiscall winISteamNetworking_SteamNetworking004_GetListenSocketInfo(struc .pnPort = pnPort, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking004_GetListenSocketInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking004_GetListenSocketInfo, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworking_SteamNetworking004_GetSocketConnectionType(struct w_steam_iface *_this, uint32_t hSocket) { - struct cppISteamNetworking_SteamNetworking004_GetSocketConnectionType_params params = + struct ISteamNetworking_SteamNetworking004_GetSocketConnectionType_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking004_GetSocketConnectionType( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking004_GetSocketConnectionType, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworking_SteamNetworking004_GetMaxPacketSize(struct w_steam_iface *_this, uint32_t hSocket) { - struct cppISteamNetworking_SteamNetworking004_GetMaxPacketSize_params params = + struct ISteamNetworking_SteamNetworking004_GetMaxPacketSize_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking004_GetMaxPacketSize( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking004_GetMaxPacketSize, ¶ms ); return params._ret; } @@ -1142,8 +1134,6 @@ struct w_steam_iface *create_winISteamNetworking_SteamNetworking004(void *u_ifac return r; } -#include "cppISteamNetworking_SteamNetworking005.h" - DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking005_SendP2PPacket, 28) DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking005_IsP2PPacketAvailable, 12) DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking005_ReadP2PPacket, 24) @@ -1169,7 +1159,7 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking005_GetMaxPacketSize, bool __thiscall winISteamNetworking_SteamNetworking005_SendP2PPacket(struct w_steam_iface *_this, CSteamID steamIDRemote, const void *pubData, uint32_t cubData, uint32_t eP2PSendType, int32_t nChannel) { - struct cppISteamNetworking_SteamNetworking005_SendP2PPacket_params params = + struct ISteamNetworking_SteamNetworking005_SendP2PPacket_params params = { .linux_side = _this->u_iface, .steamIDRemote = steamIDRemote, @@ -1179,26 +1169,26 @@ bool __thiscall winISteamNetworking_SteamNetworking005_SendP2PPacket(struct w_st .nChannel = nChannel, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking005_SendP2PPacket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking005_SendP2PPacket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking005_IsP2PPacketAvailable(struct w_steam_iface *_this, uint32_t *pcubMsgSize, int32_t nChannel) { - struct cppISteamNetworking_SteamNetworking005_IsP2PPacketAvailable_params params = + struct ISteamNetworking_SteamNetworking005_IsP2PPacketAvailable_params params = { .linux_side = _this->u_iface, .pcubMsgSize = pcubMsgSize, .nChannel = nChannel, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking005_IsP2PPacketAvailable( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking005_IsP2PPacketAvailable, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking005_ReadP2PPacket(struct w_steam_iface *_this, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, CSteamID *psteamIDRemote, int32_t nChannel) { - struct cppISteamNetworking_SteamNetworking005_ReadP2PPacket_params params = + struct ISteamNetworking_SteamNetworking005_ReadP2PPacket_params params = { .linux_side = _this->u_iface, .pubDest = pubDest, @@ -1208,75 +1198,75 @@ bool __thiscall winISteamNetworking_SteamNetworking005_ReadP2PPacket(struct w_st .nChannel = nChannel, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking005_ReadP2PPacket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking005_ReadP2PPacket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking005_AcceptP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) { - struct cppISteamNetworking_SteamNetworking005_AcceptP2PSessionWithUser_params params = + struct ISteamNetworking_SteamNetworking005_AcceptP2PSessionWithUser_params params = { .linux_side = _this->u_iface, .steamIDRemote = steamIDRemote, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking005_AcceptP2PSessionWithUser( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking005_AcceptP2PSessionWithUser, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking005_CloseP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) { - struct cppISteamNetworking_SteamNetworking005_CloseP2PSessionWithUser_params params = + struct ISteamNetworking_SteamNetworking005_CloseP2PSessionWithUser_params params = { .linux_side = _this->u_iface, .steamIDRemote = steamIDRemote, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking005_CloseP2PSessionWithUser( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking005_CloseP2PSessionWithUser, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote, int32_t nChannel) { - struct cppISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser_params params = + struct ISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser_params params = { .linux_side = _this->u_iface, .steamIDRemote = steamIDRemote, .nChannel = nChannel, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking005_GetP2PSessionState(struct w_steam_iface *_this, CSteamID steamIDRemote, P2PSessionState_t *pConnectionState) { - struct cppISteamNetworking_SteamNetworking005_GetP2PSessionState_params params = + struct ISteamNetworking_SteamNetworking005_GetP2PSessionState_params params = { .linux_side = _this->u_iface, .steamIDRemote = steamIDRemote, .pConnectionState = pConnectionState, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking005_GetP2PSessionState( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking005_GetP2PSessionState, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking005_AllowP2PPacketRelay(struct w_steam_iface *_this, bool bAllow) { - struct cppISteamNetworking_SteamNetworking005_AllowP2PPacketRelay_params params = + struct ISteamNetworking_SteamNetworking005_AllowP2PPacketRelay_params params = { .linux_side = _this->u_iface, .bAllow = bAllow, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking005_AllowP2PPacketRelay( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking005_AllowP2PPacketRelay, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworking_SteamNetworking005_CreateListenSocket(struct w_steam_iface *_this, int32_t nVirtualP2PPort, uint32_t nIP, uint16_t nPort, bool bAllowUseOfPacketRelay) { - struct cppISteamNetworking_SteamNetworking005_CreateListenSocket_params params = + struct ISteamNetworking_SteamNetworking005_CreateListenSocket_params params = { .linux_side = _this->u_iface, .nVirtualP2PPort = nVirtualP2PPort, @@ -1285,13 +1275,13 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking005_CreateListenSocket(st .bAllowUseOfPacketRelay = bAllowUseOfPacketRelay, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking005_CreateListenSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking005_CreateListenSocket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworking_SteamNetworking005_CreateP2PConnectionSocket(struct w_steam_iface *_this, CSteamID steamIDTarget, int32_t nVirtualPort, int32_t nTimeoutSec, bool bAllowUseOfPacketRelay) { - struct cppISteamNetworking_SteamNetworking005_CreateP2PConnectionSocket_params params = + struct ISteamNetworking_SteamNetworking005_CreateP2PConnectionSocket_params params = { .linux_side = _this->u_iface, .steamIDTarget = steamIDTarget, @@ -1300,13 +1290,13 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking005_CreateP2PConnectionSo .bAllowUseOfPacketRelay = bAllowUseOfPacketRelay, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking005_CreateP2PConnectionSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking005_CreateP2PConnectionSocket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworking_SteamNetworking005_CreateConnectionSocket(struct w_steam_iface *_this, uint32_t nIP, uint16_t nPort, int32_t nTimeoutSec) { - struct cppISteamNetworking_SteamNetworking005_CreateConnectionSocket_params params = + struct ISteamNetworking_SteamNetworking005_CreateConnectionSocket_params params = { .linux_side = _this->u_iface, .nIP = nIP, @@ -1314,39 +1304,39 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking005_CreateConnectionSocke .nTimeoutSec = nTimeoutSec, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking005_CreateConnectionSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking005_CreateConnectionSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking005_DestroySocket(struct w_steam_iface *_this, uint32_t hSocket, bool bNotifyRemoteEnd) { - struct cppISteamNetworking_SteamNetworking005_DestroySocket_params params = + struct ISteamNetworking_SteamNetworking005_DestroySocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, .bNotifyRemoteEnd = bNotifyRemoteEnd, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking005_DestroySocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking005_DestroySocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking005_DestroyListenSocket(struct w_steam_iface *_this, uint32_t hSocket, bool bNotifyRemoteEnd) { - struct cppISteamNetworking_SteamNetworking005_DestroyListenSocket_params params = + struct ISteamNetworking_SteamNetworking005_DestroyListenSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, .bNotifyRemoteEnd = bNotifyRemoteEnd, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking005_DestroyListenSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking005_DestroyListenSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking005_SendDataOnSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubData, uint32_t cubData, bool bReliable) { - struct cppISteamNetworking_SteamNetworking005_SendDataOnSocket_params params = + struct ISteamNetworking_SteamNetworking005_SendDataOnSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, @@ -1355,26 +1345,26 @@ bool __thiscall winISteamNetworking_SteamNetworking005_SendDataOnSocket(struct w .bReliable = bReliable, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking005_SendDataOnSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking005_SendDataOnSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket(struct w_steam_iface *_this, uint32_t hSocket, uint32_t *pcubMsgSize) { - struct cppISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket_params params = + struct ISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, .pcubMsgSize = pcubMsgSize, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking005_RetrieveDataFromSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) { - struct cppISteamNetworking_SteamNetworking005_RetrieveDataFromSocket_params params = + struct ISteamNetworking_SteamNetworking005_RetrieveDataFromSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, @@ -1383,13 +1373,13 @@ bool __thiscall winISteamNetworking_SteamNetworking005_RetrieveDataFromSocket(st .pcubMsgSize = pcubMsgSize, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking005_RetrieveDataFromSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking005_RetrieveDataFromSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking005_IsDataAvailable(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pcubMsgSize, uint32_t *phSocket) { - struct cppISteamNetworking_SteamNetworking005_IsDataAvailable_params params = + struct ISteamNetworking_SteamNetworking005_IsDataAvailable_params params = { .linux_side = _this->u_iface, .hListenSocket = hListenSocket, @@ -1397,13 +1387,13 @@ bool __thiscall winISteamNetworking_SteamNetworking005_IsDataAvailable(struct w_ .phSocket = phSocket, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking005_IsDataAvailable( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking005_IsDataAvailable, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking005_RetrieveData(struct w_steam_iface *_this, uint32_t hListenSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, uint32_t *phSocket) { - struct cppISteamNetworking_SteamNetworking005_RetrieveData_params params = + struct ISteamNetworking_SteamNetworking005_RetrieveData_params params = { .linux_side = _this->u_iface, .hListenSocket = hListenSocket, @@ -1413,13 +1403,13 @@ bool __thiscall winISteamNetworking_SteamNetworking005_RetrieveData(struct w_ste .phSocket = phSocket, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking005_RetrieveData( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking005_RetrieveData, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking005_GetSocketInfo(struct w_steam_iface *_this, uint32_t hSocket, CSteamID *pSteamIDRemote, int32_t *peSocketStatus, uint32_t *punIPRemote, uint16_t *punPortRemote) { - struct cppISteamNetworking_SteamNetworking005_GetSocketInfo_params params = + struct ISteamNetworking_SteamNetworking005_GetSocketInfo_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, @@ -1429,13 +1419,13 @@ bool __thiscall winISteamNetworking_SteamNetworking005_GetSocketInfo(struct w_st .punPortRemote = punPortRemote, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking005_GetSocketInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking005_GetSocketInfo, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking005_GetListenSocketInfo(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pnIP, uint16_t *pnPort) { - struct cppISteamNetworking_SteamNetworking005_GetListenSocketInfo_params params = + struct ISteamNetworking_SteamNetworking005_GetListenSocketInfo_params params = { .linux_side = _this->u_iface, .hListenSocket = hListenSocket, @@ -1443,31 +1433,31 @@ bool __thiscall winISteamNetworking_SteamNetworking005_GetListenSocketInfo(struc .pnPort = pnPort, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking005_GetListenSocketInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking005_GetListenSocketInfo, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworking_SteamNetworking005_GetSocketConnectionType(struct w_steam_iface *_this, uint32_t hSocket) { - struct cppISteamNetworking_SteamNetworking005_GetSocketConnectionType_params params = + struct ISteamNetworking_SteamNetworking005_GetSocketConnectionType_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking005_GetSocketConnectionType( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking005_GetSocketConnectionType, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworking_SteamNetworking005_GetMaxPacketSize(struct w_steam_iface *_this, uint32_t hSocket) { - struct cppISteamNetworking_SteamNetworking005_GetMaxPacketSize_params params = + struct ISteamNetworking_SteamNetworking005_GetMaxPacketSize_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking005_GetMaxPacketSize( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking005_GetMaxPacketSize, ¶ms ); return params._ret; } @@ -1511,8 +1501,6 @@ struct w_steam_iface *create_winISteamNetworking_SteamNetworking005(void *u_ifac return r; } -#include "cppISteamNetworking_SteamNetworking006.h" - DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking006_SendP2PPacket, 28) DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking006_IsP2PPacketAvailable, 12) DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking006_ReadP2PPacket, 24) @@ -1538,7 +1526,7 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking006_GetMaxPacketSize, bool __thiscall winISteamNetworking_SteamNetworking006_SendP2PPacket(struct w_steam_iface *_this, CSteamID steamIDRemote, const void *pubData, uint32_t cubData, uint32_t eP2PSendType, int32_t nChannel) { - struct cppISteamNetworking_SteamNetworking006_SendP2PPacket_params params = + struct ISteamNetworking_SteamNetworking006_SendP2PPacket_params params = { .linux_side = _this->u_iface, .steamIDRemote = steamIDRemote, @@ -1548,26 +1536,26 @@ bool __thiscall winISteamNetworking_SteamNetworking006_SendP2PPacket(struct w_st .nChannel = nChannel, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking006_SendP2PPacket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking006_SendP2PPacket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking006_IsP2PPacketAvailable(struct w_steam_iface *_this, uint32_t *pcubMsgSize, int32_t nChannel) { - struct cppISteamNetworking_SteamNetworking006_IsP2PPacketAvailable_params params = + struct ISteamNetworking_SteamNetworking006_IsP2PPacketAvailable_params params = { .linux_side = _this->u_iface, .pcubMsgSize = pcubMsgSize, .nChannel = nChannel, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking006_IsP2PPacketAvailable( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking006_IsP2PPacketAvailable, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking006_ReadP2PPacket(struct w_steam_iface *_this, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, CSteamID *psteamIDRemote, int32_t nChannel) { - struct cppISteamNetworking_SteamNetworking006_ReadP2PPacket_params params = + struct ISteamNetworking_SteamNetworking006_ReadP2PPacket_params params = { .linux_side = _this->u_iface, .pubDest = pubDest, @@ -1577,75 +1565,75 @@ bool __thiscall winISteamNetworking_SteamNetworking006_ReadP2PPacket(struct w_st .nChannel = nChannel, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking006_ReadP2PPacket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking006_ReadP2PPacket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking006_AcceptP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) { - struct cppISteamNetworking_SteamNetworking006_AcceptP2PSessionWithUser_params params = + struct ISteamNetworking_SteamNetworking006_AcceptP2PSessionWithUser_params params = { .linux_side = _this->u_iface, .steamIDRemote = steamIDRemote, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking006_AcceptP2PSessionWithUser( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking006_AcceptP2PSessionWithUser, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking006_CloseP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) { - struct cppISteamNetworking_SteamNetworking006_CloseP2PSessionWithUser_params params = + struct ISteamNetworking_SteamNetworking006_CloseP2PSessionWithUser_params params = { .linux_side = _this->u_iface, .steamIDRemote = steamIDRemote, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking006_CloseP2PSessionWithUser( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking006_CloseP2PSessionWithUser, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote, int32_t nChannel) { - struct cppISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser_params params = + struct ISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser_params params = { .linux_side = _this->u_iface, .steamIDRemote = steamIDRemote, .nChannel = nChannel, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking006_GetP2PSessionState(struct w_steam_iface *_this, CSteamID steamIDRemote, P2PSessionState_t *pConnectionState) { - struct cppISteamNetworking_SteamNetworking006_GetP2PSessionState_params params = + struct ISteamNetworking_SteamNetworking006_GetP2PSessionState_params params = { .linux_side = _this->u_iface, .steamIDRemote = steamIDRemote, .pConnectionState = pConnectionState, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking006_GetP2PSessionState( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking006_GetP2PSessionState, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking006_AllowP2PPacketRelay(struct w_steam_iface *_this, bool bAllow) { - struct cppISteamNetworking_SteamNetworking006_AllowP2PPacketRelay_params params = + struct ISteamNetworking_SteamNetworking006_AllowP2PPacketRelay_params params = { .linux_side = _this->u_iface, .bAllow = bAllow, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking006_AllowP2PPacketRelay( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking006_AllowP2PPacketRelay, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworking_SteamNetworking006_CreateListenSocket(struct w_steam_iface *_this, int32_t nVirtualP2PPort, SteamIPAddress_t nIP, uint16_t nPort, bool bAllowUseOfPacketRelay) { - struct cppISteamNetworking_SteamNetworking006_CreateListenSocket_params params = + struct ISteamNetworking_SteamNetworking006_CreateListenSocket_params params = { .linux_side = _this->u_iface, .nVirtualP2PPort = nVirtualP2PPort, @@ -1654,13 +1642,13 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking006_CreateListenSocket(st .bAllowUseOfPacketRelay = bAllowUseOfPacketRelay, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking006_CreateListenSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking006_CreateListenSocket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworking_SteamNetworking006_CreateP2PConnectionSocket(struct w_steam_iface *_this, CSteamID steamIDTarget, int32_t nVirtualPort, int32_t nTimeoutSec, bool bAllowUseOfPacketRelay) { - struct cppISteamNetworking_SteamNetworking006_CreateP2PConnectionSocket_params params = + struct ISteamNetworking_SteamNetworking006_CreateP2PConnectionSocket_params params = { .linux_side = _this->u_iface, .steamIDTarget = steamIDTarget, @@ -1669,13 +1657,13 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking006_CreateP2PConnectionSo .bAllowUseOfPacketRelay = bAllowUseOfPacketRelay, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking006_CreateP2PConnectionSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking006_CreateP2PConnectionSocket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworking_SteamNetworking006_CreateConnectionSocket(struct w_steam_iface *_this, SteamIPAddress_t nIP, uint16_t nPort, int32_t nTimeoutSec) { - struct cppISteamNetworking_SteamNetworking006_CreateConnectionSocket_params params = + struct ISteamNetworking_SteamNetworking006_CreateConnectionSocket_params params = { .linux_side = _this->u_iface, .nIP = nIP, @@ -1683,39 +1671,39 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking006_CreateConnectionSocke .nTimeoutSec = nTimeoutSec, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking006_CreateConnectionSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking006_CreateConnectionSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking006_DestroySocket(struct w_steam_iface *_this, uint32_t hSocket, bool bNotifyRemoteEnd) { - struct cppISteamNetworking_SteamNetworking006_DestroySocket_params params = + struct ISteamNetworking_SteamNetworking006_DestroySocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, .bNotifyRemoteEnd = bNotifyRemoteEnd, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking006_DestroySocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking006_DestroySocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking006_DestroyListenSocket(struct w_steam_iface *_this, uint32_t hSocket, bool bNotifyRemoteEnd) { - struct cppISteamNetworking_SteamNetworking006_DestroyListenSocket_params params = + struct ISteamNetworking_SteamNetworking006_DestroyListenSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, .bNotifyRemoteEnd = bNotifyRemoteEnd, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking006_DestroyListenSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking006_DestroyListenSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking006_SendDataOnSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubData, uint32_t cubData, bool bReliable) { - struct cppISteamNetworking_SteamNetworking006_SendDataOnSocket_params params = + struct ISteamNetworking_SteamNetworking006_SendDataOnSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, @@ -1724,26 +1712,26 @@ bool __thiscall winISteamNetworking_SteamNetworking006_SendDataOnSocket(struct w .bReliable = bReliable, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking006_SendDataOnSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking006_SendDataOnSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket(struct w_steam_iface *_this, uint32_t hSocket, uint32_t *pcubMsgSize) { - struct cppISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket_params params = + struct ISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, .pcubMsgSize = pcubMsgSize, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking006_RetrieveDataFromSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) { - struct cppISteamNetworking_SteamNetworking006_RetrieveDataFromSocket_params params = + struct ISteamNetworking_SteamNetworking006_RetrieveDataFromSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, @@ -1752,13 +1740,13 @@ bool __thiscall winISteamNetworking_SteamNetworking006_RetrieveDataFromSocket(st .pcubMsgSize = pcubMsgSize, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking006_RetrieveDataFromSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking006_RetrieveDataFromSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking006_IsDataAvailable(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pcubMsgSize, uint32_t *phSocket) { - struct cppISteamNetworking_SteamNetworking006_IsDataAvailable_params params = + struct ISteamNetworking_SteamNetworking006_IsDataAvailable_params params = { .linux_side = _this->u_iface, .hListenSocket = hListenSocket, @@ -1766,13 +1754,13 @@ bool __thiscall winISteamNetworking_SteamNetworking006_IsDataAvailable(struct w_ .phSocket = phSocket, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking006_IsDataAvailable( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking006_IsDataAvailable, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking006_RetrieveData(struct w_steam_iface *_this, uint32_t hListenSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, uint32_t *phSocket) { - struct cppISteamNetworking_SteamNetworking006_RetrieveData_params params = + struct ISteamNetworking_SteamNetworking006_RetrieveData_params params = { .linux_side = _this->u_iface, .hListenSocket = hListenSocket, @@ -1782,13 +1770,13 @@ bool __thiscall winISteamNetworking_SteamNetworking006_RetrieveData(struct w_ste .phSocket = phSocket, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking006_RetrieveData( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking006_RetrieveData, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking006_GetSocketInfo(struct w_steam_iface *_this, uint32_t hSocket, CSteamID *pSteamIDRemote, int32_t *peSocketStatus, SteamIPAddress_t *punIPRemote, uint16_t *punPortRemote) { - struct cppISteamNetworking_SteamNetworking006_GetSocketInfo_params params = + struct ISteamNetworking_SteamNetworking006_GetSocketInfo_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, @@ -1798,13 +1786,13 @@ bool __thiscall winISteamNetworking_SteamNetworking006_GetSocketInfo(struct w_st .punPortRemote = punPortRemote, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking006_GetSocketInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking006_GetSocketInfo, ¶ms ); return params._ret; } bool __thiscall winISteamNetworking_SteamNetworking006_GetListenSocketInfo(struct w_steam_iface *_this, uint32_t hListenSocket, SteamIPAddress_t *pnIP, uint16_t *pnPort) { - struct cppISteamNetworking_SteamNetworking006_GetListenSocketInfo_params params = + struct ISteamNetworking_SteamNetworking006_GetListenSocketInfo_params params = { .linux_side = _this->u_iface, .hListenSocket = hListenSocket, @@ -1812,31 +1800,31 @@ bool __thiscall winISteamNetworking_SteamNetworking006_GetListenSocketInfo(struc .pnPort = pnPort, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking006_GetListenSocketInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking006_GetListenSocketInfo, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworking_SteamNetworking006_GetSocketConnectionType(struct w_steam_iface *_this, uint32_t hSocket) { - struct cppISteamNetworking_SteamNetworking006_GetSocketConnectionType_params params = + struct ISteamNetworking_SteamNetworking006_GetSocketConnectionType_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking006_GetSocketConnectionType( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking006_GetSocketConnectionType, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworking_SteamNetworking006_GetMaxPacketSize(struct w_steam_iface *_this, uint32_t hSocket) { - struct cppISteamNetworking_SteamNetworking006_GetMaxPacketSize_params params = + struct ISteamNetworking_SteamNetworking006_GetMaxPacketSize_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); - cppISteamNetworking_SteamNetworking006_GetMaxPacketSize( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworking_SteamNetworking006_GetMaxPacketSize, ¶ms ); return params._ret; } diff --git a/lsteamclient/winISteamNetworkingFakeUDPPort.c b/lsteamclient/winISteamNetworkingFakeUDPPort.c index 8cff6640..201346e6 100644 --- a/lsteamclient/winISteamNetworkingFakeUDPPort.c +++ b/lsteamclient/winISteamNetworkingFakeUDPPort.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001.h" - DEFINE_THISCALL_WRAPPER(winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_DestroyFakeUDPPort, 4) DEFINE_THISCALL_WRAPPER(winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_SendMessageToFakeIP, 20) DEFINE_THISCALL_WRAPPER(winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ReceiveMessages, 12) @@ -12,7 +10,7 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPor uint32_t __thiscall winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_SendMessageToFakeIP(struct w_steam_iface *_this, const SteamNetworkingIPAddr *remoteAddress, const void *pData, uint32_t cbData, int32_t nSendFlags) { - struct cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_SendMessageToFakeIP_params params = + struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_SendMessageToFakeIP_params params = { .linux_side = _this->u_iface, .remoteAddress = remoteAddress, @@ -21,19 +19,19 @@ uint32_t __thiscall winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001 .nSendFlags = nSendFlags, }; TRACE("%p\n", _this); - cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_SendMessageToFakeIP( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_SendMessageToFakeIP, ¶ms ); return params._ret; } void __thiscall winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ScheduleCleanup(struct w_steam_iface *_this, const SteamNetworkingIPAddr *remoteAddress) { - struct cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ScheduleCleanup_params params = + struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ScheduleCleanup_params params = { .linux_side = _this->u_iface, .remoteAddress = remoteAddress, }; TRACE("%p\n", _this); - cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ScheduleCleanup( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ScheduleCleanup, ¶ms ); } extern vtable_ptr winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_vtable; diff --git a/lsteamclient/winISteamNetworkingMessages.c b/lsteamclient/winISteamNetworkingMessages.c index 8bcea3c5..48c399df 100644 --- a/lsteamclient/winISteamNetworkingMessages.c +++ b/lsteamclient/winISteamNetworkingMessages.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamNetworkingMessages_SteamNetworkingMessages002.h" - DEFINE_THISCALL_WRAPPER(winISteamNetworkingMessages_SteamNetworkingMessages002_SendMessageToUser, 24) DEFINE_THISCALL_WRAPPER(winISteamNetworkingMessages_SteamNetworkingMessages002_ReceiveMessagesOnChannel, 16) DEFINE_THISCALL_WRAPPER(winISteamNetworkingMessages_SteamNetworkingMessages002_AcceptSessionWithUser, 8) @@ -14,7 +12,7 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworkingMessages_SteamNetworkingMessages002_G 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) { - struct cppISteamNetworkingMessages_SteamNetworkingMessages002_SendMessageToUser_params params = + struct ISteamNetworkingMessages_SteamNetworkingMessages002_SendMessageToUser_params params = { .linux_side = _this->u_iface, .identityRemote = identityRemote, @@ -24,50 +22,50 @@ uint32_t __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_SendM .nRemoteChannel = nRemoteChannel, }; TRACE("%p\n", _this); - cppISteamNetworkingMessages_SteamNetworkingMessages002_SendMessageToUser( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingMessages_SteamNetworkingMessages002_SendMessageToUser, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_AcceptSessionWithUser(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityRemote) { - struct cppISteamNetworkingMessages_SteamNetworkingMessages002_AcceptSessionWithUser_params params = + struct ISteamNetworkingMessages_SteamNetworkingMessages002_AcceptSessionWithUser_params params = { .linux_side = _this->u_iface, .identityRemote = identityRemote, }; TRACE("%p\n", _this); - cppISteamNetworkingMessages_SteamNetworkingMessages002_AcceptSessionWithUser( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingMessages_SteamNetworkingMessages002_AcceptSessionWithUser, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_CloseSessionWithUser(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityRemote) { - struct cppISteamNetworkingMessages_SteamNetworkingMessages002_CloseSessionWithUser_params params = + struct ISteamNetworkingMessages_SteamNetworkingMessages002_CloseSessionWithUser_params params = { .linux_side = _this->u_iface, .identityRemote = identityRemote, }; TRACE("%p\n", _this); - cppISteamNetworkingMessages_SteamNetworkingMessages002_CloseSessionWithUser( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingMessages_SteamNetworkingMessages002_CloseSessionWithUser, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_CloseChannelWithUser(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityRemote, int32_t nLocalChannel) { - struct cppISteamNetworkingMessages_SteamNetworkingMessages002_CloseChannelWithUser_params params = + struct ISteamNetworkingMessages_SteamNetworkingMessages002_CloseChannelWithUser_params params = { .linux_side = _this->u_iface, .identityRemote = identityRemote, .nLocalChannel = nLocalChannel, }; TRACE("%p\n", _this); - cppISteamNetworkingMessages_SteamNetworkingMessages002_CloseChannelWithUser( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingMessages_SteamNetworkingMessages002_CloseChannelWithUser, ¶ms ); 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) { - struct cppISteamNetworkingMessages_SteamNetworkingMessages002_GetSessionConnectionInfo_params params = + struct ISteamNetworkingMessages_SteamNetworkingMessages002_GetSessionConnectionInfo_params params = { .linux_side = _this->u_iface, .identityRemote = identityRemote, @@ -75,7 +73,7 @@ uint32_t __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_GetSe .pQuickStatus = pQuickStatus, }; TRACE("%p\n", _this); - cppISteamNetworkingMessages_SteamNetworkingMessages002_GetSessionConnectionInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingMessages_SteamNetworkingMessages002_GetSessionConnectionInfo, ¶ms ); return params._ret; } diff --git a/lsteamclient/winISteamNetworkingSockets.c b/lsteamclient/winISteamNetworkingSockets.c index 916757f1..0c1f2136 100644 --- a/lsteamclient/winISteamNetworkingSockets.c +++ b/lsteamclient/winISteamNetworkingSockets.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamNetworkingSockets_SteamNetworkingSockets002.h" - DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketIP, 8) DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets002_ConnectByIPAddress, 8) DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketP2P, 8) @@ -37,68 +35,68 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets002_des uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketIP(struct w_steam_iface *_this, const SteamNetworkingIPAddr *localAddress) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketIP_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketIP_params params = { .linux_side = _this->u_iface, .localAddress = localAddress, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketIP( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketIP, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_ConnectByIPAddress(struct w_steam_iface *_this, const SteamNetworkingIPAddr *address) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets002_ConnectByIPAddress_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectByIPAddress_params params = { .linux_side = _this->u_iface, .address = address, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets002_ConnectByIPAddress( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectByIPAddress, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketP2P(struct w_steam_iface *_this, int32_t nVirtualPort) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketP2P_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketP2P_params params = { .linux_side = _this->u_iface, .nVirtualPort = nVirtualPort, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketP2P( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketP2P, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_ConnectP2P(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityRemote, int32_t nVirtualPort) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets002_ConnectP2P_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectP2P_params params = { .linux_side = _this->u_iface, .identityRemote = identityRemote, .nVirtualPort = nVirtualPort, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets002_ConnectP2P( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectP2P, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_AcceptConnection(struct w_steam_iface *_this, uint32_t hConn) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets002_AcceptConnection_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets002_AcceptConnection_params params = { .linux_side = _this->u_iface, .hConn = hConn, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets002_AcceptConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_AcceptConnection, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CloseConnection(struct w_steam_iface *_this, uint32_t hPeer, int32_t nReason, const char *pszDebug, bool bEnableLinger) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets002_CloseConnection_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets002_CloseConnection_params params = { .linux_side = _this->u_iface, .hPeer = hPeer, @@ -107,62 +105,62 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CloseConnec .bEnableLinger = bEnableLinger, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets002_CloseConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_CloseConnection, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CloseListenSocket(struct w_steam_iface *_this, uint32_t hSocket) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets002_CloseListenSocket_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets002_CloseListenSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets002_CloseListenSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_CloseListenSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer, int64_t nUserData) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionUserData_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionUserData_params params = { .linux_side = _this->u_iface, .hPeer = hPeer, .nUserData = nUserData, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionUserData( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionUserData, ¶ms ); return params._ret; } int64_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionUserData_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionUserData_params params = { .linux_side = _this->u_iface, .hPeer = hPeer, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionUserData( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionUserData, ¶ms ); return params._ret; } void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, const char *pszName) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionName_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionName_params params = { .linux_side = _this->u_iface, .hPeer = hPeer, .pszName = pszName, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionName( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionName, ¶ms ); } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, char *pszName, int32_t nMaxLen) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionName_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionName_params params = { .linux_side = _this->u_iface, .hPeer = hPeer, @@ -170,13 +168,13 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetConnecti .nMaxLen = nMaxLen, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionName( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionName, ¶ms ); 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) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets002_SendMessageToConnection_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets002_SendMessageToConnection_params params = { .linux_side = _this->u_iface, .hConn = hConn, @@ -185,51 +183,51 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_SendMes .nSendFlags = nSendFlags, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets002_SendMessageToConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_SendMessageToConnection, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_FlushMessagesOnConnection(struct w_steam_iface *_this, uint32_t hConn) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets002_FlushMessagesOnConnection_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets002_FlushMessagesOnConnection_params params = { .linux_side = _this->u_iface, .hConn = hConn, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets002_FlushMessagesOnConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_FlushMessagesOnConnection, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionInfo(struct w_steam_iface *_this, uint32_t hConn, SteamNetConnectionInfo_t_144 *pInfo) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionInfo_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionInfo_params params = { .linux_side = _this->u_iface, .hConn = hConn, .pInfo = pInfo, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionInfo, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetQuickConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, SteamNetworkingQuickConnectionStatus *pStats) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetQuickConnectionStatus_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetQuickConnectionStatus_params params = { .linux_side = _this->u_iface, .hConn = hConn, .pStats = pStats, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets002_GetQuickConnectionStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_GetQuickConnectionStatus, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetDetailedConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, char *pszBuf, int32_t cbBuf) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetDetailedConnectionStatus_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetDetailedConnectionStatus_params params = { .linux_side = _this->u_iface, .hConn = hConn, @@ -237,26 +235,26 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetDetai .cbBuf = cbBuf, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets002_GetDetailedConnectionStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_GetDetailedConnectionStatus, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetListenSocketAddress(struct w_steam_iface *_this, uint32_t hSocket, SteamNetworkingIPAddr *address) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetListenSocketAddress_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetListenSocketAddress_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, .address = address, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets002_GetListenSocketAddress( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_GetListenSocketAddress, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocketPair(struct w_steam_iface *_this, uint32_t *pOutConnection1, uint32_t *pOutConnection2, bool bUseNetworkLoopback, const SteamNetworkingIdentity_144 *pIdentity1, const SteamNetworkingIdentity_144 *pIdentity2) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocketPair_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocketPair_params params = { .linux_side = _this->u_iface, .pOutConnection1 = pOutConnection1, @@ -266,25 +264,25 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocke .pIdentity2 = pIdentity2, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocketPair( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocketPair, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetIdentity(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetIdentity_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetIdentity_params params = { .linux_side = _this->u_iface, .pIdentity = pIdentity, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets002_GetIdentity( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_GetIdentity, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_ReceivedRelayAuthTicket(struct w_steam_iface *_this, const void *pvTicket, int32_t cbTicket, SteamDatagramRelayAuthTicket *pOutParsedTicket) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets002_ReceivedRelayAuthTicket_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets002_ReceivedRelayAuthTicket_params params = { .linux_side = _this->u_iface, .pvTicket = pvTicket, @@ -292,13 +290,13 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_ReceivedRel .pOutParsedTicket = pOutParsedTicket, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets002_ReceivedRelayAuthTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_ReceivedRelayAuthTicket, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_FindRelayAuthTicketForServer(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityGameServer, int32_t nVirtualPort, SteamDatagramRelayAuthTicket *pOutParsedTicket) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets002_FindRelayAuthTicketForServer_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets002_FindRelayAuthTicketForServer_params params = { .linux_side = _this->u_iface, .identityGameServer = identityGameServer, @@ -306,66 +304,66 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_FindRela .pOutParsedTicket = pOutParsedTicket, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets002_FindRelayAuthTicketForServer( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_FindRelayAuthTicketForServer, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_ConnectToHostedDedicatedServer(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityTarget, int32_t nVirtualPort) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets002_ConnectToHostedDedicatedServer_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectToHostedDedicatedServer_params params = { .linux_side = _this->u_iface, .identityTarget = identityTarget, .nVirtualPort = nVirtualPort, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets002_ConnectToHostedDedicatedServer( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectToHostedDedicatedServer, ¶ms ); return params._ret; } uint16_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPort(struct w_steam_iface *_this) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPort_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPort_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPort( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPort, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPOPID(struct w_steam_iface *_this) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPOPID_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPOPID_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPOPID( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPOPID, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerAddress(struct w_steam_iface *_this, SteamDatagramHostedAddress *pRouting) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerAddress_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerAddress_params params = { .linux_side = _this->u_iface, .pRouting = pRouting, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerAddress( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerAddress, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CreateHostedDedicatedServerListenSocket(struct w_steam_iface *_this, int32_t nVirtualPort) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets002_CreateHostedDedicatedServerListenSocket_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateHostedDedicatedServerListenSocket_params params = { .linux_side = _this->u_iface, .nVirtualPort = nVirtualPort, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets002_CreateHostedDedicatedServerListenSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_CreateHostedDedicatedServerListenSocket, ¶ms ); return params._ret; } @@ -419,8 +417,6 @@ struct w_steam_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets00 return r; } -#include "cppISteamNetworkingSockets_SteamNetworkingSockets004.h" - DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketIP, 8) DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets004_ConnectByIPAddress, 8) DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketP2P, 8) @@ -456,68 +452,68 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets004_des uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketIP(struct w_steam_iface *_this, const SteamNetworkingIPAddr *localAddress) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketIP_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketIP_params params = { .linux_side = _this->u_iface, .localAddress = localAddress, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketIP( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketIP, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_ConnectByIPAddress(struct w_steam_iface *_this, const SteamNetworkingIPAddr *address) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets004_ConnectByIPAddress_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectByIPAddress_params params = { .linux_side = _this->u_iface, .address = address, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets004_ConnectByIPAddress( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectByIPAddress, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketP2P(struct w_steam_iface *_this, int32_t nVirtualPort) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketP2P_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketP2P_params params = { .linux_side = _this->u_iface, .nVirtualPort = nVirtualPort, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketP2P( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketP2P, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_ConnectP2P(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityRemote, int32_t nVirtualPort) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets004_ConnectP2P_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectP2P_params params = { .linux_side = _this->u_iface, .identityRemote = identityRemote, .nVirtualPort = nVirtualPort, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets004_ConnectP2P( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectP2P, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_AcceptConnection(struct w_steam_iface *_this, uint32_t hConn) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets004_AcceptConnection_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets004_AcceptConnection_params params = { .linux_side = _this->u_iface, .hConn = hConn, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets004_AcceptConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_AcceptConnection, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CloseConnection(struct w_steam_iface *_this, uint32_t hPeer, int32_t nReason, const char *pszDebug, bool bEnableLinger) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets004_CloseConnection_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets004_CloseConnection_params params = { .linux_side = _this->u_iface, .hPeer = hPeer, @@ -526,62 +522,62 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CloseConnec .bEnableLinger = bEnableLinger, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets004_CloseConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_CloseConnection, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CloseListenSocket(struct w_steam_iface *_this, uint32_t hSocket) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets004_CloseListenSocket_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets004_CloseListenSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets004_CloseListenSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_CloseListenSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer, int64_t nUserData) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionUserData_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionUserData_params params = { .linux_side = _this->u_iface, .hPeer = hPeer, .nUserData = nUserData, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionUserData( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionUserData, ¶ms ); return params._ret; } int64_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionUserData_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionUserData_params params = { .linux_side = _this->u_iface, .hPeer = hPeer, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionUserData( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionUserData, ¶ms ); return params._ret; } void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, const char *pszName) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionName_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionName_params params = { .linux_side = _this->u_iface, .hPeer = hPeer, .pszName = pszName, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionName( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionName, ¶ms ); } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, char *pszName, int32_t nMaxLen) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionName_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionName_params params = { .linux_side = _this->u_iface, .hPeer = hPeer, @@ -589,13 +585,13 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetConnecti .nMaxLen = nMaxLen, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionName( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionName, ¶ms ); 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) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets004_SendMessageToConnection_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets004_SendMessageToConnection_params params = { .linux_side = _this->u_iface, .hConn = hConn, @@ -604,51 +600,51 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_SendMes .nSendFlags = nSendFlags, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets004_SendMessageToConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_SendMessageToConnection, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_FlushMessagesOnConnection(struct w_steam_iface *_this, uint32_t hConn) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets004_FlushMessagesOnConnection_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets004_FlushMessagesOnConnection_params params = { .linux_side = _this->u_iface, .hConn = hConn, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets004_FlushMessagesOnConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_FlushMessagesOnConnection, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionInfo(struct w_steam_iface *_this, uint32_t hConn, SteamNetConnectionInfo_t_144 *pInfo) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionInfo_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionInfo_params params = { .linux_side = _this->u_iface, .hConn = hConn, .pInfo = pInfo, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionInfo, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetQuickConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, SteamNetworkingQuickConnectionStatus *pStats) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetQuickConnectionStatus_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetQuickConnectionStatus_params params = { .linux_side = _this->u_iface, .hConn = hConn, .pStats = pStats, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets004_GetQuickConnectionStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_GetQuickConnectionStatus, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetDetailedConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, char *pszBuf, int32_t cbBuf) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetDetailedConnectionStatus_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetDetailedConnectionStatus_params params = { .linux_side = _this->u_iface, .hConn = hConn, @@ -656,26 +652,26 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetDetai .cbBuf = cbBuf, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets004_GetDetailedConnectionStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_GetDetailedConnectionStatus, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetListenSocketAddress(struct w_steam_iface *_this, uint32_t hSocket, SteamNetworkingIPAddr *address) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetListenSocketAddress_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetListenSocketAddress_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, .address = address, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets004_GetListenSocketAddress( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_GetListenSocketAddress, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocketPair(struct w_steam_iface *_this, uint32_t *pOutConnection1, uint32_t *pOutConnection2, bool bUseNetworkLoopback, const SteamNetworkingIdentity_144 *pIdentity1, const SteamNetworkingIdentity_144 *pIdentity2) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocketPair_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocketPair_params params = { .linux_side = _this->u_iface, .pOutConnection1 = pOutConnection1, @@ -685,48 +681,48 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocke .pIdentity2 = pIdentity2, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocketPair( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocketPair, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetIdentity(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetIdentity_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetIdentity_params params = { .linux_side = _this->u_iface, .pIdentity = pIdentity, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets004_GetIdentity( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_GetIdentity, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_InitAuthentication(struct w_steam_iface *_this) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets004_InitAuthentication_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets004_InitAuthentication_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets004_InitAuthentication( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_InitAuthentication, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetAuthenticationStatus(struct w_steam_iface *_this, SteamNetAuthenticationStatus_t *pDetails) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetAuthenticationStatus_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetAuthenticationStatus_params params = { .linux_side = _this->u_iface, .pDetails = pDetails, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets004_GetAuthenticationStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_GetAuthenticationStatus, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_ReceivedRelayAuthTicket(struct w_steam_iface *_this, const void *pvTicket, int32_t cbTicket, SteamDatagramRelayAuthTicket *pOutParsedTicket) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets004_ReceivedRelayAuthTicket_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets004_ReceivedRelayAuthTicket_params params = { .linux_side = _this->u_iface, .pvTicket = pvTicket, @@ -734,13 +730,13 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_ReceivedRel .pOutParsedTicket = pOutParsedTicket, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets004_ReceivedRelayAuthTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_ReceivedRelayAuthTicket, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_FindRelayAuthTicketForServer(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityGameServer, int32_t nVirtualPort, SteamDatagramRelayAuthTicket *pOutParsedTicket) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets004_FindRelayAuthTicketForServer_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets004_FindRelayAuthTicketForServer_params params = { .linux_side = _this->u_iface, .identityGameServer = identityGameServer, @@ -748,72 +744,72 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_FindRela .pOutParsedTicket = pOutParsedTicket, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets004_FindRelayAuthTicketForServer( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_FindRelayAuthTicketForServer, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_ConnectToHostedDedicatedServer(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityTarget, int32_t nVirtualPort) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets004_ConnectToHostedDedicatedServer_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectToHostedDedicatedServer_params params = { .linux_side = _this->u_iface, .identityTarget = identityTarget, .nVirtualPort = nVirtualPort, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets004_ConnectToHostedDedicatedServer( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectToHostedDedicatedServer, ¶ms ); return params._ret; } uint16_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPort(struct w_steam_iface *_this) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPort_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPort_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPort( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPort, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPOPID(struct w_steam_iface *_this) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPOPID_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPOPID_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPOPID( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPOPID, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerAddress(struct w_steam_iface *_this, SteamDatagramHostedAddress *pRouting) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerAddress_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerAddress_params params = { .linux_side = _this->u_iface, .pRouting = pRouting, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerAddress( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerAddress, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CreateHostedDedicatedServerListenSocket(struct w_steam_iface *_this, int32_t nVirtualPort) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets004_CreateHostedDedicatedServerListenSocket_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateHostedDedicatedServerListenSocket_params params = { .linux_side = _this->u_iface, .nVirtualPort = nVirtualPort, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets004_CreateHostedDedicatedServerListenSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_CreateHostedDedicatedServerListenSocket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetGameCoordinatorServerLogin(struct w_steam_iface *_this, SteamDatagramGameCoordinatorServerLogin *pLoginInfo, int32_t *pcbSignedBlob, void *pBlob) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets004_GetGameCoordinatorServerLogin_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetGameCoordinatorServerLogin_params params = { .linux_side = _this->u_iface, .pLoginInfo = pLoginInfo, @@ -821,7 +817,7 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetGame .pBlob = pBlob, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets004_GetGameCoordinatorServerLogin( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_GetGameCoordinatorServerLogin, ¶ms ); return params._ret; } @@ -878,8 +874,6 @@ struct w_steam_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets00 return r; } -#include "cppISteamNetworkingSockets_SteamNetworkingSockets006.h" - DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketIP, 16) DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets006_ConnectByIPAddress, 16) DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketP2P, 16) @@ -918,7 +912,7 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets006_des uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketIP(struct w_steam_iface *_this, const SteamNetworkingIPAddr *localAddress, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketIP_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketIP_params params = { .linux_side = _this->u_iface, .localAddress = localAddress, @@ -926,13 +920,13 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CreateL .pOptions = pOptions, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketIP( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketIP, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ConnectByIPAddress(struct w_steam_iface *_this, const SteamNetworkingIPAddr *address, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ConnectByIPAddress_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectByIPAddress_params params = { .linux_side = _this->u_iface, .address = address, @@ -940,13 +934,13 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_Connect .pOptions = pOptions, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_ConnectByIPAddress( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectByIPAddress, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketP2P(struct w_steam_iface *_this, int32_t nVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketP2P_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketP2P_params params = { .linux_side = _this->u_iface, .nVirtualPort = nVirtualPort, @@ -954,13 +948,13 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CreateL .pOptions = pOptions, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketP2P( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketP2P, ¶ms ); 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) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2P_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2P_params params = { .linux_side = _this->u_iface, .identityRemote = identityRemote, @@ -969,25 +963,25 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_Connect .pOptions = pOptions, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2P( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2P, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_AcceptConnection(struct w_steam_iface *_this, uint32_t hConn) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_AcceptConnection_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_AcceptConnection_params params = { .linux_side = _this->u_iface, .hConn = hConn, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_AcceptConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_AcceptConnection, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CloseConnection(struct w_steam_iface *_this, uint32_t hPeer, int32_t nReason, const char *pszDebug, bool bEnableLinger) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_CloseConnection_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_CloseConnection_params params = { .linux_side = _this->u_iface, .hPeer = hPeer, @@ -996,62 +990,62 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CloseConnec .bEnableLinger = bEnableLinger, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_CloseConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_CloseConnection, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CloseListenSocket(struct w_steam_iface *_this, uint32_t hSocket) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_CloseListenSocket_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_CloseListenSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_CloseListenSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_CloseListenSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer, int64_t nUserData) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionUserData_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionUserData_params params = { .linux_side = _this->u_iface, .hPeer = hPeer, .nUserData = nUserData, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionUserData( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionUserData, ¶ms ); return params._ret; } int64_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionUserData_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionUserData_params params = { .linux_side = _this->u_iface, .hPeer = hPeer, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionUserData( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionUserData, ¶ms ); return params._ret; } void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, const char *pszName) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionName_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionName_params params = { .linux_side = _this->u_iface, .hPeer = hPeer, .pszName = pszName, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionName( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionName, ¶ms ); } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, char *pszName, int32_t nMaxLen) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionName_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionName_params params = { .linux_side = _this->u_iface, .hPeer = hPeer, @@ -1059,13 +1053,13 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetConnecti .nMaxLen = nMaxLen, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionName( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionName, ¶ms ); 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) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_SendMessageToConnection_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_SendMessageToConnection_params params = { .linux_side = _this->u_iface, .hConn = hConn, @@ -1075,51 +1069,51 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_SendMes .pOutMessageNumber = pOutMessageNumber, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_SendMessageToConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_SendMessageToConnection, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_FlushMessagesOnConnection(struct w_steam_iface *_this, uint32_t hConn) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_FlushMessagesOnConnection_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_FlushMessagesOnConnection_params params = { .linux_side = _this->u_iface, .hConn = hConn, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_FlushMessagesOnConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_FlushMessagesOnConnection, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionInfo(struct w_steam_iface *_this, uint32_t hConn, SteamNetConnectionInfo_t_144 *pInfo) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionInfo_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionInfo_params params = { .linux_side = _this->u_iface, .hConn = hConn, .pInfo = pInfo, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionInfo, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetQuickConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, SteamNetworkingQuickConnectionStatus *pStats) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetQuickConnectionStatus_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetQuickConnectionStatus_params params = { .linux_side = _this->u_iface, .hConn = hConn, .pStats = pStats, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_GetQuickConnectionStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_GetQuickConnectionStatus, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetDetailedConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, char *pszBuf, int32_t cbBuf) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetDetailedConnectionStatus_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetDetailedConnectionStatus_params params = { .linux_side = _this->u_iface, .hConn = hConn, @@ -1127,26 +1121,26 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetDetai .cbBuf = cbBuf, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_GetDetailedConnectionStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_GetDetailedConnectionStatus, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetListenSocketAddress(struct w_steam_iface *_this, uint32_t hSocket, SteamNetworkingIPAddr *address) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetListenSocketAddress_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetListenSocketAddress_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, .address = address, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_GetListenSocketAddress( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_GetListenSocketAddress, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocketPair(struct w_steam_iface *_this, uint32_t *pOutConnection1, uint32_t *pOutConnection2, bool bUseNetworkLoopback, const SteamNetworkingIdentity_144 *pIdentity1, const SteamNetworkingIdentity_144 *pIdentity2) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocketPair_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocketPair_params params = { .linux_side = _this->u_iface, .pOutConnection1 = pOutConnection1, @@ -1156,48 +1150,48 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocke .pIdentity2 = pIdentity2, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocketPair( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocketPair, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetIdentity(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetIdentity_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetIdentity_params params = { .linux_side = _this->u_iface, .pIdentity = pIdentity, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_GetIdentity( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_GetIdentity, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_InitAuthentication(struct w_steam_iface *_this) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_InitAuthentication_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_InitAuthentication_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_InitAuthentication( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_InitAuthentication, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetAuthenticationStatus(struct w_steam_iface *_this, SteamNetAuthenticationStatus_t *pDetails) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetAuthenticationStatus_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetAuthenticationStatus_params params = { .linux_side = _this->u_iface, .pDetails = pDetails, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_GetAuthenticationStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_GetAuthenticationStatus, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedRelayAuthTicket(struct w_steam_iface *_this, const void *pvTicket, int32_t cbTicket, SteamDatagramRelayAuthTicket *pOutParsedTicket) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedRelayAuthTicket_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedRelayAuthTicket_params params = { .linux_side = _this->u_iface, .pvTicket = pvTicket, @@ -1205,13 +1199,13 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedRel .pOutParsedTicket = pOutParsedTicket, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedRelayAuthTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedRelayAuthTicket, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_FindRelayAuthTicketForServer(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityGameServer, int32_t nVirtualPort, SteamDatagramRelayAuthTicket *pOutParsedTicket) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_FindRelayAuthTicketForServer_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_FindRelayAuthTicketForServer_params params = { .linux_side = _this->u_iface, .identityGameServer = identityGameServer, @@ -1219,13 +1213,13 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_FindRela .pOutParsedTicket = pOutParsedTicket, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_FindRelayAuthTicketForServer( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_FindRelayAuthTicketForServer, ¶ms ); 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) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ConnectToHostedDedicatedServer_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectToHostedDedicatedServer_params params = { .linux_side = _this->u_iface, .identityTarget = identityTarget, @@ -1234,47 +1228,47 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_Connect .pOptions = pOptions, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_ConnectToHostedDedicatedServer( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectToHostedDedicatedServer, ¶ms ); return params._ret; } uint16_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPort(struct w_steam_iface *_this) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPort_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPort_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPort( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPort, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPOPID(struct w_steam_iface *_this) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPOPID_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPOPID_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPOPID( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPOPID, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerAddress(struct w_steam_iface *_this, SteamDatagramHostedAddress *pRouting) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerAddress_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerAddress_params params = { .linux_side = _this->u_iface, .pRouting = pRouting, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerAddress( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerAddress, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CreateHostedDedicatedServerListenSocket(struct w_steam_iface *_this, int32_t nVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_CreateHostedDedicatedServerListenSocket_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateHostedDedicatedServerListenSocket_params params = { .linux_side = _this->u_iface, .nVirtualPort = nVirtualPort, @@ -1282,13 +1276,13 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CreateH .pOptions = pOptions, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_CreateHostedDedicatedServerListenSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_CreateHostedDedicatedServerListenSocket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetGameCoordinatorServerLogin(struct w_steam_iface *_this, SteamDatagramGameCoordinatorServerLogin *pLoginInfo, int32_t *pcbSignedBlob, void *pBlob) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_GetGameCoordinatorServerLogin_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetGameCoordinatorServerLogin_params params = { .linux_side = _this->u_iface, .pLoginInfo = pLoginInfo, @@ -1296,13 +1290,13 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetGame .pBlob = pBlob, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_GetGameCoordinatorServerLogin( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_GetGameCoordinatorServerLogin, ¶ms ); 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) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2PCustomSignaling_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2PCustomSignaling_params params = { .linux_side = _this->u_iface, .pSignaling = pSignaling, @@ -1311,13 +1305,13 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_Connect .pOptions = pOptions, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2PCustomSignaling( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2PCustomSignaling, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP2PCustomSignal(struct w_steam_iface *_this, const void *pMsg, int32_t cbMsg, w_ISteamNetworkingCustomSignalingRecvContext *pContext) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP2PCustomSignal_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP2PCustomSignal_params params = { .linux_side = _this->u_iface, .pMsg = pMsg, @@ -1325,7 +1319,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP2P .pContext = pContext, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP2PCustomSignal( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP2PCustomSignal, ¶ms ); return params._ret; } @@ -1385,8 +1379,6 @@ struct w_steam_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets00 return r; } -#include "cppISteamNetworkingSockets_SteamNetworkingSockets008.h" - DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketIP, 16) DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets008_ConnectByIPAddress, 16) DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketP2P, 16) @@ -1430,7 +1422,7 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets008_des uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketIP(struct w_steam_iface *_this, const SteamNetworkingIPAddr *localAddress, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketIP_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketIP_params params = { .linux_side = _this->u_iface, .localAddress = localAddress, @@ -1438,13 +1430,13 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CreateL .pOptions = pOptions, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketIP( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketIP, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ConnectByIPAddress(struct w_steam_iface *_this, const SteamNetworkingIPAddr *address, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ConnectByIPAddress_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectByIPAddress_params params = { .linux_side = _this->u_iface, .address = address, @@ -1452,13 +1444,13 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_Connect .pOptions = pOptions, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_ConnectByIPAddress( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectByIPAddress, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketP2P(struct w_steam_iface *_this, int32_t nVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketP2P_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketP2P_params params = { .linux_side = _this->u_iface, .nVirtualPort = nVirtualPort, @@ -1466,13 +1458,13 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CreateL .pOptions = pOptions, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketP2P( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketP2P, ¶ms ); 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) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2P_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2P_params params = { .linux_side = _this->u_iface, .identityRemote = identityRemote, @@ -1481,25 +1473,25 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_Connect .pOptions = pOptions, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2P( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2P, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_AcceptConnection(struct w_steam_iface *_this, uint32_t hConn) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_AcceptConnection_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_AcceptConnection_params params = { .linux_side = _this->u_iface, .hConn = hConn, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_AcceptConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_AcceptConnection, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CloseConnection(struct w_steam_iface *_this, uint32_t hPeer, int32_t nReason, const char *pszDebug, bool bEnableLinger) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_CloseConnection_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_CloseConnection_params params = { .linux_side = _this->u_iface, .hPeer = hPeer, @@ -1508,62 +1500,62 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CloseConnec .bEnableLinger = bEnableLinger, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_CloseConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_CloseConnection, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CloseListenSocket(struct w_steam_iface *_this, uint32_t hSocket) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_CloseListenSocket_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_CloseListenSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_CloseListenSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_CloseListenSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer, int64_t nUserData) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionUserData_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionUserData_params params = { .linux_side = _this->u_iface, .hPeer = hPeer, .nUserData = nUserData, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionUserData( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionUserData, ¶ms ); return params._ret; } int64_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionUserData_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionUserData_params params = { .linux_side = _this->u_iface, .hPeer = hPeer, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionUserData( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionUserData, ¶ms ); return params._ret; } void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, const char *pszName) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionName_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionName_params params = { .linux_side = _this->u_iface, .hPeer = hPeer, .pszName = pszName, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionName( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionName, ¶ms ); } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, char *pszName, int32_t nMaxLen) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionName_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionName_params params = { .linux_side = _this->u_iface, .hPeer = hPeer, @@ -1571,13 +1563,13 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetConnecti .nMaxLen = nMaxLen, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionName( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionName, ¶ms ); 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) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_SendMessageToConnection_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_SendMessageToConnection_params params = { .linux_side = _this->u_iface, .hConn = hConn, @@ -1587,51 +1579,51 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SendMes .pOutMessageNumber = pOutMessageNumber, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_SendMessageToConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_SendMessageToConnection, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_FlushMessagesOnConnection(struct w_steam_iface *_this, uint32_t hConn) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_FlushMessagesOnConnection_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_FlushMessagesOnConnection_params params = { .linux_side = _this->u_iface, .hConn = hConn, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_FlushMessagesOnConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_FlushMessagesOnConnection, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionInfo(struct w_steam_iface *_this, uint32_t hConn, SteamNetConnectionInfo_t_144 *pInfo) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionInfo_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionInfo_params params = { .linux_side = _this->u_iface, .hConn = hConn, .pInfo = pInfo, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionInfo, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetQuickConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, SteamNetworkingQuickConnectionStatus *pStats) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetQuickConnectionStatus_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetQuickConnectionStatus_params params = { .linux_side = _this->u_iface, .hConn = hConn, .pStats = pStats, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_GetQuickConnectionStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_GetQuickConnectionStatus, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetDetailedConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, char *pszBuf, int32_t cbBuf) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetDetailedConnectionStatus_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetDetailedConnectionStatus_params params = { .linux_side = _this->u_iface, .hConn = hConn, @@ -1639,26 +1631,26 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetDetai .cbBuf = cbBuf, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_GetDetailedConnectionStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_GetDetailedConnectionStatus, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetListenSocketAddress(struct w_steam_iface *_this, uint32_t hSocket, SteamNetworkingIPAddr *address) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetListenSocketAddress_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetListenSocketAddress_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, .address = address, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_GetListenSocketAddress( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_GetListenSocketAddress, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocketPair(struct w_steam_iface *_this, uint32_t *pOutConnection1, uint32_t *pOutConnection2, bool bUseNetworkLoopback, const SteamNetworkingIdentity_144 *pIdentity1, const SteamNetworkingIdentity_144 *pIdentity2) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocketPair_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocketPair_params params = { .linux_side = _this->u_iface, .pOutConnection1 = pOutConnection1, @@ -1668,84 +1660,84 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocke .pIdentity2 = pIdentity2, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocketPair( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocketPair, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetIdentity(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetIdentity_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetIdentity_params params = { .linux_side = _this->u_iface, .pIdentity = pIdentity, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_GetIdentity( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_GetIdentity, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_InitAuthentication(struct w_steam_iface *_this) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_InitAuthentication_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_InitAuthentication_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_InitAuthentication( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_InitAuthentication, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetAuthenticationStatus(struct w_steam_iface *_this, SteamNetAuthenticationStatus_t *pDetails) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetAuthenticationStatus_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetAuthenticationStatus_params params = { .linux_side = _this->u_iface, .pDetails = pDetails, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_GetAuthenticationStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_GetAuthenticationStatus, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CreatePollGroup(struct w_steam_iface *_this) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_CreatePollGroup_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreatePollGroup_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_CreatePollGroup( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_CreatePollGroup, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_DestroyPollGroup(struct w_steam_iface *_this, uint32_t hPollGroup) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_DestroyPollGroup_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_DestroyPollGroup_params params = { .linux_side = _this->u_iface, .hPollGroup = hPollGroup, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_DestroyPollGroup( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_DestroyPollGroup, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionPollGroup(struct w_steam_iface *_this, uint32_t hConn, uint32_t hPollGroup) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionPollGroup_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionPollGroup_params params = { .linux_side = _this->u_iface, .hConn = hConn, .hPollGroup = hPollGroup, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionPollGroup( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionPollGroup, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedRelayAuthTicket(struct w_steam_iface *_this, const void *pvTicket, int32_t cbTicket, SteamDatagramRelayAuthTicket *pOutParsedTicket) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedRelayAuthTicket_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedRelayAuthTicket_params params = { .linux_side = _this->u_iface, .pvTicket = pvTicket, @@ -1753,13 +1745,13 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedRel .pOutParsedTicket = pOutParsedTicket, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedRelayAuthTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedRelayAuthTicket, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_FindRelayAuthTicketForServer(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityGameServer, int32_t nVirtualPort, SteamDatagramRelayAuthTicket *pOutParsedTicket) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_FindRelayAuthTicketForServer_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_FindRelayAuthTicketForServer_params params = { .linux_side = _this->u_iface, .identityGameServer = identityGameServer, @@ -1767,13 +1759,13 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_FindRela .pOutParsedTicket = pOutParsedTicket, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_FindRelayAuthTicketForServer( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_FindRelayAuthTicketForServer, ¶ms ); 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) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ConnectToHostedDedicatedServer_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectToHostedDedicatedServer_params params = { .linux_side = _this->u_iface, .identityTarget = identityTarget, @@ -1782,47 +1774,47 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_Connect .pOptions = pOptions, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_ConnectToHostedDedicatedServer( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectToHostedDedicatedServer, ¶ms ); return params._ret; } uint16_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPort(struct w_steam_iface *_this) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPort_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPort_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPort( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPort, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPOPID(struct w_steam_iface *_this) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPOPID_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPOPID_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPOPID( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPOPID, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerAddress(struct w_steam_iface *_this, SteamDatagramHostedAddress *pRouting) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerAddress_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerAddress_params params = { .linux_side = _this->u_iface, .pRouting = pRouting, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerAddress( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerAddress, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CreateHostedDedicatedServerListenSocket(struct w_steam_iface *_this, int32_t nVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_CreateHostedDedicatedServerListenSocket_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateHostedDedicatedServerListenSocket_params params = { .linux_side = _this->u_iface, .nVirtualPort = nVirtualPort, @@ -1830,13 +1822,13 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CreateH .pOptions = pOptions, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_CreateHostedDedicatedServerListenSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_CreateHostedDedicatedServerListenSocket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetGameCoordinatorServerLogin(struct w_steam_iface *_this, SteamDatagramGameCoordinatorServerLogin *pLoginInfo, int32_t *pcbSignedBlob, void *pBlob) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetGameCoordinatorServerLogin_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetGameCoordinatorServerLogin_params params = { .linux_side = _this->u_iface, .pLoginInfo = pLoginInfo, @@ -1844,13 +1836,13 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetGame .pBlob = pBlob, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_GetGameCoordinatorServerLogin( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_GetGameCoordinatorServerLogin, ¶ms ); 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) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2PCustomSignaling_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2PCustomSignaling_params params = { .linux_side = _this->u_iface, .pSignaling = pSignaling, @@ -1859,13 +1851,13 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_Connect .pOptions = pOptions, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2PCustomSignaling( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2PCustomSignaling, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP2PCustomSignal(struct w_steam_iface *_this, const void *pMsg, int32_t cbMsg, w_ISteamNetworkingCustomSignalingRecvContext *pContext) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP2PCustomSignal_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP2PCustomSignal_params params = { .linux_side = _this->u_iface, .pMsg = pMsg, @@ -1873,13 +1865,13 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP2P .pContext = pContext, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP2PCustomSignal( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP2PCustomSignal, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetCertificateRequest(struct w_steam_iface *_this, int32_t *pcbBlob, void *pBlob, char (*errMsg)[1024]) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_GetCertificateRequest_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetCertificateRequest_params params = { .linux_side = _this->u_iface, .pcbBlob = pcbBlob, @@ -1887,13 +1879,13 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetCertific .errMsg = errMsg, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_GetCertificateRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_GetCertificateRequest, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SetCertificate(struct w_steam_iface *_this, const void *pCertificate, int32_t cbCertificate, char (*errMsg)[1024]) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets008_SetCertificate_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetCertificate_params params = { .linux_side = _this->u_iface, .pCertificate = pCertificate, @@ -1901,7 +1893,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SetCertific .errMsg = errMsg, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets008_SetCertificate( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_SetCertificate, ¶ms ); return params._ret; } @@ -1966,8 +1958,6 @@ struct w_steam_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets00 return r; } -#include "cppISteamNetworkingSockets_SteamNetworkingSockets009.h" - DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketIP, 16) DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets009_ConnectByIPAddress, 16) DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketP2P, 16) @@ -2012,7 +2002,7 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets009_des uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketIP(struct w_steam_iface *_this, const SteamNetworkingIPAddr *localAddress, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketIP_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketIP_params params = { .linux_side = _this->u_iface, .localAddress = localAddress, @@ -2020,13 +2010,13 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CreateL .pOptions = pOptions, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketIP( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketIP, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ConnectByIPAddress(struct w_steam_iface *_this, const SteamNetworkingIPAddr *address, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ConnectByIPAddress_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectByIPAddress_params params = { .linux_side = _this->u_iface, .address = address, @@ -2034,13 +2024,13 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_Connect .pOptions = pOptions, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_ConnectByIPAddress( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectByIPAddress, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketP2P(struct w_steam_iface *_this, int32_t nLocalVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketP2P_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketP2P_params params = { .linux_side = _this->u_iface, .nLocalVirtualPort = nLocalVirtualPort, @@ -2048,13 +2038,13 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CreateL .pOptions = pOptions, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketP2P( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketP2P, ¶ms ); 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) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2P_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2P_params params = { .linux_side = _this->u_iface, .identityRemote = identityRemote, @@ -2063,25 +2053,25 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_Connect .pOptions = pOptions, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2P( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2P, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_AcceptConnection(struct w_steam_iface *_this, uint32_t hConn) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_AcceptConnection_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_AcceptConnection_params params = { .linux_side = _this->u_iface, .hConn = hConn, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_AcceptConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_AcceptConnection, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CloseConnection(struct w_steam_iface *_this, uint32_t hPeer, int32_t nReason, const char *pszDebug, bool bEnableLinger) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_CloseConnection_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_CloseConnection_params params = { .linux_side = _this->u_iface, .hPeer = hPeer, @@ -2090,62 +2080,62 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CloseConnec .bEnableLinger = bEnableLinger, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_CloseConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_CloseConnection, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CloseListenSocket(struct w_steam_iface *_this, uint32_t hSocket) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_CloseListenSocket_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_CloseListenSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_CloseListenSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_CloseListenSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer, int64_t nUserData) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionUserData_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionUserData_params params = { .linux_side = _this->u_iface, .hPeer = hPeer, .nUserData = nUserData, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionUserData( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionUserData, ¶ms ); return params._ret; } int64_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionUserData_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionUserData_params params = { .linux_side = _this->u_iface, .hPeer = hPeer, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionUserData( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionUserData, ¶ms ); return params._ret; } void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, const char *pszName) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionName_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionName_params params = { .linux_side = _this->u_iface, .hPeer = hPeer, .pszName = pszName, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionName( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionName, ¶ms ); } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, char *pszName, int32_t nMaxLen) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionName_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionName_params params = { .linux_side = _this->u_iface, .hPeer = hPeer, @@ -2153,13 +2143,13 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetConnecti .nMaxLen = nMaxLen, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionName( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionName, ¶ms ); 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) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_SendMessageToConnection_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_SendMessageToConnection_params params = { .linux_side = _this->u_iface, .hConn = hConn, @@ -2169,51 +2159,51 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SendMes .pOutMessageNumber = pOutMessageNumber, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_SendMessageToConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_SendMessageToConnection, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_FlushMessagesOnConnection(struct w_steam_iface *_this, uint32_t hConn) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_FlushMessagesOnConnection_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_FlushMessagesOnConnection_params params = { .linux_side = _this->u_iface, .hConn = hConn, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_FlushMessagesOnConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_FlushMessagesOnConnection, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionInfo(struct w_steam_iface *_this, uint32_t hConn, SteamNetConnectionInfo_t_144 *pInfo) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionInfo_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionInfo_params params = { .linux_side = _this->u_iface, .hConn = hConn, .pInfo = pInfo, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionInfo, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetQuickConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, SteamNetworkingQuickConnectionStatus *pStats) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetQuickConnectionStatus_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetQuickConnectionStatus_params params = { .linux_side = _this->u_iface, .hConn = hConn, .pStats = pStats, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_GetQuickConnectionStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_GetQuickConnectionStatus, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetDetailedConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, char *pszBuf, int32_t cbBuf) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetDetailedConnectionStatus_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetDetailedConnectionStatus_params params = { .linux_side = _this->u_iface, .hConn = hConn, @@ -2221,26 +2211,26 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetDetai .cbBuf = cbBuf, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_GetDetailedConnectionStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_GetDetailedConnectionStatus, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetListenSocketAddress(struct w_steam_iface *_this, uint32_t hSocket, SteamNetworkingIPAddr *address) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetListenSocketAddress_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetListenSocketAddress_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, .address = address, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_GetListenSocketAddress( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_GetListenSocketAddress, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocketPair(struct w_steam_iface *_this, uint32_t *pOutConnection1, uint32_t *pOutConnection2, bool bUseNetworkLoopback, const SteamNetworkingIdentity_144 *pIdentity1, const SteamNetworkingIdentity_144 *pIdentity2) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocketPair_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocketPair_params params = { .linux_side = _this->u_iface, .pOutConnection1 = pOutConnection1, @@ -2250,84 +2240,84 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocke .pIdentity2 = pIdentity2, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocketPair( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocketPair, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetIdentity(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetIdentity_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetIdentity_params params = { .linux_side = _this->u_iface, .pIdentity = pIdentity, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_GetIdentity( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_GetIdentity, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_InitAuthentication(struct w_steam_iface *_this) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_InitAuthentication_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_InitAuthentication_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_InitAuthentication( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_InitAuthentication, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetAuthenticationStatus(struct w_steam_iface *_this, SteamNetAuthenticationStatus_t *pDetails) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetAuthenticationStatus_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetAuthenticationStatus_params params = { .linux_side = _this->u_iface, .pDetails = pDetails, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_GetAuthenticationStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_GetAuthenticationStatus, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CreatePollGroup(struct w_steam_iface *_this) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_CreatePollGroup_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreatePollGroup_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_CreatePollGroup( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_CreatePollGroup, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_DestroyPollGroup(struct w_steam_iface *_this, uint32_t hPollGroup) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_DestroyPollGroup_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_DestroyPollGroup_params params = { .linux_side = _this->u_iface, .hPollGroup = hPollGroup, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_DestroyPollGroup( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_DestroyPollGroup, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionPollGroup(struct w_steam_iface *_this, uint32_t hConn, uint32_t hPollGroup) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionPollGroup_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionPollGroup_params params = { .linux_side = _this->u_iface, .hConn = hConn, .hPollGroup = hPollGroup, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionPollGroup( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionPollGroup, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedRelayAuthTicket(struct w_steam_iface *_this, const void *pvTicket, int32_t cbTicket, SteamDatagramRelayAuthTicket *pOutParsedTicket) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedRelayAuthTicket_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedRelayAuthTicket_params params = { .linux_side = _this->u_iface, .pvTicket = pvTicket, @@ -2335,13 +2325,13 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedRel .pOutParsedTicket = pOutParsedTicket, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedRelayAuthTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedRelayAuthTicket, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_FindRelayAuthTicketForServer(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityGameServer, int32_t nRemoteVirtualPort, SteamDatagramRelayAuthTicket *pOutParsedTicket) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_FindRelayAuthTicketForServer_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_FindRelayAuthTicketForServer_params params = { .linux_side = _this->u_iface, .identityGameServer = identityGameServer, @@ -2349,13 +2339,13 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_FindRela .pOutParsedTicket = pOutParsedTicket, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_FindRelayAuthTicketForServer( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_FindRelayAuthTicketForServer, ¶ms ); 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) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ConnectToHostedDedicatedServer_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectToHostedDedicatedServer_params params = { .linux_side = _this->u_iface, .identityTarget = identityTarget, @@ -2364,47 +2354,47 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_Connect .pOptions = pOptions, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_ConnectToHostedDedicatedServer( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectToHostedDedicatedServer, ¶ms ); return params._ret; } uint16_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPort(struct w_steam_iface *_this) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPort_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPort_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPort( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPort, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPOPID(struct w_steam_iface *_this) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPOPID_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPOPID_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPOPID( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPOPID, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerAddress(struct w_steam_iface *_this, SteamDatagramHostedAddress *pRouting) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerAddress_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerAddress_params params = { .linux_side = _this->u_iface, .pRouting = pRouting, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerAddress( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerAddress, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CreateHostedDedicatedServerListenSocket(struct w_steam_iface *_this, int32_t nLocalVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_CreateHostedDedicatedServerListenSocket_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateHostedDedicatedServerListenSocket_params params = { .linux_side = _this->u_iface, .nLocalVirtualPort = nLocalVirtualPort, @@ -2412,13 +2402,13 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CreateH .pOptions = pOptions, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_CreateHostedDedicatedServerListenSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_CreateHostedDedicatedServerListenSocket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetGameCoordinatorServerLogin(struct w_steam_iface *_this, SteamDatagramGameCoordinatorServerLogin *pLoginInfo, int32_t *pcbSignedBlob, void *pBlob) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetGameCoordinatorServerLogin_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetGameCoordinatorServerLogin_params params = { .linux_side = _this->u_iface, .pLoginInfo = pLoginInfo, @@ -2426,13 +2416,13 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetGame .pBlob = pBlob, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_GetGameCoordinatorServerLogin( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_GetGameCoordinatorServerLogin, ¶ms ); 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) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2PCustomSignaling_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2PCustomSignaling_params params = { .linux_side = _this->u_iface, .pSignaling = pSignaling, @@ -2442,13 +2432,13 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_Connect .pOptions = pOptions, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2PCustomSignaling( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2PCustomSignaling, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2PCustomSignal(struct w_steam_iface *_this, const void *pMsg, int32_t cbMsg, void /*ISteamNetworkingSignalingRecvContext*/ *pContext) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2PCustomSignal_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2PCustomSignal_params params = { .linux_side = _this->u_iface, .pMsg = pMsg, @@ -2456,13 +2446,13 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2P .pContext = pContext, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2PCustomSignal( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2PCustomSignal, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetCertificateRequest(struct w_steam_iface *_this, int32_t *pcbBlob, void *pBlob, char (*errMsg)[1024]) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_GetCertificateRequest_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetCertificateRequest_params params = { .linux_side = _this->u_iface, .pcbBlob = pcbBlob, @@ -2470,13 +2460,13 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetCertific .errMsg = errMsg, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_GetCertificateRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_GetCertificateRequest, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SetCertificate(struct w_steam_iface *_this, const void *pCertificate, int32_t cbCertificate, char (*errMsg)[1024]) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_SetCertificate_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetCertificate_params params = { .linux_side = _this->u_iface, .pCertificate = pCertificate, @@ -2484,18 +2474,18 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SetCertific .errMsg = errMsg, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_SetCertificate( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_SetCertificate, ¶ms ); return params._ret; } void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_RunCallbacks(struct w_steam_iface *_this) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets009_RunCallbacks_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets009_RunCallbacks_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets009_RunCallbacks( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_RunCallbacks, ¶ms ); } void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_destructor(struct w_steam_iface *_this) @@ -2560,8 +2550,6 @@ struct w_steam_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets00 return r; } -#include "cppISteamNetworkingSockets_SteamNetworkingSockets012.h" - DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketIP, 16) DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets012_ConnectByIPAddress, 16) DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2P, 16) @@ -2613,7 +2601,7 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets012_des uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketIP(struct w_steam_iface *_this, const SteamNetworkingIPAddr *localAddress, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketIP_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketIP_params params = { .linux_side = _this->u_iface, .localAddress = localAddress, @@ -2621,13 +2609,13 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreateL .pOptions = pOptions, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketIP( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketIP, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ConnectByIPAddress(struct w_steam_iface *_this, const SteamNetworkingIPAddr *address, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ConnectByIPAddress_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectByIPAddress_params params = { .linux_side = _this->u_iface, .address = address, @@ -2635,13 +2623,13 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_Connect .pOptions = pOptions, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_ConnectByIPAddress( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectByIPAddress, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2P(struct w_steam_iface *_this, int32_t nLocalVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2P_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2P_params params = { .linux_side = _this->u_iface, .nLocalVirtualPort = nLocalVirtualPort, @@ -2649,13 +2637,13 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreateL .pOptions = pOptions, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2P( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2P, ¶ms ); 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) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2P_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2P_params params = { .linux_side = _this->u_iface, .identityRemote = identityRemote, @@ -2664,25 +2652,25 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_Connect .pOptions = pOptions, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2P( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2P, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_AcceptConnection(struct w_steam_iface *_this, uint32_t hConn) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_AcceptConnection_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_AcceptConnection_params params = { .linux_side = _this->u_iface, .hConn = hConn, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_AcceptConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_AcceptConnection, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CloseConnection(struct w_steam_iface *_this, uint32_t hPeer, int32_t nReason, const char *pszDebug, bool bEnableLinger) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CloseConnection_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_CloseConnection_params params = { .linux_side = _this->u_iface, .hPeer = hPeer, @@ -2691,62 +2679,62 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CloseConnec .bEnableLinger = bEnableLinger, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_CloseConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_CloseConnection, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CloseListenSocket(struct w_steam_iface *_this, uint32_t hSocket) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CloseListenSocket_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_CloseListenSocket_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_CloseListenSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_CloseListenSocket, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer, int64_t nUserData) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionUserData_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionUserData_params params = { .linux_side = _this->u_iface, .hPeer = hPeer, .nUserData = nUserData, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionUserData( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionUserData, ¶ms ); return params._ret; } int64_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionUserData_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionUserData_params params = { .linux_side = _this->u_iface, .hPeer = hPeer, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionUserData( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionUserData, ¶ms ); return params._ret; } void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, const char *pszName) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionName_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionName_params params = { .linux_side = _this->u_iface, .hPeer = hPeer, .pszName = pszName, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionName( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionName, ¶ms ); } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, char *pszName, int32_t nMaxLen) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionName_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionName_params params = { .linux_side = _this->u_iface, .hPeer = hPeer, @@ -2754,13 +2742,13 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetConnecti .nMaxLen = nMaxLen, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionName( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionName, ¶ms ); 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) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_SendMessageToConnection_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_SendMessageToConnection_params params = { .linux_side = _this->u_iface, .hConn = hConn, @@ -2770,38 +2758,38 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SendMes .pOutMessageNumber = pOutMessageNumber, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_SendMessageToConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_SendMessageToConnection, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_FlushMessagesOnConnection(struct w_steam_iface *_this, uint32_t hConn) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_FlushMessagesOnConnection_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_FlushMessagesOnConnection_params params = { .linux_side = _this->u_iface, .hConn = hConn, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_FlushMessagesOnConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_FlushMessagesOnConnection, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionInfo(struct w_steam_iface *_this, uint32_t hConn, SteamNetConnectionInfo_t_153a *pInfo) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionInfo_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionInfo_params params = { .linux_side = _this->u_iface, .hConn = hConn, .pInfo = pInfo, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionInfo, ¶ms ); 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) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionRealTimeStatus_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionRealTimeStatus_params params = { .linux_side = _this->u_iface, .hConn = hConn, @@ -2810,13 +2798,13 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetConn .pLanes = pLanes, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionRealTimeStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionRealTimeStatus, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetDetailedConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, char *pszBuf, int32_t cbBuf) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetDetailedConnectionStatus_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetDetailedConnectionStatus_params params = { .linux_side = _this->u_iface, .hConn = hConn, @@ -2824,26 +2812,26 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetDetai .cbBuf = cbBuf, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_GetDetailedConnectionStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_GetDetailedConnectionStatus, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetListenSocketAddress(struct w_steam_iface *_this, uint32_t hSocket, SteamNetworkingIPAddr *address) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetListenSocketAddress_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetListenSocketAddress_params params = { .linux_side = _this->u_iface, .hSocket = hSocket, .address = address, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_GetListenSocketAddress( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_GetListenSocketAddress, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreateSocketPair(struct w_steam_iface *_this, uint32_t *pOutConnection1, uint32_t *pOutConnection2, bool bUseNetworkLoopback, const SteamNetworkingIdentity_144 *pIdentity1, const SteamNetworkingIdentity_144 *pIdentity2) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateSocketPair_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateSocketPair_params params = { .linux_side = _this->u_iface, .pOutConnection1 = pOutConnection1, @@ -2853,13 +2841,13 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreateSocke .pIdentity2 = pIdentity2, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateSocketPair( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_CreateSocketPair, ¶ms ); 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) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ConfigureConnectionLanes_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConfigureConnectionLanes_params params = { .linux_side = _this->u_iface, .hConn = hConn, @@ -2868,84 +2856,84 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_Configu .pLaneWeights = pLaneWeights, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_ConfigureConnectionLanes( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_ConfigureConnectionLanes, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetIdentity(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetIdentity_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetIdentity_params params = { .linux_side = _this->u_iface, .pIdentity = pIdentity, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_GetIdentity( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_GetIdentity, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_InitAuthentication(struct w_steam_iface *_this) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_InitAuthentication_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_InitAuthentication_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_InitAuthentication( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_InitAuthentication, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetAuthenticationStatus(struct w_steam_iface *_this, SteamNetAuthenticationStatus_t *pDetails) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetAuthenticationStatus_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetAuthenticationStatus_params params = { .linux_side = _this->u_iface, .pDetails = pDetails, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_GetAuthenticationStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_GetAuthenticationStatus, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreatePollGroup(struct w_steam_iface *_this) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CreatePollGroup_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreatePollGroup_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_CreatePollGroup( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_CreatePollGroup, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_DestroyPollGroup(struct w_steam_iface *_this, uint32_t hPollGroup) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_DestroyPollGroup_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_DestroyPollGroup_params params = { .linux_side = _this->u_iface, .hPollGroup = hPollGroup, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_DestroyPollGroup( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_DestroyPollGroup, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionPollGroup(struct w_steam_iface *_this, uint32_t hConn, uint32_t hPollGroup) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionPollGroup_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionPollGroup_params params = { .linux_side = _this->u_iface, .hConn = hConn, .hPollGroup = hPollGroup, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionPollGroup( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionPollGroup, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedRelayAuthTicket(struct w_steam_iface *_this, const void *pvTicket, int32_t cbTicket, SteamDatagramRelayAuthTicket *pOutParsedTicket) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedRelayAuthTicket_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedRelayAuthTicket_params params = { .linux_side = _this->u_iface, .pvTicket = pvTicket, @@ -2953,13 +2941,13 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedRel .pOutParsedTicket = pOutParsedTicket, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedRelayAuthTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedRelayAuthTicket, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_FindRelayAuthTicketForServer(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityGameServer, int32_t nRemoteVirtualPort, SteamDatagramRelayAuthTicket *pOutParsedTicket) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_FindRelayAuthTicketForServer_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_FindRelayAuthTicketForServer_params params = { .linux_side = _this->u_iface, .identityGameServer = identityGameServer, @@ -2967,13 +2955,13 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_FindRela .pOutParsedTicket = pOutParsedTicket, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_FindRelayAuthTicketForServer( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_FindRelayAuthTicketForServer, ¶ms ); 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) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ConnectToHostedDedicatedServer_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectToHostedDedicatedServer_params params = { .linux_side = _this->u_iface, .identityTarget = identityTarget, @@ -2982,47 +2970,47 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_Connect .pOptions = pOptions, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_ConnectToHostedDedicatedServer( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectToHostedDedicatedServer, ¶ms ); return params._ret; } uint16_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPort(struct w_steam_iface *_this) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPort_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPort_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPort( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPort, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPOPID(struct w_steam_iface *_this) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPOPID_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPOPID_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPOPID( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPOPID, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerAddress(struct w_steam_iface *_this, SteamDatagramHostedAddress *pRouting) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerAddress_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerAddress_params params = { .linux_side = _this->u_iface, .pRouting = pRouting, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerAddress( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerAddress, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreateHostedDedicatedServerListenSocket(struct w_steam_iface *_this, int32_t nLocalVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateHostedDedicatedServerListenSocket_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateHostedDedicatedServerListenSocket_params params = { .linux_side = _this->u_iface, .nLocalVirtualPort = nLocalVirtualPort, @@ -3030,13 +3018,13 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreateH .pOptions = pOptions, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateHostedDedicatedServerListenSocket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_CreateHostedDedicatedServerListenSocket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetGameCoordinatorServerLogin(struct w_steam_iface *_this, SteamDatagramGameCoordinatorServerLogin *pLoginInfo, int32_t *pcbSignedBlob, void *pBlob) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetGameCoordinatorServerLogin_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetGameCoordinatorServerLogin_params params = { .linux_side = _this->u_iface, .pLoginInfo = pLoginInfo, @@ -3044,13 +3032,13 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetGame .pBlob = pBlob, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_GetGameCoordinatorServerLogin( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_GetGameCoordinatorServerLogin, ¶ms ); 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) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2PCustomSignaling_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2PCustomSignaling_params params = { .linux_side = _this->u_iface, .pSignaling = pSignaling, @@ -3060,13 +3048,13 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_Connect .pOptions = pOptions, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2PCustomSignaling( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2PCustomSignaling, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2PCustomSignal(struct w_steam_iface *_this, const void *pMsg, int32_t cbMsg, void /*ISteamNetworkingSignalingRecvContext*/ *pContext) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2PCustomSignal_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2PCustomSignal_params params = { .linux_side = _this->u_iface, .pMsg = pMsg, @@ -3074,13 +3062,13 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2P .pContext = pContext, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2PCustomSignal( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2PCustomSignal, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetCertificateRequest(struct w_steam_iface *_this, int32_t *pcbBlob, void *pBlob, char (*errMsg)[1024]) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetCertificateRequest_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetCertificateRequest_params params = { .linux_side = _this->u_iface, .pcbBlob = pcbBlob, @@ -3088,13 +3076,13 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetCertific .errMsg = errMsg, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_GetCertificateRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_GetCertificateRequest, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SetCertificate(struct w_steam_iface *_this, const void *pCertificate, int32_t cbCertificate, char (*errMsg)[1024]) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_SetCertificate_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetCertificate_params params = { .linux_side = _this->u_iface, .pCertificate = pCertificate, @@ -3102,58 +3090,58 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SetCertific .errMsg = errMsg, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_SetCertificate( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_SetCertificate, ¶ms ); return params._ret; } void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ResetIdentity(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *pIdentity) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_ResetIdentity_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_ResetIdentity_params params = { .linux_side = _this->u_iface, .pIdentity = pIdentity, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_ResetIdentity( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_ResetIdentity, ¶ms ); } void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_RunCallbacks(struct w_steam_iface *_this) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_RunCallbacks_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_RunCallbacks_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_RunCallbacks( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_RunCallbacks, ¶ms ); } bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_BeginAsyncRequestFakeIP(struct w_steam_iface *_this, int32_t nNumPorts) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_BeginAsyncRequestFakeIP_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_BeginAsyncRequestFakeIP_params params = { .linux_side = _this->u_iface, .nNumPorts = nNumPorts, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_BeginAsyncRequestFakeIP( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_BeginAsyncRequestFakeIP, ¶ms ); return params._ret; } void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetFakeIP(struct w_steam_iface *_this, int32_t idxFirstPort, SteamNetworkingFakeIPResult_t *pInfo) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetFakeIP_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetFakeIP_params params = { .linux_side = _this->u_iface, .idxFirstPort = idxFirstPort, .pInfo = pInfo, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_GetFakeIP( ¶ms ); + 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) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2PFakeIP_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2PFakeIP_params params = { .linux_side = _this->u_iface, .idxFakePort = idxFakePort, @@ -3161,32 +3149,32 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreateL .pOptions = pOptions, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2PFakeIP( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2PFakeIP, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetRemoteFakeIPForConnection(struct w_steam_iface *_this, uint32_t hConn, SteamNetworkingIPAddr *pOutAddr) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_GetRemoteFakeIPForConnection_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetRemoteFakeIPForConnection_params params = { .linux_side = _this->u_iface, .hConn = hConn, .pOutAddr = pOutAddr, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_GetRemoteFakeIPForConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_GetRemoteFakeIPForConnection, ¶ms ); return params._ret; } void /*ISteamNetworkingFakeUDPPort*/ * __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreateFakeUDPPort(struct w_steam_iface *_this, int32_t idxFakeServerPort) { - struct cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateFakeUDPPort_params params = + struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateFakeUDPPort_params params = { .linux_side = _this->u_iface, .idxFakeServerPort = idxFakeServerPort, }; TRACE("%p\n", _this); - cppISteamNetworkingSockets_SteamNetworkingSockets012_CreateFakeUDPPort( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_CreateFakeUDPPort, ¶ms ); params._ret = create_winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001( params._ret ); return params._ret; } diff --git a/lsteamclient/winISteamNetworkingSocketsSerialized.c b/lsteamclient/winISteamNetworkingSocketsSerialized.c index aa34e2c5..fa98d64d 100644 --- a/lsteamclient/winISteamNetworkingSocketsSerialized.c +++ b/lsteamclient/winISteamNetworkingSocketsSerialized.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002.h" - DEFINE_THISCALL_WRAPPER(winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PRendezvous, 24) DEFINE_THISCALL_WRAPPER(winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PConnectionFailure, 24) DEFINE_THISCALL_WRAPPER(winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCertAsync, 4) @@ -16,7 +14,7 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworkingSocketsSerialized_SteamNetworkingSock void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PRendezvous(struct w_steam_iface *_this, CSteamID steamIDRemote, uint32_t unConnectionIDSrc, const void *pMsgRendezvous, uint32_t cbRendezvous) { - struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PRendezvous_params params = + struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PRendezvous_params params = { .linux_side = _this->u_iface, .steamIDRemote = steamIDRemote, @@ -25,12 +23,12 @@ void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSeria .cbRendezvous = cbRendezvous, }; TRACE("%p\n", _this); - cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PRendezvous( ¶ms ); + 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) { - struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PConnectionFailure_params params = + struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PConnectionFailure_params params = { .linux_side = _this->u_iface, .steamIDRemote = steamIDRemote, @@ -39,59 +37,59 @@ void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSeria .pszReason = pszReason, }; TRACE("%p\n", _this); - cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PConnectionFailure( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PConnectionFailure, ¶ms ); } uint64_t __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCertAsync(struct w_steam_iface *_this) { - struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCertAsync_params params = + struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCertAsync_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCertAsync( ¶ms ); + 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) { - struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetNetworkConfigJSON_params params = + struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetNetworkConfigJSON_params params = { .linux_side = _this->u_iface, .buf = buf, .cbBuf = cbBuf, }; TRACE("%p\n", _this); - cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetNetworkConfigJSON( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetNetworkConfigJSON, ¶ms ); return params._ret; } void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_CacheRelayTicket(struct w_steam_iface *_this, const void *pTicket, uint32_t cbTicket) { - struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_CacheRelayTicket_params params = + struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_CacheRelayTicket_params params = { .linux_side = _this->u_iface, .pTicket = pTicket, .cbTicket = cbTicket, }; TRACE("%p\n", _this); - cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_CacheRelayTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_CacheRelayTicket, ¶ms ); } uint32_t __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicketCount(struct w_steam_iface *_this) { - struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicketCount_params params = + struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicketCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicketCount( ¶ms ); + 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) { - struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicket_params params = + struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicket_params params = { .linux_side = _this->u_iface, .idxTicket = idxTicket, @@ -99,20 +97,20 @@ int32_t __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSe .cbBuf = cbBuf, }; TRACE("%p\n", _this); - cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicket, ¶ms ); return params._ret; } void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_PostConnectionStateMsg(struct w_steam_iface *_this, const void *pMsg, uint32_t cbMsg) { - struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_PostConnectionStateMsg_params params = + struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_PostConnectionStateMsg_params params = { .linux_side = _this->u_iface, .pMsg = pMsg, .cbMsg = cbMsg, }; TRACE("%p\n", _this); - cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_PostConnectionStateMsg( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_PostConnectionStateMsg, ¶ms ); } extern vtable_ptr winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_vtable; @@ -141,8 +139,6 @@ struct w_steam_iface *create_winISteamNetworkingSocketsSerialized_SteamNetworkin return r; } -#include "cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003.h" - DEFINE_THISCALL_WRAPPER(winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PRendezvous, 24) DEFINE_THISCALL_WRAPPER(winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PConnectionFailure, 24) DEFINE_THISCALL_WRAPPER(winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCertAsync, 4) @@ -154,7 +150,7 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworkingSocketsSerialized_SteamNetworkingSock void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PRendezvous(struct w_steam_iface *_this, CSteamID steamIDRemote, uint32_t unConnectionIDSrc, const void *pMsgRendezvous, uint32_t cbRendezvous) { - struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PRendezvous_params params = + struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PRendezvous_params params = { .linux_side = _this->u_iface, .steamIDRemote = steamIDRemote, @@ -163,12 +159,12 @@ void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSeria .cbRendezvous = cbRendezvous, }; TRACE("%p\n", _this); - cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PRendezvous( ¶ms ); + 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) { - struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PConnectionFailure_params params = + struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PConnectionFailure_params params = { .linux_side = _this->u_iface, .steamIDRemote = steamIDRemote, @@ -177,23 +173,23 @@ void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSeria .pszReason = pszReason, }; TRACE("%p\n", _this); - cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PConnectionFailure( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PConnectionFailure, ¶ms ); } uint64_t __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCertAsync(struct w_steam_iface *_this) { - struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCertAsync_params params = + struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCertAsync_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCertAsync( ¶ms ); + 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) { - struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetNetworkConfigJSON_params params = + struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetNetworkConfigJSON_params params = { .linux_side = _this->u_iface, .buf = buf, @@ -201,36 +197,36 @@ int32_t __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSe .pszLauncherPartner = pszLauncherPartner, }; TRACE("%p\n", _this); - cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetNetworkConfigJSON( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetNetworkConfigJSON, ¶ms ); return params._ret; } void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_CacheRelayTicket(struct w_steam_iface *_this, const void *pTicket, uint32_t cbTicket) { - struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_CacheRelayTicket_params params = + struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_CacheRelayTicket_params params = { .linux_side = _this->u_iface, .pTicket = pTicket, .cbTicket = cbTicket, }; TRACE("%p\n", _this); - cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_CacheRelayTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_CacheRelayTicket, ¶ms ); } uint32_t __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicketCount(struct w_steam_iface *_this) { - struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicketCount_params params = + struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicketCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicketCount( ¶ms ); + 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) { - struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicket_params params = + struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicket_params params = { .linux_side = _this->u_iface, .idxTicket = idxTicket, @@ -238,20 +234,20 @@ int32_t __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSe .cbBuf = cbBuf, }; TRACE("%p\n", _this); - cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicket, ¶ms ); return params._ret; } void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_PostConnectionStateMsg(struct w_steam_iface *_this, const void *pMsg, uint32_t cbMsg) { - struct cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_PostConnectionStateMsg_params params = + struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_PostConnectionStateMsg_params params = { .linux_side = _this->u_iface, .pMsg = pMsg, .cbMsg = cbMsg, }; TRACE("%p\n", _this); - cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_PostConnectionStateMsg( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_PostConnectionStateMsg, ¶ms ); } extern vtable_ptr winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_vtable; diff --git a/lsteamclient/winISteamNetworkingUtils.c b/lsteamclient/winISteamNetworkingUtils.c index a23aca08..2a97e056 100644 --- a/lsteamclient/winISteamNetworkingUtils.c +++ b/lsteamclient/winISteamNetworkingUtils.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamNetworkingUtils_SteamNetworkingUtils001.h" - DEFINE_THISCALL_WRAPPER(winISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalPingLocation, 8) DEFINE_THISCALL_WRAPPER(winISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeBetweenTwoLocations, 12) DEFINE_THISCALL_WRAPPER(winISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeFromLocalHost, 8) @@ -30,44 +28,44 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworkingUtils_SteamNetworkingUtils001_destruc float __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalPingLocation(struct w_steam_iface *_this, SteamNetworkPingLocation_t *result) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalPingLocation_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalPingLocation_params params = { .linux_side = _this->u_iface, .result = result, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalPingLocation( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalPingLocation, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeBetweenTwoLocations(struct w_steam_iface *_this, const SteamNetworkPingLocation_t *location1, const SteamNetworkPingLocation_t *location2) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeBetweenTwoLocations_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeBetweenTwoLocations_params params = { .linux_side = _this->u_iface, .location1 = location1, .location2 = location2, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeBetweenTwoLocations( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeBetweenTwoLocations, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeFromLocalHost(struct w_steam_iface *_this, const SteamNetworkPingLocation_t *remoteLocation) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeFromLocalHost_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeFromLocalHost_params params = { .linux_side = _this->u_iface, .remoteLocation = remoteLocation, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeFromLocalHost( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeFromLocalHost, ¶ms ); return params._ret; } void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_ConvertPingLocationToString(struct w_steam_iface *_this, const SteamNetworkPingLocation_t *location, char *pszBuf, int32_t cchBufSize) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils001_ConvertPingLocationToString_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils001_ConvertPingLocationToString_params params = { .linux_side = _this->u_iface, .location = location, @@ -75,120 +73,120 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_ConvertPingLoca .cchBufSize = cchBufSize, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils001_ConvertPingLocationToString( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils001_ConvertPingLocationToString, ¶ms ); } bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLocationString(struct w_steam_iface *_this, const char *pszString, SteamNetworkPingLocation_t *result) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLocationString_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLocationString_params params = { .linux_side = _this->u_iface, .pszString = pszString, .result = result, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLocationString( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLocationString, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_CheckPingDataUpToDate(struct w_steam_iface *_this, float flMaxAgeSeconds) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils001_CheckPingDataUpToDate_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils001_CheckPingDataUpToDate_params params = { .linux_side = _this->u_iface, .flMaxAgeSeconds = flMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils001_CheckPingDataUpToDate( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils001_CheckPingDataUpToDate, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_IsPingMeasurementInProgress(struct w_steam_iface *_this) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils001_IsPingMeasurementInProgress_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils001_IsPingMeasurementInProgress_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils001_IsPingMeasurementInProgress( ¶ms ); + 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) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetPingToDataCenter_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetPingToDataCenter_params params = { .linux_side = _this->u_iface, .popID = popID, .pViaRelayPoP = pViaRelayPoP, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils001_GetPingToDataCenter( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils001_GetPingToDataCenter, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetDirectPingToPOP(struct w_steam_iface *_this, uint32_t popID) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetDirectPingToPOP_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetDirectPingToPOP_params params = { .linux_side = _this->u_iface, .popID = popID, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils001_GetDirectPingToPOP( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils001_GetDirectPingToPOP, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPCount(struct w_steam_iface *_this) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPCount_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPCount( ¶ms ); + 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) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPList_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPList_params params = { .linux_side = _this->u_iface, .list = list, .nListSz = nListSz, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPList( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPList, ¶ms ); return params._ret; } int64_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalTimestamp(struct w_steam_iface *_this) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalTimestamp_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalTimestamp_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalTimestamp( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalTimestamp, ¶ms ); return params._ret; } void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SetDebugOutputFunction(struct w_steam_iface *_this, uint32_t eDetailLevel, void (*W_STDCALL pfnFunc)(uint32_t, const char *)) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils001_SetDebugOutputFunction_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils001_SetDebugOutputFunction_params params = { .linux_side = _this->u_iface, .eDetailLevel = eDetailLevel, .pfnFunc = pfnFunc, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils001_SetDebugOutputFunction( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils001_SetDebugOutputFunction, ¶ms ); } bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue(struct w_steam_iface *_this, uint32_t eValue, uint32_t eScopeType, int32_t scopeObj, uint32_t eDataType, const void *pArg) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue_params params = { .linux_side = _this->u_iface, .eValue = eValue, @@ -198,13 +196,13 @@ bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue( .pArg = pArg, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue, ¶ms ); 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) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValue_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValue_params params = { .linux_side = _this->u_iface, .eValue = eValue, @@ -215,13 +213,13 @@ uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigVa .cbResult = cbResult, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValue( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValue, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo(struct w_steam_iface *_this, uint32_t eValue, const char **pOutName, uint32_t *pOutDataType, uint32_t *pOutScope, uint32_t *pOutNextValue) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo_params params = { .linux_side = _this->u_iface, .eValue = eValue, @@ -231,24 +229,24 @@ bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueI .pOutNextValue = pOutNextValue, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetFirstConfigValue(struct w_steam_iface *_this) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetFirstConfigValue_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetFirstConfigValue_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils001_GetFirstConfigValue( ¶ms ); + 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, bool bWithPort) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ToString_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ToString_params params = { .linux_side = _this->u_iface, .addr = addr, @@ -257,25 +255,25 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworking .bWithPort = bWithPort, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ToString( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ToString, ¶ms ); } bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ParseString(struct w_steam_iface *_this, SteamNetworkingIPAddr *pAddr, const char *pszStr) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ParseString_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ParseString_params params = { .linux_side = _this->u_iface, .pAddr = pAddr, .pszStr = pszStr, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ParseString( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ParseString, ¶ms ); return params._ret; } void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ToString(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identity, char *buf, uint32_t cbBuf) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ToString_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ToString_params params = { .linux_side = _this->u_iface, .identity = identity, @@ -283,19 +281,19 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworking .cbBuf = cbBuf, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ToString( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ToString, ¶ms ); } bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ParseString(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity, const char *pszStr) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ParseString_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ParseString_params params = { .linux_side = _this->u_iface, .pIdentity = pIdentity, .pszStr = pszStr, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ParseString( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ParseString, ¶ms ); return params._ret; } @@ -342,8 +340,6 @@ struct w_steam_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils001(vo return r; } -#include "cppISteamNetworkingUtils_SteamNetworkingUtils002.h" - DEFINE_THISCALL_WRAPPER(winISteamNetworkingUtils_SteamNetworkingUtils002_GetRelayNetworkStatus, 8) DEFINE_THISCALL_WRAPPER(winISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalPingLocation, 8) DEFINE_THISCALL_WRAPPER(winISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeBetweenTwoLocations, 12) @@ -369,56 +365,56 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworkingUtils_SteamNetworkingUtils002_destruc uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetRelayNetworkStatus(struct w_steam_iface *_this, SteamRelayNetworkStatus_t *pDetails) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetRelayNetworkStatus_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetRelayNetworkStatus_params params = { .linux_side = _this->u_iface, .pDetails = pDetails, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils002_GetRelayNetworkStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils002_GetRelayNetworkStatus, ¶ms ); return params._ret; } float __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalPingLocation(struct w_steam_iface *_this, SteamNetworkPingLocation_t *result) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalPingLocation_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalPingLocation_params params = { .linux_side = _this->u_iface, .result = result, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalPingLocation( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalPingLocation, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeBetweenTwoLocations(struct w_steam_iface *_this, const SteamNetworkPingLocation_t *location1, const SteamNetworkPingLocation_t *location2) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeBetweenTwoLocations_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeBetweenTwoLocations_params params = { .linux_side = _this->u_iface, .location1 = location1, .location2 = location2, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeBetweenTwoLocations( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeBetweenTwoLocations, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeFromLocalHost(struct w_steam_iface *_this, const SteamNetworkPingLocation_t *remoteLocation) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeFromLocalHost_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeFromLocalHost_params params = { .linux_side = _this->u_iface, .remoteLocation = remoteLocation, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeFromLocalHost( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeFromLocalHost, ¶ms ); return params._ret; } void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_ConvertPingLocationToString(struct w_steam_iface *_this, const SteamNetworkPingLocation_t *location, char *pszBuf, int32_t cchBufSize) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils002_ConvertPingLocationToString_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils002_ConvertPingLocationToString_params params = { .linux_side = _this->u_iface, .location = location, @@ -426,109 +422,109 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_ConvertPingLoca .cchBufSize = cchBufSize, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils002_ConvertPingLocationToString( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils002_ConvertPingLocationToString, ¶ms ); } bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLocationString(struct w_steam_iface *_this, const char *pszString, SteamNetworkPingLocation_t *result) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLocationString_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLocationString_params params = { .linux_side = _this->u_iface, .pszString = pszString, .result = result, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLocationString( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLocationString, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_CheckPingDataUpToDate(struct w_steam_iface *_this, float flMaxAgeSeconds) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils002_CheckPingDataUpToDate_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils002_CheckPingDataUpToDate_params params = { .linux_side = _this->u_iface, .flMaxAgeSeconds = flMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils002_CheckPingDataUpToDate( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils002_CheckPingDataUpToDate, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetPingToDataCenter(struct w_steam_iface *_this, uint32_t popID, uint32_t *pViaRelayPoP) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetPingToDataCenter_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetPingToDataCenter_params params = { .linux_side = _this->u_iface, .popID = popID, .pViaRelayPoP = pViaRelayPoP, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils002_GetPingToDataCenter( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils002_GetPingToDataCenter, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetDirectPingToPOP(struct w_steam_iface *_this, uint32_t popID) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetDirectPingToPOP_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetDirectPingToPOP_params params = { .linux_side = _this->u_iface, .popID = popID, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils002_GetDirectPingToPOP( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils002_GetDirectPingToPOP, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPCount(struct w_steam_iface *_this) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPCount_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPCount( ¶ms ); + 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) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPList_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPList_params params = { .linux_side = _this->u_iface, .list = list, .nListSz = nListSz, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPList( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPList, ¶ms ); return params._ret; } int64_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalTimestamp(struct w_steam_iface *_this) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalTimestamp_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalTimestamp_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalTimestamp( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalTimestamp, ¶ms ); return params._ret; } void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SetDebugOutputFunction(struct w_steam_iface *_this, uint32_t eDetailLevel, void (*W_STDCALL pfnFunc)(uint32_t, const char *)) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils002_SetDebugOutputFunction_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils002_SetDebugOutputFunction_params params = { .linux_side = _this->u_iface, .eDetailLevel = eDetailLevel, .pfnFunc = pfnFunc, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils002_SetDebugOutputFunction( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils002_SetDebugOutputFunction, ¶ms ); } bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SetConfigValue(struct w_steam_iface *_this, uint32_t eValue, uint32_t eScopeType, int32_t scopeObj, uint32_t eDataType, const void *pArg) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils002_SetConfigValue_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils002_SetConfigValue_params params = { .linux_side = _this->u_iface, .eValue = eValue, @@ -538,13 +534,13 @@ bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SetConfigValue( .pArg = pArg, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils002_SetConfigValue( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils002_SetConfigValue, ¶ms ); 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) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValue_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValue_params params = { .linux_side = _this->u_iface, .eValue = eValue, @@ -555,13 +551,13 @@ uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigVa .cbResult = cbResult, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValue( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValue, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValueInfo(struct w_steam_iface *_this, uint32_t eValue, const char **pOutName, uint32_t *pOutDataType, uint32_t *pOutScope, uint32_t *pOutNextValue) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValueInfo_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValueInfo_params params = { .linux_side = _this->u_iface, .eValue = eValue, @@ -571,24 +567,24 @@ bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValueI .pOutNextValue = pOutNextValue, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValueInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValueInfo, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetFirstConfigValue(struct w_steam_iface *_this) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils002_GetFirstConfigValue_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetFirstConfigValue_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils002_GetFirstConfigValue( ¶ms ); + 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, bool bWithPort) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ToString_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ToString_params params = { .linux_side = _this->u_iface, .addr = addr, @@ -597,25 +593,25 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworking .bWithPort = bWithPort, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ToString( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ToString, ¶ms ); } bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ParseString(struct w_steam_iface *_this, SteamNetworkingIPAddr *pAddr, const char *pszStr) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ParseString_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ParseString_params params = { .linux_side = _this->u_iface, .pAddr = pAddr, .pszStr = pszStr, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ParseString( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ParseString, ¶ms ); return params._ret; } void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ToString(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identity, char *buf, uint32_t cbBuf) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ToString_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ToString_params params = { .linux_side = _this->u_iface, .identity = identity, @@ -623,19 +619,19 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworking .cbBuf = cbBuf, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ToString( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ToString, ¶ms ); } bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ParseString(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity, const char *pszStr) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ParseString_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ParseString_params params = { .linux_side = _this->u_iface, .pIdentity = pIdentity, .pszStr = pszStr, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ParseString( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ParseString, ¶ms ); return params._ret; } @@ -682,8 +678,6 @@ struct w_steam_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils002(vo return r; } -#include "cppISteamNetworkingUtils_SteamNetworkingUtils003.h" - DEFINE_THISCALL_WRAPPER(winISteamNetworkingUtils_SteamNetworkingUtils003_AllocateMessage, 8) DEFINE_THISCALL_WRAPPER(winISteamNetworkingUtils_SteamNetworkingUtils003_GetRelayNetworkStatus, 8) DEFINE_THISCALL_WRAPPER(winISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalPingLocation, 8) @@ -710,56 +704,56 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworkingUtils_SteamNetworkingUtils003_destruc uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetRelayNetworkStatus(struct w_steam_iface *_this, SteamRelayNetworkStatus_t *pDetails) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetRelayNetworkStatus_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetRelayNetworkStatus_params params = { .linux_side = _this->u_iface, .pDetails = pDetails, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils003_GetRelayNetworkStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils003_GetRelayNetworkStatus, ¶ms ); return params._ret; } float __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalPingLocation(struct w_steam_iface *_this, SteamNetworkPingLocation_t *result) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalPingLocation_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalPingLocation_params params = { .linux_side = _this->u_iface, .result = result, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalPingLocation( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalPingLocation, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeBetweenTwoLocations(struct w_steam_iface *_this, const SteamNetworkPingLocation_t *location1, const SteamNetworkPingLocation_t *location2) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeBetweenTwoLocations_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeBetweenTwoLocations_params params = { .linux_side = _this->u_iface, .location1 = location1, .location2 = location2, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeBetweenTwoLocations( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeBetweenTwoLocations, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeFromLocalHost(struct w_steam_iface *_this, const SteamNetworkPingLocation_t *remoteLocation) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeFromLocalHost_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeFromLocalHost_params params = { .linux_side = _this->u_iface, .remoteLocation = remoteLocation, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeFromLocalHost( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeFromLocalHost, ¶ms ); return params._ret; } void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_ConvertPingLocationToString(struct w_steam_iface *_this, const SteamNetworkPingLocation_t *location, char *pszBuf, int32_t cchBufSize) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils003_ConvertPingLocationToString_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils003_ConvertPingLocationToString_params params = { .linux_side = _this->u_iface, .location = location, @@ -767,109 +761,109 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_ConvertPingLoca .cchBufSize = cchBufSize, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils003_ConvertPingLocationToString( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils003_ConvertPingLocationToString, ¶ms ); } bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLocationString(struct w_steam_iface *_this, const char *pszString, SteamNetworkPingLocation_t *result) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLocationString_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLocationString_params params = { .linux_side = _this->u_iface, .pszString = pszString, .result = result, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLocationString( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLocationString, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_CheckPingDataUpToDate(struct w_steam_iface *_this, float flMaxAgeSeconds) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils003_CheckPingDataUpToDate_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils003_CheckPingDataUpToDate_params params = { .linux_side = _this->u_iface, .flMaxAgeSeconds = flMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils003_CheckPingDataUpToDate( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils003_CheckPingDataUpToDate, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetPingToDataCenter(struct w_steam_iface *_this, uint32_t popID, uint32_t *pViaRelayPoP) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetPingToDataCenter_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetPingToDataCenter_params params = { .linux_side = _this->u_iface, .popID = popID, .pViaRelayPoP = pViaRelayPoP, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils003_GetPingToDataCenter( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils003_GetPingToDataCenter, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetDirectPingToPOP(struct w_steam_iface *_this, uint32_t popID) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetDirectPingToPOP_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetDirectPingToPOP_params params = { .linux_side = _this->u_iface, .popID = popID, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils003_GetDirectPingToPOP( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils003_GetDirectPingToPOP, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPCount(struct w_steam_iface *_this) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPCount_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPCount( ¶ms ); + 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) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPList_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPList_params params = { .linux_side = _this->u_iface, .list = list, .nListSz = nListSz, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPList( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPList, ¶ms ); return params._ret; } int64_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalTimestamp(struct w_steam_iface *_this) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalTimestamp_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalTimestamp_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalTimestamp( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalTimestamp, ¶ms ); return params._ret; } void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SetDebugOutputFunction(struct w_steam_iface *_this, uint32_t eDetailLevel, void (*W_STDCALL pfnFunc)(uint32_t, const char *)) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils003_SetDebugOutputFunction_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils003_SetDebugOutputFunction_params params = { .linux_side = _this->u_iface, .eDetailLevel = eDetailLevel, .pfnFunc = pfnFunc, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils003_SetDebugOutputFunction( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils003_SetDebugOutputFunction, ¶ms ); } bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue(struct w_steam_iface *_this, uint32_t eValue, uint32_t eScopeType, int32_t scopeObj, uint32_t eDataType, const void *pArg) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue_params params = { .linux_side = _this->u_iface, .eValue = eValue, @@ -879,13 +873,13 @@ bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue( .pArg = pArg, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue, ¶ms ); 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) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValue_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValue_params params = { .linux_side = _this->u_iface, .eValue = eValue, @@ -896,13 +890,13 @@ uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigVa .cbResult = cbResult, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValue( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValue, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValueInfo(struct w_steam_iface *_this, uint32_t eValue, const char **pOutName, uint32_t *pOutDataType, uint32_t *pOutScope, uint32_t *pOutNextValue) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValueInfo_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValueInfo_params params = { .linux_side = _this->u_iface, .eValue = eValue, @@ -912,24 +906,24 @@ bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValueI .pOutNextValue = pOutNextValue, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValueInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValueInfo, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetFirstConfigValue(struct w_steam_iface *_this) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetFirstConfigValue_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetFirstConfigValue_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils003_GetFirstConfigValue( ¶ms ); + 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, bool bWithPort) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ToString_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ToString_params params = { .linux_side = _this->u_iface, .addr = addr, @@ -938,25 +932,25 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworking .bWithPort = bWithPort, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ToString( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ToString, ¶ms ); } bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ParseString(struct w_steam_iface *_this, SteamNetworkingIPAddr *pAddr, const char *pszStr) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ParseString_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ParseString_params params = { .linux_side = _this->u_iface, .pAddr = pAddr, .pszStr = pszStr, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ParseString( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ParseString, ¶ms ); return params._ret; } void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ToString(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identity, char *buf, uint32_t cbBuf) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ToString_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ToString_params params = { .linux_side = _this->u_iface, .identity = identity, @@ -964,19 +958,19 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworking .cbBuf = cbBuf, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ToString( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ToString, ¶ms ); } bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ParseString(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity, const char *pszStr) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ParseString_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ParseString_params params = { .linux_side = _this->u_iface, .pIdentity = pIdentity, .pszStr = pszStr, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ParseString( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ParseString, ¶ms ); return params._ret; } @@ -1024,8 +1018,6 @@ struct w_steam_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils003(vo return r; } -#include "cppISteamNetworkingUtils_SteamNetworkingUtils004.h" - DEFINE_THISCALL_WRAPPER(winISteamNetworkingUtils_SteamNetworkingUtils004_AllocateMessage, 8) DEFINE_THISCALL_WRAPPER(winISteamNetworkingUtils_SteamNetworkingUtils004_GetRelayNetworkStatus, 8) DEFINE_THISCALL_WRAPPER(winISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalPingLocation, 8) @@ -1055,56 +1047,56 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworkingUtils_SteamNetworkingUtils004_destruc uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetRelayNetworkStatus(struct w_steam_iface *_this, SteamRelayNetworkStatus_t *pDetails) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetRelayNetworkStatus_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetRelayNetworkStatus_params params = { .linux_side = _this->u_iface, .pDetails = pDetails, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils004_GetRelayNetworkStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_GetRelayNetworkStatus, ¶ms ); return params._ret; } float __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalPingLocation(struct w_steam_iface *_this, SteamNetworkPingLocation_t *result) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalPingLocation_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalPingLocation_params params = { .linux_side = _this->u_iface, .result = result, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalPingLocation( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalPingLocation, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeBetweenTwoLocations(struct w_steam_iface *_this, const SteamNetworkPingLocation_t *location1, const SteamNetworkPingLocation_t *location2) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeBetweenTwoLocations_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeBetweenTwoLocations_params params = { .linux_side = _this->u_iface, .location1 = location1, .location2 = location2, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeBetweenTwoLocations( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeBetweenTwoLocations, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeFromLocalHost(struct w_steam_iface *_this, const SteamNetworkPingLocation_t *remoteLocation) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeFromLocalHost_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeFromLocalHost_params params = { .linux_side = _this->u_iface, .remoteLocation = remoteLocation, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeFromLocalHost( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeFromLocalHost, ¶ms ); return params._ret; } void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_ConvertPingLocationToString(struct w_steam_iface *_this, const SteamNetworkPingLocation_t *location, char *pszBuf, int32_t cchBufSize) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils004_ConvertPingLocationToString_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils004_ConvertPingLocationToString_params params = { .linux_side = _this->u_iface, .location = location, @@ -1112,134 +1104,134 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_ConvertPingLoca .cchBufSize = cchBufSize, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils004_ConvertPingLocationToString( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_ConvertPingLocationToString, ¶ms ); } bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLocationString(struct w_steam_iface *_this, const char *pszString, SteamNetworkPingLocation_t *result) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLocationString_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLocationString_params params = { .linux_side = _this->u_iface, .pszString = pszString, .result = result, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLocationString( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLocationString, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_CheckPingDataUpToDate(struct w_steam_iface *_this, float flMaxAgeSeconds) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils004_CheckPingDataUpToDate_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils004_CheckPingDataUpToDate_params params = { .linux_side = _this->u_iface, .flMaxAgeSeconds = flMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils004_CheckPingDataUpToDate( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_CheckPingDataUpToDate, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetPingToDataCenter(struct w_steam_iface *_this, uint32_t popID, uint32_t *pViaRelayPoP) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetPingToDataCenter_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetPingToDataCenter_params params = { .linux_side = _this->u_iface, .popID = popID, .pViaRelayPoP = pViaRelayPoP, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils004_GetPingToDataCenter( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_GetPingToDataCenter, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetDirectPingToPOP(struct w_steam_iface *_this, uint32_t popID) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetDirectPingToPOP_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetDirectPingToPOP_params params = { .linux_side = _this->u_iface, .popID = popID, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils004_GetDirectPingToPOP( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_GetDirectPingToPOP, ¶ms ); return params._ret; } int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPCount(struct w_steam_iface *_this) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPCount_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPCount( ¶ms ); + 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) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPList_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPList_params params = { .linux_side = _this->u_iface, .list = list, .nListSz = nListSz, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPList( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPList, ¶ms ); return params._ret; } int64_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalTimestamp(struct w_steam_iface *_this) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalTimestamp_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalTimestamp_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalTimestamp( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalTimestamp, ¶ms ); return params._ret; } void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SetDebugOutputFunction(struct w_steam_iface *_this, uint32_t eDetailLevel, void (*W_STDCALL pfnFunc)(uint32_t, const char *)) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils004_SetDebugOutputFunction_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils004_SetDebugOutputFunction_params params = { .linux_side = _this->u_iface, .eDetailLevel = eDetailLevel, .pfnFunc = pfnFunc, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils004_SetDebugOutputFunction( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_SetDebugOutputFunction, ¶ms ); } uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetIPv4FakeIPType(struct w_steam_iface *_this, uint32_t nIPv4) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetIPv4FakeIPType_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetIPv4FakeIPType_params params = { .linux_side = _this->u_iface, .nIPv4 = nIPv4, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils004_GetIPv4FakeIPType( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_GetIPv4FakeIPType, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetRealIdentityForFakeIP(struct w_steam_iface *_this, const SteamNetworkingIPAddr *fakeIP, SteamNetworkingIdentity_144 *pOutRealIdentity) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetRealIdentityForFakeIP_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetRealIdentityForFakeIP_params params = { .linux_side = _this->u_iface, .fakeIP = fakeIP, .pOutRealIdentity = pOutRealIdentity, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils004_GetRealIdentityForFakeIP( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_GetRealIdentityForFakeIP, ¶ms ); return params._ret; } bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue(struct w_steam_iface *_this, uint32_t eValue, uint32_t eScopeType, int32_t scopeObj, uint32_t eDataType, const void *pArg) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue_params params = { .linux_side = _this->u_iface, .eValue = eValue, @@ -1249,13 +1241,13 @@ bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue( .pArg = pArg, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue, ¶ms ); 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) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValue_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValue_params params = { .linux_side = _this->u_iface, .eValue = eValue, @@ -1266,13 +1258,13 @@ uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigVa .cbResult = cbResult, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValue( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValue, ¶ms ); return params._ret; } const char * __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValueInfo(struct w_steam_iface *_this, uint32_t eValue, uint32_t *pOutDataType, uint32_t *pOutScope) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValueInfo_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValueInfo_params params = { .linux_side = _this->u_iface, .eValue = eValue, @@ -1280,26 +1272,26 @@ const char * __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetConf .pOutScope = pOutScope, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValueInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValueInfo, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_IterateGenericEditableConfigValues(struct w_steam_iface *_this, uint32_t eCurrent, bool bEnumerateDevVars) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils004_IterateGenericEditableConfigValues_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils004_IterateGenericEditableConfigValues_params params = { .linux_side = _this->u_iface, .eCurrent = eCurrent, .bEnumerateDevVars = bEnumerateDevVars, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils004_IterateGenericEditableConfigValues( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_IterateGenericEditableConfigValues, ¶ms ); return params._ret; } void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToString(struct w_steam_iface *_this, const SteamNetworkingIPAddr *addr, char *buf, uint32_t cbBuf, bool bWithPort) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToString_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToString_params params = { .linux_side = _this->u_iface, .addr = addr, @@ -1308,37 +1300,37 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworking .bWithPort = bWithPort, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToString( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToString, ¶ms ); } bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ParseString(struct w_steam_iface *_this, SteamNetworkingIPAddr *pAddr, const char *pszStr) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ParseString_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ParseString_params params = { .linux_side = _this->u_iface, .pAddr = pAddr, .pszStr = pszStr, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ParseString( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ParseString, ¶ms ); return params._ret; } uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_GetFakeIPType(struct w_steam_iface *_this, const SteamNetworkingIPAddr *addr) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_GetFakeIPType_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_GetFakeIPType_params params = { .linux_side = _this->u_iface, .addr = addr, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_GetFakeIPType( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_GetFakeIPType, ¶ms ); return params._ret; } void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ToString(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identity, char *buf, uint32_t cbBuf) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ToString_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ToString_params params = { .linux_side = _this->u_iface, .identity = identity, @@ -1346,19 +1338,19 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworking .cbBuf = cbBuf, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ToString( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ToString, ¶ms ); } bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ParseString(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity, const char *pszStr) { - struct cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ParseString_params params = + struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ParseString_params params = { .linux_side = _this->u_iface, .pIdentity = pIdentity, .pszStr = pszStr, }; TRACE("%p\n", _this); - cppISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ParseString( ¶ms ); + STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ParseString, ¶ms ); return params._ret; } diff --git a/lsteamclient/winISteamParentalSettings.c b/lsteamclient/winISteamParentalSettings.c index 9fbb3aed..afdb12b7 100644 --- a/lsteamclient/winISteamParentalSettings.c +++ b/lsteamclient/winISteamParentalSettings.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001.h" - DEFINE_THISCALL_WRAPPER(winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockEnabled, 4) DEFINE_THISCALL_WRAPPER(winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockLocked, 4) DEFINE_THISCALL_WRAPPER(winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppBlocked, 8) @@ -14,71 +12,71 @@ DEFINE_THISCALL_WRAPPER(winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFAC bool __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockEnabled(struct w_steam_iface *_this) { - struct cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockEnabled_params params = + struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockEnabled_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockEnabled( ¶ms ); + STEAMCLIENT_CALL( ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockEnabled, ¶ms ); return params._ret; } bool __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockLocked(struct w_steam_iface *_this) { - struct cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockLocked_params params = + struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockLocked_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockLocked( ¶ms ); + STEAMCLIENT_CALL( ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockLocked, ¶ms ); return params._ret; } bool __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppBlocked(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppBlocked_params params = + struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppBlocked_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppBlocked( ¶ms ); + STEAMCLIENT_CALL( ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppBlocked, ¶ms ); return params._ret; } bool __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppInBlockList(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppInBlockList_params params = + struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppInBlockList_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppInBlockList( ¶ms ); + STEAMCLIENT_CALL( ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppInBlockList, ¶ms ); return params._ret; } bool __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureBlocked(struct w_steam_iface *_this, uint32_t eFeature) { - struct cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureBlocked_params params = + struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureBlocked_params params = { .linux_side = _this->u_iface, .eFeature = eFeature, }; TRACE("%p\n", _this); - cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureBlocked( ¶ms ); + STEAMCLIENT_CALL( ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureBlocked, ¶ms ); return params._ret; } bool __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureInBlockList(struct w_steam_iface *_this, uint32_t eFeature) { - struct cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureInBlockList_params params = + struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureInBlockList_params params = { .linux_side = _this->u_iface, .eFeature = eFeature, }; TRACE("%p\n", _this); - cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureInBlockList( ¶ms ); + STEAMCLIENT_CALL( ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureInBlockList, ¶ms ); return params._ret; } diff --git a/lsteamclient/winISteamParties.c b/lsteamclient/winISteamParties.c index 35d03f32..bc3b23d5 100644 --- a/lsteamclient/winISteamParties.c +++ b/lsteamclient/winISteamParties.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamParties_SteamParties002.h" - DEFINE_THISCALL_WRAPPER(winISteamParties_SteamParties002_GetNumActiveBeacons, 4) DEFINE_THISCALL_WRAPPER(winISteamParties_SteamParties002_GetBeaconByIndex, 8) DEFINE_THISCALL_WRAPPER(winISteamParties_SteamParties002_GetBeaconDetails, 28) @@ -20,30 +18,30 @@ DEFINE_THISCALL_WRAPPER(winISteamParties_SteamParties002_GetBeaconLocationData, uint32_t __thiscall winISteamParties_SteamParties002_GetNumActiveBeacons(struct w_steam_iface *_this) { - struct cppISteamParties_SteamParties002_GetNumActiveBeacons_params params = + struct ISteamParties_SteamParties002_GetNumActiveBeacons_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamParties_SteamParties002_GetNumActiveBeacons( ¶ms ); + STEAMCLIENT_CALL( ISteamParties_SteamParties002_GetNumActiveBeacons, ¶ms ); return params._ret; } uint64_t __thiscall winISteamParties_SteamParties002_GetBeaconByIndex(struct w_steam_iface *_this, uint32_t unIndex) { - struct cppISteamParties_SteamParties002_GetBeaconByIndex_params params = + struct ISteamParties_SteamParties002_GetBeaconByIndex_params params = { .linux_side = _this->u_iface, .unIndex = unIndex, }; TRACE("%p\n", _this); - cppISteamParties_SteamParties002_GetBeaconByIndex( ¶ms ); + STEAMCLIENT_CALL( ISteamParties_SteamParties002_GetBeaconByIndex, ¶ms ); return params._ret; } bool __thiscall winISteamParties_SteamParties002_GetBeaconDetails(struct w_steam_iface *_this, uint64_t ulBeaconID, CSteamID *pSteamIDBeaconOwner, w_SteamPartyBeaconLocation_t *pLocation, char *pchMetadata, int32_t cchMetadata) { - struct cppISteamParties_SteamParties002_GetBeaconDetails_params params = + struct ISteamParties_SteamParties002_GetBeaconDetails_params params = { .linux_side = _this->u_iface, .ulBeaconID = ulBeaconID, @@ -53,50 +51,50 @@ bool __thiscall winISteamParties_SteamParties002_GetBeaconDetails(struct w_steam .cchMetadata = cchMetadata, }; TRACE("%p\n", _this); - cppISteamParties_SteamParties002_GetBeaconDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamParties_SteamParties002_GetBeaconDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamParties_SteamParties002_JoinParty(struct w_steam_iface *_this, uint64_t ulBeaconID) { - struct cppISteamParties_SteamParties002_JoinParty_params params = + struct ISteamParties_SteamParties002_JoinParty_params params = { .linux_side = _this->u_iface, .ulBeaconID = ulBeaconID, }; TRACE("%p\n", _this); - cppISteamParties_SteamParties002_JoinParty( ¶ms ); + STEAMCLIENT_CALL( ISteamParties_SteamParties002_JoinParty, ¶ms ); return params._ret; } bool __thiscall winISteamParties_SteamParties002_GetNumAvailableBeaconLocations(struct w_steam_iface *_this, uint32_t *puNumLocations) { - struct cppISteamParties_SteamParties002_GetNumAvailableBeaconLocations_params params = + struct ISteamParties_SteamParties002_GetNumAvailableBeaconLocations_params params = { .linux_side = _this->u_iface, .puNumLocations = puNumLocations, }; TRACE("%p\n", _this); - cppISteamParties_SteamParties002_GetNumAvailableBeaconLocations( ¶ms ); + STEAMCLIENT_CALL( ISteamParties_SteamParties002_GetNumAvailableBeaconLocations, ¶ms ); return params._ret; } bool __thiscall winISteamParties_SteamParties002_GetAvailableBeaconLocations(struct w_steam_iface *_this, w_SteamPartyBeaconLocation_t *pLocationList, uint32_t uMaxNumLocations) { - struct cppISteamParties_SteamParties002_GetAvailableBeaconLocations_params params = + struct ISteamParties_SteamParties002_GetAvailableBeaconLocations_params params = { .linux_side = _this->u_iface, .pLocationList = pLocationList, .uMaxNumLocations = uMaxNumLocations, }; TRACE("%p\n", _this); - cppISteamParties_SteamParties002_GetAvailableBeaconLocations( ¶ms ); + STEAMCLIENT_CALL( ISteamParties_SteamParties002_GetAvailableBeaconLocations, ¶ms ); 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) { - struct cppISteamParties_SteamParties002_CreateBeacon_params params = + struct ISteamParties_SteamParties002_CreateBeacon_params params = { .linux_side = _this->u_iface, .unOpenSlots = unOpenSlots, @@ -105,62 +103,62 @@ uint64_t __thiscall winISteamParties_SteamParties002_CreateBeacon(struct w_steam .pchMetadata = pchMetadata, }; TRACE("%p\n", _this); - cppISteamParties_SteamParties002_CreateBeacon( ¶ms ); + STEAMCLIENT_CALL( ISteamParties_SteamParties002_CreateBeacon, ¶ms ); return params._ret; } void __thiscall winISteamParties_SteamParties002_OnReservationCompleted(struct w_steam_iface *_this, uint64_t ulBeacon, CSteamID steamIDUser) { - struct cppISteamParties_SteamParties002_OnReservationCompleted_params params = + struct ISteamParties_SteamParties002_OnReservationCompleted_params params = { .linux_side = _this->u_iface, .ulBeacon = ulBeacon, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); - cppISteamParties_SteamParties002_OnReservationCompleted( ¶ms ); + STEAMCLIENT_CALL( ISteamParties_SteamParties002_OnReservationCompleted, ¶ms ); } void __thiscall winISteamParties_SteamParties002_CancelReservation(struct w_steam_iface *_this, uint64_t ulBeacon, CSteamID steamIDUser) { - struct cppISteamParties_SteamParties002_CancelReservation_params params = + struct ISteamParties_SteamParties002_CancelReservation_params params = { .linux_side = _this->u_iface, .ulBeacon = ulBeacon, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); - cppISteamParties_SteamParties002_CancelReservation( ¶ms ); + STEAMCLIENT_CALL( ISteamParties_SteamParties002_CancelReservation, ¶ms ); } uint64_t __thiscall winISteamParties_SteamParties002_ChangeNumOpenSlots(struct w_steam_iface *_this, uint64_t ulBeacon, uint32_t unOpenSlots) { - struct cppISteamParties_SteamParties002_ChangeNumOpenSlots_params params = + struct ISteamParties_SteamParties002_ChangeNumOpenSlots_params params = { .linux_side = _this->u_iface, .ulBeacon = ulBeacon, .unOpenSlots = unOpenSlots, }; TRACE("%p\n", _this); - cppISteamParties_SteamParties002_ChangeNumOpenSlots( ¶ms ); + STEAMCLIENT_CALL( ISteamParties_SteamParties002_ChangeNumOpenSlots, ¶ms ); return params._ret; } bool __thiscall winISteamParties_SteamParties002_DestroyBeacon(struct w_steam_iface *_this, uint64_t ulBeacon) { - struct cppISteamParties_SteamParties002_DestroyBeacon_params params = + struct ISteamParties_SteamParties002_DestroyBeacon_params params = { .linux_side = _this->u_iface, .ulBeacon = ulBeacon, }; TRACE("%p\n", _this); - cppISteamParties_SteamParties002_DestroyBeacon( ¶ms ); + STEAMCLIENT_CALL( ISteamParties_SteamParties002_DestroyBeacon, ¶ms ); return params._ret; } bool __thiscall winISteamParties_SteamParties002_GetBeaconLocationData(struct w_steam_iface *_this, w_SteamPartyBeaconLocation_t BeaconLocation, uint32_t eData, char *pchDataStringOut, int32_t cchDataStringOut) { - struct cppISteamParties_SteamParties002_GetBeaconLocationData_params params = + struct ISteamParties_SteamParties002_GetBeaconLocationData_params params = { .linux_side = _this->u_iface, .BeaconLocation = BeaconLocation, @@ -169,7 +167,7 @@ bool __thiscall winISteamParties_SteamParties002_GetBeaconLocationData(struct w_ .cchDataStringOut = cchDataStringOut, }; TRACE("%p\n", _this); - cppISteamParties_SteamParties002_GetBeaconLocationData( ¶ms ); + STEAMCLIENT_CALL( ISteamParties_SteamParties002_GetBeaconLocationData, ¶ms ); return params._ret; } diff --git a/lsteamclient/winISteamRemotePlay.c b/lsteamclient/winISteamRemotePlay.c index 14ddccd8..426d0834 100644 --- a/lsteamclient/winISteamRemotePlay.c +++ b/lsteamclient/winISteamRemotePlay.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001.h" - DEFINE_THISCALL_WRAPPER(winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionCount, 4) DEFINE_THISCALL_WRAPPER(winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionID, 8) DEFINE_THISCALL_WRAPPER(winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionSteamID, 12) @@ -15,67 +13,67 @@ DEFINE_THISCALL_WRAPPER(winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionCount(struct w_steam_iface *_this) { - struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionCount_params params = + struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionCount( ¶ms ); + 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) { - struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionID_params params = + struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionID_params params = { .linux_side = _this->u_iface, .iSessionIndex = iSessionIndex, }; TRACE("%p\n", _this); - cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionID( ¶ms ); + STEAMCLIENT_CALL( ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionID, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionSteamID(struct w_steam_iface *_this, CSteamID *_ret, uint32_t unSessionID) { - struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionSteamID_params params = + struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, .unSessionID = unSessionID, }; TRACE("%p\n", _this); - cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionSteamID, ¶ms ); return params._ret; } const char * __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientName(struct w_steam_iface *_this, uint32_t unSessionID) { - struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientName_params params = + struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientName_params params = { .linux_side = _this->u_iface, .unSessionID = unSessionID, }; TRACE("%p\n", _this); - cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientName( ¶ms ); + STEAMCLIENT_CALL( ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientName, ¶ms ); return params._ret; } uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientFormFactor(struct w_steam_iface *_this, uint32_t unSessionID) { - struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientFormFactor_params params = + struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientFormFactor_params params = { .linux_side = _this->u_iface, .unSessionID = unSessionID, }; TRACE("%p\n", _this); - cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientFormFactor( ¶ms ); + STEAMCLIENT_CALL( ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientFormFactor, ¶ms ); return params._ret; } bool __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSessionClientResolution(struct w_steam_iface *_this, uint32_t unSessionID, int32_t *pnResolutionX, int32_t *pnResolutionY) { - struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSessionClientResolution_params params = + struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSessionClientResolution_params params = { .linux_side = _this->u_iface, .unSessionID = unSessionID, @@ -83,19 +81,19 @@ bool __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSes .pnResolutionY = pnResolutionY, }; TRACE("%p\n", _this); - cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSessionClientResolution( ¶ms ); + STEAMCLIENT_CALL( ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSessionClientResolution, ¶ms ); return params._ret; } bool __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BSendRemotePlayTogetherInvite(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BSendRemotePlayTogetherInvite_params params = + struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BSendRemotePlayTogetherInvite_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BSendRemotePlayTogetherInvite( ¶ms ); + STEAMCLIENT_CALL( ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BSendRemotePlayTogetherInvite, ¶ms ); return params._ret; } @@ -124,8 +122,6 @@ struct w_steam_iface *create_winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSI return r; } -#include "cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002.h" - DEFINE_THISCALL_WRAPPER(winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionCount, 4) DEFINE_THISCALL_WRAPPER(winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionID, 8) DEFINE_THISCALL_WRAPPER(winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionSteamID, 12) @@ -137,67 +133,67 @@ DEFINE_THISCALL_WRAPPER(winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionCount(struct w_steam_iface *_this) { - struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionCount_params params = + struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionCount( ¶ms ); + 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) { - struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionID_params params = + struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionID_params params = { .linux_side = _this->u_iface, .iSessionIndex = iSessionIndex, }; TRACE("%p\n", _this); - cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionID( ¶ms ); + STEAMCLIENT_CALL( ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionID, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionSteamID(struct w_steam_iface *_this, CSteamID *_ret, uint32_t unSessionID) { - struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionSteamID_params params = + struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, .unSessionID = unSessionID, }; TRACE("%p\n", _this); - cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionSteamID, ¶ms ); return params._ret; } const char * __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientName(struct w_steam_iface *_this, uint32_t unSessionID) { - struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientName_params params = + struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientName_params params = { .linux_side = _this->u_iface, .unSessionID = unSessionID, }; TRACE("%p\n", _this); - cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientName( ¶ms ); + STEAMCLIENT_CALL( ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientName, ¶ms ); return params._ret; } uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientFormFactor(struct w_steam_iface *_this, uint32_t unSessionID) { - struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientFormFactor_params params = + struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientFormFactor_params params = { .linux_side = _this->u_iface, .unSessionID = unSessionID, }; TRACE("%p\n", _this); - cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientFormFactor( ¶ms ); + STEAMCLIENT_CALL( ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientFormFactor, ¶ms ); return params._ret; } bool __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSessionClientResolution(struct w_steam_iface *_this, uint32_t unSessionID, int32_t *pnResolutionX, int32_t *pnResolutionY) { - struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSessionClientResolution_params params = + struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSessionClientResolution_params params = { .linux_side = _this->u_iface, .unSessionID = unSessionID, @@ -205,31 +201,31 @@ bool __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSes .pnResolutionY = pnResolutionY, }; TRACE("%p\n", _this); - cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSessionClientResolution( ¶ms ); + STEAMCLIENT_CALL( ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSessionClientResolution, ¶ms ); return params._ret; } bool __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BStartRemotePlayTogether(struct w_steam_iface *_this, bool bShowOverlay) { - struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BStartRemotePlayTogether_params params = + struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BStartRemotePlayTogether_params params = { .linux_side = _this->u_iface, .bShowOverlay = bShowOverlay, }; TRACE("%p\n", _this); - cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BStartRemotePlayTogether( ¶ms ); + STEAMCLIENT_CALL( ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BStartRemotePlayTogether, ¶ms ); return params._ret; } bool __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BSendRemotePlayTogetherInvite(struct w_steam_iface *_this, CSteamID steamIDFriend) { - struct cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BSendRemotePlayTogetherInvite_params params = + struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BSendRemotePlayTogetherInvite_params params = { .linux_side = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); - cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BSendRemotePlayTogetherInvite( ¶ms ); + STEAMCLIENT_CALL( ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BSendRemotePlayTogetherInvite, ¶ms ); return params._ret; } diff --git a/lsteamclient/winISteamRemoteStorage.c b/lsteamclient/winISteamRemoteStorage.c index 3ce57e64..22ffad3e 100644 --- a/lsteamclient/winISteamRemoteStorage.c +++ b/lsteamclient/winISteamRemoteStorage.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001.h" - DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileWrite, 16) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileSize, 8) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileRead, 16) @@ -16,7 +14,7 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileWrite_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileWrite_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -24,25 +22,25 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_F .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileWrite( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileWrite, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileSize(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileSize_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileSize_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileSize( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileSize, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileRead(struct w_steam_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileRead_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileRead_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -50,68 +48,68 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 .cubDataToRead = cubDataToRead, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileRead( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileRead, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileExists(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileExists_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileExists_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileExists( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileExists, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileDelete(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileDelete_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileDelete_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileDelete( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileDelete, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileCount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileCount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileCount( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileNameAndSize_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileNameAndSize_params params = { .linux_side = _this->u_iface, .iFile = iFile, .pnFileSizeInBytes = pnFileSizeInBytes, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileNameAndSize( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileNameAndSize, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetQuota_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetQuota_params params = { .linux_side = _this->u_iface, .pnTotalBytes = pnTotalBytes, .puAvailableBytes = puAvailableBytes, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetQuota( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetQuota, ¶ms ); return params._ret; } @@ -141,8 +139,6 @@ struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE return r; } -#include "cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002.h" - DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileWrite, 16) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileSize, 8) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileRead, 16) @@ -153,7 +149,7 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileWrite_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileWrite_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -161,25 +157,25 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_F .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileWrite( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileWrite, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileSize(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileSize_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileSize_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileSize( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileSize, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileRead(struct w_steam_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileRead_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileRead_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -187,56 +183,56 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 .cubDataToRead = cubDataToRead, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileRead( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileRead, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileExists(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileExists_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileExists_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileExists( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileExists, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileCount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileCount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileCount( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileNameAndSize_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileNameAndSize_params params = { .linux_side = _this->u_iface, .iFile = iFile, .pnFileSizeInBytes = pnFileSizeInBytes, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileNameAndSize( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileNameAndSize, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetQuota_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetQuota_params params = { .linux_side = _this->u_iface, .pnTotalBytes = pnTotalBytes, .puAvailableBytes = puAvailableBytes, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetQuota( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetQuota, ¶ms ); return params._ret; } @@ -265,8 +261,6 @@ struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE return r; } -#include "cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003.h" - DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileWrite, 16) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileRead, 16) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileForget, 8) @@ -290,7 +284,7 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileWrite_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileWrite_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -298,13 +292,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_F .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileWrite( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileWrite, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileRead(struct w_steam_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileRead_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileRead_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -312,179 +306,179 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 .cubDataToRead = cubDataToRead, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileRead( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileRead, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileForget(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileForget_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileForget_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileForget( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileForget, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileDelete(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileDelete_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileDelete_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileDelete( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileDelete, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileShare(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileShare_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileShare_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileShare( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileShare, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileExists(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileExists_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileExists_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileExists( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileExists, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FilePersisted(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FilePersisted_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FilePersisted_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FilePersisted( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FilePersisted, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileSize(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileSize_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileSize_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileSize( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileSize, ¶ms ); return params._ret; } int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileTimestamp(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileTimestamp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileTimestamp_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileTimestamp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileTimestamp, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileCount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileCount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileCount( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileNameAndSize_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileNameAndSize_params params = { .linux_side = _this->u_iface, .iFile = iFile, .pnFileSizeInBytes = pnFileSizeInBytes, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileNameAndSize( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileNameAndSize, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetQuota_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetQuota_params params = { .linux_side = _this->u_iface, .pnTotalBytes = pnTotalBytes, .puAvailableBytes = puAvailableBytes, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetQuota( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetQuota, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForAccount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForAccount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForAccount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForAccount( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForAccount, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForApp(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForApp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForApp_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForApp, ¶ms ); return params._ret; } void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_SetCloudEnabledForApp(struct w_steam_iface *_this, bool bEnabled) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_SetCloudEnabledForApp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_SetCloudEnabledForApp_params params = { .linux_side = _this->u_iface, .bEnabled = bEnabled, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_SetCloudEnabledForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_SetCloudEnabledForApp, ¶ms ); } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCDownload(struct w_steam_iface *_this, uint64_t hContent) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCDownload_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCDownload_params params = { .linux_side = _this->u_iface, .hContent = hContent, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCDownload( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCDownload, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetUGCDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetUGCDetails_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -494,13 +488,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_G .pSteamIDOwner = pSteamIDOwner, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetUGCDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetUGCDetails, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCRead(struct w_steam_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCRead_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCRead_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -508,30 +502,30 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 .cubDataToRead = cubDataToRead, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCRead( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCRead, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCCount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCCount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCCount( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCHandle_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCHandle_params params = { .linux_side = _this->u_iface, .iCachedContent = iCachedContent, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCHandle, ¶ms ); return params._ret; } @@ -573,8 +567,6 @@ struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE return r; } -#include "cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004.h" - DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileWrite, 16) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileRead, 16) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileForget, 8) @@ -600,7 +592,7 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileWrite_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileWrite_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -608,13 +600,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_F .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileWrite( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileWrite, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileRead(struct w_steam_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileRead_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileRead_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -622,204 +614,204 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 .cubDataToRead = cubDataToRead, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileRead( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileRead, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileForget(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileForget_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileForget_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileForget( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileForget, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileDelete(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileDelete_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileDelete_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileDelete( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileDelete, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileShare(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileShare_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileShare_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileShare( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileShare, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetSyncPlatforms_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetSyncPlatforms_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, .eRemoteStoragePlatform = eRemoteStoragePlatform, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetSyncPlatforms( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetSyncPlatforms, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileExists(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileExists_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileExists_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileExists( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileExists, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FilePersisted(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FilePersisted_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FilePersisted_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FilePersisted( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FilePersisted, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileSize(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileSize_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileSize_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileSize( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileSize, ¶ms ); return params._ret; } int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileTimestamp(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileTimestamp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileTimestamp_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileTimestamp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileTimestamp, ¶ms ); return params._ret; } uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetSyncPlatforms_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetSyncPlatforms_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetSyncPlatforms( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetSyncPlatforms, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileCount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileCount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileCount( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileNameAndSize_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileNameAndSize_params params = { .linux_side = _this->u_iface, .iFile = iFile, .pnFileSizeInBytes = pnFileSizeInBytes, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileNameAndSize( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileNameAndSize, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetQuota_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetQuota_params params = { .linux_side = _this->u_iface, .pnTotalBytes = pnTotalBytes, .puAvailableBytes = puAvailableBytes, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetQuota( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetQuota, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForAccount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForAccount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForAccount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForAccount( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForAccount, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForApp(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForApp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForApp_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForApp, ¶ms ); return params._ret; } void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetCloudEnabledForApp(struct w_steam_iface *_this, bool bEnabled) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetCloudEnabledForApp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetCloudEnabledForApp_params params = { .linux_side = _this->u_iface, .bEnabled = bEnabled, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetCloudEnabledForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetCloudEnabledForApp, ¶ms ); } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCDownload(struct w_steam_iface *_this, uint64_t hContent) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCDownload_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCDownload_params params = { .linux_side = _this->u_iface, .hContent = hContent, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCDownload( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCDownload, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetUGCDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetUGCDetails_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -829,13 +821,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_G .pSteamIDOwner = pSteamIDOwner, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetUGCDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetUGCDetails, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCRead(struct w_steam_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCRead_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCRead_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -843,30 +835,30 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 .cubDataToRead = cubDataToRead, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCRead( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCRead, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCCount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCCount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCCount( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCHandle_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCHandle_params params = { .linux_side = _this->u_iface, .iCachedContent = iCachedContent, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCHandle, ¶ms ); return params._ret; } @@ -910,8 +902,6 @@ struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE return r; } -#include "cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005.h" - DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileWrite, 16) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileRead, 16) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileForget, 8) @@ -946,7 +936,7 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileWrite_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileWrite_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -954,13 +944,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_F .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileWrite( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileWrite, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileRead(struct w_steam_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileRead_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileRead_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -968,204 +958,204 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 .cubDataToRead = cubDataToRead, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileRead( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileRead, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileForget(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileForget_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileForget_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileForget( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileForget, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileDelete(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileDelete_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileDelete_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileDelete( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileDelete, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileShare(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileShare_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileShare_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileShare( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileShare, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetSyncPlatforms_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetSyncPlatforms_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, .eRemoteStoragePlatform = eRemoteStoragePlatform, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetSyncPlatforms( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetSyncPlatforms, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileExists(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileExists_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileExists_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileExists( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileExists, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FilePersisted(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FilePersisted_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FilePersisted_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FilePersisted( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FilePersisted, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileSize(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileSize_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileSize_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileSize( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileSize, ¶ms ); return params._ret; } int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileTimestamp(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileTimestamp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileTimestamp_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileTimestamp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileTimestamp, ¶ms ); return params._ret; } uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetSyncPlatforms_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetSyncPlatforms_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetSyncPlatforms( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetSyncPlatforms, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileCount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileCount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileCount( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileNameAndSize_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileNameAndSize_params params = { .linux_side = _this->u_iface, .iFile = iFile, .pnFileSizeInBytes = pnFileSizeInBytes, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileNameAndSize( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileNameAndSize, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetQuota_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetQuota_params params = { .linux_side = _this->u_iface, .pnTotalBytes = pnTotalBytes, .puAvailableBytes = puAvailableBytes, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetQuota( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetQuota, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForAccount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForAccount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForAccount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForAccount( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForAccount, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForApp(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForApp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForApp_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForApp, ¶ms ); return params._ret; } void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetCloudEnabledForApp(struct w_steam_iface *_this, bool bEnabled) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetCloudEnabledForApp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetCloudEnabledForApp_params params = { .linux_side = _this->u_iface, .bEnabled = bEnabled, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetCloudEnabledForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetCloudEnabledForApp, ¶ms ); } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCDownload(struct w_steam_iface *_this, uint64_t hContent) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCDownload_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCDownload_params params = { .linux_side = _this->u_iface, .hContent = hContent, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCDownload( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCDownload, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetUGCDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetUGCDetails_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -1175,13 +1165,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_G .pSteamIDOwner = pSteamIDOwner, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetUGCDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetUGCDetails, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCRead(struct w_steam_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCRead_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCRead_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -1189,36 +1179,36 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 .cubDataToRead = cubDataToRead, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCRead( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCRead, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCCount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCCount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCCount( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCHandle_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCHandle_params params = { .linux_side = _this->u_iface, .iCachedContent = iCachedContent, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCHandle, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishFile_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -1230,13 +1220,13 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 .pTags = pTags, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishFile, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishWorkshopFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishWorkshopFile_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -1249,7 +1239,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 params.pchFile = steamclient_dos_to_unix_path( pchFile, 0 ); params.pchPreviewFile = steamclient_dos_to_unix_path( pchPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishWorkshopFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishWorkshopFile, ¶ms ); steamclient_free_path( params.pchFile ); steamclient_free_path( params.pchPreviewFile ); return params._ret; @@ -1257,85 +1247,85 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UpdatePublishedFile(struct w_steam_iface *_this, w_RemoteStorageUpdatePublishedFileRequest_t updatePublishedFileRequest) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UpdatePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UpdatePublishedFile_params params = { .linux_side = _this->u_iface, .updatePublishedFileRequest = updatePublishedFileRequest, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UpdatePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UpdatePublishedFile, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetPublishedFileDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetPublishedFileDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetPublishedFileDetails_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetPublishedFileDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetPublishedFileDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_DeletePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_DeletePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_DeletePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_DeletePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_DeletePublishedFile, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserPublishedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserPublishedFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserPublishedFiles_params params = { .linux_side = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserPublishedFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserPublishedFiles, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SubscribePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SubscribePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SubscribePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SubscribePublishedFile, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserSubscribedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserSubscribedFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserSubscribedFiles_params params = { .linux_side = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserSubscribedFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserSubscribedFiles, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UnsubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UnsubscribePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UnsubscribePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UnsubscribePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UnsubscribePublishedFile, ¶ms ); return params._ret; } @@ -1388,8 +1378,6 @@ struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE return r; } -#include "cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006.h" - DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileWrite, 16) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileRead, 16) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileForget, 8) @@ -1440,7 +1428,7 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileWrite_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileWrite_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -1448,13 +1436,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_F .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileWrite( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileWrite, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileRead(struct w_steam_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileRead_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileRead_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -1462,204 +1450,204 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 .cubDataToRead = cubDataToRead, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileRead( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileRead, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileForget(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileForget_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileForget_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileForget( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileForget, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileDelete(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileDelete_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileDelete_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileDelete( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileDelete, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileShare(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileShare_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileShare_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileShare( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileShare, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetSyncPlatforms_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetSyncPlatforms_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, .eRemoteStoragePlatform = eRemoteStoragePlatform, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetSyncPlatforms( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetSyncPlatforms, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileExists(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileExists_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileExists_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileExists( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileExists, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FilePersisted(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FilePersisted_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FilePersisted_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FilePersisted( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FilePersisted, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileSize(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileSize_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileSize_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileSize( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileSize, ¶ms ); return params._ret; } int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileTimestamp(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileTimestamp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileTimestamp_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileTimestamp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileTimestamp, ¶ms ); return params._ret; } uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetSyncPlatforms_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetSyncPlatforms_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetSyncPlatforms( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetSyncPlatforms, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileCount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileCount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileCount( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileNameAndSize_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileNameAndSize_params params = { .linux_side = _this->u_iface, .iFile = iFile, .pnFileSizeInBytes = pnFileSizeInBytes, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileNameAndSize( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileNameAndSize, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetQuota_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetQuota_params params = { .linux_side = _this->u_iface, .pnTotalBytes = pnTotalBytes, .puAvailableBytes = puAvailableBytes, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetQuota( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetQuota, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForAccount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForAccount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForAccount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForAccount( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForAccount, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForApp(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForApp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForApp_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForApp, ¶ms ); return params._ret; } void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetCloudEnabledForApp(struct w_steam_iface *_this, bool bEnabled) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetCloudEnabledForApp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetCloudEnabledForApp_params params = { .linux_side = _this->u_iface, .bEnabled = bEnabled, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetCloudEnabledForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetCloudEnabledForApp, ¶ms ); } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCDownload(struct w_steam_iface *_this, uint64_t hContent) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCDownload_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCDownload_params params = { .linux_side = _this->u_iface, .hContent = hContent, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCDownload( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCDownload, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDownloadProgress_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDownloadProgress_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -1667,13 +1655,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_G .pnBytesExpected = pnBytesExpected, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDownloadProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDownloadProgress, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDetails_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -1683,13 +1671,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_G .pSteamIDOwner = pSteamIDOwner, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDetails, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCRead(struct w_steam_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCRead_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCRead_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -1697,36 +1685,36 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 .cubDataToRead = cubDataToRead, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCRead( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCRead, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCCount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCCount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCCount( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCHandle_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCHandle_params params = { .linux_side = _this->u_iface, .iCachedContent = iCachedContent, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCHandle, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishWorkshopFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishWorkshopFile_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -1741,7 +1729,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 params.pchFile = steamclient_dos_to_unix_path( pchFile, 0 ); params.pchPreviewFile = steamclient_dos_to_unix_path( pchPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishWorkshopFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishWorkshopFile, ¶ms ); steamclient_free_path( params.pchFile ); steamclient_free_path( params.pchPreviewFile ); return params._ret; @@ -1749,19 +1737,19 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CreatePublishedFileUpdateRequest(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CreatePublishedFileUpdateRequest_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CreatePublishedFileUpdateRequest_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CreatePublishedFileUpdateRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CreatePublishedFileUpdateRequest, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileFile_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, @@ -1769,14 +1757,14 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_U }; params.pchFile = steamclient_dos_to_unix_path( pchFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileFile, ¶ms ); steamclient_free_path( params.pchFile ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFilePreviewFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFilePreviewFile_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, @@ -1784,200 +1772,200 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_U }; params.pchPreviewFile = steamclient_dos_to_unix_path( pchPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFilePreviewFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFilePreviewFile, ¶ms ); steamclient_free_path( params.pchPreviewFile ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTitle_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTitle_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pchTitle = pchTitle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTitle( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTitle, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileDescription_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileDescription_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pchDescription = pchDescription, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileDescription, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileVisibility_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileVisibility_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .eVisibility = eVisibility, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileVisibility( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileVisibility, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTags_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTags_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTags( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTags, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CommitPublishedFileUpdate(struct w_steam_iface *_this, uint64_t updateHandle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CommitPublishedFileUpdate_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CommitPublishedFileUpdate_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CommitPublishedFileUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CommitPublishedFileUpdate, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedFileDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedFileDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedFileDetails_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedFileDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedFileDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_DeletePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_DeletePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_DeletePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_DeletePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_DeletePublishedFile, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserPublishedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserPublishedFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserPublishedFiles_params params = { .linux_side = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserPublishedFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserPublishedFiles, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SubscribePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SubscribePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SubscribePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SubscribePublishedFile, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSubscribedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSubscribedFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSubscribedFiles_params params = { .linux_side = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSubscribedFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSubscribedFiles, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UnsubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UnsubscribePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UnsubscribePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UnsubscribePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UnsubscribePublishedFile, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileSetChangeDescription_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileSetChangeDescription_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pchChangeDescription = pchChangeDescription, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileSetChangeDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileSetChangeDescription, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedItemVoteDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedItemVoteDetails_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedItemVoteDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedItemVoteDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, bool bVoteUp) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdateUserPublishedItemVote_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdateUserPublishedItemVote_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, .bVoteUp = bVoteUp, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdateUserPublishedItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdateUserPublishedItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUserPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUserPublishedItemVoteDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUserPublishedItemVoteDetails_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUserPublishedItemVoteDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUserPublishedItemVoteDetails, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSharedWorkshopFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSharedWorkshopFiles_params params = { .linux_side = _this->u_iface, .steamId = steamId, @@ -1986,13 +1974,13 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 .pExcludedTags = pExcludedTags, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSharedWorkshopFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSharedWorkshopFiles, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishVideo_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishVideo_params params = { .linux_side = _this->u_iface, .pchVideoURL = pchVideoURL, @@ -2005,40 +1993,40 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 }; params.pchPreviewFile = steamclient_dos_to_unix_path( pchPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishVideo, ¶ms ); steamclient_free_path( params.pchPreviewFile ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetUserPublishedFileAction(struct w_steam_iface *_this, uint64_t unPublishedFileId, uint32_t eAction) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetUserPublishedFileAction_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetUserPublishedFileAction_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, .eAction = eAction, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetUserPublishedFileAction( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetUserPublishedFileAction, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedFilesByUserAction(struct w_steam_iface *_this, uint32_t eAction, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedFilesByUserAction_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedFilesByUserAction_params params = { .linux_side = _this->u_iface, .eAction = eAction, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedFilesByUserAction( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedFilesByUserAction, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedWorkshopFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedWorkshopFiles_params params = { .linux_side = _this->u_iface, .eEnumerationType = eEnumerationType, @@ -2049,7 +2037,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 .pUserTags = pUserTags, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedWorkshopFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedWorkshopFiles, ¶ms ); return params._ret; } @@ -2118,8 +2106,6 @@ struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE return r; } -#include "cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007.h" - DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileWrite, 16) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileRead, 16) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileForget, 8) @@ -2170,7 +2156,7 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileWrite_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileWrite_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -2178,13 +2164,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_F .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileWrite( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileWrite, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileRead(struct w_steam_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileRead_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileRead_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -2192,204 +2178,204 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 .cubDataToRead = cubDataToRead, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileRead( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileRead, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileForget(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileForget_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileForget_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileForget( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileForget, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileDelete(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileDelete_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileDelete_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileDelete( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileDelete, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileShare(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileShare_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileShare_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileShare( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileShare, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetSyncPlatforms_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetSyncPlatforms_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, .eRemoteStoragePlatform = eRemoteStoragePlatform, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetSyncPlatforms( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetSyncPlatforms, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileExists(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileExists_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileExists_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileExists( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileExists, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FilePersisted(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FilePersisted_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FilePersisted_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FilePersisted( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FilePersisted, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileSize(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileSize_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileSize_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileSize( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileSize, ¶ms ); return params._ret; } int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileTimestamp(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileTimestamp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileTimestamp_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileTimestamp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileTimestamp, ¶ms ); return params._ret; } uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetSyncPlatforms_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetSyncPlatforms_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetSyncPlatforms( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetSyncPlatforms, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileCount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileCount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileCount( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileNameAndSize_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileNameAndSize_params params = { .linux_side = _this->u_iface, .iFile = iFile, .pnFileSizeInBytes = pnFileSizeInBytes, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileNameAndSize( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileNameAndSize, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetQuota_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetQuota_params params = { .linux_side = _this->u_iface, .pnTotalBytes = pnTotalBytes, .puAvailableBytes = puAvailableBytes, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetQuota( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetQuota, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForAccount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForAccount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForAccount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForAccount( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForAccount, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForApp(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForApp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForApp_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForApp, ¶ms ); return params._ret; } void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetCloudEnabledForApp(struct w_steam_iface *_this, bool bEnabled) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetCloudEnabledForApp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetCloudEnabledForApp_params params = { .linux_side = _this->u_iface, .bEnabled = bEnabled, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetCloudEnabledForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetCloudEnabledForApp, ¶ms ); } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCDownload(struct w_steam_iface *_this, uint64_t hContent) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCDownload_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCDownload_params params = { .linux_side = _this->u_iface, .hContent = hContent, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCDownload( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCDownload, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDownloadProgress_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDownloadProgress_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -2397,13 +2383,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_G .pnBytesExpected = pnBytesExpected, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDownloadProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDownloadProgress, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDetails_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -2413,13 +2399,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_G .pSteamIDOwner = pSteamIDOwner, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDetails, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCRead(struct w_steam_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCRead_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCRead_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -2427,36 +2413,36 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 .cubDataToRead = cubDataToRead, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCRead( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCRead, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCCount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCCount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCCount( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCHandle_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCHandle_params params = { .linux_side = _this->u_iface, .iCachedContent = iCachedContent, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCHandle, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishWorkshopFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishWorkshopFile_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -2471,7 +2457,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 params.pchFile = steamclient_dos_to_unix_path( pchFile, 0 ); params.pchPreviewFile = steamclient_dos_to_unix_path( pchPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishWorkshopFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishWorkshopFile, ¶ms ); steamclient_free_path( params.pchFile ); steamclient_free_path( params.pchPreviewFile ); return params._ret; @@ -2479,19 +2465,19 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CreatePublishedFileUpdateRequest(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CreatePublishedFileUpdateRequest_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CreatePublishedFileUpdateRequest_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CreatePublishedFileUpdateRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CreatePublishedFileUpdateRequest, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileFile_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, @@ -2499,14 +2485,14 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_U }; params.pchFile = steamclient_dos_to_unix_path( pchFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileFile, ¶ms ); steamclient_free_path( params.pchFile ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFilePreviewFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFilePreviewFile_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, @@ -2514,200 +2500,200 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_U }; params.pchPreviewFile = steamclient_dos_to_unix_path( pchPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFilePreviewFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFilePreviewFile, ¶ms ); steamclient_free_path( params.pchPreviewFile ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTitle_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTitle_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pchTitle = pchTitle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTitle( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTitle, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileDescription_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileDescription_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pchDescription = pchDescription, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileDescription, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileVisibility_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileVisibility_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .eVisibility = eVisibility, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileVisibility( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileVisibility, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTags_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTags_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTags( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTags, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CommitPublishedFileUpdate(struct w_steam_iface *_this, uint64_t updateHandle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CommitPublishedFileUpdate_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CommitPublishedFileUpdate_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CommitPublishedFileUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CommitPublishedFileUpdate, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedFileDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedFileDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedFileDetails_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedFileDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedFileDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_DeletePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_DeletePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_DeletePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_DeletePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_DeletePublishedFile, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserPublishedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserPublishedFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserPublishedFiles_params params = { .linux_side = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserPublishedFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserPublishedFiles, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SubscribePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SubscribePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SubscribePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SubscribePublishedFile, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSubscribedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSubscribedFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSubscribedFiles_params params = { .linux_side = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSubscribedFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSubscribedFiles, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UnsubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UnsubscribePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UnsubscribePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UnsubscribePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UnsubscribePublishedFile, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileSetChangeDescription_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileSetChangeDescription_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pchChangeDescription = pchChangeDescription, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileSetChangeDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileSetChangeDescription, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedItemVoteDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedItemVoteDetails_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedItemVoteDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedItemVoteDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, bool bVoteUp) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdateUserPublishedItemVote_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdateUserPublishedItemVote_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, .bVoteUp = bVoteUp, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdateUserPublishedItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdateUserPublishedItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUserPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUserPublishedItemVoteDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUserPublishedItemVoteDetails_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUserPublishedItemVoteDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUserPublishedItemVoteDetails, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSharedWorkshopFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSharedWorkshopFiles_params params = { .linux_side = _this->u_iface, .steamId = steamId, @@ -2716,13 +2702,13 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 .pExcludedTags = pExcludedTags, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSharedWorkshopFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSharedWorkshopFiles, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishVideo_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishVideo_params params = { .linux_side = _this->u_iface, .eVideoProvider = eVideoProvider, @@ -2737,40 +2723,40 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 }; params.pchPreviewFile = steamclient_dos_to_unix_path( pchPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishVideo, ¶ms ); steamclient_free_path( params.pchPreviewFile ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetUserPublishedFileAction(struct w_steam_iface *_this, uint64_t unPublishedFileId, uint32_t eAction) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetUserPublishedFileAction_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetUserPublishedFileAction_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, .eAction = eAction, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetUserPublishedFileAction( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetUserPublishedFileAction, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedFilesByUserAction(struct w_steam_iface *_this, uint32_t eAction, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedFilesByUserAction_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedFilesByUserAction_params params = { .linux_side = _this->u_iface, .eAction = eAction, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedFilesByUserAction( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedFilesByUserAction, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedWorkshopFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedWorkshopFiles_params params = { .linux_side = _this->u_iface, .eEnumerationType = eEnumerationType, @@ -2781,7 +2767,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 .pUserTags = pUserTags, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedWorkshopFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedWorkshopFiles, ¶ms ); return params._ret; } @@ -2850,8 +2836,6 @@ struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE return r; } -#include "cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008.h" - DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWrite, 16) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileRead, 16) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileForget, 8) @@ -2906,7 +2890,7 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWrite_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWrite_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -2914,13 +2898,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_F .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWrite( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWrite, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileRead(struct w_steam_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileRead_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileRead_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -2928,74 +2912,74 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 .cubDataToRead = cubDataToRead, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileRead( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileRead, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileForget(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileForget_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileForget_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileForget( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileForget, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileDelete(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileDelete_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileDelete_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileDelete( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileDelete, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileShare(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileShare_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileShare_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileShare( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileShare, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetSyncPlatforms_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetSyncPlatforms_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, .eRemoteStoragePlatform = eRemoteStoragePlatform, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetSyncPlatforms( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetSyncPlatforms, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamOpen(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamOpen_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamOpen_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamOpen( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamOpen, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamWriteChunk_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamWriteChunk_params params = { .linux_side = _this->u_iface, .writeHandle = writeHandle, @@ -3003,179 +2987,179 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_F .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamWriteChunk( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamWriteChunk, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamClose_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamClose_params params = { .linux_side = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamClose( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamClose, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamCancel_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamCancel_params params = { .linux_side = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamCancel( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamCancel, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileExists(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileExists_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileExists_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileExists( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileExists, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FilePersisted(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FilePersisted_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FilePersisted_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FilePersisted( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FilePersisted, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileSize(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileSize_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileSize_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileSize( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileSize, ¶ms ); return params._ret; } int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileTimestamp(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileTimestamp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileTimestamp_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileTimestamp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileTimestamp, ¶ms ); return params._ret; } uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetSyncPlatforms_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetSyncPlatforms_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetSyncPlatforms( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetSyncPlatforms, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileCount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileCount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileCount( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileNameAndSize_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileNameAndSize_params params = { .linux_side = _this->u_iface, .iFile = iFile, .pnFileSizeInBytes = pnFileSizeInBytes, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileNameAndSize( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileNameAndSize, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetQuota_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetQuota_params params = { .linux_side = _this->u_iface, .pnTotalBytes = pnTotalBytes, .puAvailableBytes = puAvailableBytes, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetQuota( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetQuota, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForAccount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForAccount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForAccount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForAccount( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForAccount, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForApp(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForApp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForApp_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForApp, ¶ms ); return params._ret; } void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetCloudEnabledForApp(struct w_steam_iface *_this, bool bEnabled) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetCloudEnabledForApp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetCloudEnabledForApp_params params = { .linux_side = _this->u_iface, .bEnabled = bEnabled, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetCloudEnabledForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetCloudEnabledForApp, ¶ms ); } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCDownload(struct w_steam_iface *_this, uint64_t hContent) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCDownload_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCDownload_params params = { .linux_side = _this->u_iface, .hContent = hContent, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCDownload( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCDownload, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDownloadProgress_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDownloadProgress_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -3183,13 +3167,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_G .pnBytesExpected = pnBytesExpected, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDownloadProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDownloadProgress, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDetails_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -3199,13 +3183,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_G .pSteamIDOwner = pSteamIDOwner, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDetails, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCRead(struct w_steam_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCRead_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCRead_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -3213,36 +3197,36 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 .cubDataToRead = cubDataToRead, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCRead( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCRead, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCCount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCCount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCCount( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCHandle_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCHandle_params params = { .linux_side = _this->u_iface, .iCachedContent = iCachedContent, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCHandle, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishWorkshopFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishWorkshopFile_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -3257,7 +3241,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 params.pchFile = steamclient_dos_to_unix_path( pchFile, 0 ); params.pchPreviewFile = steamclient_dos_to_unix_path( pchPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishWorkshopFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishWorkshopFile, ¶ms ); steamclient_free_path( params.pchFile ); steamclient_free_path( params.pchPreviewFile ); return params._ret; @@ -3265,19 +3249,19 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CreatePublishedFileUpdateRequest(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CreatePublishedFileUpdateRequest_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CreatePublishedFileUpdateRequest_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CreatePublishedFileUpdateRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CreatePublishedFileUpdateRequest, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileFile_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, @@ -3285,14 +3269,14 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_U }; params.pchFile = steamclient_dos_to_unix_path( pchFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileFile, ¶ms ); steamclient_free_path( params.pchFile ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFilePreviewFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFilePreviewFile_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, @@ -3300,200 +3284,200 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_U }; params.pchPreviewFile = steamclient_dos_to_unix_path( pchPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFilePreviewFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFilePreviewFile, ¶ms ); steamclient_free_path( params.pchPreviewFile ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTitle_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTitle_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pchTitle = pchTitle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTitle( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTitle, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileDescription_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileDescription_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pchDescription = pchDescription, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileDescription, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileVisibility_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileVisibility_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .eVisibility = eVisibility, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileVisibility( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileVisibility, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTags_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTags_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTags( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTags, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CommitPublishedFileUpdate(struct w_steam_iface *_this, uint64_t updateHandle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CommitPublishedFileUpdate_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CommitPublishedFileUpdate_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CommitPublishedFileUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CommitPublishedFileUpdate, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedFileDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedFileDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedFileDetails_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedFileDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedFileDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_DeletePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_DeletePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_DeletePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_DeletePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_DeletePublishedFile, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserPublishedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserPublishedFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserPublishedFiles_params params = { .linux_side = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserPublishedFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserPublishedFiles, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SubscribePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SubscribePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SubscribePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SubscribePublishedFile, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSubscribedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSubscribedFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSubscribedFiles_params params = { .linux_side = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSubscribedFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSubscribedFiles, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UnsubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UnsubscribePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UnsubscribePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UnsubscribePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UnsubscribePublishedFile, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileSetChangeDescription_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileSetChangeDescription_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pchChangeDescription = pchChangeDescription, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileSetChangeDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileSetChangeDescription, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedItemVoteDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedItemVoteDetails_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedItemVoteDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedItemVoteDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, bool bVoteUp) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdateUserPublishedItemVote_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdateUserPublishedItemVote_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, .bVoteUp = bVoteUp, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdateUserPublishedItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdateUserPublishedItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUserPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUserPublishedItemVoteDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUserPublishedItemVoteDetails_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUserPublishedItemVoteDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUserPublishedItemVoteDetails, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSharedWorkshopFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSharedWorkshopFiles_params params = { .linux_side = _this->u_iface, .steamId = steamId, @@ -3502,13 +3486,13 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 .pExcludedTags = pExcludedTags, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSharedWorkshopFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSharedWorkshopFiles, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishVideo_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishVideo_params params = { .linux_side = _this->u_iface, .eVideoProvider = eVideoProvider, @@ -3523,40 +3507,40 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 }; params.pchPreviewFile = steamclient_dos_to_unix_path( pchPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishVideo, ¶ms ); steamclient_free_path( params.pchPreviewFile ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetUserPublishedFileAction(struct w_steam_iface *_this, uint64_t unPublishedFileId, uint32_t eAction) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetUserPublishedFileAction_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetUserPublishedFileAction_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, .eAction = eAction, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetUserPublishedFileAction( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetUserPublishedFileAction, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedFilesByUserAction(struct w_steam_iface *_this, uint32_t eAction, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedFilesByUserAction_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedFilesByUserAction_params params = { .linux_side = _this->u_iface, .eAction = eAction, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedFilesByUserAction( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedFilesByUserAction, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedWorkshopFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedWorkshopFiles_params params = { .linux_side = _this->u_iface, .eEnumerationType = eEnumerationType, @@ -3567,7 +3551,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 .pUserTags = pUserTags, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedWorkshopFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedWorkshopFiles, ¶ms ); return params._ret; } @@ -3640,8 +3624,6 @@ struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE return r; } -#include "cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009.h" - DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWrite, 16) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileRead, 16) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileForget, 8) @@ -3696,7 +3678,7 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWrite_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWrite_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -3704,13 +3686,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_F .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWrite( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWrite, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileRead(struct w_steam_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileRead_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileRead_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -3718,74 +3700,74 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 .cubDataToRead = cubDataToRead, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileRead( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileRead, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileForget(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileForget_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileForget_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileForget( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileForget, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileDelete(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileDelete_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileDelete_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileDelete( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileDelete, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileShare(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileShare_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileShare_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileShare( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileShare, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetSyncPlatforms_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetSyncPlatforms_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, .eRemoteStoragePlatform = eRemoteStoragePlatform, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetSyncPlatforms( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetSyncPlatforms, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamOpen(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamOpen_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamOpen_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamOpen( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamOpen, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamWriteChunk_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamWriteChunk_params params = { .linux_side = _this->u_iface, .writeHandle = writeHandle, @@ -3793,179 +3775,179 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_F .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamWriteChunk( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamWriteChunk, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamClose_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamClose_params params = { .linux_side = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamClose( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamClose, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamCancel_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamCancel_params params = { .linux_side = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamCancel( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamCancel, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileExists(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileExists_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileExists_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileExists( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileExists, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FilePersisted(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FilePersisted_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FilePersisted_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FilePersisted( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FilePersisted, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileSize(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileSize_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileSize_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileSize( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileSize, ¶ms ); return params._ret; } int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileTimestamp(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileTimestamp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileTimestamp_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileTimestamp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileTimestamp, ¶ms ); return params._ret; } uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetSyncPlatforms_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetSyncPlatforms_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetSyncPlatforms( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetSyncPlatforms, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileCount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileCount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileCount( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileNameAndSize_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileNameAndSize_params params = { .linux_side = _this->u_iface, .iFile = iFile, .pnFileSizeInBytes = pnFileSizeInBytes, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileNameAndSize( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileNameAndSize, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetQuota_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetQuota_params params = { .linux_side = _this->u_iface, .pnTotalBytes = pnTotalBytes, .puAvailableBytes = puAvailableBytes, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetQuota( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetQuota, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForAccount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForAccount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForAccount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForAccount( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForAccount, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForApp(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForApp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForApp_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForApp, ¶ms ); return params._ret; } void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetCloudEnabledForApp(struct w_steam_iface *_this, bool bEnabled) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetCloudEnabledForApp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetCloudEnabledForApp_params params = { .linux_side = _this->u_iface, .bEnabled = bEnabled, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetCloudEnabledForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetCloudEnabledForApp, ¶ms ); } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCDownload(struct w_steam_iface *_this, uint64_t hContent) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCDownload_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCDownload_params params = { .linux_side = _this->u_iface, .hContent = hContent, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCDownload( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCDownload, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDownloadProgress_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDownloadProgress_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -3973,13 +3955,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_G .pnBytesExpected = pnBytesExpected, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDownloadProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDownloadProgress, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDetails_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -3989,13 +3971,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_G .pSteamIDOwner = pSteamIDOwner, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDetails, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCRead_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCRead_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -4004,36 +3986,36 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 .cOffset = cOffset, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCRead( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCRead, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCCount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCCount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCCount( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCHandle_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCHandle_params params = { .linux_side = _this->u_iface, .iCachedContent = iCachedContent, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCHandle, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishWorkshopFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishWorkshopFile_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -4048,7 +4030,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 params.pchFile = steamclient_dos_to_unix_path( pchFile, 0 ); params.pchPreviewFile = steamclient_dos_to_unix_path( pchPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishWorkshopFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishWorkshopFile, ¶ms ); steamclient_free_path( params.pchFile ); steamclient_free_path( params.pchPreviewFile ); return params._ret; @@ -4056,19 +4038,19 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CreatePublishedFileUpdateRequest(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CreatePublishedFileUpdateRequest_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CreatePublishedFileUpdateRequest_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CreatePublishedFileUpdateRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CreatePublishedFileUpdateRequest, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileFile_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, @@ -4076,14 +4058,14 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_U }; params.pchFile = steamclient_dos_to_unix_path( pchFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileFile, ¶ms ); steamclient_free_path( params.pchFile ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFilePreviewFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFilePreviewFile_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, @@ -4091,200 +4073,200 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_U }; params.pchPreviewFile = steamclient_dos_to_unix_path( pchPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFilePreviewFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFilePreviewFile, ¶ms ); steamclient_free_path( params.pchPreviewFile ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTitle_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTitle_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pchTitle = pchTitle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTitle( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTitle, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileDescription_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileDescription_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pchDescription = pchDescription, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileDescription, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileVisibility_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileVisibility_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .eVisibility = eVisibility, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileVisibility( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileVisibility, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTags_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTags_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTags( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTags, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CommitPublishedFileUpdate(struct w_steam_iface *_this, uint64_t updateHandle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CommitPublishedFileUpdate_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CommitPublishedFileUpdate_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CommitPublishedFileUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CommitPublishedFileUpdate, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedFileDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedFileDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedFileDetails_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedFileDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedFileDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_DeletePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_DeletePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_DeletePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_DeletePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_DeletePublishedFile, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserPublishedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserPublishedFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserPublishedFiles_params params = { .linux_side = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserPublishedFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserPublishedFiles, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SubscribePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SubscribePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SubscribePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SubscribePublishedFile, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSubscribedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSubscribedFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSubscribedFiles_params params = { .linux_side = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSubscribedFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSubscribedFiles, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UnsubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UnsubscribePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UnsubscribePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UnsubscribePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UnsubscribePublishedFile, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileSetChangeDescription_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileSetChangeDescription_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pchChangeDescription = pchChangeDescription, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileSetChangeDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileSetChangeDescription, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedItemVoteDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedItemVoteDetails_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedItemVoteDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedItemVoteDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, bool bVoteUp) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdateUserPublishedItemVote_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdateUserPublishedItemVote_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, .bVoteUp = bVoteUp, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdateUserPublishedItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdateUserPublishedItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUserPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUserPublishedItemVoteDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUserPublishedItemVoteDetails_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUserPublishedItemVoteDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUserPublishedItemVoteDetails, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSharedWorkshopFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSharedWorkshopFiles_params params = { .linux_side = _this->u_iface, .steamId = steamId, @@ -4293,13 +4275,13 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 .pExcludedTags = pExcludedTags, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSharedWorkshopFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSharedWorkshopFiles, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishVideo_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishVideo_params params = { .linux_side = _this->u_iface, .eVideoProvider = eVideoProvider, @@ -4314,40 +4296,40 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 }; params.pchPreviewFile = steamclient_dos_to_unix_path( pchPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishVideo, ¶ms ); steamclient_free_path( params.pchPreviewFile ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetUserPublishedFileAction(struct w_steam_iface *_this, uint64_t unPublishedFileId, uint32_t eAction) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetUserPublishedFileAction_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetUserPublishedFileAction_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, .eAction = eAction, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetUserPublishedFileAction( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetUserPublishedFileAction, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedFilesByUserAction(struct w_steam_iface *_this, uint32_t eAction, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedFilesByUserAction_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedFilesByUserAction_params params = { .linux_side = _this->u_iface, .eAction = eAction, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedFilesByUserAction( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedFilesByUserAction, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedWorkshopFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedWorkshopFiles_params params = { .linux_side = _this->u_iface, .eEnumerationType = eEnumerationType, @@ -4358,7 +4340,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 .pUserTags = pUserTags, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedWorkshopFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedWorkshopFiles, ¶ms ); return params._ret; } @@ -4431,8 +4413,6 @@ struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE return r; } -#include "cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010.h" - DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWrite, 16) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileRead, 16) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileForget, 8) @@ -4488,7 +4468,7 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWrite_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWrite_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -4496,13 +4476,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_F .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWrite( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWrite, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileRead(struct w_steam_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileRead_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileRead_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -4510,74 +4490,74 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 .cubDataToRead = cubDataToRead, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileRead( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileRead, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileForget(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileForget_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileForget_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileForget( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileForget, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileDelete(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileDelete_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileDelete_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileDelete( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileDelete, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileShare(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileShare_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileShare_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileShare( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileShare, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetSyncPlatforms_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetSyncPlatforms_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, .eRemoteStoragePlatform = eRemoteStoragePlatform, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetSyncPlatforms( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetSyncPlatforms, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamOpen(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamOpen_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamOpen_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamOpen( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamOpen, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamWriteChunk_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamWriteChunk_params params = { .linux_side = _this->u_iface, .writeHandle = writeHandle, @@ -4585,180 +4565,180 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_F .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamWriteChunk( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamWriteChunk, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamClose_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamClose_params params = { .linux_side = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamClose( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamClose, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamCancel_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamCancel_params params = { .linux_side = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamCancel( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamCancel, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileExists(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileExists_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileExists_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileExists( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileExists, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FilePersisted(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FilePersisted_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FilePersisted_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FilePersisted( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FilePersisted, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileSize(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileSize_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileSize_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileSize( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileSize, ¶ms ); return params._ret; } int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileTimestamp(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileTimestamp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileTimestamp_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileTimestamp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileTimestamp, ¶ms ); return params._ret; } uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetSyncPlatforms_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetSyncPlatforms_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetSyncPlatforms( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetSyncPlatforms, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileCount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileCount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileCount( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileNameAndSize_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileNameAndSize_params params = { .linux_side = _this->u_iface, .iFile = iFile, .pnFileSizeInBytes = pnFileSizeInBytes, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileNameAndSize( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileNameAndSize, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetQuota_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetQuota_params params = { .linux_side = _this->u_iface, .pnTotalBytes = pnTotalBytes, .puAvailableBytes = puAvailableBytes, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetQuota( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetQuota, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForAccount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForAccount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForAccount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForAccount( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForAccount, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForApp(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForApp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForApp_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForApp, ¶ms ); return params._ret; } void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetCloudEnabledForApp(struct w_steam_iface *_this, bool bEnabled) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetCloudEnabledForApp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetCloudEnabledForApp_params params = { .linux_side = _this->u_iface, .bEnabled = bEnabled, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetCloudEnabledForApp( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownload_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownload_params params = { .linux_side = _this->u_iface, .hContent = hContent, .unPriority = unPriority, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownload( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownload, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDownloadProgress_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDownloadProgress_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -4766,13 +4746,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_G .pnBytesExpected = pnBytesExpected, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDownloadProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDownloadProgress, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDetails_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -4782,13 +4762,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_G .pSteamIDOwner = pSteamIDOwner, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDetails, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCRead_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCRead_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -4797,36 +4777,36 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 .cOffset = cOffset, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCRead( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCRead, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCCount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCCount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCCount( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCHandle_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCHandle_params params = { .linux_side = _this->u_iface, .iCachedContent = iCachedContent, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCHandle, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishWorkshopFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishWorkshopFile_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -4841,7 +4821,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 params.pchFile = steamclient_dos_to_unix_path( pchFile, 0 ); params.pchPreviewFile = steamclient_dos_to_unix_path( pchPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishWorkshopFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishWorkshopFile, ¶ms ); steamclient_free_path( params.pchFile ); steamclient_free_path( params.pchPreviewFile ); return params._ret; @@ -4849,19 +4829,19 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CreatePublishedFileUpdateRequest(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CreatePublishedFileUpdateRequest_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CreatePublishedFileUpdateRequest_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CreatePublishedFileUpdateRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CreatePublishedFileUpdateRequest, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileFile_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, @@ -4869,14 +4849,14 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_U }; params.pchFile = steamclient_dos_to_unix_path( pchFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileFile, ¶ms ); steamclient_free_path( params.pchFile ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFilePreviewFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFilePreviewFile_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, @@ -4884,200 +4864,200 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_U }; params.pchPreviewFile = steamclient_dos_to_unix_path( pchPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFilePreviewFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFilePreviewFile, ¶ms ); steamclient_free_path( params.pchPreviewFile ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTitle_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTitle_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pchTitle = pchTitle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTitle( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTitle, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileDescription_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileDescription_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pchDescription = pchDescription, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileDescription, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileVisibility_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileVisibility_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .eVisibility = eVisibility, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileVisibility( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileVisibility, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTags_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTags_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTags( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTags, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CommitPublishedFileUpdate(struct w_steam_iface *_this, uint64_t updateHandle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CommitPublishedFileUpdate_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CommitPublishedFileUpdate_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CommitPublishedFileUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CommitPublishedFileUpdate, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedFileDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedFileDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedFileDetails_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedFileDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedFileDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_DeletePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_DeletePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_DeletePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_DeletePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_DeletePublishedFile, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserPublishedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserPublishedFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserPublishedFiles_params params = { .linux_side = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserPublishedFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserPublishedFiles, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SubscribePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SubscribePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SubscribePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SubscribePublishedFile, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSubscribedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSubscribedFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSubscribedFiles_params params = { .linux_side = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSubscribedFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSubscribedFiles, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UnsubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UnsubscribePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UnsubscribePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UnsubscribePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UnsubscribePublishedFile, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileSetChangeDescription_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileSetChangeDescription_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pchChangeDescription = pchChangeDescription, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileSetChangeDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileSetChangeDescription, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedItemVoteDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedItemVoteDetails_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedItemVoteDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedItemVoteDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, bool bVoteUp) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdateUserPublishedItemVote_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdateUserPublishedItemVote_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, .bVoteUp = bVoteUp, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdateUserPublishedItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdateUserPublishedItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUserPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUserPublishedItemVoteDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUserPublishedItemVoteDetails_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUserPublishedItemVoteDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUserPublishedItemVoteDetails, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSharedWorkshopFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSharedWorkshopFiles_params params = { .linux_side = _this->u_iface, .steamId = steamId, @@ -5086,13 +5066,13 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 .pExcludedTags = pExcludedTags, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSharedWorkshopFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSharedWorkshopFiles, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishVideo_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishVideo_params params = { .linux_side = _this->u_iface, .eVideoProvider = eVideoProvider, @@ -5107,40 +5087,40 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 }; params.pchPreviewFile = steamclient_dos_to_unix_path( pchPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishVideo, ¶ms ); steamclient_free_path( params.pchPreviewFile ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetUserPublishedFileAction(struct w_steam_iface *_this, uint64_t unPublishedFileId, uint32_t eAction) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetUserPublishedFileAction_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetUserPublishedFileAction_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, .eAction = eAction, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetUserPublishedFileAction( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetUserPublishedFileAction, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedFilesByUserAction(struct w_steam_iface *_this, uint32_t eAction, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedFilesByUserAction_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedFilesByUserAction_params params = { .linux_side = _this->u_iface, .eAction = eAction, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedFilesByUserAction( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedFilesByUserAction, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedWorkshopFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedWorkshopFiles_params params = { .linux_side = _this->u_iface, .eEnumerationType = eEnumerationType, @@ -5151,13 +5131,13 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 .pUserTags = pUserTags, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedWorkshopFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedWorkshopFiles, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownloadToLocation_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownloadToLocation_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -5166,7 +5146,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 }; params.pchLocation = steamclient_dos_to_unix_path( pchLocation, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownloadToLocation( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownloadToLocation, ¶ms ); steamclient_free_path( params.pchLocation ); return params._ret; } @@ -5241,8 +5221,6 @@ struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE return r; } -#include "cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011.h" - DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWrite, 16) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileRead, 16) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileForget, 8) @@ -5298,7 +5276,7 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWrite_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWrite_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -5306,13 +5284,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_F .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWrite( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWrite, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileRead(struct w_steam_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileRead_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileRead_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -5320,74 +5298,74 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 .cubDataToRead = cubDataToRead, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileRead( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileRead, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileForget(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileForget_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileForget_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileForget( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileForget, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileDelete(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileDelete_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileDelete_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileDelete( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileDelete, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileShare(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileShare_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileShare_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileShare( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileShare, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetSyncPlatforms_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetSyncPlatforms_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, .eRemoteStoragePlatform = eRemoteStoragePlatform, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetSyncPlatforms( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetSyncPlatforms, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamOpen(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamOpen_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamOpen_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamOpen( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamOpen, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamWriteChunk_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamWriteChunk_params params = { .linux_side = _this->u_iface, .writeHandle = writeHandle, @@ -5395,180 +5373,180 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_F .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamWriteChunk( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamWriteChunk, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamClose_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamClose_params params = { .linux_side = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamClose( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamClose, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamCancel_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamCancel_params params = { .linux_side = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamCancel( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamCancel, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileExists(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileExists_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileExists_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileExists( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileExists, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FilePersisted(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FilePersisted_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FilePersisted_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FilePersisted( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FilePersisted, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileSize(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileSize_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileSize_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileSize( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileSize, ¶ms ); return params._ret; } int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileTimestamp(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileTimestamp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileTimestamp_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileTimestamp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileTimestamp, ¶ms ); return params._ret; } uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetSyncPlatforms_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetSyncPlatforms_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetSyncPlatforms( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetSyncPlatforms, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileCount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileCount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileCount( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileNameAndSize_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileNameAndSize_params params = { .linux_side = _this->u_iface, .iFile = iFile, .pnFileSizeInBytes = pnFileSizeInBytes, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileNameAndSize( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileNameAndSize, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetQuota_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetQuota_params params = { .linux_side = _this->u_iface, .pnTotalBytes = pnTotalBytes, .puAvailableBytes = puAvailableBytes, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetQuota( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetQuota, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForAccount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForAccount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForAccount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForAccount( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForAccount, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForApp(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForApp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForApp_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForApp, ¶ms ); return params._ret; } void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetCloudEnabledForApp(struct w_steam_iface *_this, bool bEnabled) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetCloudEnabledForApp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetCloudEnabledForApp_params params = { .linux_side = _this->u_iface, .bEnabled = bEnabled, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetCloudEnabledForApp( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownload_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownload_params params = { .linux_side = _this->u_iface, .hContent = hContent, .unPriority = unPriority, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownload( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownload, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDownloadProgress_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDownloadProgress_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -5576,13 +5554,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_G .pnBytesExpected = pnBytesExpected, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDownloadProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDownloadProgress, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDetails_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -5592,13 +5570,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_G .pSteamIDOwner = pSteamIDOwner, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDetails, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCRead_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCRead_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -5607,36 +5585,36 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 .cOffset = cOffset, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCRead( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCRead, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCCount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCCount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCCount( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCHandle_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCHandle_params params = { .linux_side = _this->u_iface, .iCachedContent = iCachedContent, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCHandle, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishWorkshopFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishWorkshopFile_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -5651,7 +5629,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 params.pchFile = steamclient_dos_to_unix_path( pchFile, 0 ); params.pchPreviewFile = steamclient_dos_to_unix_path( pchPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishWorkshopFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishWorkshopFile, ¶ms ); steamclient_free_path( params.pchFile ); steamclient_free_path( params.pchPreviewFile ); return params._ret; @@ -5659,19 +5637,19 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CreatePublishedFileUpdateRequest(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CreatePublishedFileUpdateRequest_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CreatePublishedFileUpdateRequest_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CreatePublishedFileUpdateRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CreatePublishedFileUpdateRequest, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileFile_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, @@ -5679,14 +5657,14 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_U }; params.pchFile = steamclient_dos_to_unix_path( pchFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileFile, ¶ms ); steamclient_free_path( params.pchFile ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFilePreviewFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFilePreviewFile_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, @@ -5694,201 +5672,201 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_U }; params.pchPreviewFile = steamclient_dos_to_unix_path( pchPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFilePreviewFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFilePreviewFile, ¶ms ); steamclient_free_path( params.pchPreviewFile ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTitle_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTitle_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pchTitle = pchTitle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTitle( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTitle, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileDescription_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileDescription_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pchDescription = pchDescription, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileDescription, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileVisibility_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileVisibility_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .eVisibility = eVisibility, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileVisibility( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileVisibility, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTags_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTags_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTags( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTags, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CommitPublishedFileUpdate(struct w_steam_iface *_this, uint64_t updateHandle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CommitPublishedFileUpdate_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CommitPublishedFileUpdate_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CommitPublishedFileUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CommitPublishedFileUpdate, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedFileDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId, uint32_t unMaxSecondsOld) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedFileDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedFileDetails_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, .unMaxSecondsOld = unMaxSecondsOld, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedFileDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedFileDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_DeletePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_DeletePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_DeletePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_DeletePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_DeletePublishedFile, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserPublishedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserPublishedFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserPublishedFiles_params params = { .linux_side = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserPublishedFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserPublishedFiles, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SubscribePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SubscribePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SubscribePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SubscribePublishedFile, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSubscribedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSubscribedFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSubscribedFiles_params params = { .linux_side = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSubscribedFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSubscribedFiles, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UnsubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UnsubscribePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UnsubscribePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UnsubscribePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UnsubscribePublishedFile, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileSetChangeDescription_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileSetChangeDescription_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pchChangeDescription = pchChangeDescription, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileSetChangeDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileSetChangeDescription, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedItemVoteDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedItemVoteDetails_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedItemVoteDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedItemVoteDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, bool bVoteUp) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdateUserPublishedItemVote_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdateUserPublishedItemVote_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, .bVoteUp = bVoteUp, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdateUserPublishedItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdateUserPublishedItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUserPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUserPublishedItemVoteDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUserPublishedItemVoteDetails_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUserPublishedItemVoteDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUserPublishedItemVoteDetails, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSharedWorkshopFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSharedWorkshopFiles_params params = { .linux_side = _this->u_iface, .steamId = steamId, @@ -5897,13 +5875,13 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 .pExcludedTags = pExcludedTags, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSharedWorkshopFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSharedWorkshopFiles, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishVideo_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishVideo_params params = { .linux_side = _this->u_iface, .eVideoProvider = eVideoProvider, @@ -5918,40 +5896,40 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 }; params.pchPreviewFile = steamclient_dos_to_unix_path( pchPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishVideo, ¶ms ); steamclient_free_path( params.pchPreviewFile ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetUserPublishedFileAction(struct w_steam_iface *_this, uint64_t unPublishedFileId, uint32_t eAction) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetUserPublishedFileAction_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetUserPublishedFileAction_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, .eAction = eAction, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetUserPublishedFileAction( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetUserPublishedFileAction, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedFilesByUserAction(struct w_steam_iface *_this, uint32_t eAction, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedFilesByUserAction_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedFilesByUserAction_params params = { .linux_side = _this->u_iface, .eAction = eAction, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedFilesByUserAction( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedFilesByUserAction, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedWorkshopFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedWorkshopFiles_params params = { .linux_side = _this->u_iface, .eEnumerationType = eEnumerationType, @@ -5962,13 +5940,13 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 .pUserTags = pUserTags, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedWorkshopFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedWorkshopFiles, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownloadToLocation_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownloadToLocation_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -5977,7 +5955,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 }; params.pchLocation = steamclient_dos_to_unix_path( pchLocation, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownloadToLocation( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownloadToLocation, ¶ms ); steamclient_free_path( params.pchLocation ); return params._ret; } @@ -6052,8 +6030,6 @@ struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE return r; } -#include "cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012.h" - DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWrite, 16) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileRead, 16) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileForget, 8) @@ -6109,7 +6085,7 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWrite_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWrite_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -6117,13 +6093,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_F .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWrite( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWrite, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileRead(struct w_steam_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileRead_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileRead_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -6131,74 +6107,74 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 .cubDataToRead = cubDataToRead, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileRead( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileRead, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileForget(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileForget_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileForget_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileForget( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileForget, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileDelete(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileDelete_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileDelete_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileDelete( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileDelete, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileShare(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileShare_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileShare_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileShare( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileShare, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetSyncPlatforms_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetSyncPlatforms_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, .eRemoteStoragePlatform = eRemoteStoragePlatform, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetSyncPlatforms( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetSyncPlatforms, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamOpen(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamOpen_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamOpen_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamOpen( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamOpen, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamWriteChunk_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamWriteChunk_params params = { .linux_side = _this->u_iface, .writeHandle = writeHandle, @@ -6206,180 +6182,180 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_F .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamWriteChunk( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamWriteChunk, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamClose_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamClose_params params = { .linux_side = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamClose( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamClose, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamCancel_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamCancel_params params = { .linux_side = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamCancel( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamCancel, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileExists(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileExists_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileExists_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileExists( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileExists, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FilePersisted(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FilePersisted_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FilePersisted_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FilePersisted( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FilePersisted, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileSize(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileSize_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileSize_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileSize( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileSize, ¶ms ); return params._ret; } int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileTimestamp(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileTimestamp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileTimestamp_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileTimestamp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileTimestamp, ¶ms ); return params._ret; } uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetSyncPlatforms_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetSyncPlatforms_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetSyncPlatforms( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetSyncPlatforms, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileCount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileCount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileCount( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileNameAndSize_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileNameAndSize_params params = { .linux_side = _this->u_iface, .iFile = iFile, .pnFileSizeInBytes = pnFileSizeInBytes, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileNameAndSize( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileNameAndSize, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetQuota_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetQuota_params params = { .linux_side = _this->u_iface, .pnTotalBytes = pnTotalBytes, .puAvailableBytes = puAvailableBytes, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetQuota( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetQuota, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForAccount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForAccount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForAccount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForAccount( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForAccount, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForApp(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForApp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForApp_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForApp, ¶ms ); return params._ret; } void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetCloudEnabledForApp(struct w_steam_iface *_this, bool bEnabled) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetCloudEnabledForApp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetCloudEnabledForApp_params params = { .linux_side = _this->u_iface, .bEnabled = bEnabled, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetCloudEnabledForApp( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownload_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownload_params params = { .linux_side = _this->u_iface, .hContent = hContent, .unPriority = unPriority, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownload( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownload, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDownloadProgress_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDownloadProgress_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -6387,13 +6363,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_G .pnBytesExpected = pnBytesExpected, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDownloadProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDownloadProgress, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDetails_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -6403,13 +6379,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_G .pSteamIDOwner = pSteamIDOwner, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDetails, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCRead_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCRead_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -6419,36 +6395,36 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 .eAction = eAction, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCRead( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCRead, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCCount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCCount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCCount( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCHandle_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCHandle_params params = { .linux_side = _this->u_iface, .iCachedContent = iCachedContent, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCHandle, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishWorkshopFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishWorkshopFile_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -6463,7 +6439,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 params.pchFile = steamclient_dos_to_unix_path( pchFile, 0 ); params.pchPreviewFile = steamclient_dos_to_unix_path( pchPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishWorkshopFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishWorkshopFile, ¶ms ); steamclient_free_path( params.pchFile ); steamclient_free_path( params.pchPreviewFile ); return params._ret; @@ -6471,19 +6447,19 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CreatePublishedFileUpdateRequest(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CreatePublishedFileUpdateRequest_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CreatePublishedFileUpdateRequest_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CreatePublishedFileUpdateRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CreatePublishedFileUpdateRequest, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileFile_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, @@ -6491,14 +6467,14 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_U }; params.pchFile = steamclient_dos_to_unix_path( pchFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileFile, ¶ms ); steamclient_free_path( params.pchFile ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFilePreviewFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFilePreviewFile_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, @@ -6506,201 +6482,201 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_U }; params.pchPreviewFile = steamclient_dos_to_unix_path( pchPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFilePreviewFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFilePreviewFile, ¶ms ); steamclient_free_path( params.pchPreviewFile ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTitle_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTitle_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pchTitle = pchTitle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTitle( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTitle, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileDescription_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileDescription_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pchDescription = pchDescription, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileDescription, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileVisibility_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileVisibility_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .eVisibility = eVisibility, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileVisibility( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileVisibility, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTags_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTags_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTags( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTags, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CommitPublishedFileUpdate(struct w_steam_iface *_this, uint64_t updateHandle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CommitPublishedFileUpdate_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CommitPublishedFileUpdate_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CommitPublishedFileUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CommitPublishedFileUpdate, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedFileDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId, uint32_t unMaxSecondsOld) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedFileDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedFileDetails_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, .unMaxSecondsOld = unMaxSecondsOld, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedFileDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedFileDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_DeletePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_DeletePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_DeletePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_DeletePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_DeletePublishedFile, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserPublishedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserPublishedFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserPublishedFiles_params params = { .linux_side = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserPublishedFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserPublishedFiles, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SubscribePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SubscribePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SubscribePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SubscribePublishedFile, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSubscribedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSubscribedFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSubscribedFiles_params params = { .linux_side = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSubscribedFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSubscribedFiles, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UnsubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UnsubscribePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UnsubscribePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UnsubscribePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UnsubscribePublishedFile, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileSetChangeDescription_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileSetChangeDescription_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pchChangeDescription = pchChangeDescription, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileSetChangeDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileSetChangeDescription, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedItemVoteDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedItemVoteDetails_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedItemVoteDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedItemVoteDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, bool bVoteUp) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdateUserPublishedItemVote_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdateUserPublishedItemVote_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, .bVoteUp = bVoteUp, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdateUserPublishedItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdateUserPublishedItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUserPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUserPublishedItemVoteDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUserPublishedItemVoteDetails_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUserPublishedItemVoteDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUserPublishedItemVoteDetails, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSharedWorkshopFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSharedWorkshopFiles_params params = { .linux_side = _this->u_iface, .steamId = steamId, @@ -6709,13 +6685,13 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 .pExcludedTags = pExcludedTags, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSharedWorkshopFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSharedWorkshopFiles, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishVideo_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishVideo_params params = { .linux_side = _this->u_iface, .eVideoProvider = eVideoProvider, @@ -6730,40 +6706,40 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 }; params.pchPreviewFile = steamclient_dos_to_unix_path( pchPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishVideo, ¶ms ); steamclient_free_path( params.pchPreviewFile ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetUserPublishedFileAction(struct w_steam_iface *_this, uint64_t unPublishedFileId, uint32_t eAction) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetUserPublishedFileAction_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetUserPublishedFileAction_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, .eAction = eAction, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetUserPublishedFileAction( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetUserPublishedFileAction, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedFilesByUserAction(struct w_steam_iface *_this, uint32_t eAction, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedFilesByUserAction_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedFilesByUserAction_params params = { .linux_side = _this->u_iface, .eAction = eAction, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedFilesByUserAction( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedFilesByUserAction, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedWorkshopFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedWorkshopFiles_params params = { .linux_side = _this->u_iface, .eEnumerationType = eEnumerationType, @@ -6774,13 +6750,13 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 .pUserTags = pUserTags, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedWorkshopFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedWorkshopFiles, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownloadToLocation_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownloadToLocation_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -6789,7 +6765,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 }; params.pchLocation = steamclient_dos_to_unix_path( pchLocation, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownloadToLocation( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownloadToLocation, ¶ms ); steamclient_free_path( params.pchLocation ); return params._ret; } @@ -6864,8 +6840,6 @@ struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE return r; } -#include "cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013.h" - DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWrite, 16) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileRead, 16) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteAsync, 16) @@ -6924,7 +6898,7 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWrite_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWrite_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -6932,13 +6906,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_F .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWrite( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWrite, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileRead(struct w_steam_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileRead_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileRead_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -6946,13 +6920,13 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 .cubDataToRead = cubDataToRead, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileRead( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileRead, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteAsync_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteAsync_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -6960,13 +6934,13 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteAsync( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteAsync, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsync_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsync_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -6974,13 +6948,13 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 .cubToRead = cubToRead, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsync( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsync, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsyncComplete(struct w_steam_iface *_this, uint64_t hReadCall, void *pvBuffer, uint32_t cubToRead) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsyncComplete_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsyncComplete_params params = { .linux_side = _this->u_iface, .hReadCall = hReadCall, @@ -6988,74 +6962,74 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_F .cubToRead = cubToRead, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsyncComplete( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsyncComplete, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileForget(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileForget_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileForget_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileForget( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileForget, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileDelete(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileDelete_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileDelete_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileDelete( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileDelete, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileShare(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileShare_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileShare_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileShare( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileShare, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetSyncPlatforms_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetSyncPlatforms_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, .eRemoteStoragePlatform = eRemoteStoragePlatform, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetSyncPlatforms( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetSyncPlatforms, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamOpen(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamOpen_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamOpen_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamOpen( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamOpen, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamWriteChunk_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamWriteChunk_params params = { .linux_side = _this->u_iface, .writeHandle = writeHandle, @@ -7063,180 +7037,180 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_F .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamWriteChunk( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamWriteChunk, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamClose_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamClose_params params = { .linux_side = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamClose( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamClose, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamCancel_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamCancel_params params = { .linux_side = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamCancel( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamCancel, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileExists(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileExists_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileExists_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileExists( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileExists, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FilePersisted(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FilePersisted_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FilePersisted_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FilePersisted( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FilePersisted, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileSize(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileSize_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileSize_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileSize( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileSize, ¶ms ); return params._ret; } int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileTimestamp(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileTimestamp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileTimestamp_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileTimestamp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileTimestamp, ¶ms ); return params._ret; } uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetSyncPlatforms_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetSyncPlatforms_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetSyncPlatforms( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetSyncPlatforms, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileCount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileCount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileCount( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileNameAndSize_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileNameAndSize_params params = { .linux_side = _this->u_iface, .iFile = iFile, .pnFileSizeInBytes = pnFileSizeInBytes, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileNameAndSize( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileNameAndSize, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetQuota_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetQuota_params params = { .linux_side = _this->u_iface, .pnTotalBytes = pnTotalBytes, .puAvailableBytes = puAvailableBytes, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetQuota( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetQuota, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForAccount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForAccount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForAccount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForAccount( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForAccount, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForApp(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForApp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForApp_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForApp, ¶ms ); return params._ret; } void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetCloudEnabledForApp(struct w_steam_iface *_this, bool bEnabled) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetCloudEnabledForApp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetCloudEnabledForApp_params params = { .linux_side = _this->u_iface, .bEnabled = bEnabled, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetCloudEnabledForApp( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownload_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownload_params params = { .linux_side = _this->u_iface, .hContent = hContent, .unPriority = unPriority, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownload( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownload, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDownloadProgress_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDownloadProgress_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -7244,13 +7218,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_G .pnBytesExpected = pnBytesExpected, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDownloadProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDownloadProgress, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDetails_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -7260,13 +7234,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_G .pSteamIDOwner = pSteamIDOwner, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDetails, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCRead_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCRead_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -7276,36 +7250,36 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 .eAction = eAction, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCRead( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCRead, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCCount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCCount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCCount( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCHandle_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCHandle_params params = { .linux_side = _this->u_iface, .iCachedContent = iCachedContent, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCHandle, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishWorkshopFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishWorkshopFile_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -7320,7 +7294,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 params.pchFile = steamclient_dos_to_unix_path( pchFile, 0 ); params.pchPreviewFile = steamclient_dos_to_unix_path( pchPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishWorkshopFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishWorkshopFile, ¶ms ); steamclient_free_path( params.pchFile ); steamclient_free_path( params.pchPreviewFile ); return params._ret; @@ -7328,19 +7302,19 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CreatePublishedFileUpdateRequest(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CreatePublishedFileUpdateRequest_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CreatePublishedFileUpdateRequest_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CreatePublishedFileUpdateRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CreatePublishedFileUpdateRequest, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileFile_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, @@ -7348,14 +7322,14 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_U }; params.pchFile = steamclient_dos_to_unix_path( pchFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileFile, ¶ms ); steamclient_free_path( params.pchFile ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFilePreviewFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFilePreviewFile_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, @@ -7363,201 +7337,201 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_U }; params.pchPreviewFile = steamclient_dos_to_unix_path( pchPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFilePreviewFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFilePreviewFile, ¶ms ); steamclient_free_path( params.pchPreviewFile ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTitle_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTitle_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pchTitle = pchTitle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTitle( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTitle, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileDescription_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileDescription_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pchDescription = pchDescription, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileDescription, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileVisibility_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileVisibility_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .eVisibility = eVisibility, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileVisibility( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileVisibility, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTags_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTags_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTags( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTags, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CommitPublishedFileUpdate(struct w_steam_iface *_this, uint64_t updateHandle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CommitPublishedFileUpdate_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CommitPublishedFileUpdate_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CommitPublishedFileUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CommitPublishedFileUpdate, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedFileDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId, uint32_t unMaxSecondsOld) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedFileDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedFileDetails_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, .unMaxSecondsOld = unMaxSecondsOld, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedFileDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedFileDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_DeletePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_DeletePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_DeletePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_DeletePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_DeletePublishedFile, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserPublishedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserPublishedFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserPublishedFiles_params params = { .linux_side = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserPublishedFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserPublishedFiles, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SubscribePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SubscribePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SubscribePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SubscribePublishedFile, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSubscribedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSubscribedFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSubscribedFiles_params params = { .linux_side = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSubscribedFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSubscribedFiles, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UnsubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UnsubscribePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UnsubscribePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UnsubscribePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UnsubscribePublishedFile, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileSetChangeDescription_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileSetChangeDescription_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pchChangeDescription = pchChangeDescription, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileSetChangeDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileSetChangeDescription, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedItemVoteDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedItemVoteDetails_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedItemVoteDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedItemVoteDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, bool bVoteUp) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdateUserPublishedItemVote_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdateUserPublishedItemVote_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, .bVoteUp = bVoteUp, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdateUserPublishedItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdateUserPublishedItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUserPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUserPublishedItemVoteDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUserPublishedItemVoteDetails_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUserPublishedItemVoteDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUserPublishedItemVoteDetails, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSharedWorkshopFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSharedWorkshopFiles_params params = { .linux_side = _this->u_iface, .steamId = steamId, @@ -7566,13 +7540,13 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 .pExcludedTags = pExcludedTags, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSharedWorkshopFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSharedWorkshopFiles, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishVideo_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishVideo_params params = { .linux_side = _this->u_iface, .eVideoProvider = eVideoProvider, @@ -7587,40 +7561,40 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 }; params.pchPreviewFile = steamclient_dos_to_unix_path( pchPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishVideo, ¶ms ); steamclient_free_path( params.pchPreviewFile ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetUserPublishedFileAction(struct w_steam_iface *_this, uint64_t unPublishedFileId, uint32_t eAction) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetUserPublishedFileAction_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetUserPublishedFileAction_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, .eAction = eAction, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetUserPublishedFileAction( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetUserPublishedFileAction, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedFilesByUserAction(struct w_steam_iface *_this, uint32_t eAction, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedFilesByUserAction_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedFilesByUserAction_params params = { .linux_side = _this->u_iface, .eAction = eAction, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedFilesByUserAction( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedFilesByUserAction, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedWorkshopFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedWorkshopFiles_params params = { .linux_side = _this->u_iface, .eEnumerationType = eEnumerationType, @@ -7631,13 +7605,13 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 .pUserTags = pUserTags, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedWorkshopFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedWorkshopFiles, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownloadToLocation_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownloadToLocation_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -7646,7 +7620,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 }; params.pchLocation = steamclient_dos_to_unix_path( pchLocation, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownloadToLocation( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownloadToLocation, ¶ms ); steamclient_free_path( params.pchLocation ); return params._ret; } @@ -7724,8 +7698,6 @@ struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE return r; } -#include "cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014.h" - DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWrite, 16) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileRead, 16) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteAsync, 16) @@ -7784,7 +7756,7 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWrite_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWrite_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -7792,13 +7764,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_F .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWrite( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWrite, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileRead(struct w_steam_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileRead_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileRead_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -7806,13 +7778,13 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 .cubDataToRead = cubDataToRead, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileRead( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileRead, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteAsync_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteAsync_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -7820,13 +7792,13 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteAsync( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteAsync, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsync_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsync_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -7834,13 +7806,13 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 .cubToRead = cubToRead, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsync( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsync, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsyncComplete(struct w_steam_iface *_this, uint64_t hReadCall, void *pvBuffer, uint32_t cubToRead) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsyncComplete_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsyncComplete_params params = { .linux_side = _this->u_iface, .hReadCall = hReadCall, @@ -7848,74 +7820,74 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_F .cubToRead = cubToRead, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsyncComplete( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsyncComplete, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileForget(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileForget_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileForget_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileForget( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileForget, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileDelete(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileDelete_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileDelete_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileDelete( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileDelete, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileShare(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileShare_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileShare_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileShare( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileShare, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetSyncPlatforms_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetSyncPlatforms_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, .eRemoteStoragePlatform = eRemoteStoragePlatform, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetSyncPlatforms( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetSyncPlatforms, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamOpen(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamOpen_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamOpen_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamOpen( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamOpen, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamWriteChunk_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamWriteChunk_params params = { .linux_side = _this->u_iface, .writeHandle = writeHandle, @@ -7923,180 +7895,180 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_F .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamWriteChunk( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamWriteChunk, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamClose_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamClose_params params = { .linux_side = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamClose( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamClose, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamCancel_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamCancel_params params = { .linux_side = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamCancel( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamCancel, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileExists(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileExists_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileExists_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileExists( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileExists, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FilePersisted(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FilePersisted_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FilePersisted_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FilePersisted( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FilePersisted, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileSize(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileSize_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileSize_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileSize( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileSize, ¶ms ); return params._ret; } int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileTimestamp(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileTimestamp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileTimestamp_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileTimestamp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileTimestamp, ¶ms ); return params._ret; } uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetSyncPlatforms_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetSyncPlatforms_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetSyncPlatforms( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetSyncPlatforms, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileCount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileCount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileCount( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileNameAndSize_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileNameAndSize_params params = { .linux_side = _this->u_iface, .iFile = iFile, .pnFileSizeInBytes = pnFileSizeInBytes, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileNameAndSize( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileNameAndSize, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetQuota(struct w_steam_iface *_this, uint64_t *pnTotalBytes, uint64_t *puAvailableBytes) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetQuota_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetQuota_params params = { .linux_side = _this->u_iface, .pnTotalBytes = pnTotalBytes, .puAvailableBytes = puAvailableBytes, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetQuota( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetQuota, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForAccount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForAccount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForAccount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForAccount( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForAccount, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForApp(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForApp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForApp_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForApp, ¶ms ); return params._ret; } void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetCloudEnabledForApp(struct w_steam_iface *_this, bool bEnabled) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetCloudEnabledForApp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetCloudEnabledForApp_params params = { .linux_side = _this->u_iface, .bEnabled = bEnabled, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetCloudEnabledForApp( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownload_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownload_params params = { .linux_side = _this->u_iface, .hContent = hContent, .unPriority = unPriority, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownload( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownload, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDownloadProgress_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDownloadProgress_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -8104,13 +8076,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_G .pnBytesExpected = pnBytesExpected, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDownloadProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDownloadProgress, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDetails_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -8120,13 +8092,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_G .pSteamIDOwner = pSteamIDOwner, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDetails, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCRead_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCRead_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -8136,36 +8108,36 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 .eAction = eAction, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCRead( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCRead, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCCount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCCount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCCount( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCHandle_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCHandle_params params = { .linux_side = _this->u_iface, .iCachedContent = iCachedContent, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCHandle, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishWorkshopFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishWorkshopFile_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -8180,7 +8152,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 params.pchFile = steamclient_dos_to_unix_path( pchFile, 0 ); params.pchPreviewFile = steamclient_dos_to_unix_path( pchPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishWorkshopFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishWorkshopFile, ¶ms ); steamclient_free_path( params.pchFile ); steamclient_free_path( params.pchPreviewFile ); return params._ret; @@ -8188,19 +8160,19 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CreatePublishedFileUpdateRequest(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CreatePublishedFileUpdateRequest_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CreatePublishedFileUpdateRequest_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CreatePublishedFileUpdateRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CreatePublishedFileUpdateRequest, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileFile_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, @@ -8208,14 +8180,14 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_U }; params.pchFile = steamclient_dos_to_unix_path( pchFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileFile, ¶ms ); steamclient_free_path( params.pchFile ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFilePreviewFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFilePreviewFile_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, @@ -8223,201 +8195,201 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_U }; params.pchPreviewFile = steamclient_dos_to_unix_path( pchPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFilePreviewFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFilePreviewFile, ¶ms ); steamclient_free_path( params.pchPreviewFile ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTitle_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTitle_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pchTitle = pchTitle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTitle( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTitle, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileDescription_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileDescription_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pchDescription = pchDescription, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileDescription, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileVisibility_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileVisibility_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .eVisibility = eVisibility, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileVisibility( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileVisibility, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTags_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTags_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTags( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTags, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CommitPublishedFileUpdate(struct w_steam_iface *_this, uint64_t updateHandle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CommitPublishedFileUpdate_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CommitPublishedFileUpdate_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CommitPublishedFileUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CommitPublishedFileUpdate, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedFileDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId, uint32_t unMaxSecondsOld) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedFileDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedFileDetails_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, .unMaxSecondsOld = unMaxSecondsOld, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedFileDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedFileDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_DeletePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_DeletePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_DeletePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_DeletePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_DeletePublishedFile, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserPublishedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserPublishedFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserPublishedFiles_params params = { .linux_side = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserPublishedFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserPublishedFiles, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SubscribePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SubscribePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SubscribePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SubscribePublishedFile, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSubscribedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSubscribedFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSubscribedFiles_params params = { .linux_side = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSubscribedFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSubscribedFiles, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UnsubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UnsubscribePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UnsubscribePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UnsubscribePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UnsubscribePublishedFile, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileSetChangeDescription_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileSetChangeDescription_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pchChangeDescription = pchChangeDescription, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileSetChangeDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileSetChangeDescription, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedItemVoteDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedItemVoteDetails_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedItemVoteDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedItemVoteDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, bool bVoteUp) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdateUserPublishedItemVote_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdateUserPublishedItemVote_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, .bVoteUp = bVoteUp, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdateUserPublishedItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdateUserPublishedItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUserPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUserPublishedItemVoteDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUserPublishedItemVoteDetails_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUserPublishedItemVoteDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUserPublishedItemVoteDetails, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSharedWorkshopFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSharedWorkshopFiles_params params = { .linux_side = _this->u_iface, .steamId = steamId, @@ -8426,13 +8398,13 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 .pExcludedTags = pExcludedTags, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSharedWorkshopFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSharedWorkshopFiles, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishVideo_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishVideo_params params = { .linux_side = _this->u_iface, .eVideoProvider = eVideoProvider, @@ -8447,40 +8419,40 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 }; params.pchPreviewFile = steamclient_dos_to_unix_path( pchPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishVideo, ¶ms ); steamclient_free_path( params.pchPreviewFile ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetUserPublishedFileAction(struct w_steam_iface *_this, uint64_t unPublishedFileId, uint32_t eAction) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetUserPublishedFileAction_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetUserPublishedFileAction_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, .eAction = eAction, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetUserPublishedFileAction( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetUserPublishedFileAction, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedFilesByUserAction(struct w_steam_iface *_this, uint32_t eAction, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedFilesByUserAction_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedFilesByUserAction_params params = { .linux_side = _this->u_iface, .eAction = eAction, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedFilesByUserAction( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedFilesByUserAction, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedWorkshopFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedWorkshopFiles_params params = { .linux_side = _this->u_iface, .eEnumerationType = eEnumerationType, @@ -8491,13 +8463,13 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 .pUserTags = pUserTags, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedWorkshopFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedWorkshopFiles, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownloadToLocation_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownloadToLocation_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -8506,7 +8478,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 }; params.pchLocation = steamclient_dos_to_unix_path( pchLocation, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownloadToLocation( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownloadToLocation, ¶ms ); steamclient_free_path( params.pchLocation ); return params._ret; } @@ -8584,8 +8556,6 @@ struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE return r; } -#include "cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016.h" - DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWrite, 16) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileRead, 16) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteAsync, 16) @@ -8648,7 +8618,7 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWrite_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWrite_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -8656,13 +8626,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_F .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWrite( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWrite, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileRead(struct w_steam_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileRead_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileRead_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -8670,13 +8640,13 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 .cubDataToRead = cubDataToRead, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileRead( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileRead, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteAsync_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteAsync_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -8684,13 +8654,13 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteAsync( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteAsync, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsync_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsync_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -8698,13 +8668,13 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 .cubToRead = cubToRead, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsync( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsync, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsyncComplete(struct w_steam_iface *_this, uint64_t hReadCall, void *pvBuffer, uint32_t cubToRead) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsyncComplete_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsyncComplete_params params = { .linux_side = _this->u_iface, .hReadCall = hReadCall, @@ -8712,74 +8682,74 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_F .cubToRead = cubToRead, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsyncComplete( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsyncComplete, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileForget(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileForget_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileForget_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileForget( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileForget, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileDelete(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileDelete_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileDelete_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileDelete( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileDelete, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileShare(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileShare_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileShare_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileShare( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileShare, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetSyncPlatforms_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetSyncPlatforms_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, .eRemoteStoragePlatform = eRemoteStoragePlatform, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetSyncPlatforms( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetSyncPlatforms, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamOpen(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamOpen_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamOpen_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamOpen( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamOpen, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamWriteChunk_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamWriteChunk_params params = { .linux_side = _this->u_iface, .writeHandle = writeHandle, @@ -8787,180 +8757,180 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_F .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamWriteChunk( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamWriteChunk, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamClose_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamClose_params params = { .linux_side = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamClose( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamClose, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamCancel_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamCancel_params params = { .linux_side = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamCancel( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamCancel, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileExists(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileExists_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileExists_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileExists( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileExists, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FilePersisted(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FilePersisted_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FilePersisted_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FilePersisted( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FilePersisted, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileSize(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileSize_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileSize_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileSize( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileSize, ¶ms ); return params._ret; } int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileTimestamp(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileTimestamp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileTimestamp_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileTimestamp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileTimestamp, ¶ms ); return params._ret; } uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetSyncPlatforms_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetSyncPlatforms_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetSyncPlatforms( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetSyncPlatforms, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileCount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileCount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileCount( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileNameAndSize_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileNameAndSize_params params = { .linux_side = _this->u_iface, .iFile = iFile, .pnFileSizeInBytes = pnFileSizeInBytes, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileNameAndSize( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileNameAndSize, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetQuota(struct w_steam_iface *_this, uint64_t *pnTotalBytes, uint64_t *puAvailableBytes) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetQuota_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetQuota_params params = { .linux_side = _this->u_iface, .pnTotalBytes = pnTotalBytes, .puAvailableBytes = puAvailableBytes, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetQuota( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetQuota, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForAccount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForAccount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForAccount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForAccount( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForAccount, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForApp(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForApp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForApp_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForApp, ¶ms ); return params._ret; } void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetCloudEnabledForApp(struct w_steam_iface *_this, bool bEnabled) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetCloudEnabledForApp_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetCloudEnabledForApp_params params = { .linux_side = _this->u_iface, .bEnabled = bEnabled, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetCloudEnabledForApp( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownload_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownload_params params = { .linux_side = _this->u_iface, .hContent = hContent, .unPriority = unPriority, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownload( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownload, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDownloadProgress_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDownloadProgress_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -8968,13 +8938,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_G .pnBytesExpected = pnBytesExpected, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDownloadProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDownloadProgress, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDetails_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -8984,13 +8954,13 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_G .pSteamIDOwner = pSteamIDOwner, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDetails, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCRead_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCRead_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -9000,36 +8970,36 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 .eAction = eAction, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCRead( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCRead, ¶ms ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCCount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCCount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCCount( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCHandle_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCHandle_params params = { .linux_side = _this->u_iface, .iCachedContent = iCachedContent, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCHandle( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCHandle, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishWorkshopFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishWorkshopFile_params params = { .linux_side = _this->u_iface, .pchFile = pchFile, @@ -9044,7 +9014,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 params.pchFile = steamclient_dos_to_unix_path( pchFile, 0 ); params.pchPreviewFile = steamclient_dos_to_unix_path( pchPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishWorkshopFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishWorkshopFile, ¶ms ); steamclient_free_path( params.pchFile ); steamclient_free_path( params.pchPreviewFile ); return params._ret; @@ -9052,19 +9022,19 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CreatePublishedFileUpdateRequest(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CreatePublishedFileUpdateRequest_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CreatePublishedFileUpdateRequest_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CreatePublishedFileUpdateRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CreatePublishedFileUpdateRequest, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileFile_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, @@ -9072,14 +9042,14 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_U }; params.pchFile = steamclient_dos_to_unix_path( pchFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileFile, ¶ms ); steamclient_free_path( params.pchFile ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFilePreviewFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFilePreviewFile_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, @@ -9087,201 +9057,201 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_U }; params.pchPreviewFile = steamclient_dos_to_unix_path( pchPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFilePreviewFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFilePreviewFile, ¶ms ); steamclient_free_path( params.pchPreviewFile ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTitle_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTitle_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pchTitle = pchTitle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTitle( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTitle, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileDescription_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileDescription_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pchDescription = pchDescription, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileDescription, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileVisibility_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileVisibility_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .eVisibility = eVisibility, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileVisibility( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileVisibility, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTags_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTags_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTags( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTags, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CommitPublishedFileUpdate(struct w_steam_iface *_this, uint64_t updateHandle) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CommitPublishedFileUpdate_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CommitPublishedFileUpdate_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CommitPublishedFileUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CommitPublishedFileUpdate, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedFileDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId, uint32_t unMaxSecondsOld) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedFileDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedFileDetails_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, .unMaxSecondsOld = unMaxSecondsOld, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedFileDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedFileDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_DeletePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_DeletePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_DeletePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_DeletePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_DeletePublishedFile, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserPublishedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserPublishedFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserPublishedFiles_params params = { .linux_side = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserPublishedFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserPublishedFiles, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SubscribePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SubscribePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SubscribePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SubscribePublishedFile, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSubscribedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSubscribedFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSubscribedFiles_params params = { .linux_side = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSubscribedFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSubscribedFiles, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UnsubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UnsubscribePublishedFile_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UnsubscribePublishedFile_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UnsubscribePublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UnsubscribePublishedFile, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileSetChangeDescription_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileSetChangeDescription_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pchChangeDescription = pchChangeDescription, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileSetChangeDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileSetChangeDescription, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedItemVoteDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedItemVoteDetails_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedItemVoteDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedItemVoteDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, bool bVoteUp) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdateUserPublishedItemVote_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdateUserPublishedItemVote_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, .bVoteUp = bVoteUp, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdateUserPublishedItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdateUserPublishedItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUserPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUserPublishedItemVoteDetails_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUserPublishedItemVoteDetails_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUserPublishedItemVoteDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUserPublishedItemVoteDetails, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSharedWorkshopFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSharedWorkshopFiles_params params = { .linux_side = _this->u_iface, .steamId = steamId, @@ -9290,13 +9260,13 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 .pExcludedTags = pExcludedTags, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSharedWorkshopFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSharedWorkshopFiles, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishVideo_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishVideo_params params = { .linux_side = _this->u_iface, .eVideoProvider = eVideoProvider, @@ -9311,40 +9281,40 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 }; params.pchPreviewFile = steamclient_dos_to_unix_path( pchPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishVideo, ¶ms ); steamclient_free_path( params.pchPreviewFile ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetUserPublishedFileAction(struct w_steam_iface *_this, uint64_t unPublishedFileId, uint32_t eAction) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetUserPublishedFileAction_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetUserPublishedFileAction_params params = { .linux_side = _this->u_iface, .unPublishedFileId = unPublishedFileId, .eAction = eAction, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetUserPublishedFileAction( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetUserPublishedFileAction, ¶ms ); return params._ret; } uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedFilesByUserAction(struct w_steam_iface *_this, uint32_t eAction, uint32_t unStartIndex) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedFilesByUserAction_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedFilesByUserAction_params params = { .linux_side = _this->u_iface, .eAction = eAction, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedFilesByUserAction( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedFilesByUserAction, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedWorkshopFiles_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedWorkshopFiles_params params = { .linux_side = _this->u_iface, .eEnumerationType = eEnumerationType, @@ -9355,13 +9325,13 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 .pUserTags = pUserTags, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedWorkshopFiles( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedWorkshopFiles, ¶ms ); 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownloadToLocation_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownloadToLocation_params params = { .linux_side = _this->u_iface, .hContent = hContent, @@ -9370,25 +9340,25 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 }; params.pchLocation = steamclient_dos_to_unix_path( pchLocation, 0 ); TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownloadToLocation( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownloadToLocation, ¶ms ); steamclient_free_path( params.pchLocation ); return params._ret; } int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChangeCount(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChangeCount_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChangeCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChangeCount( ¶ms ); + 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) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChange_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChange_params params = { .linux_side = _this->u_iface, .iFile = iFile, @@ -9396,29 +9366,29 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS .pEFilePathType = pEFilePathType, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChange( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChange, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_BeginFileWriteBatch(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_BeginFileWriteBatch_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_BeginFileWriteBatch_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_BeginFileWriteBatch( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_BeginFileWriteBatch, ¶ms ); return params._ret; } bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EndFileWriteBatch(struct w_steam_iface *_this) { - struct cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EndFileWriteBatch_params params = + struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EndFileWriteBatch_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EndFileWriteBatch( ¶ms ); + STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EndFileWriteBatch, ¶ms ); return params._ret; } diff --git a/lsteamclient/winISteamScreenshots.c b/lsteamclient/winISteamScreenshots.c index cfab97df..c57956d6 100644 --- a/lsteamclient/winISteamScreenshots.c +++ b/lsteamclient/winISteamScreenshots.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001.h" - DEFINE_THISCALL_WRAPPER(winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_WriteScreenshot, 20) DEFINE_THISCALL_WRAPPER(winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_AddScreenshotToLibrary, 20) DEFINE_THISCALL_WRAPPER(winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TriggerScreenshot, 4) @@ -14,7 +12,7 @@ DEFINE_THISCALL_WRAPPER(winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION0 uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_WriteScreenshot(struct w_steam_iface *_this, void *pubRGB, uint32_t cubRGB, int32_t nWidth, int32_t nHeight) { - struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_WriteScreenshot_params params = + struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_WriteScreenshot_params params = { .linux_side = _this->u_iface, .pubRGB = pubRGB, @@ -23,13 +21,13 @@ uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_W .nHeight = nHeight, }; TRACE("%p\n", _this); - cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_WriteScreenshot( ¶ms ); + STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_WriteScreenshot, ¶ms ); 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) { - struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_AddScreenshotToLibrary_params params = + struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_AddScreenshotToLibrary_params params = { .linux_side = _this->u_iface, .pchFilename = pchFilename, @@ -40,7 +38,7 @@ uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_A params.pchFilename = steamclient_dos_to_unix_path( pchFilename, 0 ); params.pchThumbnailFilename = steamclient_dos_to_unix_path( pchThumbnailFilename, 0 ); TRACE("%p\n", _this); - cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_AddScreenshotToLibrary( ¶ms ); + STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_AddScreenshotToLibrary, ¶ms ); steamclient_free_path( params.pchFilename ); steamclient_free_path( params.pchThumbnailFilename ); return params._ret; @@ -48,48 +46,48 @@ uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_A void __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TriggerScreenshot(struct w_steam_iface *_this) { - struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TriggerScreenshot_params params = + struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TriggerScreenshot_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TriggerScreenshot( ¶ms ); + STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TriggerScreenshot, ¶ms ); } void __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_HookScreenshots(struct w_steam_iface *_this, bool bHook) { - struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_HookScreenshots_params params = + struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_HookScreenshots_params params = { .linux_side = _this->u_iface, .bHook = bHook, }; TRACE("%p\n", _this); - cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_HookScreenshots( ¶ms ); + STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_HookScreenshots, ¶ms ); } bool __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLocation(struct w_steam_iface *_this, uint32_t hScreenshot, const char *pchLocation) { - struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLocation_params params = + struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLocation_params params = { .linux_side = _this->u_iface, .hScreenshot = hScreenshot, .pchLocation = pchLocation, }; TRACE("%p\n", _this); - cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLocation( ¶ms ); + STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLocation, ¶ms ); return params._ret; } bool __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TagUser(struct w_steam_iface *_this, uint32_t hScreenshot, CSteamID steamID) { - struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TagUser_params params = + struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TagUser_params params = { .linux_side = _this->u_iface, .hScreenshot = hScreenshot, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TagUser( ¶ms ); + STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TagUser, ¶ms ); return params._ret; } @@ -117,8 +115,6 @@ struct w_steam_iface *create_winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VER return r; } -#include "cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002.h" - DEFINE_THISCALL_WRAPPER(winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_WriteScreenshot, 20) DEFINE_THISCALL_WRAPPER(winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_AddScreenshotToLibrary, 20) DEFINE_THISCALL_WRAPPER(winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TriggerScreenshot, 4) @@ -129,7 +125,7 @@ DEFINE_THISCALL_WRAPPER(winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION0 uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_WriteScreenshot(struct w_steam_iface *_this, void *pubRGB, uint32_t cubRGB, int32_t nWidth, int32_t nHeight) { - struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_WriteScreenshot_params params = + struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_WriteScreenshot_params params = { .linux_side = _this->u_iface, .pubRGB = pubRGB, @@ -138,13 +134,13 @@ uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_W .nHeight = nHeight, }; TRACE("%p\n", _this); - cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_WriteScreenshot( ¶ms ); + STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_WriteScreenshot, ¶ms ); 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) { - struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_AddScreenshotToLibrary_params params = + struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_AddScreenshotToLibrary_params params = { .linux_side = _this->u_iface, .pchFilename = pchFilename, @@ -155,7 +151,7 @@ uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_A params.pchFilename = steamclient_dos_to_unix_path( pchFilename, 0 ); params.pchThumbnailFilename = steamclient_dos_to_unix_path( pchThumbnailFilename, 0 ); TRACE("%p\n", _this); - cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_AddScreenshotToLibrary( ¶ms ); + STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_AddScreenshotToLibrary, ¶ms ); steamclient_free_path( params.pchFilename ); steamclient_free_path( params.pchThumbnailFilename ); return params._ret; @@ -163,61 +159,61 @@ uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_A void __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TriggerScreenshot(struct w_steam_iface *_this) { - struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TriggerScreenshot_params params = + struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TriggerScreenshot_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TriggerScreenshot( ¶ms ); + STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TriggerScreenshot, ¶ms ); } void __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_HookScreenshots(struct w_steam_iface *_this, bool bHook) { - struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_HookScreenshots_params params = + struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_HookScreenshots_params params = { .linux_side = _this->u_iface, .bHook = bHook, }; TRACE("%p\n", _this); - cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_HookScreenshots( ¶ms ); + STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_HookScreenshots, ¶ms ); } bool __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_SetLocation(struct w_steam_iface *_this, uint32_t hScreenshot, const char *pchLocation) { - struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_SetLocation_params params = + struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_SetLocation_params params = { .linux_side = _this->u_iface, .hScreenshot = hScreenshot, .pchLocation = pchLocation, }; TRACE("%p\n", _this); - cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_SetLocation( ¶ms ); + STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_SetLocation, ¶ms ); return params._ret; } bool __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUser(struct w_steam_iface *_this, uint32_t hScreenshot, CSteamID steamID) { - struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUser_params params = + struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUser_params params = { .linux_side = _this->u_iface, .hScreenshot = hScreenshot, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUser( ¶ms ); + STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUser, ¶ms ); return params._ret; } bool __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagPublishedFile(struct w_steam_iface *_this, uint32_t hScreenshot, uint64_t unPublishedFileID) { - struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagPublishedFile_params params = + struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagPublishedFile_params params = { .linux_side = _this->u_iface, .hScreenshot = hScreenshot, .unPublishedFileID = unPublishedFileID, }; TRACE("%p\n", _this); - cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagPublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagPublishedFile, ¶ms ); return params._ret; } @@ -246,8 +242,6 @@ struct w_steam_iface *create_winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VER return r; } -#include "cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003.h" - DEFINE_THISCALL_WRAPPER(winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_WriteScreenshot, 20) DEFINE_THISCALL_WRAPPER(winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddScreenshotToLibrary, 20) DEFINE_THISCALL_WRAPPER(winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TriggerScreenshot, 4) @@ -260,7 +254,7 @@ DEFINE_THISCALL_WRAPPER(winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION0 uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_WriteScreenshot(struct w_steam_iface *_this, void *pubRGB, uint32_t cubRGB, int32_t nWidth, int32_t nHeight) { - struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_WriteScreenshot_params params = + struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_WriteScreenshot_params params = { .linux_side = _this->u_iface, .pubRGB = pubRGB, @@ -269,13 +263,13 @@ uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_W .nHeight = nHeight, }; TRACE("%p\n", _this); - cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_WriteScreenshot( ¶ms ); + STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_WriteScreenshot, ¶ms ); 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) { - struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddScreenshotToLibrary_params params = + struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddScreenshotToLibrary_params params = { .linux_side = _this->u_iface, .pchFilename = pchFilename, @@ -286,7 +280,7 @@ uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_A params.pchFilename = steamclient_dos_to_unix_path( pchFilename, 0 ); params.pchThumbnailFilename = steamclient_dos_to_unix_path( pchThumbnailFilename, 0 ); TRACE("%p\n", _this); - cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddScreenshotToLibrary( ¶ms ); + STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddScreenshotToLibrary, ¶ms ); steamclient_free_path( params.pchFilename ); steamclient_free_path( params.pchThumbnailFilename ); return params._ret; @@ -294,78 +288,78 @@ uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_A void __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TriggerScreenshot(struct w_steam_iface *_this) { - struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TriggerScreenshot_params params = + struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TriggerScreenshot_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TriggerScreenshot( ¶ms ); + STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TriggerScreenshot, ¶ms ); } void __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_HookScreenshots(struct w_steam_iface *_this, bool bHook) { - struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_HookScreenshots_params params = + struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_HookScreenshots_params params = { .linux_side = _this->u_iface, .bHook = bHook, }; TRACE("%p\n", _this); - cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_HookScreenshots( ¶ms ); + STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_HookScreenshots, ¶ms ); } bool __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_SetLocation(struct w_steam_iface *_this, uint32_t hScreenshot, const char *pchLocation) { - struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_SetLocation_params params = + struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_SetLocation_params params = { .linux_side = _this->u_iface, .hScreenshot = hScreenshot, .pchLocation = pchLocation, }; TRACE("%p\n", _this); - cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_SetLocation( ¶ms ); + STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_SetLocation, ¶ms ); return params._ret; } bool __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagUser(struct w_steam_iface *_this, uint32_t hScreenshot, CSteamID steamID) { - struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagUser_params params = + struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagUser_params params = { .linux_side = _this->u_iface, .hScreenshot = hScreenshot, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagUser( ¶ms ); + STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagUser, ¶ms ); return params._ret; } bool __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagPublishedFile(struct w_steam_iface *_this, uint32_t hScreenshot, uint64_t unPublishedFileID) { - struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagPublishedFile_params params = + struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagPublishedFile_params params = { .linux_side = _this->u_iface, .hScreenshot = hScreenshot, .unPublishedFileID = unPublishedFileID, }; TRACE("%p\n", _this); - cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagPublishedFile( ¶ms ); + STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagPublishedFile, ¶ms ); return params._ret; } bool __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_IsScreenshotsHooked(struct w_steam_iface *_this) { - struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_IsScreenshotsHooked_params params = + struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_IsScreenshotsHooked_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_IsScreenshotsHooked( ¶ms ); + 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) { - struct cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddVRScreenshotToLibrary_params params = + struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddVRScreenshotToLibrary_params params = { .linux_side = _this->u_iface, .eType = eType, @@ -375,7 +369,7 @@ uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_A params.pchFilename = steamclient_dos_to_unix_path( pchFilename, 0 ); params.pchVRFilename = steamclient_dos_to_unix_path( pchVRFilename, 0 ); TRACE("%p\n", _this); - cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddVRScreenshotToLibrary( ¶ms ); + STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddVRScreenshotToLibrary, ¶ms ); steamclient_free_path( params.pchFilename ); steamclient_free_path( params.pchVRFilename ); return params._ret; diff --git a/lsteamclient/winISteamUGC.c b/lsteamclient/winISteamUGC.c index 126c5e16..9abd7fcc 100644 --- a/lsteamclient/winISteamUGC.c +++ b/lsteamclient/winISteamUGC.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION001.h" - DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryUserUGCRequest, 32) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryAllUGCRequest, 24) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SendQueryUGCRequest, 12) @@ -22,7 +20,7 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION001_RequestUGCDet 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryUserUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryUserUGCRequest_params params = { .linux_side = _this->u_iface, .unAccountID = unAccountID, @@ -34,13 +32,13 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryUserUG .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryUserUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryUserUGCRequest, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryAllUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryAllUGCRequest_params params = { .linux_side = _this->u_iface, .eQueryType = eQueryType, @@ -50,25 +48,25 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryAllUGC .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryAllUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryAllUGCRequest, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SendQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SendQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SendQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SendQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_126 *pDetails) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -76,135 +74,135 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult(str .pDetails = pDetails, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_ReleaseQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_ReleaseQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_ReleaseQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION001_ReleaseQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnLongDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnLongDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnLongDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnLongDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnTotalOnly_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnTotalOnly_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnTotalOnly( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnTotalOnly, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFilter_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFilter_params params = { .linux_side = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFilter, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetMatchAnyTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetMatchAnyTag_params params = { .linux_side = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetMatchAnyTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetMatchAnyTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText_params params = { .linux_side = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetRankedByTrendDays_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetRankedByTrendDays_params params = { .linux_side = _this->u_iface, .handle = handle, .unDays = unDays, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetRankedByTrendDays( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetRankedByTrendDays, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_RequestUGCDetails_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_RequestUGCDetails_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION001_RequestUGCDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION001_RequestUGCDetails, ¶ms ); return params._ret; } @@ -240,8 +238,6 @@ struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION001(void *u_ return r; } -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION002.h" - DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryUserUGCRequest, 32) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryAllUGCRequest, 24) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SendQueryUGCRequest, 12) @@ -276,7 +272,7 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdate 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryUserUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryUserUGCRequest_params params = { .linux_side = _this->u_iface, .unAccountID = unAccountID, @@ -288,13 +284,13 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryUserUG .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryUserUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryUserUGCRequest, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryAllUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryAllUGCRequest_params params = { .linux_side = _this->u_iface, .eQueryType = eQueryType, @@ -304,25 +300,25 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryAllUGC .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryAllUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryAllUGCRequest, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SendQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SendQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SendQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SendQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -330,233 +326,233 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult(str .pDetails = pDetails, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_ReleaseQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_ReleaseQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_ReleaseQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION002_ReleaseQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnLongDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnLongDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnLongDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnLongDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnTotalOnly_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnTotalOnly_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnTotalOnly( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnTotalOnly, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedResponse_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedResponse_params params = { .linux_side = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedResponse( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedResponse, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFilter_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFilter_params params = { .linux_side = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFilter, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetMatchAnyTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetMatchAnyTag_params params = { .linux_side = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetMatchAnyTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetMatchAnyTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText_params params = { .linux_side = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetRankedByTrendDays_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetRankedByTrendDays_params params = { .linux_side = _this->u_iface, .handle = handle, .unDays = unDays, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetRankedByTrendDays( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetRankedByTrendDays, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_RequestUGCDetails_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_RequestUGCDetails_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_RequestUGCDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION002_RequestUGCDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateItem_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_StartItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_StartItemUpdate_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_StartItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION002_StartItemUpdate, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle_params params = { .linux_side = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility_params params = { .linux_side = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -564,14 +560,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent(struct }; params.pszContentFolder = steamclient_dos_to_unix_path( pszContentFolder, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent, ¶ms ); steamclient_free_path( params.pszContentFolder ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemPreview_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -579,27 +575,27 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemPreview(struct }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemPreview, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubmitItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubmitItemUpdate_params params = { .linux_side = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubmitItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubmitItemUpdate, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateProgress_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateProgress_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -607,61 +603,61 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateProg .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateProgress, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubscribeItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_UnsubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_UnsubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_UnsubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION002_UnsubscribeItem, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetNumSubscribedItems(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetNumSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetNumSubscribedItems_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetNumSubscribedItems( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetSubscribedItems_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetSubscribedItems( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetSubscribedItems, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -670,14 +666,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo(st .cchFolderSize = cchFolderSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchFolder, pchFolder, cchFolderSize, 0 ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool *pbNeedsUpdate, bool *pbIsDownloading, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -687,7 +683,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateInfo(str .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateInfo, ¶ms ); return params._ret; } @@ -740,8 +736,6 @@ struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION002(void *u_ return r; } -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION003.h" - DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryUserUGCRequest, 32) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryAllUGCRequest, 24) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SendQueryUGCRequest, 12) @@ -776,7 +770,7 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdate 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryUserUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryUserUGCRequest_params params = { .linux_side = _this->u_iface, .unAccountID = unAccountID, @@ -788,13 +782,13 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryUserUG .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryUserUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryUserUGCRequest, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryAllUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryAllUGCRequest_params params = { .linux_side = _this->u_iface, .eQueryType = eQueryType, @@ -804,25 +798,25 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryAllUGC .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryAllUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryAllUGCRequest, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SendQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SendQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SendQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SendQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -830,233 +824,233 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult(str .pDetails = pDetails, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_ReleaseQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_ReleaseQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_ReleaseQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION003_ReleaseQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse_params params = { .linux_side = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter_params params = { .linux_side = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag_params params = { .linux_side = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText_params params = { .linux_side = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDays_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDays_params params = { .linux_side = _this->u_iface, .handle = handle, .unDays = unDays, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDays( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDays, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_RequestUGCDetails_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_RequestUGCDetails_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_RequestUGCDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION003_RequestUGCDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateItem_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_StartItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_StartItemUpdate_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_StartItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION003_StartItemUpdate, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle_params params = { .linux_side = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility_params params = { .linux_side = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -1064,14 +1058,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent(struct }; params.pszContentFolder = steamclient_dos_to_unix_path( pszContentFolder, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent, ¶ms ); steamclient_free_path( params.pszContentFolder ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -1079,27 +1073,27 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview(struct }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubmitItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubmitItemUpdate_params params = { .linux_side = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubmitItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubmitItemUpdate, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateProgress_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateProgress_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -1107,61 +1101,61 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateProg .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateProgress, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubscribeItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_UnsubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_UnsubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_UnsubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION003_UnsubscribeItem, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetNumSubscribedItems(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetNumSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetNumSubscribedItems_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetNumSubscribedItems( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetSubscribedItems_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetSubscribedItems( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetSubscribedItems, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, bool *pbLegacyItem) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -1171,14 +1165,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo(st .pbLegacyItem = pbLegacyItem, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchFolder, pchFolder, cchFolderSize, 0 ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool *pbNeedsUpdate, bool *pbIsDownloading, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -1188,7 +1182,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo(str .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo, ¶ms ); return params._ret; } @@ -1241,8 +1235,6 @@ struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION003(void *u_ return r; } -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION004.h" - DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryUserUGCRequest, 32) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryAllUGCRequest, 24) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SendQueryUGCRequest, 12) @@ -1279,7 +1271,7 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION004_DownloadItem, 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryUserUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryUserUGCRequest_params params = { .linux_side = _this->u_iface, .unAccountID = unAccountID, @@ -1291,13 +1283,13 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryUserUG .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryUserUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryUserUGCRequest, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryAllUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryAllUGCRequest_params params = { .linux_side = _this->u_iface, .eQueryType = eQueryType, @@ -1307,25 +1299,25 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryAllUGC .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryAllUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryAllUGCRequest, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SendQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SendQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SendQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SendQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -1333,233 +1325,233 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult(str .pDetails = pDetails, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_ReleaseQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_ReleaseQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_ReleaseQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_ReleaseQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnLongDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnLongDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnLongDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnLongDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnTotalOnly_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnTotalOnly_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnTotalOnly( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnTotalOnly, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedResponse_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedResponse_params params = { .linux_side = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedResponse( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedResponse, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFilter_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFilter_params params = { .linux_side = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFilter, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetMatchAnyTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetMatchAnyTag_params params = { .linux_side = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetMatchAnyTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetMatchAnyTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText_params params = { .linux_side = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetRankedByTrendDays_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetRankedByTrendDays_params params = { .linux_side = _this->u_iface, .handle = handle, .unDays = unDays, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetRankedByTrendDays( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetRankedByTrendDays, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_RequestUGCDetails_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_RequestUGCDetails_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_RequestUGCDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_RequestUGCDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateItem_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_StartItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_StartItemUpdate_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_StartItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_StartItemUpdate, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle_params params = { .linux_side = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility_params params = { .linux_side = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -1567,14 +1559,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent(struct }; params.pszContentFolder = steamclient_dos_to_unix_path( pszContentFolder, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent, ¶ms ); steamclient_free_path( params.pszContentFolder ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemPreview_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -1582,27 +1574,27 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemPreview(struct }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemPreview, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubmitItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubmitItemUpdate_params params = { .linux_side = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubmitItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubmitItemUpdate, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemUpdateProgress_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemUpdateProgress_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -1610,73 +1602,73 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemUpdateProg .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemUpdateProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemUpdateProgress, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubscribeItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_UnsubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_UnsubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_UnsubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_UnsubscribeItem, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetNumSubscribedItems(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetNumSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetNumSubscribedItems_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetNumSubscribedItems( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetSubscribedItems_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetSubscribedItems( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetSubscribedItems, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemState(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemState_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemState_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemState( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemState, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -1686,14 +1678,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo(st .punTimeStamp = punTimeStamp, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchFolder, pchFolder, cchFolderSize, 0 ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -1701,20 +1693,20 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo(s .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bHighPriority) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_DownloadItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_DownloadItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bHighPriority = bHighPriority, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION004_DownloadItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_DownloadItem, ¶ms ); return params._ret; } @@ -1769,8 +1761,6 @@ struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION004(void *u_ return r; } -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION005.h" - DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUserUGCRequest, 32) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryAllUGCRequest, 24) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUGCDetailsRequest, 12) @@ -1820,7 +1810,7 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION005_DownloadItem, 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUserUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUserUGCRequest_params params = { .linux_side = _this->u_iface, .unAccountID = unAccountID, @@ -1832,13 +1822,13 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUserUG .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUserUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUserUGCRequest, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryAllUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryAllUGCRequest_params params = { .linux_side = _this->u_iface, .eQueryType = eQueryType, @@ -1848,38 +1838,38 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryAllUGC .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryAllUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryAllUGCRequest, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUGCDetailsRequest(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUGCDetailsRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUGCDetailsRequest_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUGCDetailsRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUGCDetailsRequest, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SendQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SendQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SendQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SendQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -1887,13 +1877,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult(str .pDetails = pDetails, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -1902,13 +1892,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL .cchURLSize = cchURLSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -1917,13 +1907,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata(s .cchMetadatasize = cchMetadatasize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -1932,13 +1922,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren(s .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint32_t *pStatValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCStatistic_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCStatistic_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -1947,26 +1937,26 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCStatistic( .pStatValue = pStatValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCStatistic( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCStatistic, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCNumAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCNumAdditionalPreviews_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCNumAdditionalPreviews_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCNumAdditionalPreviews( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCNumAdditionalPreviews, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, bool *pbIsImage) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAdditionalPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAdditionalPreview_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -1977,286 +1967,286 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAdditional .pbIsImage = pbIsImage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAdditionalPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAdditionalPreview, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchURLOrVideoID, pchURLOrVideoID, cchURLSize, 1 ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_ReleaseQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_ReleaseQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_ReleaseQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_ReleaseQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnLongDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnLongDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnLongDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnLongDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, bool bReturnMetadata) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnMetadata = bReturnMetadata, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, bool bReturnChildren) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnChildren_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnChildren_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnChildren = bReturnChildren, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnChildren( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnChildren, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, bool bReturnAdditionalPreviews) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnAdditionalPreviews_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnAdditionalPreviews_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnAdditionalPreviews = bReturnAdditionalPreviews, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnAdditionalPreviews( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnAdditionalPreviews, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnTotalOnly_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnTotalOnly_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnTotalOnly( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnTotalOnly, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedResponse_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedResponse_params params = { .linux_side = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedResponse( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedResponse, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFilter_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFilter_params params = { .linux_side = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFilter, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetMatchAnyTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetMatchAnyTag_params params = { .linux_side = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetMatchAnyTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetMatchAnyTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText_params params = { .linux_side = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetRankedByTrendDays_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetRankedByTrendDays_params params = { .linux_side = _this->u_iface, .handle = handle, .unDays = unDays, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetRankedByTrendDays( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetRankedByTrendDays, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_RequestUGCDetails_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_RequestUGCDetails_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_RequestUGCDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_RequestUGCDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateItem_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_StartItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_StartItemUpdate_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_StartItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_StartItemUpdate, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle_params params = { .linux_side = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, .pchMetaData = pchMetaData, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility_params params = { .linux_side = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -2264,14 +2254,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent(struct }; params.pszContentFolder = steamclient_dos_to_unix_path( pszContentFolder, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent, ¶ms ); steamclient_free_path( params.pszContentFolder ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemPreview_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -2279,27 +2269,27 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemPreview(struct }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemPreview, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubmitItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubmitItemUpdate_params params = { .linux_side = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubmitItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubmitItemUpdate, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemUpdateProgress_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemUpdateProgress_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -2307,99 +2297,99 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemUpdateProg .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemUpdateProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemUpdateProgress, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddItemToFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddItemToFavorites_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddItemToFavorites_params params = { .linux_side = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddItemToFavorites( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddItemToFavorites, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_RemoveItemFromFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_RemoveItemFromFavorites_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_RemoveItemFromFavorites_params params = { .linux_side = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_RemoveItemFromFavorites( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_RemoveItemFromFavorites, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubscribeItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_UnsubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_UnsubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_UnsubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_UnsubscribeItem, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetNumSubscribedItems(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetNumSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetNumSubscribedItems_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetNumSubscribedItems( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetSubscribedItems_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetSubscribedItems( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetSubscribedItems, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemState(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemState_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemState_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemState( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemState, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -2409,14 +2399,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo(st .punTimeStamp = punTimeStamp, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchFolder, pchFolder, cchFolderSize, 0 ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -2424,20 +2414,20 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo(s .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bHighPriority) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_DownloadItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_DownloadItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bHighPriority = bHighPriority, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION005_DownloadItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_DownloadItem, ¶ms ); return params._ret; } @@ -2505,8 +2495,6 @@ struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION005(void *u_ return r; } -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION006.h" - DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUserUGCRequest, 32) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryAllUGCRequest, 24) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUGCDetailsRequest, 12) @@ -2560,7 +2548,7 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION006_DownloadItem, 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUserUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUserUGCRequest_params params = { .linux_side = _this->u_iface, .unAccountID = unAccountID, @@ -2572,13 +2560,13 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUserUG .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUserUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUserUGCRequest, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryAllUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryAllUGCRequest_params params = { .linux_side = _this->u_iface, .eQueryType = eQueryType, @@ -2588,38 +2576,38 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryAllUGC .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryAllUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryAllUGCRequest, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUGCDetailsRequest(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUGCDetailsRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUGCDetailsRequest_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUGCDetailsRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUGCDetailsRequest, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SendQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SendQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SendQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SendQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -2627,13 +2615,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult(str .pDetails = pDetails, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -2642,13 +2630,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL .cchURLSize = cchURLSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -2657,13 +2645,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata(s .cchMetadatasize = cchMetadatasize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -2672,13 +2660,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren(s .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint32_t *pStatValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCStatistic_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCStatistic_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -2687,26 +2675,26 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCStatistic( .pStatValue = pStatValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCStatistic( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCStatistic, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCNumAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCNumAdditionalPreviews_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCNumAdditionalPreviews_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCNumAdditionalPreviews( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCNumAdditionalPreviews, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, bool *pbIsImage) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAdditionalPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAdditionalPreview_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -2717,312 +2705,312 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAdditional .pbIsImage = pbIsImage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAdditionalPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAdditionalPreview, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchURLOrVideoID, pchURLOrVideoID, cchURLSize, 1 ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_ReleaseQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_ReleaseQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_ReleaseQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_ReleaseQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnLongDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnLongDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnLongDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnLongDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, bool bReturnMetadata) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnMetadata = bReturnMetadata, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, bool bReturnChildren) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnChildren_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnChildren_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnChildren = bReturnChildren, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnChildren( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnChildren, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, bool bReturnAdditionalPreviews) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnAdditionalPreviews_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnAdditionalPreviews_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnAdditionalPreviews = bReturnAdditionalPreviews, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnAdditionalPreviews( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnAdditionalPreviews, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnTotalOnly_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnTotalOnly_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnTotalOnly( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnTotalOnly, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage_params params = { .linux_side = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedResponse_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedResponse_params params = { .linux_side = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedResponse( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedResponse, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFilter_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFilter_params params = { .linux_side = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFilter, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetMatchAnyTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetMatchAnyTag_params params = { .linux_side = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetMatchAnyTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetMatchAnyTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText_params params = { .linux_side = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetRankedByTrendDays_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetRankedByTrendDays_params params = { .linux_side = _this->u_iface, .handle = handle, .unDays = unDays, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetRankedByTrendDays( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetRankedByTrendDays, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_RequestUGCDetails_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_RequestUGCDetails_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_RequestUGCDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_RequestUGCDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateItem_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_StartItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_StartItemUpdate_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_StartItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_StartItemUpdate, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle_params params = { .linux_side = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLanguage_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLanguage_params params = { .linux_side = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLanguage, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, .pchMetaData = pchMetaData, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility_params params = { .linux_side = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -3030,14 +3018,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent(struct }; params.pszContentFolder = steamclient_dos_to_unix_path( pszContentFolder, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent, ¶ms ); steamclient_free_path( params.pszContentFolder ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemPreview_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -3045,27 +3033,27 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemPreview(struct }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemPreview, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubmitItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubmitItemUpdate_params params = { .linux_side = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubmitItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubmitItemUpdate, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemUpdateProgress_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemUpdateProgress_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -3073,124 +3061,124 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemUpdateProg .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemUpdateProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemUpdateProgress, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bVoteUp) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetUserItemVote_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetUserItemVote_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bVoteUp = bVoteUp, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetUserItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetUserItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetUserItemVote_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetUserItemVote_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetUserItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetUserItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddItemToFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddItemToFavorites_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddItemToFavorites_params params = { .linux_side = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddItemToFavorites( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddItemToFavorites, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_RemoveItemFromFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_RemoveItemFromFavorites_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_RemoveItemFromFavorites_params params = { .linux_side = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_RemoveItemFromFavorites( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_RemoveItemFromFavorites, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubscribeItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_UnsubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_UnsubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_UnsubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_UnsubscribeItem, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetNumSubscribedItems(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetNumSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetNumSubscribedItems_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetNumSubscribedItems( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetSubscribedItems_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetSubscribedItems( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetSubscribedItems, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemState(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemState_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemState_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemState( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemState, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -3200,14 +3188,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo(st .punTimeStamp = punTimeStamp, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchFolder, pchFolder, cchFolderSize, 0 ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -3215,20 +3203,20 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo(s .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bHighPriority) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_DownloadItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_DownloadItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bHighPriority = bHighPriority, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION006_DownloadItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_DownloadItem, ¶ms ); return params._ret; } @@ -3300,8 +3288,6 @@ struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION006(void *u_ return r; } -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION007.h" - DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUserUGCRequest, 32) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryAllUGCRequest, 24) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUGCDetailsRequest, 12) @@ -3363,7 +3349,7 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SuspendDownlo 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUserUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUserUGCRequest_params params = { .linux_side = _this->u_iface, .unAccountID = unAccountID, @@ -3375,13 +3361,13 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUserUG .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUserUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUserUGCRequest, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryAllUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryAllUGCRequest_params params = { .linux_side = _this->u_iface, .eQueryType = eQueryType, @@ -3391,38 +3377,38 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryAllUGC .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryAllUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryAllUGCRequest, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUGCDetailsRequest(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUGCDetailsRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUGCDetailsRequest_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUGCDetailsRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUGCDetailsRequest, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SendQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SendQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SendQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SendQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -3430,13 +3416,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult(str .pDetails = pDetails, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -3445,13 +3431,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL .cchURLSize = cchURLSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -3460,13 +3446,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata(s .cchMetadatasize = cchMetadatasize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -3475,13 +3461,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren(s .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint32_t *pStatValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCStatistic_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCStatistic_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -3490,26 +3476,26 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCStatistic( .pStatValue = pStatValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCStatistic( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCStatistic, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumAdditionalPreviews_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumAdditionalPreviews_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumAdditionalPreviews( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumAdditionalPreviews, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, bool *pbIsImage) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCAdditionalPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCAdditionalPreview_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -3520,27 +3506,27 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCAdditional .pbIsImage = pbIsImage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCAdditionalPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCAdditionalPreview, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchURLOrVideoID, pchURLOrVideoID, cchURLSize, 1 ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumKeyValueTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -3552,207 +3538,207 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTa .cchValueSize = cchValueSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_ReleaseQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_ReleaseQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_ReleaseQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_ReleaseQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, bool bReturnKeyValueTags) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnKeyValueTags = bReturnKeyValueTags, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnLongDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnLongDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnLongDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnLongDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, bool bReturnMetadata) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnMetadata = bReturnMetadata, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, bool bReturnChildren) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnChildren_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnChildren_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnChildren = bReturnChildren, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnChildren( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnChildren, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, bool bReturnAdditionalPreviews) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnAdditionalPreviews_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnAdditionalPreviews_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnAdditionalPreviews = bReturnAdditionalPreviews, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnAdditionalPreviews( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnAdditionalPreviews, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnTotalOnly_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnTotalOnly_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnTotalOnly( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnTotalOnly, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage_params params = { .linux_side = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedResponse_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedResponse_params params = { .linux_side = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedResponse( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedResponse, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFilter_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFilter_params params = { .linux_side = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFilter, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetMatchAnyTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetMatchAnyTag_params params = { .linux_side = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetMatchAnyTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetMatchAnyTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText_params params = { .linux_side = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDays_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDays_params params = { .linux_side = _this->u_iface, .handle = handle, .unDays = unDays, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDays( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDays, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -3760,130 +3746,130 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredKeyValueTa .pValue = pValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredKeyValueTag, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_RequestUGCDetails_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RequestUGCDetails_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_RequestUGCDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RequestUGCDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateItem_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_StartItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_StartItemUpdate_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_StartItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_StartItemUpdate, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle_params params = { .linux_side = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLanguage_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLanguage_params params = { .linux_side = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLanguage, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, .pchMetaData = pchMetaData, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility_params params = { .linux_side = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -3891,14 +3877,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent(struct }; params.pszContentFolder = steamclient_dos_to_unix_path( pszContentFolder, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent, ¶ms ); steamclient_free_path( params.pszContentFolder ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -3906,27 +3892,27 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview(struct }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -3934,26 +3920,26 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemKeyValueTag(st .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemKeyValueTag, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubmitItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubmitItemUpdate_params params = { .linux_side = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubmitItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubmitItemUpdate, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemUpdateProgress_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemUpdateProgress_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -3961,124 +3947,124 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemUpdateProg .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemUpdateProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemUpdateProgress, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bVoteUp) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetUserItemVote_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetUserItemVote_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bVoteUp = bVoteUp, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetUserItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetUserItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetUserItemVote_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetUserItemVote_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetUserItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetUserItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemToFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemToFavorites_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemToFavorites_params params = { .linux_side = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemToFavorites( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemToFavorites, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemFromFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemFromFavorites_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemFromFavorites_params params = { .linux_side = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemFromFavorites( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemFromFavorites, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubscribeItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_UnsubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_UnsubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_UnsubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_UnsubscribeItem, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetNumSubscribedItems(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetNumSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetNumSubscribedItems_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetNumSubscribedItems( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetSubscribedItems_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetSubscribedItems( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetSubscribedItems, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemState(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemState_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemState_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemState( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemState, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -4088,14 +4074,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo(st .punTimeStamp = punTimeStamp, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchFolder, pchFolder, cchFolderSize, 0 ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -4103,26 +4089,26 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo(s .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bHighPriority) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bHighPriority = bHighPriority, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameServer_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameServer_params params = { .linux_side = _this->u_iface, .unWorkshopDepotID = unWorkshopDepotID, @@ -4130,20 +4116,20 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameS }; params.pszFolder = steamclient_dos_to_unix_path( pszFolder, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameServer, ¶ms ); steamclient_free_path( params.pszFolder ); return params._ret; } void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SuspendDownloads(struct w_steam_iface *_this, bool bSuspend) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SuspendDownloads_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SuspendDownloads_params params = { .linux_side = _this->u_iface, .bSuspend = bSuspend, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION007_SuspendDownloads( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SuspendDownloads, ¶ms ); } extern vtable_ptr winISteamUGC_STEAMUGC_INTERFACE_VERSION007_vtable; @@ -4222,8 +4208,6 @@ struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION007(void *u_ return r; } -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION008.h" - DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUserUGCRequest, 32) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryAllUGCRequest, 24) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUGCDetailsRequest, 12) @@ -4290,7 +4274,7 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SuspendDownlo 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUserUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUserUGCRequest_params params = { .linux_side = _this->u_iface, .unAccountID = unAccountID, @@ -4302,13 +4286,13 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUserUG .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUserUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUserUGCRequest, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryAllUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryAllUGCRequest_params params = { .linux_side = _this->u_iface, .eQueryType = eQueryType, @@ -4318,38 +4302,38 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryAllUGC .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryAllUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryAllUGCRequest, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUGCDetailsRequest(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUGCDetailsRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUGCDetailsRequest_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUGCDetailsRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUGCDetailsRequest, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SendQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SendQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SendQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SendQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -4357,13 +4341,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult(str .pDetails = pDetails, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -4372,13 +4356,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL .cchURLSize = cchURLSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -4387,13 +4371,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata(s .cchMetadatasize = cchMetadatasize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -4402,13 +4386,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren(s .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint32_t *pStatValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCStatistic_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCStatistic_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -4417,26 +4401,26 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCStatistic( .pStatValue = pStatValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCStatistic( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCStatistic, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumAdditionalPreviews_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumAdditionalPreviews_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumAdditionalPreviews( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumAdditionalPreviews, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCAdditionalPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCAdditionalPreview_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -4449,27 +4433,27 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCAdditional .pPreviewType = pPreviewType, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCAdditionalPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCAdditionalPreview, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchURLOrVideoID, pchURLOrVideoID, cchURLSize, 1 ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumKeyValueTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -4481,207 +4465,207 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTa .cchValueSize = cchValueSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_ReleaseQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_ReleaseQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_ReleaseQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_ReleaseQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, bool bReturnKeyValueTags) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnKeyValueTags = bReturnKeyValueTags, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnLongDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnLongDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnLongDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnLongDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, bool bReturnMetadata) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnMetadata = bReturnMetadata, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, bool bReturnChildren) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnChildren_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnChildren_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnChildren = bReturnChildren, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnChildren( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnChildren, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, bool bReturnAdditionalPreviews) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnAdditionalPreviews_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnAdditionalPreviews_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnAdditionalPreviews = bReturnAdditionalPreviews, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnAdditionalPreviews( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnAdditionalPreviews, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnTotalOnly_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnTotalOnly_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnTotalOnly( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnTotalOnly, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage_params params = { .linux_side = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedResponse_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedResponse_params params = { .linux_side = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedResponse( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedResponse, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFilter_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFilter_params params = { .linux_side = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFilter, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetMatchAnyTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetMatchAnyTag_params params = { .linux_side = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetMatchAnyTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetMatchAnyTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText_params params = { .linux_side = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDays_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDays_params params = { .linux_side = _this->u_iface, .handle = handle, .unDays = unDays, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDays( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDays, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -4689,130 +4673,130 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredKeyValueTa .pValue = pValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredKeyValueTag, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_RequestUGCDetails_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RequestUGCDetails_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_RequestUGCDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RequestUGCDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateItem_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_StartItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_StartItemUpdate_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_StartItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_StartItemUpdate, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle_params params = { .linux_side = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLanguage_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLanguage_params params = { .linux_side = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLanguage, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, .pchMetaData = pchMetaData, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility_params params = { .linux_side = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -4820,14 +4804,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent(struct }; params.pszContentFolder = steamclient_dos_to_unix_path( pszContentFolder, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent, ¶ms ); steamclient_free_path( params.pszContentFolder ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -4835,27 +4819,27 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview(struct }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -4863,13 +4847,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag(st .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -4878,27 +4862,27 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile(st }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo_params params = { .linux_side = _this->u_iface, .handle = handle, .pszVideoID = pszVideoID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -4907,14 +4891,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVideo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVideo_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -4922,39 +4906,39 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVide .pszVideoID = pszVideoID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVideo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemPreview_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemPreview, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubmitItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubmitItemUpdate_params params = { .linux_side = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubmitItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubmitItemUpdate, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemUpdateProgress_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemUpdateProgress_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -4962,124 +4946,124 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemUpdateProg .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemUpdateProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemUpdateProgress, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bVoteUp) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetUserItemVote_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetUserItemVote_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bVoteUp = bVoteUp, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetUserItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetUserItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetUserItemVote_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetUserItemVote_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetUserItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetUserItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemToFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemToFavorites_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemToFavorites_params params = { .linux_side = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemToFavorites( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemToFavorites, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemFromFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemFromFavorites_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemFromFavorites_params params = { .linux_side = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemFromFavorites( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemFromFavorites, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubscribeItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_UnsubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UnsubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_UnsubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UnsubscribeItem, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetNumSubscribedItems(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetNumSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetNumSubscribedItems_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetNumSubscribedItems( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetSubscribedItems_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetSubscribedItems( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetSubscribedItems, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemState(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemState_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemState_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemState( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemState, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -5089,14 +5073,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo(st .punTimeStamp = punTimeStamp, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchFolder, pchFolder, cchFolderSize, 0 ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -5104,26 +5088,26 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo(s .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bHighPriority) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bHighPriority = bHighPriority, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameServer_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameServer_params params = { .linux_side = _this->u_iface, .unWorkshopDepotID = unWorkshopDepotID, @@ -5131,20 +5115,20 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameS }; params.pszFolder = steamclient_dos_to_unix_path( pszFolder, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameServer, ¶ms ); steamclient_free_path( params.pszFolder ); return params._ret; } void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SuspendDownloads(struct w_steam_iface *_this, bool bSuspend) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SuspendDownloads_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SuspendDownloads_params params = { .linux_side = _this->u_iface, .bSuspend = bSuspend, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION008_SuspendDownloads( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SuspendDownloads, ¶ms ); } extern vtable_ptr winISteamUGC_STEAMUGC_INTERFACE_VERSION008_vtable; @@ -5228,8 +5212,6 @@ struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION008(void *u_ return r; } -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION009.h" - DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUserUGCRequest, 32) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryAllUGCRequest, 24) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUGCDetailsRequest, 12) @@ -5300,7 +5282,7 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeT 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUserUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUserUGCRequest_params params = { .linux_side = _this->u_iface, .unAccountID = unAccountID, @@ -5312,13 +5294,13 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUserUG .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUserUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUserUGCRequest, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryAllUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryAllUGCRequest_params params = { .linux_side = _this->u_iface, .eQueryType = eQueryType, @@ -5328,38 +5310,38 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryAllUGC .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryAllUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryAllUGCRequest, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUGCDetailsRequest(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUGCDetailsRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUGCDetailsRequest_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUGCDetailsRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUGCDetailsRequest, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SendQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SendQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SendQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SendQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -5367,13 +5349,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult(str .pDetails = pDetails, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -5382,13 +5364,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL .cchURLSize = cchURLSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -5397,13 +5379,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata(s .cchMetadatasize = cchMetadatasize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -5412,13 +5394,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren(s .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCStatistic_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCStatistic_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -5427,26 +5409,26 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCStatistic( .pStatValue = pStatValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCStatistic( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCStatistic, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumAdditionalPreviews_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumAdditionalPreviews_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumAdditionalPreviews( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumAdditionalPreviews, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCAdditionalPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCAdditionalPreview_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -5459,27 +5441,27 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCAdditional .pPreviewType = pPreviewType, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCAdditionalPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCAdditionalPreview, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchURLOrVideoID, pchURLOrVideoID, cchURLSize, 1 ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumKeyValueTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -5491,220 +5473,220 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTa .cchValueSize = cchValueSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_ReleaseQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_ReleaseQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_ReleaseQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_ReleaseQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, bool bReturnOnlyIDs) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnOnlyIDs_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnOnlyIDs_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnOnlyIDs = bReturnOnlyIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnOnlyIDs( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnOnlyIDs, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, bool bReturnKeyValueTags) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnKeyValueTags = bReturnKeyValueTags, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnLongDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnLongDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnLongDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnLongDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, bool bReturnMetadata) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnMetadata = bReturnMetadata, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, bool bReturnChildren) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnChildren_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnChildren_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnChildren = bReturnChildren, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnChildren( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnChildren, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, bool bReturnAdditionalPreviews) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnAdditionalPreviews_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnAdditionalPreviews_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnAdditionalPreviews = bReturnAdditionalPreviews, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnAdditionalPreviews( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnAdditionalPreviews, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnTotalOnly_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnTotalOnly_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnTotalOnly( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnTotalOnly, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage_params params = { .linux_side = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedResponse_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedResponse_params params = { .linux_side = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedResponse( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedResponse, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFilter_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFilter_params params = { .linux_side = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFilter, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetMatchAnyTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetMatchAnyTag_params params = { .linux_side = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetMatchAnyTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetMatchAnyTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText_params params = { .linux_side = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDays_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDays_params params = { .linux_side = _this->u_iface, .handle = handle, .unDays = unDays, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDays( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDays, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -5712,130 +5694,130 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredKeyValueTa .pValue = pValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredKeyValueTag, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_RequestUGCDetails_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RequestUGCDetails_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_RequestUGCDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RequestUGCDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateItem_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartItemUpdate_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartItemUpdate, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle_params params = { .linux_side = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLanguage_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLanguage_params params = { .linux_side = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLanguage, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, .pchMetaData = pchMetaData, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility_params params = { .linux_side = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -5843,14 +5825,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent(struct }; params.pszContentFolder = steamclient_dos_to_unix_path( pszContentFolder, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent, ¶ms ); steamclient_free_path( params.pszContentFolder ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -5858,27 +5840,27 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview(struct }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -5886,13 +5868,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag(st .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -5901,27 +5883,27 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile(st }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo_params params = { .linux_side = _this->u_iface, .handle = handle, .pszVideoID = pszVideoID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -5930,14 +5912,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVideo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVideo_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -5945,39 +5927,39 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVide .pszVideoID = pszVideoID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVideo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemPreview_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemPreview, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubmitItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubmitItemUpdate_params params = { .linux_side = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubmitItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubmitItemUpdate, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemUpdateProgress_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemUpdateProgress_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -5985,124 +5967,124 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemUpdateProg .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemUpdateProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemUpdateProgress, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bVoteUp) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetUserItemVote_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetUserItemVote_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bVoteUp = bVoteUp, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetUserItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetUserItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetUserItemVote_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetUserItemVote_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetUserItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetUserItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemToFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemToFavorites_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemToFavorites_params params = { .linux_side = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemToFavorites( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemToFavorites, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemFromFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemFromFavorites_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemFromFavorites_params params = { .linux_side = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemFromFavorites( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemFromFavorites, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubscribeItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_UnsubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UnsubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_UnsubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UnsubscribeItem, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetNumSubscribedItems(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetNumSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetNumSubscribedItems_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetNumSubscribedItems( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetSubscribedItems_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetSubscribedItems( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetSubscribedItems, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemState(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemState_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemState_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemState( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemState, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -6112,14 +6094,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo(st .punTimeStamp = punTimeStamp, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchFolder, pchFolder, cchFolderSize, 0 ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -6127,26 +6109,26 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo(s .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bHighPriority) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_DownloadItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_DownloadItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bHighPriority = bHighPriority, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_DownloadItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_DownloadItem, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameServer_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameServer_params params = { .linux_side = _this->u_iface, .unWorkshopDepotID = unWorkshopDepotID, @@ -6154,56 +6136,56 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameS }; params.pszFolder = steamclient_dos_to_unix_path( pszFolder, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameServer, ¶ms ); steamclient_free_path( params.pszFolder ); return params._ret; } void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SuspendDownloads(struct w_steam_iface *_this, bool bSuspend) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SuspendDownloads_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SuspendDownloads_params params = { .linux_side = _this->u_iface, .bSuspend = bSuspend, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_SuspendDownloads( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartPlaytimeTracking_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartPlaytimeTracking_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartPlaytimeTracking( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartPlaytimeTracking, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTracking(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTracking_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTracking_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTracking( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTracking, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTrackingForAllItems(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTrackingForAllItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTrackingForAllItems_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTrackingForAllItems( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTrackingForAllItems, ¶ms ); return params._ret; } @@ -6292,8 +6274,6 @@ struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION009(void *u_ return r; } -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION010.h" - DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUserUGCRequest, 32) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryAllUGCRequest, 24) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUGCDetailsRequest, 12) @@ -6371,7 +6351,7 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION010_DeleteItem, 1 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUserUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUserUGCRequest_params params = { .linux_side = _this->u_iface, .unAccountID = unAccountID, @@ -6383,13 +6363,13 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUserUG .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUserUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUserUGCRequest, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryAllUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryAllUGCRequest_params params = { .linux_side = _this->u_iface, .eQueryType = eQueryType, @@ -6399,38 +6379,38 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryAllUGC .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryAllUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryAllUGCRequest, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUGCDetailsRequest(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUGCDetailsRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUGCDetailsRequest_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUGCDetailsRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUGCDetailsRequest, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SendQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SendQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SendQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SendQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -6438,13 +6418,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult(str .pDetails = pDetails, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -6453,13 +6433,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL .cchURLSize = cchURLSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -6468,13 +6448,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata(s .cchMetadatasize = cchMetadatasize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -6483,13 +6463,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren(s .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCStatistic_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCStatistic_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -6498,26 +6478,26 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCStatistic( .pStatValue = pStatValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCStatistic( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCStatistic, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumAdditionalPreviews_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumAdditionalPreviews_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumAdditionalPreviews( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumAdditionalPreviews, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCAdditionalPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCAdditionalPreview_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -6530,27 +6510,27 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCAdditional .pPreviewType = pPreviewType, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCAdditionalPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCAdditionalPreview, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchURLOrVideoID, pchURLOrVideoID, cchURLSize, 1 ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumKeyValueTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -6562,233 +6542,233 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTa .cchValueSize = cchValueSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_ReleaseQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_ReleaseQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_ReleaseQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_ReleaseQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, bool bReturnOnlyIDs) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnOnlyIDs_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnOnlyIDs_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnOnlyIDs = bReturnOnlyIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnOnlyIDs( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnOnlyIDs, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, bool bReturnKeyValueTags) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnKeyValueTags = bReturnKeyValueTags, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnLongDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnLongDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnLongDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnLongDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, bool bReturnMetadata) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnMetadata = bReturnMetadata, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, bool bReturnChildren) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnChildren_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnChildren_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnChildren = bReturnChildren, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnChildren( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnChildren, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, bool bReturnAdditionalPreviews) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnAdditionalPreviews_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnAdditionalPreviews_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnAdditionalPreviews = bReturnAdditionalPreviews, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnAdditionalPreviews( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnAdditionalPreviews, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnTotalOnly_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnTotalOnly_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnTotalOnly( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnTotalOnly, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeStats_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeStats_params params = { .linux_side = _this->u_iface, .handle = handle, .unDays = unDays, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeStats, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage_params params = { .linux_side = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedResponse_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedResponse_params params = { .linux_side = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedResponse( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedResponse, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFilter_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFilter_params params = { .linux_side = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFilter, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetMatchAnyTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetMatchAnyTag_params params = { .linux_side = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetMatchAnyTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetMatchAnyTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText_params params = { .linux_side = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDays_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDays_params params = { .linux_side = _this->u_iface, .handle = handle, .unDays = unDays, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDays( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDays, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -6796,130 +6776,130 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredKeyValueTa .pValue = pValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredKeyValueTag, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RequestUGCDetails_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RequestUGCDetails_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RequestUGCDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RequestUGCDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateItem_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartItemUpdate_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartItemUpdate, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle_params params = { .linux_side = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLanguage_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLanguage_params params = { .linux_side = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLanguage, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, .pchMetaData = pchMetaData, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility_params params = { .linux_side = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -6927,14 +6907,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent(struct }; params.pszContentFolder = steamclient_dos_to_unix_path( pszContentFolder, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent, ¶ms ); steamclient_free_path( params.pszContentFolder ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -6942,27 +6922,27 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview(struct }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -6970,13 +6950,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag(st .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -6985,27 +6965,27 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile(st }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo_params params = { .linux_side = _this->u_iface, .handle = handle, .pszVideoID = pszVideoID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -7014,14 +6994,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVideo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVideo_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -7029,39 +7009,39 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVide .pszVideoID = pszVideoID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVideo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemPreview_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemPreview, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubmitItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubmitItemUpdate_params params = { .linux_side = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubmitItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubmitItemUpdate, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemUpdateProgress_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemUpdateProgress_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -7069,124 +7049,124 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemUpdateProg .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemUpdateProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemUpdateProgress, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bVoteUp) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetUserItemVote_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetUserItemVote_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bVoteUp = bVoteUp, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetUserItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetUserItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetUserItemVote_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetUserItemVote_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetUserItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetUserItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemToFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemToFavorites_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemToFavorites_params params = { .linux_side = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemToFavorites( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemToFavorites, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemFromFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemFromFavorites_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemFromFavorites_params params = { .linux_side = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemFromFavorites( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemFromFavorites, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubscribeItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_UnsubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UnsubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_UnsubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UnsubscribeItem, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetNumSubscribedItems(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetNumSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetNumSubscribedItems_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetNumSubscribedItems( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetSubscribedItems_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetSubscribedItems( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetSubscribedItems, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemState(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemState_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemState_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemState( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemState, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -7196,14 +7176,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo(st .punTimeStamp = punTimeStamp, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchFolder, pchFolder, cchFolderSize, 0 ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -7211,26 +7191,26 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo(s .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bHighPriority) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_DownloadItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_DownloadItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bHighPriority = bHighPriority, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_DownloadItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_DownloadItem, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameServer_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameServer_params params = { .linux_side = _this->u_iface, .unWorkshopDepotID = unWorkshopDepotID, @@ -7238,132 +7218,132 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameS }; params.pszFolder = steamclient_dos_to_unix_path( pszFolder, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameServer, ¶ms ); steamclient_free_path( params.pszFolder ); return params._ret; } void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SuspendDownloads(struct w_steam_iface *_this, bool bSuspend) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SuspendDownloads_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SuspendDownloads_params params = { .linux_side = _this->u_iface, .bSuspend = bSuspend, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_SuspendDownloads( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartPlaytimeTracking_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartPlaytimeTracking_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartPlaytimeTracking( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartPlaytimeTracking, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTracking(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTracking_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTracking_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTracking( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTracking, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTrackingForAllItems(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTrackingForAllItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTrackingForAllItems_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTrackingForAllItems( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddDependency_params params = { .linux_side = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveDependency(struct w_steam_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveDependency_params params = { .linux_side = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddAppDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddAppDependency_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddAppDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddAppDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveAppDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveAppDependency_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveAppDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveAppDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetAppDependencies(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetAppDependencies_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetAppDependencies_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetAppDependencies( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetAppDependencies, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_DeleteItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_DeleteItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_DeleteItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION010_DeleteItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_DeleteItem, ¶ms ); return params._ret; } @@ -7459,8 +7439,6 @@ struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION010(void *u_ return r; } -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION012.h" - DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUserUGCRequest, 32) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest, 24) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_2, 24) @@ -7540,7 +7518,7 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION012_DeleteItem, 1 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUserUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUserUGCRequest_params params = { .linux_side = _this->u_iface, .unAccountID = unAccountID, @@ -7552,13 +7530,13 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUserUG .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUserUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUserUGCRequest, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_params params = { .linux_side = _this->u_iface, .eQueryType = eQueryType, @@ -7568,13 +7546,13 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGC .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_2_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_2_params params = { .linux_side = _this->u_iface, .eQueryType = eQueryType, @@ -7584,38 +7562,38 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGC .pchCursor = pchCursor, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_2, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUGCDetailsRequest(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUGCDetailsRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUGCDetailsRequest_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUGCDetailsRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUGCDetailsRequest, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SendQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SendQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SendQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SendQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -7623,13 +7601,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult(str .pDetails = pDetails, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -7638,13 +7616,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL .cchURLSize = cchURLSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -7653,13 +7631,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata(s .cchMetadatasize = cchMetadatasize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -7668,13 +7646,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren(s .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCStatistic_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCStatistic_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -7683,26 +7661,26 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCStatistic( .pStatValue = pStatValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCStatistic( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCStatistic, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumAdditionalPreviews_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumAdditionalPreviews_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumAdditionalPreviews( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumAdditionalPreviews, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCAdditionalPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCAdditionalPreview_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -7715,27 +7693,27 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCAdditional .pPreviewType = pPreviewType, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCAdditionalPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCAdditionalPreview, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchURLOrVideoID, pchURLOrVideoID, cchURLSize, 1 ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumKeyValueTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -7747,233 +7725,233 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTa .cchValueSize = cchValueSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_ReleaseQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_ReleaseQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_ReleaseQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_ReleaseQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, bool bReturnOnlyIDs) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnOnlyIDs_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnOnlyIDs_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnOnlyIDs = bReturnOnlyIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnOnlyIDs( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnOnlyIDs, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, bool bReturnKeyValueTags) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnKeyValueTags = bReturnKeyValueTags, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnLongDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnLongDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnLongDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnLongDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, bool bReturnMetadata) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnMetadata = bReturnMetadata, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, bool bReturnChildren) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnChildren_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnChildren_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnChildren = bReturnChildren, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnChildren( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnChildren, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, bool bReturnAdditionalPreviews) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnAdditionalPreviews_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnAdditionalPreviews_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnAdditionalPreviews = bReturnAdditionalPreviews, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnAdditionalPreviews( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnAdditionalPreviews, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnTotalOnly_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnTotalOnly_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnTotalOnly( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnTotalOnly, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeStats_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeStats_params params = { .linux_side = _this->u_iface, .handle = handle, .unDays = unDays, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeStats, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage_params params = { .linux_side = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedResponse_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedResponse_params params = { .linux_side = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedResponse( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedResponse, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFilter_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFilter_params params = { .linux_side = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFilter, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetMatchAnyTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetMatchAnyTag_params params = { .linux_side = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetMatchAnyTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetMatchAnyTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText_params params = { .linux_side = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDays_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDays_params params = { .linux_side = _this->u_iface, .handle = handle, .unDays = unDays, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDays( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDays, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -7981,130 +7959,130 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredKeyValueTa .pValue = pValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredKeyValueTag, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RequestUGCDetails_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RequestUGCDetails_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RequestUGCDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RequestUGCDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateItem_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartItemUpdate_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartItemUpdate, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle_params params = { .linux_side = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLanguage_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLanguage_params params = { .linux_side = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLanguage, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, .pchMetaData = pchMetaData, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility_params params = { .linux_side = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -8112,14 +8090,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent(struct }; params.pszContentFolder = steamclient_dos_to_unix_path( pszContentFolder, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent, ¶ms ); steamclient_free_path( params.pszContentFolder ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -8127,40 +8105,40 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview(struct }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowLegacyUpload(struct w_steam_iface *_this, uint64_t handle, bool bAllowLegacyUpload) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowLegacyUpload_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowLegacyUpload_params params = { .linux_side = _this->u_iface, .handle = handle, .bAllowLegacyUpload = bAllowLegacyUpload, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowLegacyUpload( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowLegacyUpload, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -8168,13 +8146,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag(st .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -8183,27 +8161,27 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile(st }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo_params params = { .linux_side = _this->u_iface, .handle = handle, .pszVideoID = pszVideoID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -8212,14 +8190,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVideo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVideo_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -8227,39 +8205,39 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVide .pszVideoID = pszVideoID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVideo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemPreview_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemPreview, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubmitItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubmitItemUpdate_params params = { .linux_side = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubmitItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubmitItemUpdate, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemUpdateProgress_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemUpdateProgress_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -8267,124 +8245,124 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemUpdateProg .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemUpdateProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemUpdateProgress, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bVoteUp) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetUserItemVote_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetUserItemVote_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bVoteUp = bVoteUp, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetUserItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetUserItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetUserItemVote_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetUserItemVote_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetUserItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetUserItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemToFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemToFavorites_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemToFavorites_params params = { .linux_side = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemToFavorites( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemToFavorites, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemFromFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemFromFavorites_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemFromFavorites_params params = { .linux_side = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemFromFavorites( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemFromFavorites, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubscribeItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_UnsubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UnsubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_UnsubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UnsubscribeItem, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetNumSubscribedItems(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetNumSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetNumSubscribedItems_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetNumSubscribedItems( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetSubscribedItems_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetSubscribedItems( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetSubscribedItems, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemState(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemState_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemState_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemState( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemState, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -8394,14 +8372,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo(st .punTimeStamp = punTimeStamp, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchFolder, pchFolder, cchFolderSize, 0 ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -8409,26 +8387,26 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo(s .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bHighPriority) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_DownloadItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_DownloadItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bHighPriority = bHighPriority, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_DownloadItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_DownloadItem, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameServer_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameServer_params params = { .linux_side = _this->u_iface, .unWorkshopDepotID = unWorkshopDepotID, @@ -8436,132 +8414,132 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameS }; params.pszFolder = steamclient_dos_to_unix_path( pszFolder, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameServer, ¶ms ); steamclient_free_path( params.pszFolder ); return params._ret; } void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SuspendDownloads(struct w_steam_iface *_this, bool bSuspend) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SuspendDownloads_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SuspendDownloads_params params = { .linux_side = _this->u_iface, .bSuspend = bSuspend, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_SuspendDownloads( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartPlaytimeTracking_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartPlaytimeTracking_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartPlaytimeTracking( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartPlaytimeTracking, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTracking(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTracking_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTracking_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTracking( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTracking, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTrackingForAllItems(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTrackingForAllItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTrackingForAllItems_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTrackingForAllItems( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddDependency_params params = { .linux_side = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveDependency(struct w_steam_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveDependency_params params = { .linux_side = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddAppDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddAppDependency_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddAppDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddAppDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveAppDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveAppDependency_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveAppDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveAppDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetAppDependencies(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetAppDependencies_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetAppDependencies_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetAppDependencies( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetAppDependencies, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_DeleteItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_DeleteItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_DeleteItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION012_DeleteItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_DeleteItem, ¶ms ); return params._ret; } @@ -8659,8 +8637,6 @@ struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION012(void *u_ return r; } -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION013.h" - DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUserUGCRequest, 32) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest, 24) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_2, 24) @@ -8742,7 +8718,7 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION013_DeleteItem, 1 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUserUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUserUGCRequest_params params = { .linux_side = _this->u_iface, .unAccountID = unAccountID, @@ -8754,13 +8730,13 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUserUG .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUserUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUserUGCRequest, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_params params = { .linux_side = _this->u_iface, .eQueryType = eQueryType, @@ -8770,13 +8746,13 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGC .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_2_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_2_params params = { .linux_side = _this->u_iface, .eQueryType = eQueryType, @@ -8786,38 +8762,38 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGC .pchCursor = pchCursor, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_2, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUGCDetailsRequest(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUGCDetailsRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUGCDetailsRequest_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUGCDetailsRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUGCDetailsRequest, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SendQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SendQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SendQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SendQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -8825,13 +8801,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult(str .pDetails = pDetails, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -8840,13 +8816,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL .cchURLSize = cchURLSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -8855,13 +8831,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata(s .cchMetadatasize = cchMetadatasize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -8870,13 +8846,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren(s .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCStatistic_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCStatistic_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -8885,26 +8861,26 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCStatistic( .pStatValue = pStatValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCStatistic( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCStatistic, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumAdditionalPreviews_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumAdditionalPreviews_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumAdditionalPreviews( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumAdditionalPreviews, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCAdditionalPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCAdditionalPreview_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -8917,27 +8893,27 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCAdditional .pPreviewType = pPreviewType, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCAdditionalPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCAdditionalPreview, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchURLOrVideoID, pchURLOrVideoID, cchURLSize, 1 ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumKeyValueTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -8949,13 +8925,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTa .cchValueSize = cchValueSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_2(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_2_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_2_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -8965,233 +8941,233 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTa .cchValueSize = cchValueSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_2, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_ReleaseQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_ReleaseQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_ReleaseQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_ReleaseQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, bool bReturnOnlyIDs) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnOnlyIDs_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnOnlyIDs_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnOnlyIDs = bReturnOnlyIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnOnlyIDs( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnOnlyIDs, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, bool bReturnKeyValueTags) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnKeyValueTags = bReturnKeyValueTags, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnLongDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnLongDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnLongDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnLongDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, bool bReturnMetadata) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnMetadata = bReturnMetadata, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, bool bReturnChildren) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnChildren_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnChildren_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnChildren = bReturnChildren, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnChildren( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnChildren, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, bool bReturnAdditionalPreviews) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnAdditionalPreviews_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnAdditionalPreviews_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnAdditionalPreviews = bReturnAdditionalPreviews, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnAdditionalPreviews( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnAdditionalPreviews, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnTotalOnly_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnTotalOnly_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnTotalOnly( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnTotalOnly, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeStats_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeStats_params params = { .linux_side = _this->u_iface, .handle = handle, .unDays = unDays, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeStats, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage_params params = { .linux_side = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedResponse_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedResponse_params params = { .linux_side = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedResponse( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedResponse, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFilter_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFilter_params params = { .linux_side = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFilter, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetMatchAnyTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetMatchAnyTag_params params = { .linux_side = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetMatchAnyTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetMatchAnyTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText_params params = { .linux_side = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDays_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDays_params params = { .linux_side = _this->u_iface, .handle = handle, .unDays = unDays, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDays( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDays, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -9199,130 +9175,130 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredKeyValueTa .pValue = pValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredKeyValueTag, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RequestUGCDetails_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RequestUGCDetails_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RequestUGCDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RequestUGCDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateItem_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartItemUpdate_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartItemUpdate, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle_params params = { .linux_side = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLanguage_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLanguage_params params = { .linux_side = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLanguage, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, .pchMetaData = pchMetaData, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility_params params = { .linux_side = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -9330,14 +9306,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent(struct }; params.pszContentFolder = steamclient_dos_to_unix_path( pszContentFolder, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent, ¶ms ); steamclient_free_path( params.pszContentFolder ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -9345,52 +9321,52 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview(struct }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowLegacyUpload(struct w_steam_iface *_this, uint64_t handle, bool bAllowLegacyUpload) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowLegacyUpload_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowLegacyUpload_params params = { .linux_side = _this->u_iface, .handle = handle, .bAllowLegacyUpload = bAllowLegacyUpload, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowLegacyUpload( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowLegacyUpload, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAllItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAllItemKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAllItemKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAllItemKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAllItemKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -9398,13 +9374,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag(st .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -9413,27 +9389,27 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile(st }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo_params params = { .linux_side = _this->u_iface, .handle = handle, .pszVideoID = pszVideoID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -9442,14 +9418,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVideo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVideo_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -9457,39 +9433,39 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVide .pszVideoID = pszVideoID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVideo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemPreview_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemPreview, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubmitItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubmitItemUpdate_params params = { .linux_side = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubmitItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubmitItemUpdate, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemUpdateProgress_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemUpdateProgress_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -9497,124 +9473,124 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemUpdateProg .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemUpdateProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemUpdateProgress, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bVoteUp) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetUserItemVote_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetUserItemVote_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bVoteUp = bVoteUp, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetUserItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetUserItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetUserItemVote_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetUserItemVote_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetUserItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetUserItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemToFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemToFavorites_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemToFavorites_params params = { .linux_side = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemToFavorites( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemToFavorites, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemFromFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemFromFavorites_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemFromFavorites_params params = { .linux_side = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemFromFavorites( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemFromFavorites, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubscribeItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_UnsubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UnsubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_UnsubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UnsubscribeItem, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetNumSubscribedItems(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetNumSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetNumSubscribedItems_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetNumSubscribedItems( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetSubscribedItems_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetSubscribedItems( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetSubscribedItems, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemState(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemState_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemState_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemState( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemState, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -9624,14 +9600,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo(st .punTimeStamp = punTimeStamp, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchFolder, pchFolder, cchFolderSize, 0 ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -9639,26 +9615,26 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo(s .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bHighPriority) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_DownloadItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_DownloadItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bHighPriority = bHighPriority, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_DownloadItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_DownloadItem, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameServer_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameServer_params params = { .linux_side = _this->u_iface, .unWorkshopDepotID = unWorkshopDepotID, @@ -9666,132 +9642,132 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameS }; params.pszFolder = steamclient_dos_to_unix_path( pszFolder, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameServer, ¶ms ); steamclient_free_path( params.pszFolder ); return params._ret; } void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SuspendDownloads(struct w_steam_iface *_this, bool bSuspend) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SuspendDownloads_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SuspendDownloads_params params = { .linux_side = _this->u_iface, .bSuspend = bSuspend, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_SuspendDownloads( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartPlaytimeTracking_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartPlaytimeTracking_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartPlaytimeTracking( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartPlaytimeTracking, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTracking(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTracking_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTracking_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTracking( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTracking, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTrackingForAllItems(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTrackingForAllItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTrackingForAllItems_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTrackingForAllItems( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddDependency_params params = { .linux_side = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveDependency(struct w_steam_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveDependency_params params = { .linux_side = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddAppDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddAppDependency_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddAppDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddAppDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAppDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAppDependency_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAppDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAppDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetAppDependencies(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetAppDependencies_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetAppDependencies_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetAppDependencies( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetAppDependencies, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_DeleteItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_DeleteItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_DeleteItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION013_DeleteItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_DeleteItem, ¶ms ); return params._ret; } @@ -9891,8 +9867,6 @@ struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION013(void *u_ return r; } -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION014.h" - DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUserUGCRequest, 32) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest, 24) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_2, 24) @@ -9975,7 +9949,7 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION014_DeleteItem, 1 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUserUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUserUGCRequest_params params = { .linux_side = _this->u_iface, .unAccountID = unAccountID, @@ -9987,13 +9961,13 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUserUG .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUserUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUserUGCRequest, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_params params = { .linux_side = _this->u_iface, .eQueryType = eQueryType, @@ -10003,13 +9977,13 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGC .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_2_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_2_params params = { .linux_side = _this->u_iface, .eQueryType = eQueryType, @@ -10019,38 +9993,38 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGC .pchCursor = pchCursor, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_2, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUGCDetailsRequest(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUGCDetailsRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUGCDetailsRequest_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUGCDetailsRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUGCDetailsRequest, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SendQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SendQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SendQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SendQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -10058,13 +10032,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult(str .pDetails = pDetails, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -10073,13 +10047,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL .cchURLSize = cchURLSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -10088,13 +10062,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata(s .cchMetadatasize = cchMetadatasize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -10103,13 +10077,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren(s .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCStatistic_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCStatistic_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -10118,26 +10092,26 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCStatistic( .pStatValue = pStatValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCStatistic( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCStatistic, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumAdditionalPreviews_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumAdditionalPreviews_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumAdditionalPreviews( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumAdditionalPreviews, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCAdditionalPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCAdditionalPreview_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -10150,27 +10124,27 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCAdditional .pPreviewType = pPreviewType, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCAdditionalPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCAdditionalPreview, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchURLOrVideoID, pchURLOrVideoID, cchURLSize, 1 ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumKeyValueTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -10182,13 +10156,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTa .cchValueSize = cchValueSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_2(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_2_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_2_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -10198,246 +10172,246 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTa .cchValueSize = cchValueSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_2, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_ReleaseQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_ReleaseQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_ReleaseQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_ReleaseQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup(struct w_steam_iface *_this, uint64_t handle, const w_SteamParamStringArray_t *pTagGroups) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagGroups = pTagGroups, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, bool bReturnOnlyIDs) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnOnlyIDs_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnOnlyIDs_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnOnlyIDs = bReturnOnlyIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnOnlyIDs( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnOnlyIDs, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, bool bReturnKeyValueTags) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnKeyValueTags = bReturnKeyValueTags, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnLongDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnLongDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnLongDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnLongDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, bool bReturnMetadata) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnMetadata = bReturnMetadata, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, bool bReturnChildren) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnChildren_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnChildren_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnChildren = bReturnChildren, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnChildren( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnChildren, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, bool bReturnAdditionalPreviews) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnAdditionalPreviews_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnAdditionalPreviews_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnAdditionalPreviews = bReturnAdditionalPreviews, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnAdditionalPreviews( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnAdditionalPreviews, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnTotalOnly_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnTotalOnly_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnTotalOnly( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnTotalOnly, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeStats_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeStats_params params = { .linux_side = _this->u_iface, .handle = handle, .unDays = unDays, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeStats, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage_params params = { .linux_side = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedResponse_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedResponse_params params = { .linux_side = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedResponse( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedResponse, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFilter_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFilter_params params = { .linux_side = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFilter, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetMatchAnyTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetMatchAnyTag_params params = { .linux_side = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetMatchAnyTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetMatchAnyTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText_params params = { .linux_side = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDays_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDays_params params = { .linux_side = _this->u_iface, .handle = handle, .unDays = unDays, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDays( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDays, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -10445,130 +10419,130 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredKeyValueTa .pValue = pValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredKeyValueTag, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RequestUGCDetails_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RequestUGCDetails_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RequestUGCDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RequestUGCDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateItem_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartItemUpdate_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartItemUpdate, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle_params params = { .linux_side = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLanguage_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLanguage_params params = { .linux_side = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLanguage, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, .pchMetaData = pchMetaData, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility_params params = { .linux_side = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -10576,14 +10550,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent(struct }; params.pszContentFolder = steamclient_dos_to_unix_path( pszContentFolder, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent, ¶ms ); steamclient_free_path( params.pszContentFolder ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -10591,52 +10565,52 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview(struct }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowLegacyUpload(struct w_steam_iface *_this, uint64_t handle, bool bAllowLegacyUpload) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowLegacyUpload_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowLegacyUpload_params params = { .linux_side = _this->u_iface, .handle = handle, .bAllowLegacyUpload = bAllowLegacyUpload, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowLegacyUpload( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowLegacyUpload, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAllItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAllItemKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAllItemKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAllItemKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAllItemKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -10644,13 +10618,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag(st .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -10659,27 +10633,27 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile(st }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo_params params = { .linux_side = _this->u_iface, .handle = handle, .pszVideoID = pszVideoID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -10688,14 +10662,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVideo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVideo_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -10703,39 +10677,39 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVide .pszVideoID = pszVideoID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVideo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemPreview_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemPreview, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubmitItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubmitItemUpdate_params params = { .linux_side = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubmitItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubmitItemUpdate, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemUpdateProgress_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemUpdateProgress_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -10743,124 +10717,124 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemUpdateProg .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemUpdateProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemUpdateProgress, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bVoteUp) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetUserItemVote_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetUserItemVote_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bVoteUp = bVoteUp, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetUserItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetUserItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetUserItemVote_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetUserItemVote_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetUserItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetUserItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemToFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemToFavorites_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemToFavorites_params params = { .linux_side = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemToFavorites( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemToFavorites, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemFromFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemFromFavorites_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemFromFavorites_params params = { .linux_side = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemFromFavorites( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemFromFavorites, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubscribeItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_UnsubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UnsubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_UnsubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UnsubscribeItem, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetNumSubscribedItems(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetNumSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetNumSubscribedItems_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetNumSubscribedItems( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetSubscribedItems_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetSubscribedItems( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetSubscribedItems, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemState(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemState_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemState_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemState( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemState, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -10870,14 +10844,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo(st .punTimeStamp = punTimeStamp, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchFolder, pchFolder, cchFolderSize, 0 ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -10885,26 +10859,26 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo(s .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bHighPriority) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_DownloadItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_DownloadItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bHighPriority = bHighPriority, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_DownloadItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_DownloadItem, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameServer_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameServer_params params = { .linux_side = _this->u_iface, .unWorkshopDepotID = unWorkshopDepotID, @@ -10912,132 +10886,132 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameS }; params.pszFolder = steamclient_dos_to_unix_path( pszFolder, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameServer, ¶ms ); steamclient_free_path( params.pszFolder ); return params._ret; } void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SuspendDownloads(struct w_steam_iface *_this, bool bSuspend) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SuspendDownloads_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SuspendDownloads_params params = { .linux_side = _this->u_iface, .bSuspend = bSuspend, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_SuspendDownloads( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartPlaytimeTracking_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartPlaytimeTracking_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartPlaytimeTracking( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartPlaytimeTracking, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTracking(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTracking_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTracking_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTracking( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTracking, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTrackingForAllItems(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTrackingForAllItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTrackingForAllItems_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTrackingForAllItems( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddDependency_params params = { .linux_side = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveDependency(struct w_steam_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveDependency_params params = { .linux_side = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddAppDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddAppDependency_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddAppDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddAppDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAppDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAppDependency_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAppDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAppDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetAppDependencies(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetAppDependencies_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetAppDependencies_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetAppDependencies( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetAppDependencies, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_DeleteItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_DeleteItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_DeleteItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION014_DeleteItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_DeleteItem, ¶ms ); return params._ret; } @@ -11138,8 +11112,6 @@ struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION014(void *u_ return r; } -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION015.h" - DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUserUGCRequest, 32) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest, 24) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_2, 24) @@ -11227,7 +11199,7 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetWorkshopEU 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUserUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUserUGCRequest_params params = { .linux_side = _this->u_iface, .unAccountID = unAccountID, @@ -11239,13 +11211,13 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUserUG .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUserUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUserUGCRequest, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_params params = { .linux_side = _this->u_iface, .eQueryType = eQueryType, @@ -11255,13 +11227,13 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGC .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_2_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_2_params params = { .linux_side = _this->u_iface, .eQueryType = eQueryType, @@ -11271,38 +11243,38 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGC .pchCursor = pchCursor, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_2, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUGCDetailsRequest(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUGCDetailsRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUGCDetailsRequest_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUGCDetailsRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUGCDetailsRequest, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SendQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SendQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SendQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SendQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCResult_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCResult_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -11310,26 +11282,26 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCResult(str .pDetails = pDetails, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCResult( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCResult, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumTags_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -11339,13 +11311,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag(struct .cchValueSize = cchValueSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplayName(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplayName_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplayName_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -11355,13 +11327,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplay .cchValueSize = cchValueSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplayName( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplayName, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -11370,13 +11342,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL .cchURLSize = cchURLSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -11385,13 +11357,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata(s .cchMetadatasize = cchMetadatasize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -11400,13 +11372,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren(s .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCStatistic_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCStatistic_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -11415,26 +11387,26 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCStatistic( .pStatValue = pStatValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCStatistic( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCStatistic, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumAdditionalPreviews_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumAdditionalPreviews_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumAdditionalPreviews( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumAdditionalPreviews, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCAdditionalPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCAdditionalPreview_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -11447,27 +11419,27 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCAdditional .pPreviewType = pPreviewType, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCAdditionalPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCAdditionalPreview, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchURLOrVideoID, pchURLOrVideoID, cchURLSize, 1 ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumKeyValueTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -11479,13 +11451,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTa .cchValueSize = cchValueSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_2(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_2_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_2_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -11495,246 +11467,246 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTa .cchValueSize = cchValueSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_2, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_ReleaseQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_ReleaseQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_ReleaseQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_ReleaseQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup(struct w_steam_iface *_this, uint64_t handle, const w_SteamParamStringArray_t *pTagGroups) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagGroups = pTagGroups, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, bool bReturnOnlyIDs) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnOnlyIDs_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnOnlyIDs_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnOnlyIDs = bReturnOnlyIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnOnlyIDs( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnOnlyIDs, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, bool bReturnKeyValueTags) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnKeyValueTags = bReturnKeyValueTags, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnLongDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnLongDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnLongDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnLongDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, bool bReturnMetadata) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnMetadata = bReturnMetadata, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, bool bReturnChildren) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnChildren_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnChildren_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnChildren = bReturnChildren, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnChildren( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnChildren, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, bool bReturnAdditionalPreviews) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnAdditionalPreviews_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnAdditionalPreviews_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnAdditionalPreviews = bReturnAdditionalPreviews, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnAdditionalPreviews( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnAdditionalPreviews, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnTotalOnly_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnTotalOnly_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnTotalOnly( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnTotalOnly, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeStats_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeStats_params params = { .linux_side = _this->u_iface, .handle = handle, .unDays = unDays, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeStats, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage_params params = { .linux_side = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedResponse_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedResponse_params params = { .linux_side = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedResponse( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedResponse, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFilter_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFilter_params params = { .linux_side = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFilter, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetMatchAnyTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetMatchAnyTag_params params = { .linux_side = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetMatchAnyTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetMatchAnyTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText_params params = { .linux_side = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDays_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDays_params params = { .linux_side = _this->u_iface, .handle = handle, .unDays = unDays, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDays( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDays, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -11742,130 +11714,130 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredKeyValueTa .pValue = pValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredKeyValueTag, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RequestUGCDetails_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RequestUGCDetails_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RequestUGCDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RequestUGCDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateItem_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartItemUpdate_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartItemUpdate, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle_params params = { .linux_side = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLanguage_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLanguage_params params = { .linux_side = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLanguage, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, .pchMetaData = pchMetaData, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility_params params = { .linux_side = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -11873,14 +11845,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent(struct }; params.pszContentFolder = steamclient_dos_to_unix_path( pszContentFolder, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent, ¶ms ); steamclient_free_path( params.pszContentFolder ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -11888,52 +11860,52 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview(struct }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowLegacyUpload(struct w_steam_iface *_this, uint64_t handle, bool bAllowLegacyUpload) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowLegacyUpload_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowLegacyUpload_params params = { .linux_side = _this->u_iface, .handle = handle, .bAllowLegacyUpload = bAllowLegacyUpload, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowLegacyUpload( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowLegacyUpload, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAllItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAllItemKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAllItemKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAllItemKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAllItemKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -11941,13 +11913,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag(st .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -11956,27 +11928,27 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile(st }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo_params params = { .linux_side = _this->u_iface, .handle = handle, .pszVideoID = pszVideoID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -11985,14 +11957,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVideo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVideo_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -12000,39 +11972,39 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVide .pszVideoID = pszVideoID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVideo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemPreview_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemPreview, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubmitItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubmitItemUpdate_params params = { .linux_side = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubmitItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubmitItemUpdate, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemUpdateProgress_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemUpdateProgress_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -12040,124 +12012,124 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemUpdateProg .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemUpdateProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemUpdateProgress, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bVoteUp) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetUserItemVote_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetUserItemVote_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bVoteUp = bVoteUp, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetUserItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetUserItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetUserItemVote_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetUserItemVote_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetUserItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetUserItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemToFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemToFavorites_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemToFavorites_params params = { .linux_side = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemToFavorites( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemToFavorites, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemFromFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemFromFavorites_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemFromFavorites_params params = { .linux_side = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemFromFavorites( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemFromFavorites, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubscribeItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_UnsubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UnsubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_UnsubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UnsubscribeItem, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetNumSubscribedItems(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetNumSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetNumSubscribedItems_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetNumSubscribedItems( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetSubscribedItems_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetSubscribedItems( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetSubscribedItems, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemState(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemState_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemState_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemState( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemState, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -12167,14 +12139,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo(st .punTimeStamp = punTimeStamp, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchFolder, pchFolder, cchFolderSize, 0 ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -12182,26 +12154,26 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo(s .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bHighPriority) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_DownloadItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_DownloadItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bHighPriority = bHighPriority, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_DownloadItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_DownloadItem, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameServer_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameServer_params params = { .linux_side = _this->u_iface, .unWorkshopDepotID = unWorkshopDepotID, @@ -12209,154 +12181,154 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameS }; params.pszFolder = steamclient_dos_to_unix_path( pszFolder, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameServer, ¶ms ); steamclient_free_path( params.pszFolder ); return params._ret; } void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SuspendDownloads(struct w_steam_iface *_this, bool bSuspend) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SuspendDownloads_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SuspendDownloads_params params = { .linux_side = _this->u_iface, .bSuspend = bSuspend, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_SuspendDownloads( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartPlaytimeTracking_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartPlaytimeTracking_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartPlaytimeTracking( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartPlaytimeTracking, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTracking(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTracking_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTracking_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTracking( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTracking, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTrackingForAllItems(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTrackingForAllItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTrackingForAllItems_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTrackingForAllItems( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddDependency_params params = { .linux_side = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveDependency(struct w_steam_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveDependency_params params = { .linux_side = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddAppDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddAppDependency_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddAppDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddAppDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAppDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAppDependency_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAppDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAppDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetAppDependencies(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetAppDependencies_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetAppDependencies_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetAppDependencies( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetAppDependencies, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_DeleteItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_DeleteItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_DeleteItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_DeleteItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_DeleteItem, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_ShowWorkshopEULA(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_ShowWorkshopEULA_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_ShowWorkshopEULA_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_ShowWorkshopEULA( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_ShowWorkshopEULA, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetWorkshopEULAStatus(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetWorkshopEULAStatus_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetWorkshopEULAStatus_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetWorkshopEULAStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetWorkshopEULAStatus, ¶ms ); return params._ret; } @@ -12462,8 +12434,6 @@ struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION015(void *u_ return r; } -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION016.h" - DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUserUGCRequest, 32) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest, 24) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_2, 24) @@ -12553,7 +12523,7 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetWorkshopEU 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUserUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUserUGCRequest_params params = { .linux_side = _this->u_iface, .unAccountID = unAccountID, @@ -12565,13 +12535,13 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUserUG .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUserUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUserUGCRequest, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_params params = { .linux_side = _this->u_iface, .eQueryType = eQueryType, @@ -12581,13 +12551,13 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGC .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_2_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_2_params params = { .linux_side = _this->u_iface, .eQueryType = eQueryType, @@ -12597,38 +12567,38 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGC .pchCursor = pchCursor, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_2, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUGCDetailsRequest(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUGCDetailsRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUGCDetailsRequest_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUGCDetailsRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUGCDetailsRequest, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SendQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SendQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SendQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SendQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCResult_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCResult_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -12636,26 +12606,26 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCResult(str .pDetails = pDetails, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCResult( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCResult, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumTags_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -12665,13 +12635,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag(struct .cchValueSize = cchValueSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplayName(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplayName_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplayName_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -12681,13 +12651,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplay .cchValueSize = cchValueSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplayName( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplayName, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -12696,13 +12666,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL .cchURLSize = cchURLSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -12711,13 +12681,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata(s .cchMetadatasize = cchMetadatasize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -12726,13 +12696,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren(s .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -12741,26 +12711,26 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic( .pStatValue = pStatValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumAdditionalPreviews_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumAdditionalPreviews_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumAdditionalPreviews( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumAdditionalPreviews, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -12773,27 +12743,27 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditional .pPreviewType = pPreviewType, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchURLOrVideoID, pchURLOrVideoID, cchURLSize, 1 ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumKeyValueTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -12805,13 +12775,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTa .cchValueSize = cchValueSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_2(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_2_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_2_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -12821,246 +12791,246 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTa .cchValueSize = cchValueSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_2, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_ReleaseQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_ReleaseQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_ReleaseQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_ReleaseQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup(struct w_steam_iface *_this, uint64_t handle, const w_SteamParamStringArray_t *pTagGroups) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagGroups = pTagGroups, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, bool bReturnOnlyIDs) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnOnlyIDs_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnOnlyIDs_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnOnlyIDs = bReturnOnlyIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnOnlyIDs( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnOnlyIDs, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, bool bReturnKeyValueTags) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnKeyValueTags = bReturnKeyValueTags, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnLongDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnLongDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnLongDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnLongDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, bool bReturnMetadata) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnMetadata = bReturnMetadata, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, bool bReturnChildren) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnChildren_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnChildren_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnChildren = bReturnChildren, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnChildren( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnChildren, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, bool bReturnAdditionalPreviews) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnAdditionalPreviews_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnAdditionalPreviews_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnAdditionalPreviews = bReturnAdditionalPreviews, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnAdditionalPreviews( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnAdditionalPreviews, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnTotalOnly_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnTotalOnly_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnTotalOnly( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnTotalOnly, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeStats_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeStats_params params = { .linux_side = _this->u_iface, .handle = handle, .unDays = unDays, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeStats, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage_params params = { .linux_side = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedResponse_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedResponse_params params = { .linux_side = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedResponse( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedResponse, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFilter_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFilter_params params = { .linux_side = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFilter, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetMatchAnyTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetMatchAnyTag_params params = { .linux_side = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetMatchAnyTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetMatchAnyTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText_params params = { .linux_side = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDays_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDays_params params = { .linux_side = _this->u_iface, .handle = handle, .unDays = unDays, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDays( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDays, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRange(struct w_steam_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRange_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRange_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -13068,13 +13038,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRan .rtEnd = rtEnd, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRange( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRange, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRange(struct w_steam_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRange_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRange_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -13082,13 +13052,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRan .rtEnd = rtEnd, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRange( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRange, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -13096,130 +13066,130 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredKeyValueTa .pValue = pValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredKeyValueTag, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RequestUGCDetails_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RequestUGCDetails_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RequestUGCDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RequestUGCDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateItem_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartItemUpdate_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartItemUpdate, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle_params params = { .linux_side = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLanguage_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLanguage_params params = { .linux_side = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLanguage, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, .pchMetaData = pchMetaData, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility_params params = { .linux_side = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -13227,14 +13197,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent(struct }; params.pszContentFolder = steamclient_dos_to_unix_path( pszContentFolder, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent, ¶ms ); steamclient_free_path( params.pszContentFolder ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -13242,52 +13212,52 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview(struct }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowLegacyUpload(struct w_steam_iface *_this, uint64_t handle, bool bAllowLegacyUpload) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowLegacyUpload_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowLegacyUpload_params params = { .linux_side = _this->u_iface, .handle = handle, .bAllowLegacyUpload = bAllowLegacyUpload, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowLegacyUpload( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowLegacyUpload, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAllItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAllItemKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAllItemKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAllItemKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAllItemKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -13295,13 +13265,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag(st .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -13310,27 +13280,27 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile(st }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo_params params = { .linux_side = _this->u_iface, .handle = handle, .pszVideoID = pszVideoID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -13339,14 +13309,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVideo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVideo_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -13354,39 +13324,39 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVide .pszVideoID = pszVideoID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVideo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemPreview_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemPreview, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubmitItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubmitItemUpdate_params params = { .linux_side = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubmitItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubmitItemUpdate, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemUpdateProgress_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemUpdateProgress_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -13394,124 +13364,124 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemUpdateProg .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemUpdateProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemUpdateProgress, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bVoteUp) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetUserItemVote_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetUserItemVote_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bVoteUp = bVoteUp, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetUserItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetUserItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetUserItemVote_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetUserItemVote_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetUserItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetUserItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemToFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemToFavorites_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemToFavorites_params params = { .linux_side = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemToFavorites( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemToFavorites, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemFromFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemFromFavorites_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemFromFavorites_params params = { .linux_side = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemFromFavorites( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemFromFavorites, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubscribeItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_UnsubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UnsubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_UnsubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UnsubscribeItem, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetNumSubscribedItems(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetNumSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetNumSubscribedItems_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetNumSubscribedItems( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetSubscribedItems_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetSubscribedItems( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetSubscribedItems, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemState(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemState_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemState_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemState( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemState, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -13521,14 +13491,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo(st .punTimeStamp = punTimeStamp, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchFolder, pchFolder, cchFolderSize, 0 ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -13536,26 +13506,26 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo(s .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bHighPriority) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_DownloadItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_DownloadItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bHighPriority = bHighPriority, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_DownloadItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_DownloadItem, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameServer_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameServer_params params = { .linux_side = _this->u_iface, .unWorkshopDepotID = unWorkshopDepotID, @@ -13563,154 +13533,154 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameS }; params.pszFolder = steamclient_dos_to_unix_path( pszFolder, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameServer, ¶ms ); steamclient_free_path( params.pszFolder ); return params._ret; } void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SuspendDownloads(struct w_steam_iface *_this, bool bSuspend) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SuspendDownloads_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SuspendDownloads_params params = { .linux_side = _this->u_iface, .bSuspend = bSuspend, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SuspendDownloads( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartPlaytimeTracking_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartPlaytimeTracking_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartPlaytimeTracking( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartPlaytimeTracking, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTracking(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTracking_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTracking_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTracking( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTracking, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTrackingForAllItems(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTrackingForAllItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTrackingForAllItems_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTrackingForAllItems( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddDependency_params params = { .linux_side = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveDependency(struct w_steam_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveDependency_params params = { .linux_side = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddAppDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddAppDependency_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddAppDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddAppDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAppDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAppDependency_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAppDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAppDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetAppDependencies(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetAppDependencies_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetAppDependencies_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetAppDependencies( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetAppDependencies, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_DeleteItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_DeleteItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_DeleteItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_DeleteItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_DeleteItem, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_ShowWorkshopEULA(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_ShowWorkshopEULA_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_ShowWorkshopEULA_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_ShowWorkshopEULA( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_ShowWorkshopEULA, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetWorkshopEULAStatus(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetWorkshopEULAStatus_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetWorkshopEULAStatus_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetWorkshopEULAStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetWorkshopEULAStatus, ¶ms ); return params._ret; } @@ -13818,8 +13788,6 @@ struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION016(void *u_ return r; } -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION017.h" - DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUserUGCRequest, 32) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest, 24) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_2, 24) @@ -13912,7 +13880,7 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetWorkshopEU 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUserUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUserUGCRequest_params params = { .linux_side = _this->u_iface, .unAccountID = unAccountID, @@ -13924,13 +13892,13 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUserUG .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUserUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUserUGCRequest, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_params params = { .linux_side = _this->u_iface, .eQueryType = eQueryType, @@ -13940,13 +13908,13 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGC .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_2_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_2_params params = { .linux_side = _this->u_iface, .eQueryType = eQueryType, @@ -13956,38 +13924,38 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGC .pchCursor = pchCursor, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_2, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUGCDetailsRequest(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUGCDetailsRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUGCDetailsRequest_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUGCDetailsRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUGCDetailsRequest, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SendQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SendQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SendQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SendQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCResult_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCResult_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -13995,26 +13963,26 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCResult(str .pDetails = pDetails, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCResult( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCResult, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumTags_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -14024,13 +13992,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag(struct .cchValueSize = cchValueSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplayName(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplayName_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplayName_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -14040,13 +14008,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplay .cchValueSize = cchValueSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplayName( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplayName, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -14055,13 +14023,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL .cchURLSize = cchURLSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -14070,13 +14038,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata(s .cchMetadatasize = cchMetadatasize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -14085,13 +14053,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren(s .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCStatistic_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCStatistic_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -14100,26 +14068,26 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCStatistic( .pStatValue = pStatValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCStatistic( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCStatistic, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumAdditionalPreviews_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumAdditionalPreviews_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumAdditionalPreviews( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumAdditionalPreviews, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCAdditionalPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCAdditionalPreview_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -14132,27 +14100,27 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCAdditional .pPreviewType = pPreviewType, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCAdditionalPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCAdditionalPreview, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchURLOrVideoID, pchURLOrVideoID, cchURLSize, 1 ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumKeyValueTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -14164,13 +14132,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTa .cchValueSize = cchValueSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_2(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_2_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_2_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -14180,13 +14148,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTa .cchValueSize = cchValueSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_2, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCContentDescriptors_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCContentDescriptors_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -14195,246 +14163,246 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCConten .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCContentDescriptors( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCContentDescriptors, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_ReleaseQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_ReleaseQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_ReleaseQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_ReleaseQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup(struct w_steam_iface *_this, uint64_t handle, const w_SteamParamStringArray_t *pTagGroups) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagGroups = pTagGroups, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, bool bReturnOnlyIDs) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnOnlyIDs_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnOnlyIDs_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnOnlyIDs = bReturnOnlyIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnOnlyIDs( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnOnlyIDs, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, bool bReturnKeyValueTags) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnKeyValueTags = bReturnKeyValueTags, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnLongDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnLongDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnLongDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnLongDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, bool bReturnMetadata) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnMetadata = bReturnMetadata, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, bool bReturnChildren) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnChildren_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnChildren_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnChildren = bReturnChildren, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnChildren( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnChildren, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, bool bReturnAdditionalPreviews) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnAdditionalPreviews_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnAdditionalPreviews_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnAdditionalPreviews = bReturnAdditionalPreviews, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnAdditionalPreviews( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnAdditionalPreviews, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnTotalOnly_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnTotalOnly_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnTotalOnly( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnTotalOnly, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeStats_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeStats_params params = { .linux_side = _this->u_iface, .handle = handle, .unDays = unDays, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeStats, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage_params params = { .linux_side = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedResponse_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedResponse_params params = { .linux_side = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedResponse( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedResponse, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFilter_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFilter_params params = { .linux_side = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFilter, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetMatchAnyTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetMatchAnyTag_params params = { .linux_side = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetMatchAnyTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetMatchAnyTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText_params params = { .linux_side = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDays_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDays_params params = { .linux_side = _this->u_iface, .handle = handle, .unDays = unDays, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDays( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDays, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRange(struct w_steam_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRange_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRange_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -14442,13 +14410,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRan .rtEnd = rtEnd, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRange( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRange, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRange(struct w_steam_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRange_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRange_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -14456,13 +14424,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRan .rtEnd = rtEnd, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRange( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRange, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -14470,130 +14438,130 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredKeyValueTa .pValue = pValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredKeyValueTag, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RequestUGCDetails_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RequestUGCDetails_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RequestUGCDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RequestUGCDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateItem_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartItemUpdate_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartItemUpdate, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle_params params = { .linux_side = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLanguage_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLanguage_params params = { .linux_side = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLanguage, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, .pchMetaData = pchMetaData, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility_params params = { .linux_side = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -14601,14 +14569,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent(struct }; params.pszContentFolder = steamclient_dos_to_unix_path( pszContentFolder, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent, ¶ms ); steamclient_free_path( params.pszContentFolder ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -14616,52 +14584,52 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview(struct }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowLegacyUpload(struct w_steam_iface *_this, uint64_t handle, bool bAllowLegacyUpload) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowLegacyUpload_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowLegacyUpload_params params = { .linux_side = _this->u_iface, .handle = handle, .bAllowLegacyUpload = bAllowLegacyUpload, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowLegacyUpload( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowLegacyUpload, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAllItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAllItemKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAllItemKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAllItemKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAllItemKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -14669,13 +14637,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag(st .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -14684,27 +14652,27 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile(st }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo_params params = { .linux_side = _this->u_iface, .handle = handle, .pszVideoID = pszVideoID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -14713,14 +14681,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVideo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVideo_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -14728,65 +14696,65 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVide .pszVideoID = pszVideoID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVideo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescriptor(struct w_steam_iface *_this, uint64_t handle, uint32_t descid) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescriptor_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescriptor_params params = { .linux_side = _this->u_iface, .handle = handle, .descid = descid, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescriptor( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescriptor, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveContentDescriptor(struct w_steam_iface *_this, uint64_t handle, uint32_t descid) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveContentDescriptor_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveContentDescriptor_params params = { .linux_side = _this->u_iface, .handle = handle, .descid = descid, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveContentDescriptor( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveContentDescriptor, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubmitItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubmitItemUpdate_params params = { .linux_side = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubmitItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubmitItemUpdate, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemUpdateProgress_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemUpdateProgress_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -14794,124 +14762,124 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemUpdateProg .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemUpdateProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemUpdateProgress, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bVoteUp) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetUserItemVote_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetUserItemVote_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bVoteUp = bVoteUp, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetUserItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetUserItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetUserItemVote_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetUserItemVote_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetUserItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetUserItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemToFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemToFavorites_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemToFavorites_params params = { .linux_side = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemToFavorites( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemToFavorites, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemFromFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemFromFavorites_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemFromFavorites_params params = { .linux_side = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemFromFavorites( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemFromFavorites, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubscribeItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_UnsubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UnsubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_UnsubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UnsubscribeItem, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetNumSubscribedItems(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetNumSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetNumSubscribedItems_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetNumSubscribedItems( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetSubscribedItems_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetSubscribedItems( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetSubscribedItems, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemState(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemState_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemState_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemState( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemState, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -14921,14 +14889,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo(st .punTimeStamp = punTimeStamp, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchFolder, pchFolder, cchFolderSize, 0 ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -14936,26 +14904,26 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo(s .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bHighPriority) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_DownloadItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_DownloadItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bHighPriority = bHighPriority, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_DownloadItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_DownloadItem, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameServer_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameServer_params params = { .linux_side = _this->u_iface, .unWorkshopDepotID = unWorkshopDepotID, @@ -14963,154 +14931,154 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameS }; params.pszFolder = steamclient_dos_to_unix_path( pszFolder, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameServer, ¶ms ); steamclient_free_path( params.pszFolder ); return params._ret; } void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SuspendDownloads(struct w_steam_iface *_this, bool bSuspend) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SuspendDownloads_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SuspendDownloads_params params = { .linux_side = _this->u_iface, .bSuspend = bSuspend, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_SuspendDownloads( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartPlaytimeTracking_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartPlaytimeTracking_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartPlaytimeTracking( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartPlaytimeTracking, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTracking(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTracking_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTracking_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTracking( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTracking, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTrackingForAllItems(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTrackingForAllItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTrackingForAllItems_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTrackingForAllItems( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddDependency_params params = { .linux_side = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveDependency(struct w_steam_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveDependency_params params = { .linux_side = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddAppDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddAppDependency_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddAppDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddAppDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAppDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAppDependency_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAppDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAppDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetAppDependencies(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetAppDependencies_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetAppDependencies_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetAppDependencies( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetAppDependencies, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_DeleteItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_DeleteItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_DeleteItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_DeleteItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_DeleteItem, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_ShowWorkshopEULA(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_ShowWorkshopEULA_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_ShowWorkshopEULA_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_ShowWorkshopEULA( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_ShowWorkshopEULA, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetWorkshopEULAStatus(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetWorkshopEULAStatus_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetWorkshopEULAStatus_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetWorkshopEULAStatus( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetWorkshopEULAStatus, ¶ms ); return params._ret; } @@ -15221,8 +15189,6 @@ struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION017(void *u_ return r; } -#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION018.h" - DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUserUGCRequest, 32) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest, 24) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_2, 24) @@ -15316,7 +15282,7 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserConten 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUserUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUserUGCRequest_params params = { .linux_side = _this->u_iface, .unAccountID = unAccountID, @@ -15328,13 +15294,13 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUserUG .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUserUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUserUGCRequest, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_params params = { .linux_side = _this->u_iface, .eQueryType = eQueryType, @@ -15344,13 +15310,13 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGC .unPage = unPage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_2_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_2_params params = { .linux_side = _this->u_iface, .eQueryType = eQueryType, @@ -15360,38 +15326,38 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGC .pchCursor = pchCursor, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_2, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUGCDetailsRequest(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUGCDetailsRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUGCDetailsRequest_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUGCDetailsRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUGCDetailsRequest, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SendQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SendQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SendQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SendQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCResult_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCResult_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -15399,26 +15365,26 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCResult(str .pDetails = pDetails, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCResult( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCResult, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumTags_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -15428,13 +15394,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag(struct .cchValueSize = cchValueSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplayName(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplayName_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplayName_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -15444,13 +15410,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplay .cchValueSize = cchValueSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplayName( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplayName, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -15459,13 +15425,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL .cchURLSize = cchURLSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -15474,13 +15440,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata(s .cchMetadatasize = cchMetadatasize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -15489,13 +15455,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren(s .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCStatistic_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCStatistic_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -15504,26 +15470,26 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCStatistic( .pStatValue = pStatValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCStatistic( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCStatistic, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumAdditionalPreviews_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumAdditionalPreviews_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumAdditionalPreviews( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumAdditionalPreviews, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCAdditionalPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCAdditionalPreview_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -15536,27 +15502,27 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCAdditional .pPreviewType = pPreviewType, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCAdditionalPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCAdditionalPreview, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchURLOrVideoID, pchURLOrVideoID, cchURLSize, 1 ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumKeyValueTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -15568,13 +15534,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTa .cchValueSize = cchValueSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_2(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_2_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_2_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -15584,13 +15550,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTa .cchValueSize = cchValueSize, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_2, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCContentDescriptors_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCContentDescriptors_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -15599,246 +15565,246 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCConten .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCContentDescriptors( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCContentDescriptors, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_ReleaseQueryUGCRequest_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_ReleaseQueryUGCRequest_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_ReleaseQueryUGCRequest( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_ReleaseQueryUGCRequest, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup(struct w_steam_iface *_this, uint64_t handle, const w_SteamParamStringArray_t *pTagGroups) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagGroups = pTagGroups, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag_params params = { .linux_side = _this->u_iface, .handle = handle, .pTagName = pTagName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, bool bReturnOnlyIDs) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnOnlyIDs_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnOnlyIDs_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnOnlyIDs = bReturnOnlyIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnOnlyIDs( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnOnlyIDs, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, bool bReturnKeyValueTags) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnKeyValueTags = bReturnKeyValueTags, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnLongDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnLongDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnLongDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnLongDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, bool bReturnMetadata) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnMetadata = bReturnMetadata, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, bool bReturnChildren) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnChildren_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnChildren_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnChildren = bReturnChildren, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnChildren( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnChildren, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, bool bReturnAdditionalPreviews) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnAdditionalPreviews_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnAdditionalPreviews_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnAdditionalPreviews = bReturnAdditionalPreviews, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnAdditionalPreviews( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnAdditionalPreviews, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnTotalOnly_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnTotalOnly_params params = { .linux_side = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnTotalOnly( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnTotalOnly, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeStats_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeStats_params params = { .linux_side = _this->u_iface, .handle = handle, .unDays = unDays, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeStats, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage_params params = { .linux_side = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedResponse_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedResponse_params params = { .linux_side = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedResponse( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedResponse, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFilter_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFilter_params params = { .linux_side = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFilter( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFilter, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetMatchAnyTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetMatchAnyTag_params params = { .linux_side = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetMatchAnyTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetMatchAnyTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText_params params = { .linux_side = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDays_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDays_params params = { .linux_side = _this->u_iface, .handle = handle, .unDays = unDays, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDays( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDays, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRange(struct w_steam_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRange_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRange_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -15846,13 +15812,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRan .rtEnd = rtEnd, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRange( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRange, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRange(struct w_steam_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRange_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRange_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -15860,13 +15826,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRan .rtEnd = rtEnd, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRange( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRange, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -15874,117 +15840,117 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredKeyValueTa .pValue = pValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredKeyValueTag, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RequestUGCDetails_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RequestUGCDetails_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RequestUGCDetails( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RequestUGCDetails, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateItem_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartItemUpdate_params params = { .linux_side = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartItemUpdate, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle_params params = { .linux_side = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription_params params = { .linux_side = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLanguage_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLanguage_params params = { .linux_side = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLanguage, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata_params params = { .linux_side = _this->u_iface, .handle = handle, .pchMetaData = pchMetaData, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility_params params = { .linux_side = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags, bool bAllowAdminTags) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags_params params = { .linux_side = _this->u_iface, .updateHandle = updateHandle, @@ -15992,13 +15958,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags(struct w_ .bAllowAdminTags = bAllowAdminTags, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -16006,14 +15972,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent(struct }; params.pszContentFolder = steamclient_dos_to_unix_path( pszContentFolder, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent, ¶ms ); steamclient_free_path( params.pszContentFolder ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -16021,52 +15987,52 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview(struct }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowLegacyUpload(struct w_steam_iface *_this, uint64_t handle, bool bAllowLegacyUpload) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowLegacyUpload_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowLegacyUpload_params params = { .linux_side = _this->u_iface, .handle = handle, .bAllowLegacyUpload = bAllowLegacyUpload, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowLegacyUpload( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowLegacyUpload, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAllItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAllItemKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAllItemKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAllItemKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAllItemKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueTags_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueTags_params params = { .linux_side = _this->u_iface, .handle = handle, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueTags( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueTags, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -16074,13 +16040,13 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag(st .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -16089,27 +16055,27 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile(st }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo_params params = { .linux_side = _this->u_iface, .handle = handle, .pszVideoID = pszVideoID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -16118,14 +16084,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile }; params.pszPreviewFile = steamclient_dos_to_unix_path( pszPreviewFile, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile, ¶ms ); steamclient_free_path( params.pszPreviewFile ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVideo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVideo_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -16133,65 +16099,65 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVide .pszVideoID = pszVideoID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVideo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVideo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview_params params = { .linux_side = _this->u_iface, .handle = handle, .index = index, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescriptor(struct w_steam_iface *_this, uint64_t handle, uint32_t descid) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescriptor_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescriptor_params params = { .linux_side = _this->u_iface, .handle = handle, .descid = descid, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescriptor( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescriptor, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveContentDescriptor(struct w_steam_iface *_this, uint64_t handle, uint32_t descid) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveContentDescriptor_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveContentDescriptor_params params = { .linux_side = _this->u_iface, .handle = handle, .descid = descid, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveContentDescriptor( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveContentDescriptor, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubmitItemUpdate_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubmitItemUpdate_params params = { .linux_side = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubmitItemUpdate( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubmitItemUpdate, ¶ms ); 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemUpdateProgress_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemUpdateProgress_params params = { .linux_side = _this->u_iface, .handle = handle, @@ -16199,124 +16165,124 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemUpdateProg .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemUpdateProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemUpdateProgress, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bVoteUp) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetUserItemVote_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetUserItemVote_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bVoteUp = bVoteUp, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetUserItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetUserItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserItemVote_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserItemVote_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserItemVote( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserItemVote, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemToFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemToFavorites_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemToFavorites_params params = { .linux_side = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemToFavorites( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemToFavorites, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemFromFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemFromFavorites_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemFromFavorites_params params = { .linux_side = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemFromFavorites( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemFromFavorites, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubscribeItem, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_UnsubscribeItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UnsubscribeItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_UnsubscribeItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UnsubscribeItem, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetNumSubscribedItems(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetNumSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetNumSubscribedItems_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetNumSubscribedItems( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetSubscribedItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetSubscribedItems_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetSubscribedItems( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetSubscribedItems, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemState(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemState_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemState_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemState( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemState, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -16326,14 +16292,14 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo(st .punTimeStamp = punTimeStamp, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchFolder, pchFolder, cchFolderSize, 0 ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, @@ -16341,26 +16307,26 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo(s .punBytesTotal = punBytesTotal, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bHighPriority) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_DownloadItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_DownloadItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bHighPriority = bHighPriority, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_DownloadItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_DownloadItem, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameServer_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameServer_params params = { .linux_side = _this->u_iface, .unWorkshopDepotID = unWorkshopDepotID, @@ -16368,167 +16334,167 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameS }; params.pszFolder = steamclient_dos_to_unix_path( pszFolder, 0 ); TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameServer, ¶ms ); steamclient_free_path( params.pszFolder ); return params._ret; } void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SuspendDownloads(struct w_steam_iface *_this, bool bSuspend) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SuspendDownloads_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SuspendDownloads_params params = { .linux_side = _this->u_iface, .bSuspend = bSuspend, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_SuspendDownloads( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartPlaytimeTracking_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartPlaytimeTracking_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartPlaytimeTracking( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartPlaytimeTracking, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTracking(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTracking_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTracking_params params = { .linux_side = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTracking( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTracking, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTrackingForAllItems(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTrackingForAllItems_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTrackingForAllItems_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTrackingForAllItems( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddDependency_params params = { .linux_side = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveDependency(struct w_steam_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveDependency_params params = { .linux_side = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddAppDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddAppDependency_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddAppDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddAppDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAppDependency_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAppDependency_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAppDependency( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAppDependency, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetAppDependencies(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetAppDependencies_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetAppDependencies_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetAppDependencies( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetAppDependencies, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_DeleteItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_DeleteItem_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_DeleteItem_params params = { .linux_side = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_DeleteItem( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_DeleteItem, ¶ms ); return params._ret; } bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_ShowWorkshopEULA(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_ShowWorkshopEULA_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_ShowWorkshopEULA_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_ShowWorkshopEULA( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_ShowWorkshopEULA, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetWorkshopEULAStatus(struct w_steam_iface *_this) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetWorkshopEULAStatus_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetWorkshopEULAStatus_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetWorkshopEULAStatus( ¶ms ); + 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) { - struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserContentDescriptorPreferences_params params = + struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserContentDescriptorPreferences_params params = { .linux_side = _this->u_iface, .pvecDescriptors = pvecDescriptors, .cMaxEntries = cMaxEntries, }; TRACE("%p\n", _this); - cppISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserContentDescriptorPreferences( ¶ms ); + STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserContentDescriptorPreferences, ¶ms ); return params._ret; } diff --git a/lsteamclient/winISteamUnifiedMessages.c b/lsteamclient/winISteamUnifiedMessages.c index b1735a0e..22ec4a43 100644 --- a/lsteamclient/winISteamUnifiedMessages.c +++ b/lsteamclient/winISteamUnifiedMessages.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001.h" - DEFINE_THISCALL_WRAPPER(winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendMethod, 24) DEFINE_THISCALL_WRAPPER(winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseInfo, 20) DEFINE_THISCALL_WRAPPER(winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseData, 24) @@ -13,7 +11,7 @@ DEFINE_THISCALL_WRAPPER(winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_ 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) { - struct cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendMethod_params params = + struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendMethod_params params = { .linux_side = _this->u_iface, .pchServiceMethod = pchServiceMethod, @@ -22,13 +20,13 @@ uint64_t __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERS .unContext = unContext, }; TRACE("%p\n", _this); - cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendMethod( ¶ms ); + STEAMCLIENT_CALL( ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendMethod, ¶ms ); return params._ret; } bool __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseInfo(struct w_steam_iface *_this, uint64_t hHandle, uint32_t *punResponseSize, uint32_t *peResult) { - struct cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseInfo_params params = + struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseInfo_params params = { .linux_side = _this->u_iface, .hHandle = hHandle, @@ -36,13 +34,13 @@ bool __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION0 .peResult = peResult, }; TRACE("%p\n", _this); - cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseInfo, ¶ms ); return params._ret; } bool __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseData(struct w_steam_iface *_this, uint64_t hHandle, void *pResponseBuffer, uint32_t unResponseBufferSize, bool bAutoRelease) { - struct cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseData_params params = + struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseData_params params = { .linux_side = _this->u_iface, .hHandle = hHandle, @@ -51,25 +49,25 @@ bool __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION0 .bAutoRelease = bAutoRelease, }; TRACE("%p\n", _this); - cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseData( ¶ms ); + STEAMCLIENT_CALL( ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseData, ¶ms ); return params._ret; } bool __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_ReleaseMethod(struct w_steam_iface *_this, uint64_t hHandle) { - struct cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_ReleaseMethod_params params = + struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_ReleaseMethod_params params = { .linux_side = _this->u_iface, .hHandle = hHandle, }; TRACE("%p\n", _this); - cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_ReleaseMethod( ¶ms ); + STEAMCLIENT_CALL( ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_ReleaseMethod, ¶ms ); return params._ret; } bool __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNotification(struct w_steam_iface *_this, const char *pchServiceNotification, const void *pNotificationBuffer, uint32_t unNotificationBufferSize) { - struct cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNotification_params params = + struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNotification_params params = { .linux_side = _this->u_iface, .pchServiceNotification = pchServiceNotification, @@ -77,7 +75,7 @@ bool __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION0 .unNotificationBufferSize = unNotificationBufferSize, }; TRACE("%p\n", _this); - cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNotification( ¶ms ); + STEAMCLIENT_CALL( ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNotification, ¶ms ); return params._ret; } diff --git a/lsteamclient/winISteamUser.c b/lsteamclient/winISteamUser.c index b1611d39..48dfb674 100644 --- a/lsteamclient/winISteamUser.c +++ b/lsteamclient/winISteamUser.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamUser_SteamUser004.h" - DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser004_GetHSteamUser, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser004_LogOn, 12) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser004_LogOff, 4) @@ -34,142 +32,142 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser004_RequestLegacyCDKey, 8) int32_t __thiscall winISteamUser_SteamUser004_GetHSteamUser(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser004_GetHSteamUser_params params = + struct ISteamUser_SteamUser004_GetHSteamUser_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser004_GetHSteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser004_GetHSteamUser, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser004_LogOn(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamUser_SteamUser004_LogOn_params params = + struct ISteamUser_SteamUser004_LogOn_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser004_LogOn( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser004_LogOn, ¶ms ); } void __thiscall winISteamUser_SteamUser004_LogOff(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser004_LogOff_params params = + struct ISteamUser_SteamUser004_LogOff_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser004_LogOff( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser004_LogOff, ¶ms ); } bool __thiscall winISteamUser_SteamUser004_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser004_BLoggedOn_params params = + struct ISteamUser_SteamUser004_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser004_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser004_BLoggedOn, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser004_GetLogonState(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser004_GetLogonState_params params = + struct ISteamUser_SteamUser004_GetLogonState_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser004_GetLogonState( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser004_GetLogonState, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser004_BConnected(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser004_BConnected_params params = + struct ISteamUser_SteamUser004_BConnected_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser004_BConnected( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser004_BConnected, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamUser_SteamUser004_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamUser_SteamUser004_GetSteamID_params params = + struct ISteamUser_SteamUser004_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser004_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser004_GetSteamID, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser004_IsVACBanned(struct w_steam_iface *_this, int32_t nGameID) { - struct cppISteamUser_SteamUser004_IsVACBanned_params params = + struct ISteamUser_SteamUser004_IsVACBanned_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser004_IsVACBanned( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser004_IsVACBanned, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser004_RequireShowVACBannedMessage(struct w_steam_iface *_this, int32_t nGameID) { - struct cppISteamUser_SteamUser004_RequireShowVACBannedMessage_params params = + struct ISteamUser_SteamUser004_RequireShowVACBannedMessage_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser004_RequireShowVACBannedMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser004_RequireShowVACBannedMessage, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser004_AcknowledgeVACBanning(struct w_steam_iface *_this, int32_t nGameID) { - struct cppISteamUser_SteamUser004_AcknowledgeVACBanning_params params = + struct ISteamUser_SteamUser004_AcknowledgeVACBanning_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser004_AcknowledgeVACBanning( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser004_AcknowledgeVACBanning, ¶ms ); } int32_t __thiscall winISteamUser_SteamUser004_NClientGameIDAdd(struct w_steam_iface *_this, int32_t nGameID) { - struct cppISteamUser_SteamUser004_NClientGameIDAdd_params params = + struct ISteamUser_SteamUser004_NClientGameIDAdd_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser004_NClientGameIDAdd( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser004_NClientGameIDAdd, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser004_RemoveClientGame(struct w_steam_iface *_this, int32_t nClientGameID) { - struct cppISteamUser_SteamUser004_RemoveClientGame_params params = + struct ISteamUser_SteamUser004_RemoveClientGame_params params = { .linux_side = _this->u_iface, .nClientGameID = nClientGameID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser004_RemoveClientGame( ¶ms ); + 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) { - struct cppISteamUser_SteamUser004_SetClientGameServer_params params = + struct ISteamUser_SteamUser004_SetClientGameServer_params params = { .linux_side = _this->u_iface, .nClientGameID = nClientGameID, @@ -177,61 +175,61 @@ void __thiscall winISteamUser_SteamUser004_SetClientGameServer(struct w_steam_if .usPortServer = usPortServer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser004_SetClientGameServer( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser004_SetClientGameServer, ¶ms ); } void __thiscall winISteamUser_SteamUser004_SetSteam2Ticket(struct w_steam_iface *_this, uint8_t *pubTicket, int32_t cubTicket) { - struct cppISteamUser_SteamUser004_SetSteam2Ticket_params params = + struct ISteamUser_SteamUser004_SetSteam2Ticket_params params = { .linux_side = _this->u_iface, .pubTicket = pubTicket, .cubTicket = cubTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser004_SetSteam2Ticket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser004_SetSteam2Ticket, ¶ms ); } void __thiscall winISteamUser_SteamUser004_AddServerNetAddress(struct w_steam_iface *_this, uint32_t unIP, uint16_t unPort) { - struct cppISteamUser_SteamUser004_AddServerNetAddress_params params = + struct ISteamUser_SteamUser004_AddServerNetAddress_params params = { .linux_side = _this->u_iface, .unIP = unIP, .unPort = unPort, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser004_AddServerNetAddress( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser004_AddServerNetAddress, ¶ms ); } bool __thiscall winISteamUser_SteamUser004_SetEmail(struct w_steam_iface *_this, const char *pchEmail) { - struct cppISteamUser_SteamUser004_SetEmail_params params = + struct ISteamUser_SteamUser004_SetEmail_params params = { .linux_side = _this->u_iface, .pchEmail = pchEmail, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser004_SetEmail( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser004_SetEmail, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser004_GetSteamGameConnectToken(struct w_steam_iface *_this, void *pBlob, int32_t cbMaxBlob) { - struct cppISteamUser_SteamUser004_GetSteamGameConnectToken_params params = + struct ISteamUser_SteamUser004_GetSteamGameConnectToken_params params = { .linux_side = _this->u_iface, .pBlob = pBlob, .cbMaxBlob = cbMaxBlob, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser004_GetSteamGameConnectToken( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser004_GetSteamGameConnectToken, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser004_SetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, const char *pchValue) { - struct cppISteamUser_SteamUser004_SetRegistryString_params params = + struct ISteamUser_SteamUser004_SetRegistryString_params params = { .linux_side = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, @@ -239,13 +237,13 @@ bool __thiscall winISteamUser_SteamUser004_SetRegistryString(struct w_steam_ifac .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser004_SetRegistryString( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser004_SetRegistryString, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser004_GetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, char *pchValue, int32_t cbValue) { - struct cppISteamUser_SteamUser004_GetRegistryString_params params = + struct ISteamUser_SteamUser004_GetRegistryString_params params = { .linux_side = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, @@ -254,13 +252,13 @@ bool __thiscall winISteamUser_SteamUser004_GetRegistryString(struct w_steam_ifac .cbValue = cbValue, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser004_GetRegistryString( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser004_GetRegistryString, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser004_SetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t iValue) { - struct cppISteamUser_SteamUser004_SetRegistryInt_params params = + struct ISteamUser_SteamUser004_SetRegistryInt_params params = { .linux_side = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, @@ -268,13 +266,13 @@ bool __thiscall winISteamUser_SteamUser004_SetRegistryInt(struct w_steam_iface * .iValue = iValue, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser004_SetRegistryInt( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser004_SetRegistryInt, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser004_GetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t *piValue) { - struct cppISteamUser_SteamUser004_GetRegistryInt_params params = + struct ISteamUser_SteamUser004_GetRegistryInt_params params = { .linux_side = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, @@ -282,13 +280,13 @@ bool __thiscall winISteamUser_SteamUser004_GetRegistryInt(struct w_steam_iface * .piValue = piValue, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser004_GetRegistryInt( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser004_GetRegistryInt, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser004_InitiateGameConnection(struct w_steam_iface *_this, void *pBlob, int32_t cbMaxBlob, CSteamID steamID, int32_t nGameAppID, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) { - struct cppISteamUser_SteamUser004_InitiateGameConnection_params params = + struct ISteamUser_SteamUser004_InitiateGameConnection_params params = { .linux_side = _this->u_iface, .pBlob = pBlob, @@ -300,52 +298,52 @@ int32_t __thiscall winISteamUser_SteamUser004_InitiateGameConnection(struct w_st .bSecure = bSecure, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser004_InitiateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser004_InitiateGameConnection, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser004_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { - struct cppISteamUser_SteamUser004_TerminateGameConnection_params params = + struct ISteamUser_SteamUser004_TerminateGameConnection_params params = { .linux_side = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser004_TerminateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser004_TerminateGameConnection, ¶ms ); } void __thiscall winISteamUser_SteamUser004_SetSelfAsPrimaryChatDestination(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser004_SetSelfAsPrimaryChatDestination_params params = + struct ISteamUser_SteamUser004_SetSelfAsPrimaryChatDestination_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser004_SetSelfAsPrimaryChatDestination( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser004_SetSelfAsPrimaryChatDestination, ¶ms ); } bool __thiscall winISteamUser_SteamUser004_IsPrimaryChatDestination(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser004_IsPrimaryChatDestination_params params = + struct ISteamUser_SteamUser004_IsPrimaryChatDestination_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser004_IsPrimaryChatDestination( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser004_IsPrimaryChatDestination, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser004_RequestLegacyCDKey(struct w_steam_iface *_this, uint32_t iAppID) { - struct cppISteamUser_SteamUser004_RequestLegacyCDKey_params params = + struct ISteamUser_SteamUser004_RequestLegacyCDKey_params params = { .linux_side = _this->u_iface, .iAppID = iAppID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser004_RequestLegacyCDKey( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser004_RequestLegacyCDKey, ¶ms ); } extern vtable_ptr winISteamUser_SteamUser004_vtable; @@ -392,8 +390,6 @@ struct w_steam_iface *create_winISteamUser_SteamUser004(void *u_iface) return r; } -#include "cppISteamUser_SteamUser005.h" - DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser005_GetHSteamUser, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser005_LogOn, 12) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser005_LogOff, 4) @@ -436,155 +432,155 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser005_SetAccountCreationTime, 8) int32_t __thiscall winISteamUser_SteamUser005_GetHSteamUser(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser005_GetHSteamUser_params params = + struct ISteamUser_SteamUser005_GetHSteamUser_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_GetHSteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_GetHSteamUser, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser005_LogOn(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamUser_SteamUser005_LogOn_params params = + struct ISteamUser_SteamUser005_LogOn_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_LogOn( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_LogOn, ¶ms ); } void __thiscall winISteamUser_SteamUser005_LogOff(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser005_LogOff_params params = + struct ISteamUser_SteamUser005_LogOff_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_LogOff( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_LogOff, ¶ms ); } bool __thiscall winISteamUser_SteamUser005_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser005_BLoggedOn_params params = + struct ISteamUser_SteamUser005_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_BLoggedOn, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser005_GetLogonState(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser005_GetLogonState_params params = + struct ISteamUser_SteamUser005_GetLogonState_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_GetLogonState( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_GetLogonState, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser005_BConnected(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser005_BConnected_params params = + struct ISteamUser_SteamUser005_BConnected_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_BConnected( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_BConnected, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamUser_SteamUser005_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamUser_SteamUser005_GetSteamID_params params = + struct ISteamUser_SteamUser005_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_GetSteamID, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser005_IsVACBanned(struct w_steam_iface *_this, int32_t nGameID) { - struct cppISteamUser_SteamUser005_IsVACBanned_params params = + struct ISteamUser_SteamUser005_IsVACBanned_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_IsVACBanned( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_IsVACBanned, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser005_RequireShowVACBannedMessage(struct w_steam_iface *_this, int32_t nAppID) { - struct cppISteamUser_SteamUser005_RequireShowVACBannedMessage_params params = + struct ISteamUser_SteamUser005_RequireShowVACBannedMessage_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_RequireShowVACBannedMessage( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_RequireShowVACBannedMessage, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser005_AcknowledgeVACBanning(struct w_steam_iface *_this, int32_t nAppID) { - struct cppISteamUser_SteamUser005_AcknowledgeVACBanning_params params = + struct ISteamUser_SteamUser005_AcknowledgeVACBanning_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_AcknowledgeVACBanning( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_AcknowledgeVACBanning, ¶ms ); } void __thiscall winISteamUser_SteamUser005_SetSteam2Ticket(struct w_steam_iface *_this, uint8_t *pubTicket, int32_t cubTicket) { - struct cppISteamUser_SteamUser005_SetSteam2Ticket_params params = + struct ISteamUser_SteamUser005_SetSteam2Ticket_params params = { .linux_side = _this->u_iface, .pubTicket = pubTicket, .cubTicket = cubTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_SetSteam2Ticket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_SetSteam2Ticket, ¶ms ); } void __thiscall winISteamUser_SteamUser005_AddServerNetAddress(struct w_steam_iface *_this, uint32_t unIP, uint16_t unPort) { - struct cppISteamUser_SteamUser005_AddServerNetAddress_params params = + struct ISteamUser_SteamUser005_AddServerNetAddress_params params = { .linux_side = _this->u_iface, .unIP = unIP, .unPort = unPort, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_AddServerNetAddress( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_AddServerNetAddress, ¶ms ); } bool __thiscall winISteamUser_SteamUser005_SetEmail(struct w_steam_iface *_this, const char *pchEmail) { - struct cppISteamUser_SteamUser005_SetEmail_params params = + struct ISteamUser_SteamUser005_SetEmail_params params = { .linux_side = _this->u_iface, .pchEmail = pchEmail, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_SetEmail( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_SetEmail, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser005_SetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, const char *pchValue) { - struct cppISteamUser_SteamUser005_SetRegistryString_params params = + struct ISteamUser_SteamUser005_SetRegistryString_params params = { .linux_side = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, @@ -592,13 +588,13 @@ bool __thiscall winISteamUser_SteamUser005_SetRegistryString(struct w_steam_ifac .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_SetRegistryString( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_SetRegistryString, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser005_GetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, char *pchValue, int32_t cbValue) { - struct cppISteamUser_SteamUser005_GetRegistryString_params params = + struct ISteamUser_SteamUser005_GetRegistryString_params params = { .linux_side = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, @@ -607,13 +603,13 @@ bool __thiscall winISteamUser_SteamUser005_GetRegistryString(struct w_steam_ifac .cbValue = cbValue, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_GetRegistryString( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_GetRegistryString, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser005_SetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t iValue) { - struct cppISteamUser_SteamUser005_SetRegistryInt_params params = + struct ISteamUser_SteamUser005_SetRegistryInt_params params = { .linux_side = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, @@ -621,13 +617,13 @@ bool __thiscall winISteamUser_SteamUser005_SetRegistryInt(struct w_steam_iface * .iValue = iValue, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_SetRegistryInt( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_SetRegistryInt, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser005_GetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t *piValue) { - struct cppISteamUser_SteamUser005_GetRegistryInt_params params = + struct ISteamUser_SteamUser005_GetRegistryInt_params params = { .linux_side = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, @@ -635,13 +631,13 @@ bool __thiscall winISteamUser_SteamUser005_GetRegistryInt(struct w_steam_iface * .piValue = piValue, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_GetRegistryInt( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_GetRegistryInt, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser005_InitiateGameConnection(struct w_steam_iface *_this, void *pBlob, int32_t cbMaxBlob, CSteamID steamID, CGameID gameID, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) { - struct cppISteamUser_SteamUser005_InitiateGameConnection_params params = + struct ISteamUser_SteamUser005_InitiateGameConnection_params params = { .linux_side = _this->u_iface, .pBlob = pBlob, @@ -653,57 +649,57 @@ int32_t __thiscall winISteamUser_SteamUser005_InitiateGameConnection(struct w_st .bSecure = bSecure, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_InitiateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_InitiateGameConnection, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser005_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { - struct cppISteamUser_SteamUser005_TerminateGameConnection_params params = + struct ISteamUser_SteamUser005_TerminateGameConnection_params params = { .linux_side = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_TerminateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_TerminateGameConnection, ¶ms ); } void __thiscall winISteamUser_SteamUser005_SetSelfAsPrimaryChatDestination(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser005_SetSelfAsPrimaryChatDestination_params params = + struct ISteamUser_SteamUser005_SetSelfAsPrimaryChatDestination_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_SetSelfAsPrimaryChatDestination( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_SetSelfAsPrimaryChatDestination, ¶ms ); } bool __thiscall winISteamUser_SteamUser005_IsPrimaryChatDestination(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser005_IsPrimaryChatDestination_params params = + struct ISteamUser_SteamUser005_IsPrimaryChatDestination_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_IsPrimaryChatDestination( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_IsPrimaryChatDestination, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser005_RequestLegacyCDKey(struct w_steam_iface *_this, uint32_t nAppID) { - struct cppISteamUser_SteamUser005_RequestLegacyCDKey_params params = + struct ISteamUser_SteamUser005_RequestLegacyCDKey_params params = { .linux_side = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_RequestLegacyCDKey( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_RequestLegacyCDKey, ¶ms ); } bool __thiscall winISteamUser_SteamUser005_SendGuestPassByEmail(struct w_steam_iface *_this, const char *pchEmailAccount, uint64_t gidGuestPassID, bool bResending) { - struct cppISteamUser_SteamUser005_SendGuestPassByEmail_params params = + struct ISteamUser_SteamUser005_SendGuestPassByEmail_params params = { .linux_side = _this->u_iface, .pchEmailAccount = pchEmailAccount, @@ -711,13 +707,13 @@ bool __thiscall winISteamUser_SteamUser005_SendGuestPassByEmail(struct w_steam_i .bResending = bResending, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_SendGuestPassByEmail( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_SendGuestPassByEmail, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser005_SendGuestPassByAccountID(struct w_steam_iface *_this, uint32_t uAccountID, uint64_t gidGuestPassID, bool bResending) { - struct cppISteamUser_SteamUser005_SendGuestPassByAccountID_params params = + struct ISteamUser_SteamUser005_SendGuestPassByAccountID_params params = { .linux_side = _this->u_iface, .uAccountID = uAccountID, @@ -725,70 +721,70 @@ bool __thiscall winISteamUser_SteamUser005_SendGuestPassByAccountID(struct w_ste .bResending = bResending, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_SendGuestPassByAccountID( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_SendGuestPassByAccountID, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser005_AckGuestPass(struct w_steam_iface *_this, const char *pchGuestPassCode) { - struct cppISteamUser_SteamUser005_AckGuestPass_params params = + struct ISteamUser_SteamUser005_AckGuestPass_params params = { .linux_side = _this->u_iface, .pchGuestPassCode = pchGuestPassCode, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_AckGuestPass( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_AckGuestPass, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser005_RedeemGuestPass(struct w_steam_iface *_this, const char *pchGuestPassCode) { - struct cppISteamUser_SteamUser005_RedeemGuestPass_params params = + struct ISteamUser_SteamUser005_RedeemGuestPass_params params = { .linux_side = _this->u_iface, .pchGuestPassCode = pchGuestPassCode, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_RedeemGuestPass( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_RedeemGuestPass, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser005_GetGuestPassToGiveCount(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser005_GetGuestPassToGiveCount_params params = + struct ISteamUser_SteamUser005_GetGuestPassToGiveCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_GetGuestPassToGiveCount( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_GetGuestPassToGiveCount, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser005_GetGuestPassToRedeemCount(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser005_GetGuestPassToRedeemCount_params params = + struct ISteamUser_SteamUser005_GetGuestPassToRedeemCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_GetGuestPassToRedeemCount( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_GetGuestPassToRedeemCount, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser005_GetGuestPassLastUpdateTime(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser005_GetGuestPassLastUpdateTime_params params = + struct ISteamUser_SteamUser005_GetGuestPassLastUpdateTime_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_GetGuestPassLastUpdateTime( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_GetGuestPassLastUpdateTime, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser005_GetGuestPassToGiveInfo(struct w_steam_iface *_this, uint32_t nPassIndex, uint64_t *pgidGuestPassID, uint32_t *pnPackageID, uint32_t *pRTime32Created, uint32_t *pRTime32Expiration, uint32_t *pRTime32Sent, uint32_t *pRTime32Redeemed, char *pchRecipientAddress, int32_t cRecipientAddressSize) { - struct cppISteamUser_SteamUser005_GetGuestPassToGiveInfo_params params = + struct ISteamUser_SteamUser005_GetGuestPassToGiveInfo_params params = { .linux_side = _this->u_iface, .nPassIndex = nPassIndex, @@ -802,13 +798,13 @@ bool __thiscall winISteamUser_SteamUser005_GetGuestPassToGiveInfo(struct w_steam .cRecipientAddressSize = cRecipientAddressSize, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_GetGuestPassToGiveInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_GetGuestPassToGiveInfo, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser005_GetGuestPassToRedeemInfo(struct w_steam_iface *_this, uint32_t nPassIndex, uint64_t *pgidGuestPassID, uint32_t *pnPackageID, uint32_t *pRTime32Created, uint32_t *pRTime32Expiration, uint32_t *pRTime32Sent, uint32_t *pRTime32Redeemed) { - struct cppISteamUser_SteamUser005_GetGuestPassToRedeemInfo_params params = + struct ISteamUser_SteamUser005_GetGuestPassToRedeemInfo_params params = { .linux_side = _this->u_iface, .nPassIndex = nPassIndex, @@ -820,13 +816,13 @@ bool __thiscall winISteamUser_SteamUser005_GetGuestPassToRedeemInfo(struct w_ste .pRTime32Redeemed = pRTime32Redeemed, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_GetGuestPassToRedeemInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_GetGuestPassToRedeemInfo, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress(struct w_steam_iface *_this, uint32_t nPassIndex, char *pchSenderAddress, int32_t cSenderAddressSize) { - struct cppISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress_params params = + struct ISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress_params params = { .linux_side = _this->u_iface, .nPassIndex = nPassIndex, @@ -834,13 +830,13 @@ bool __thiscall winISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress(str .cSenderAddressSize = cSenderAddressSize, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser005_GetGuestPassToRedeemSenderName(struct w_steam_iface *_this, uint32_t nPassIndex, char *pchSenderName, int32_t cSenderNameSize) { - struct cppISteamUser_SteamUser005_GetGuestPassToRedeemSenderName_params params = + struct ISteamUser_SteamUser005_GetGuestPassToRedeemSenderName_params params = { .linux_side = _this->u_iface, .nPassIndex = nPassIndex, @@ -848,36 +844,36 @@ bool __thiscall winISteamUser_SteamUser005_GetGuestPassToRedeemSenderName(struct .cSenderNameSize = cSenderNameSize, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_GetGuestPassToRedeemSenderName( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_GetGuestPassToRedeemSenderName, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser005_AcknowledgeMessageByGID(struct w_steam_iface *_this, const char *pchMessageGID) { - struct cppISteamUser_SteamUser005_AcknowledgeMessageByGID_params params = + struct ISteamUser_SteamUser005_AcknowledgeMessageByGID_params params = { .linux_side = _this->u_iface, .pchMessageGID = pchMessageGID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_AcknowledgeMessageByGID( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_AcknowledgeMessageByGID, ¶ms ); } bool __thiscall winISteamUser_SteamUser005_SetLanguage(struct w_steam_iface *_this, const char *pchLanguage) { - struct cppISteamUser_SteamUser005_SetLanguage_params params = + struct ISteamUser_SteamUser005_SetLanguage_params params = { .linux_side = _this->u_iface, .pchLanguage = pchLanguage, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_SetLanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_SetLanguage, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser005_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { - struct cppISteamUser_SteamUser005_TrackAppUsageEvent_params params = + struct ISteamUser_SteamUser005_TrackAppUsageEvent_params params = { .linux_side = _this->u_iface, .gameID = gameID, @@ -885,40 +881,40 @@ void __thiscall winISteamUser_SteamUser005_TrackAppUsageEvent(struct w_steam_ifa .pchExtraInfo = pchExtraInfo, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_TrackAppUsageEvent( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_TrackAppUsageEvent, ¶ms ); } void __thiscall winISteamUser_SteamUser005_SetAccountName(struct w_steam_iface *_this, const char *pchAccountName) { - struct cppISteamUser_SteamUser005_SetAccountName_params params = + struct ISteamUser_SteamUser005_SetAccountName_params params = { .linux_side = _this->u_iface, .pchAccountName = pchAccountName, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_SetAccountName( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_SetAccountName, ¶ms ); } void __thiscall winISteamUser_SteamUser005_SetPassword(struct w_steam_iface *_this, const char *pchPassword) { - struct cppISteamUser_SteamUser005_SetPassword_params params = + struct ISteamUser_SteamUser005_SetPassword_params params = { .linux_side = _this->u_iface, .pchPassword = pchPassword, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_SetPassword( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_SetPassword, ¶ms ); } void __thiscall winISteamUser_SteamUser005_SetAccountCreationTime(struct w_steam_iface *_this, uint32_t rt) { - struct cppISteamUser_SteamUser005_SetAccountCreationTime_params params = + struct ISteamUser_SteamUser005_SetAccountCreationTime_params params = { .linux_side = _this->u_iface, .rt = rt, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser005_SetAccountCreationTime( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser005_SetAccountCreationTime, ¶ms ); } extern vtable_ptr winISteamUser_SteamUser005_vtable; @@ -978,8 +974,6 @@ struct w_steam_iface *create_winISteamUser_SteamUser005(void *u_iface) return r; } -#include "cppISteamUser_SteamUser006.h" - DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser006_GetHSteamUser, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser006_LogOn, 12) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser006_LogOff, 4) @@ -995,62 +989,62 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser006_TrackAppUsageEvent, 20) int32_t __thiscall winISteamUser_SteamUser006_GetHSteamUser(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser006_GetHSteamUser_params params = + struct ISteamUser_SteamUser006_GetHSteamUser_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser006_GetHSteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser006_GetHSteamUser, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser006_LogOn(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamUser_SteamUser006_LogOn_params params = + struct ISteamUser_SteamUser006_LogOn_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser006_LogOn( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser006_LogOn, ¶ms ); } void __thiscall winISteamUser_SteamUser006_LogOff(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser006_LogOff_params params = + struct ISteamUser_SteamUser006_LogOff_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser006_LogOff( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser006_LogOff, ¶ms ); } bool __thiscall winISteamUser_SteamUser006_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser006_BLoggedOn_params params = + struct ISteamUser_SteamUser006_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser006_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser006_BLoggedOn, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamUser_SteamUser006_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamUser_SteamUser006_GetSteamID_params params = + struct ISteamUser_SteamUser006_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser006_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser006_GetSteamID, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser006_SetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, const char *pchValue) { - struct cppISteamUser_SteamUser006_SetRegistryString_params params = + struct ISteamUser_SteamUser006_SetRegistryString_params params = { .linux_side = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, @@ -1058,13 +1052,13 @@ bool __thiscall winISteamUser_SteamUser006_SetRegistryString(struct w_steam_ifac .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser006_SetRegistryString( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser006_SetRegistryString, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser006_GetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, char *pchValue, int32_t cbValue) { - struct cppISteamUser_SteamUser006_GetRegistryString_params params = + struct ISteamUser_SteamUser006_GetRegistryString_params params = { .linux_side = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, @@ -1073,13 +1067,13 @@ bool __thiscall winISteamUser_SteamUser006_GetRegistryString(struct w_steam_ifac .cbValue = cbValue, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser006_GetRegistryString( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser006_GetRegistryString, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser006_SetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t iValue) { - struct cppISteamUser_SteamUser006_SetRegistryInt_params params = + struct ISteamUser_SteamUser006_SetRegistryInt_params params = { .linux_side = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, @@ -1087,13 +1081,13 @@ bool __thiscall winISteamUser_SteamUser006_SetRegistryInt(struct w_steam_iface * .iValue = iValue, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser006_SetRegistryInt( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser006_SetRegistryInt, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser006_GetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t *piValue) { - struct cppISteamUser_SteamUser006_GetRegistryInt_params params = + struct ISteamUser_SteamUser006_GetRegistryInt_params params = { .linux_side = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, @@ -1101,13 +1095,13 @@ bool __thiscall winISteamUser_SteamUser006_GetRegistryInt(struct w_steam_iface * .piValue = piValue, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser006_GetRegistryInt( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser006_GetRegistryInt, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser006_InitiateGameConnection(struct w_steam_iface *_this, void *pBlob, int32_t cbMaxBlob, CSteamID steamID, CGameID gameID, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) { - struct cppISteamUser_SteamUser006_InitiateGameConnection_params params = + struct ISteamUser_SteamUser006_InitiateGameConnection_params params = { .linux_side = _this->u_iface, .pBlob = pBlob, @@ -1119,25 +1113,25 @@ int32_t __thiscall winISteamUser_SteamUser006_InitiateGameConnection(struct w_st .bSecure = bSecure, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser006_InitiateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser006_InitiateGameConnection, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser006_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { - struct cppISteamUser_SteamUser006_TerminateGameConnection_params params = + struct ISteamUser_SteamUser006_TerminateGameConnection_params params = { .linux_side = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser006_TerminateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser006_TerminateGameConnection, ¶ms ); } void __thiscall winISteamUser_SteamUser006_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { - struct cppISteamUser_SteamUser006_TrackAppUsageEvent_params params = + struct ISteamUser_SteamUser006_TrackAppUsageEvent_params params = { .linux_side = _this->u_iface, .gameID = gameID, @@ -1145,7 +1139,7 @@ void __thiscall winISteamUser_SteamUser006_TrackAppUsageEvent(struct w_steam_ifa .pchExtraInfo = pchExtraInfo, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser006_TrackAppUsageEvent( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser006_TrackAppUsageEvent, ¶ms ); } extern vtable_ptr winISteamUser_SteamUser006_vtable; @@ -1178,8 +1172,6 @@ struct w_steam_iface *create_winISteamUser_SteamUser006(void *u_iface) return r; } -#include "cppISteamUser_SteamUser007.h" - DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser007_GetHSteamUser, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser007_LogOn, 12) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser007_LogOff, 4) @@ -1196,62 +1188,62 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser007_RefreshSteam2Login, 4) int32_t __thiscall winISteamUser_SteamUser007_GetHSteamUser(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser007_GetHSteamUser_params params = + struct ISteamUser_SteamUser007_GetHSteamUser_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser007_GetHSteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser007_GetHSteamUser, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser007_LogOn(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamUser_SteamUser007_LogOn_params params = + struct ISteamUser_SteamUser007_LogOn_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser007_LogOn( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser007_LogOn, ¶ms ); } void __thiscall winISteamUser_SteamUser007_LogOff(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser007_LogOff_params params = + struct ISteamUser_SteamUser007_LogOff_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser007_LogOff( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser007_LogOff, ¶ms ); } bool __thiscall winISteamUser_SteamUser007_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser007_BLoggedOn_params params = + struct ISteamUser_SteamUser007_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser007_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser007_BLoggedOn, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamUser_SteamUser007_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamUser_SteamUser007_GetSteamID_params params = + struct ISteamUser_SteamUser007_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser007_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser007_GetSteamID, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser007_SetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, const char *pchValue) { - struct cppISteamUser_SteamUser007_SetRegistryString_params params = + struct ISteamUser_SteamUser007_SetRegistryString_params params = { .linux_side = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, @@ -1259,13 +1251,13 @@ bool __thiscall winISteamUser_SteamUser007_SetRegistryString(struct w_steam_ifac .pchValue = pchValue, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser007_SetRegistryString( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser007_SetRegistryString, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser007_GetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, char *pchValue, int32_t cbValue) { - struct cppISteamUser_SteamUser007_GetRegistryString_params params = + struct ISteamUser_SteamUser007_GetRegistryString_params params = { .linux_side = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, @@ -1274,13 +1266,13 @@ bool __thiscall winISteamUser_SteamUser007_GetRegistryString(struct w_steam_ifac .cbValue = cbValue, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser007_GetRegistryString( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser007_GetRegistryString, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser007_SetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t iValue) { - struct cppISteamUser_SteamUser007_SetRegistryInt_params params = + struct ISteamUser_SteamUser007_SetRegistryInt_params params = { .linux_side = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, @@ -1288,13 +1280,13 @@ bool __thiscall winISteamUser_SteamUser007_SetRegistryInt(struct w_steam_iface * .iValue = iValue, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser007_SetRegistryInt( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser007_SetRegistryInt, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser007_GetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t *piValue) { - struct cppISteamUser_SteamUser007_GetRegistryInt_params params = + struct ISteamUser_SteamUser007_GetRegistryInt_params params = { .linux_side = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, @@ -1302,13 +1294,13 @@ bool __thiscall winISteamUser_SteamUser007_GetRegistryInt(struct w_steam_iface * .piValue = piValue, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser007_GetRegistryInt( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser007_GetRegistryInt, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser007_InitiateGameConnection(struct w_steam_iface *_this, void *pBlob, int32_t cbMaxBlob, CSteamID steamID, CGameID gameID, uint32_t unIPServer, uint16_t usPortServer, bool bSecure, void *pvSteam2GetEncryptionKey, int32_t cbSteam2GetEncryptionKey) { - struct cppISteamUser_SteamUser007_InitiateGameConnection_params params = + struct ISteamUser_SteamUser007_InitiateGameConnection_params params = { .linux_side = _this->u_iface, .pBlob = pBlob, @@ -1322,25 +1314,25 @@ int32_t __thiscall winISteamUser_SteamUser007_InitiateGameConnection(struct w_st .cbSteam2GetEncryptionKey = cbSteam2GetEncryptionKey, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser007_InitiateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser007_InitiateGameConnection, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser007_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { - struct cppISteamUser_SteamUser007_TerminateGameConnection_params params = + struct ISteamUser_SteamUser007_TerminateGameConnection_params params = { .linux_side = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser007_TerminateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser007_TerminateGameConnection, ¶ms ); } void __thiscall winISteamUser_SteamUser007_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { - struct cppISteamUser_SteamUser007_TrackAppUsageEvent_params params = + struct ISteamUser_SteamUser007_TrackAppUsageEvent_params params = { .linux_side = _this->u_iface, .gameID = gameID, @@ -1348,17 +1340,17 @@ void __thiscall winISteamUser_SteamUser007_TrackAppUsageEvent(struct w_steam_ifa .pchExtraInfo = pchExtraInfo, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser007_TrackAppUsageEvent( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser007_TrackAppUsageEvent, ¶ms ); } void __thiscall winISteamUser_SteamUser007_RefreshSteam2Login(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser007_RefreshSteam2Login_params params = + struct ISteamUser_SteamUser007_RefreshSteam2Login_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser007_RefreshSteam2Login( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser007_RefreshSteam2Login, ¶ms ); } extern vtable_ptr winISteamUser_SteamUser007_vtable; @@ -1392,8 +1384,6 @@ struct w_steam_iface *create_winISteamUser_SteamUser007(void *u_iface) return r; } -#include "cppISteamUser_SteamUser008.h" - DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser008_GetHSteamUser, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser008_BLoggedOn, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser008_GetSteamID, 8) @@ -1404,41 +1394,41 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser008_RefreshSteam2Login, 4) int32_t __thiscall winISteamUser_SteamUser008_GetHSteamUser(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser008_GetHSteamUser_params params = + struct ISteamUser_SteamUser008_GetHSteamUser_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser008_GetHSteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser008_GetHSteamUser, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser008_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser008_BLoggedOn_params params = + struct ISteamUser_SteamUser008_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser008_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser008_BLoggedOn, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamUser_SteamUser008_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamUser_SteamUser008_GetSteamID_params params = + struct ISteamUser_SteamUser008_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser008_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser008_GetSteamID, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser008_InitiateGameConnection(struct w_steam_iface *_this, void *pBlob, int32_t cbMaxBlob, CSteamID steamID, CGameID gameID, uint32_t unIPServer, uint16_t usPortServer, bool bSecure, void *pvSteam2GetEncryptionKey, int32_t cbSteam2GetEncryptionKey) { - struct cppISteamUser_SteamUser008_InitiateGameConnection_params params = + struct ISteamUser_SteamUser008_InitiateGameConnection_params params = { .linux_side = _this->u_iface, .pBlob = pBlob, @@ -1452,25 +1442,25 @@ int32_t __thiscall winISteamUser_SteamUser008_InitiateGameConnection(struct w_st .cbSteam2GetEncryptionKey = cbSteam2GetEncryptionKey, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser008_InitiateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser008_InitiateGameConnection, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser008_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { - struct cppISteamUser_SteamUser008_TerminateGameConnection_params params = + struct ISteamUser_SteamUser008_TerminateGameConnection_params params = { .linux_side = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser008_TerminateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser008_TerminateGameConnection, ¶ms ); } void __thiscall winISteamUser_SteamUser008_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { - struct cppISteamUser_SteamUser008_TrackAppUsageEvent_params params = + struct ISteamUser_SteamUser008_TrackAppUsageEvent_params params = { .linux_side = _this->u_iface, .gameID = gameID, @@ -1478,17 +1468,17 @@ void __thiscall winISteamUser_SteamUser008_TrackAppUsageEvent(struct w_steam_ifa .pchExtraInfo = pchExtraInfo, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser008_TrackAppUsageEvent( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser008_TrackAppUsageEvent, ¶ms ); } void __thiscall winISteamUser_SteamUser008_RefreshSteam2Login(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser008_RefreshSteam2Login_params params = + struct ISteamUser_SteamUser008_RefreshSteam2Login_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser008_RefreshSteam2Login( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser008_RefreshSteam2Login, ¶ms ); } extern vtable_ptr winISteamUser_SteamUser008_vtable; @@ -1516,8 +1506,6 @@ struct w_steam_iface *create_winISteamUser_SteamUser008(void *u_iface) return r; } -#include "cppISteamUser_SteamUser009.h" - DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser009_GetHSteamUser, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser009_BLoggedOn, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser009_GetSteamID, 8) @@ -1528,41 +1516,41 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser009_RefreshSteam2Login, 4) int32_t __thiscall winISteamUser_SteamUser009_GetHSteamUser(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser009_GetHSteamUser_params params = + struct ISteamUser_SteamUser009_GetHSteamUser_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser009_GetHSteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser009_GetHSteamUser, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser009_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser009_BLoggedOn_params params = + struct ISteamUser_SteamUser009_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser009_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser009_BLoggedOn, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamUser_SteamUser009_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamUser_SteamUser009_GetSteamID_params params = + struct ISteamUser_SteamUser009_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser009_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser009_GetSteamID, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser009_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, CGameID gameID, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) { - struct cppISteamUser_SteamUser009_InitiateGameConnection_params params = + struct ISteamUser_SteamUser009_InitiateGameConnection_params params = { .linux_side = _this->u_iface, .pAuthBlob = pAuthBlob, @@ -1574,25 +1562,25 @@ int32_t __thiscall winISteamUser_SteamUser009_InitiateGameConnection(struct w_st .bSecure = bSecure, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser009_InitiateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser009_InitiateGameConnection, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser009_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { - struct cppISteamUser_SteamUser009_TerminateGameConnection_params params = + struct ISteamUser_SteamUser009_TerminateGameConnection_params params = { .linux_side = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser009_TerminateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser009_TerminateGameConnection, ¶ms ); } void __thiscall winISteamUser_SteamUser009_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { - struct cppISteamUser_SteamUser009_TrackAppUsageEvent_params params = + struct ISteamUser_SteamUser009_TrackAppUsageEvent_params params = { .linux_side = _this->u_iface, .gameID = gameID, @@ -1600,17 +1588,17 @@ void __thiscall winISteamUser_SteamUser009_TrackAppUsageEvent(struct w_steam_ifa .pchExtraInfo = pchExtraInfo, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser009_TrackAppUsageEvent( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser009_TrackAppUsageEvent, ¶ms ); } void __thiscall winISteamUser_SteamUser009_RefreshSteam2Login(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser009_RefreshSteam2Login_params params = + struct ISteamUser_SteamUser009_RefreshSteam2Login_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser009_RefreshSteam2Login( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser009_RefreshSteam2Login, ¶ms ); } extern vtable_ptr winISteamUser_SteamUser009_vtable; @@ -1638,8 +1626,6 @@ struct w_steam_iface *create_winISteamUser_SteamUser009(void *u_iface) return r; } -#include "cppISteamUser_SteamUser010.h" - DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser010_GetHSteamUser, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser010_BLoggedOn, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser010_GetSteamID, 8) @@ -1649,41 +1635,41 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser010_TrackAppUsageEvent, 20) int32_t __thiscall winISteamUser_SteamUser010_GetHSteamUser(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser010_GetHSteamUser_params params = + struct ISteamUser_SteamUser010_GetHSteamUser_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser010_GetHSteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser010_GetHSteamUser, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser010_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser010_BLoggedOn_params params = + struct ISteamUser_SteamUser010_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser010_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser010_BLoggedOn, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamUser_SteamUser010_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamUser_SteamUser010_GetSteamID_params params = + struct ISteamUser_SteamUser010_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser010_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser010_GetSteamID, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser010_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) { - struct cppISteamUser_SteamUser010_InitiateGameConnection_params params = + struct ISteamUser_SteamUser010_InitiateGameConnection_params params = { .linux_side = _this->u_iface, .pAuthBlob = pAuthBlob, @@ -1694,25 +1680,25 @@ int32_t __thiscall winISteamUser_SteamUser010_InitiateGameConnection(struct w_st .bSecure = bSecure, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser010_InitiateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser010_InitiateGameConnection, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser010_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { - struct cppISteamUser_SteamUser010_TerminateGameConnection_params params = + struct ISteamUser_SteamUser010_TerminateGameConnection_params params = { .linux_side = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser010_TerminateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser010_TerminateGameConnection, ¶ms ); } void __thiscall winISteamUser_SteamUser010_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { - struct cppISteamUser_SteamUser010_TrackAppUsageEvent_params params = + struct ISteamUser_SteamUser010_TrackAppUsageEvent_params params = { .linux_side = _this->u_iface, .gameID = gameID, @@ -1720,7 +1706,7 @@ void __thiscall winISteamUser_SteamUser010_TrackAppUsageEvent(struct w_steam_ifa .pchExtraInfo = pchExtraInfo, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser010_TrackAppUsageEvent( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser010_TrackAppUsageEvent, ¶ms ); } extern vtable_ptr winISteamUser_SteamUser010_vtable; @@ -1747,8 +1733,6 @@ struct w_steam_iface *create_winISteamUser_SteamUser010(void *u_iface) return r; } -#include "cppISteamUser_SteamUser011.h" - DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser011_GetHSteamUser, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser011_BLoggedOn, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser011_GetSteamID, 8) @@ -1763,41 +1747,41 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser011_DecompressVoice, 24) int32_t __thiscall winISteamUser_SteamUser011_GetHSteamUser(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser011_GetHSteamUser_params params = + struct ISteamUser_SteamUser011_GetHSteamUser_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser011_GetHSteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser011_GetHSteamUser, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser011_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser011_BLoggedOn_params params = + struct ISteamUser_SteamUser011_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser011_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser011_BLoggedOn, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamUser_SteamUser011_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamUser_SteamUser011_GetSteamID_params params = + struct ISteamUser_SteamUser011_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser011_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser011_GetSteamID, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser011_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) { - struct cppISteamUser_SteamUser011_InitiateGameConnection_params params = + struct ISteamUser_SteamUser011_InitiateGameConnection_params params = { .linux_side = _this->u_iface, .pAuthBlob = pAuthBlob, @@ -1808,25 +1792,25 @@ int32_t __thiscall winISteamUser_SteamUser011_InitiateGameConnection(struct w_st .bSecure = bSecure, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser011_InitiateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser011_InitiateGameConnection, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser011_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { - struct cppISteamUser_SteamUser011_TerminateGameConnection_params params = + struct ISteamUser_SteamUser011_TerminateGameConnection_params params = { .linux_side = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser011_TerminateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser011_TerminateGameConnection, ¶ms ); } void __thiscall winISteamUser_SteamUser011_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { - struct cppISteamUser_SteamUser011_TrackAppUsageEvent_params params = + struct ISteamUser_SteamUser011_TrackAppUsageEvent_params params = { .linux_side = _this->u_iface, .gameID = gameID, @@ -1834,46 +1818,46 @@ void __thiscall winISteamUser_SteamUser011_TrackAppUsageEvent(struct w_steam_ifa .pchExtraInfo = pchExtraInfo, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser011_TrackAppUsageEvent( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser011_TrackAppUsageEvent, ¶ms ); } bool __thiscall winISteamUser_SteamUser011_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) { - struct cppISteamUser_SteamUser011_GetUserDataFolder_params params = + struct ISteamUser_SteamUser011_GetUserDataFolder_params params = { .linux_side = _this->u_iface, .pchBuffer = pchBuffer, .cubBuffer = cubBuffer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser011_GetUserDataFolder( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser011_GetUserDataFolder, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchBuffer, pchBuffer, cubBuffer, 0 ); return params._ret; } void __thiscall winISteamUser_SteamUser011_StartVoiceRecording(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser011_StartVoiceRecording_params params = + struct ISteamUser_SteamUser011_StartVoiceRecording_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser011_StartVoiceRecording( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser011_StartVoiceRecording, ¶ms ); } void __thiscall winISteamUser_SteamUser011_StopVoiceRecording(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser011_StopVoiceRecording_params params = + struct ISteamUser_SteamUser011_StopVoiceRecording_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser011_StopVoiceRecording( ¶ms ); + 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) { - struct cppISteamUser_SteamUser011_GetCompressedVoice_params params = + struct ISteamUser_SteamUser011_GetCompressedVoice_params params = { .linux_side = _this->u_iface, .pDestBuffer = pDestBuffer, @@ -1881,13 +1865,13 @@ uint32_t __thiscall winISteamUser_SteamUser011_GetCompressedVoice(struct w_steam .nBytesWritten = nBytesWritten, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser011_GetCompressedVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser011_GetCompressedVoice, ¶ms ); 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) { - struct cppISteamUser_SteamUser011_DecompressVoice_params params = + struct ISteamUser_SteamUser011_DecompressVoice_params params = { .linux_side = _this->u_iface, .pCompressed = pCompressed, @@ -1897,7 +1881,7 @@ uint32_t __thiscall winISteamUser_SteamUser011_DecompressVoice(struct w_steam_if .nBytesWritten = nBytesWritten, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser011_DecompressVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser011_DecompressVoice, ¶ms ); return params._ret; } @@ -1930,8 +1914,6 @@ struct w_steam_iface *create_winISteamUser_SteamUser011(void *u_iface) return r; } -#include "cppISteamUser_SteamUser012.h" - DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser012_GetHSteamUser, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser012_BLoggedOn, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser012_GetSteamID, 8) @@ -1951,41 +1933,41 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser012_UserHasLicenseForApp, 16) int32_t __thiscall winISteamUser_SteamUser012_GetHSteamUser(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser012_GetHSteamUser_params params = + struct ISteamUser_SteamUser012_GetHSteamUser_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser012_GetHSteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser012_GetHSteamUser, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser012_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser012_BLoggedOn_params params = + struct ISteamUser_SteamUser012_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser012_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser012_BLoggedOn, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamUser_SteamUser012_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamUser_SteamUser012_GetSteamID_params params = + struct ISteamUser_SteamUser012_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser012_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser012_GetSteamID, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser012_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) { - struct cppISteamUser_SteamUser012_InitiateGameConnection_params params = + struct ISteamUser_SteamUser012_InitiateGameConnection_params params = { .linux_side = _this->u_iface, .pAuthBlob = pAuthBlob, @@ -1996,25 +1978,25 @@ int32_t __thiscall winISteamUser_SteamUser012_InitiateGameConnection(struct w_st .bSecure = bSecure, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser012_InitiateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser012_InitiateGameConnection, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser012_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { - struct cppISteamUser_SteamUser012_TerminateGameConnection_params params = + struct ISteamUser_SteamUser012_TerminateGameConnection_params params = { .linux_side = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser012_TerminateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser012_TerminateGameConnection, ¶ms ); } void __thiscall winISteamUser_SteamUser012_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { - struct cppISteamUser_SteamUser012_TrackAppUsageEvent_params params = + struct ISteamUser_SteamUser012_TrackAppUsageEvent_params params = { .linux_side = _this->u_iface, .gameID = gameID, @@ -2022,46 +2004,46 @@ void __thiscall winISteamUser_SteamUser012_TrackAppUsageEvent(struct w_steam_ifa .pchExtraInfo = pchExtraInfo, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser012_TrackAppUsageEvent( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser012_TrackAppUsageEvent, ¶ms ); } bool __thiscall winISteamUser_SteamUser012_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) { - struct cppISteamUser_SteamUser012_GetUserDataFolder_params params = + struct ISteamUser_SteamUser012_GetUserDataFolder_params params = { .linux_side = _this->u_iface, .pchBuffer = pchBuffer, .cubBuffer = cubBuffer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser012_GetUserDataFolder( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser012_GetUserDataFolder, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchBuffer, pchBuffer, cubBuffer, 0 ); return params._ret; } void __thiscall winISteamUser_SteamUser012_StartVoiceRecording(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser012_StartVoiceRecording_params params = + struct ISteamUser_SteamUser012_StartVoiceRecording_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser012_StartVoiceRecording( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser012_StartVoiceRecording, ¶ms ); } void __thiscall winISteamUser_SteamUser012_StopVoiceRecording(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser012_StopVoiceRecording_params params = + struct ISteamUser_SteamUser012_StopVoiceRecording_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser012_StopVoiceRecording( ¶ms ); + 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) { - struct cppISteamUser_SteamUser012_GetCompressedVoice_params params = + struct ISteamUser_SteamUser012_GetCompressedVoice_params params = { .linux_side = _this->u_iface, .pDestBuffer = pDestBuffer, @@ -2069,13 +2051,13 @@ uint32_t __thiscall winISteamUser_SteamUser012_GetCompressedVoice(struct w_steam .nBytesWritten = nBytesWritten, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser012_GetCompressedVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser012_GetCompressedVoice, ¶ms ); 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) { - struct cppISteamUser_SteamUser012_DecompressVoice_params params = + struct ISteamUser_SteamUser012_DecompressVoice_params params = { .linux_side = _this->u_iface, .pCompressed = pCompressed, @@ -2085,13 +2067,13 @@ uint32_t __thiscall winISteamUser_SteamUser012_DecompressVoice(struct w_steam_if .nBytesWritten = nBytesWritten, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser012_DecompressVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser012_DecompressVoice, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser012_GetAuthSessionTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { - struct cppISteamUser_SteamUser012_GetAuthSessionTicket_params params = + struct ISteamUser_SteamUser012_GetAuthSessionTicket_params params = { .linux_side = _this->u_iface, .pTicket = pTicket, @@ -2099,13 +2081,13 @@ uint32_t __thiscall winISteamUser_SteamUser012_GetAuthSessionTicket(struct w_ste .pcbTicket = pcbTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser012_GetAuthSessionTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser012_GetAuthSessionTicket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser012_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { - struct cppISteamUser_SteamUser012_BeginAuthSession_params params = + struct ISteamUser_SteamUser012_BeginAuthSession_params params = { .linux_side = _this->u_iface, .pAuthTicket = pAuthTicket, @@ -2113,42 +2095,42 @@ uint32_t __thiscall winISteamUser_SteamUser012_BeginAuthSession(struct w_steam_i .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser012_BeginAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser012_BeginAuthSession, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser012_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamUser_SteamUser012_EndAuthSession_params params = + struct ISteamUser_SteamUser012_EndAuthSession_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser012_EndAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser012_EndAuthSession, ¶ms ); } void __thiscall winISteamUser_SteamUser012_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) { - struct cppISteamUser_SteamUser012_CancelAuthTicket_params params = + struct ISteamUser_SteamUser012_CancelAuthTicket_params params = { .linux_side = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser012_CancelAuthTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser012_CancelAuthTicket, ¶ms ); } uint32_t __thiscall winISteamUser_SteamUser012_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) { - struct cppISteamUser_SteamUser012_UserHasLicenseForApp_params params = + struct ISteamUser_SteamUser012_UserHasLicenseForApp_params params = { .linux_side = _this->u_iface, .steamID = steamID, .appID = appID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser012_UserHasLicenseForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser012_UserHasLicenseForApp, ¶ms ); return params._ret; } @@ -2186,8 +2168,6 @@ struct w_steam_iface *create_winISteamUser_SteamUser012(void *u_iface) return r; } -#include "cppISteamUser_SteamUser013.h" - DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser013_GetHSteamUser, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser013_BLoggedOn, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser013_GetSteamID, 8) @@ -2208,41 +2188,41 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser013_UserHasLicenseForApp, 16) int32_t __thiscall winISteamUser_SteamUser013_GetHSteamUser(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser013_GetHSteamUser_params params = + struct ISteamUser_SteamUser013_GetHSteamUser_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser013_GetHSteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser013_GetHSteamUser, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser013_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser013_BLoggedOn_params params = + struct ISteamUser_SteamUser013_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser013_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser013_BLoggedOn, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamUser_SteamUser013_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamUser_SteamUser013_GetSteamID_params params = + struct ISteamUser_SteamUser013_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser013_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser013_GetSteamID, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser013_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) { - struct cppISteamUser_SteamUser013_InitiateGameConnection_params params = + struct ISteamUser_SteamUser013_InitiateGameConnection_params params = { .linux_side = _this->u_iface, .pAuthBlob = pAuthBlob, @@ -2253,25 +2233,25 @@ int32_t __thiscall winISteamUser_SteamUser013_InitiateGameConnection(struct w_st .bSecure = bSecure, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser013_InitiateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser013_InitiateGameConnection, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser013_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { - struct cppISteamUser_SteamUser013_TerminateGameConnection_params params = + struct ISteamUser_SteamUser013_TerminateGameConnection_params params = { .linux_side = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser013_TerminateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser013_TerminateGameConnection, ¶ms ); } void __thiscall winISteamUser_SteamUser013_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { - struct cppISteamUser_SteamUser013_TrackAppUsageEvent_params params = + struct ISteamUser_SteamUser013_TrackAppUsageEvent_params params = { .linux_side = _this->u_iface, .gameID = gameID, @@ -2279,59 +2259,59 @@ void __thiscall winISteamUser_SteamUser013_TrackAppUsageEvent(struct w_steam_ifa .pchExtraInfo = pchExtraInfo, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser013_TrackAppUsageEvent( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser013_TrackAppUsageEvent, ¶ms ); } bool __thiscall winISteamUser_SteamUser013_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) { - struct cppISteamUser_SteamUser013_GetUserDataFolder_params params = + struct ISteamUser_SteamUser013_GetUserDataFolder_params params = { .linux_side = _this->u_iface, .pchBuffer = pchBuffer, .cubBuffer = cubBuffer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser013_GetUserDataFolder( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser013_GetUserDataFolder, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchBuffer, pchBuffer, cubBuffer, 0 ); return params._ret; } void __thiscall winISteamUser_SteamUser013_StartVoiceRecording(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser013_StartVoiceRecording_params params = + struct ISteamUser_SteamUser013_StartVoiceRecording_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser013_StartVoiceRecording( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser013_StartVoiceRecording, ¶ms ); } void __thiscall winISteamUser_SteamUser013_StopVoiceRecording(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser013_StopVoiceRecording_params params = + struct ISteamUser_SteamUser013_StopVoiceRecording_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser013_StopVoiceRecording( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser013_StopVoiceRecording, ¶ms ); } uint32_t __thiscall winISteamUser_SteamUser013_GetAvailableVoice(struct w_steam_iface *_this, uint32_t *pcbCompressed, uint32_t *pcbUncompressed) { - struct cppISteamUser_SteamUser013_GetAvailableVoice_params params = + struct ISteamUser_SteamUser013_GetAvailableVoice_params params = { .linux_side = _this->u_iface, .pcbCompressed = pcbCompressed, .pcbUncompressed = pcbUncompressed, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser013_GetAvailableVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser013_GetAvailableVoice, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser013_GetVoice(struct w_steam_iface *_this, bool bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, bool bWantUncompressed, void *pUncompressedDestBuffer, uint32_t cbUncompressedDestBufferSize, uint32_t *nUncompressBytesWritten) { - struct cppISteamUser_SteamUser013_GetVoice_params params = + struct ISteamUser_SteamUser013_GetVoice_params params = { .linux_side = _this->u_iface, .bWantCompressed = bWantCompressed, @@ -2344,13 +2324,13 @@ uint32_t __thiscall winISteamUser_SteamUser013_GetVoice(struct w_steam_iface *_t .nUncompressBytesWritten = nUncompressBytesWritten, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser013_GetVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser013_GetVoice, ¶ms ); 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) { - struct cppISteamUser_SteamUser013_DecompressVoice_params params = + struct ISteamUser_SteamUser013_DecompressVoice_params params = { .linux_side = _this->u_iface, .pCompressed = pCompressed, @@ -2360,13 +2340,13 @@ uint32_t __thiscall winISteamUser_SteamUser013_DecompressVoice(struct w_steam_if .nBytesWritten = nBytesWritten, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser013_DecompressVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser013_DecompressVoice, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser013_GetAuthSessionTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { - struct cppISteamUser_SteamUser013_GetAuthSessionTicket_params params = + struct ISteamUser_SteamUser013_GetAuthSessionTicket_params params = { .linux_side = _this->u_iface, .pTicket = pTicket, @@ -2374,13 +2354,13 @@ uint32_t __thiscall winISteamUser_SteamUser013_GetAuthSessionTicket(struct w_ste .pcbTicket = pcbTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser013_GetAuthSessionTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser013_GetAuthSessionTicket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser013_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { - struct cppISteamUser_SteamUser013_BeginAuthSession_params params = + struct ISteamUser_SteamUser013_BeginAuthSession_params params = { .linux_side = _this->u_iface, .pAuthTicket = pAuthTicket, @@ -2388,42 +2368,42 @@ uint32_t __thiscall winISteamUser_SteamUser013_BeginAuthSession(struct w_steam_i .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser013_BeginAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser013_BeginAuthSession, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser013_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamUser_SteamUser013_EndAuthSession_params params = + struct ISteamUser_SteamUser013_EndAuthSession_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser013_EndAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser013_EndAuthSession, ¶ms ); } void __thiscall winISteamUser_SteamUser013_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) { - struct cppISteamUser_SteamUser013_CancelAuthTicket_params params = + struct ISteamUser_SteamUser013_CancelAuthTicket_params params = { .linux_side = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser013_CancelAuthTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser013_CancelAuthTicket, ¶ms ); } uint32_t __thiscall winISteamUser_SteamUser013_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) { - struct cppISteamUser_SteamUser013_UserHasLicenseForApp_params params = + struct ISteamUser_SteamUser013_UserHasLicenseForApp_params params = { .linux_side = _this->u_iface, .steamID = steamID, .appID = appID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser013_UserHasLicenseForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser013_UserHasLicenseForApp, ¶ms ); return params._ret; } @@ -2462,8 +2442,6 @@ struct w_steam_iface *create_winISteamUser_SteamUser013(void *u_iface) return r; } -#include "cppISteamUser_SteamUser014.h" - DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser014_GetHSteamUser, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser014_BLoggedOn, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser014_GetSteamID, 8) @@ -2488,41 +2466,41 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser014_GetEncryptedAppTicket, 16) int32_t __thiscall winISteamUser_SteamUser014_GetHSteamUser(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser014_GetHSteamUser_params params = + struct ISteamUser_SteamUser014_GetHSteamUser_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser014_GetHSteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser014_GetHSteamUser, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser014_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser014_BLoggedOn_params params = + struct ISteamUser_SteamUser014_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser014_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser014_BLoggedOn, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamUser_SteamUser014_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamUser_SteamUser014_GetSteamID_params params = + struct ISteamUser_SteamUser014_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser014_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser014_GetSteamID, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser014_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) { - struct cppISteamUser_SteamUser014_InitiateGameConnection_params params = + struct ISteamUser_SteamUser014_InitiateGameConnection_params params = { .linux_side = _this->u_iface, .pAuthBlob = pAuthBlob, @@ -2533,25 +2511,25 @@ int32_t __thiscall winISteamUser_SteamUser014_InitiateGameConnection(struct w_st .bSecure = bSecure, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser014_InitiateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser014_InitiateGameConnection, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser014_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { - struct cppISteamUser_SteamUser014_TerminateGameConnection_params params = + struct ISteamUser_SteamUser014_TerminateGameConnection_params params = { .linux_side = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser014_TerminateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser014_TerminateGameConnection, ¶ms ); } void __thiscall winISteamUser_SteamUser014_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { - struct cppISteamUser_SteamUser014_TrackAppUsageEvent_params params = + struct ISteamUser_SteamUser014_TrackAppUsageEvent_params params = { .linux_side = _this->u_iface, .gameID = gameID, @@ -2559,59 +2537,59 @@ void __thiscall winISteamUser_SteamUser014_TrackAppUsageEvent(struct w_steam_ifa .pchExtraInfo = pchExtraInfo, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser014_TrackAppUsageEvent( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser014_TrackAppUsageEvent, ¶ms ); } bool __thiscall winISteamUser_SteamUser014_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) { - struct cppISteamUser_SteamUser014_GetUserDataFolder_params params = + struct ISteamUser_SteamUser014_GetUserDataFolder_params params = { .linux_side = _this->u_iface, .pchBuffer = pchBuffer, .cubBuffer = cubBuffer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser014_GetUserDataFolder( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser014_GetUserDataFolder, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchBuffer, pchBuffer, cubBuffer, 0 ); return params._ret; } void __thiscall winISteamUser_SteamUser014_StartVoiceRecording(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser014_StartVoiceRecording_params params = + struct ISteamUser_SteamUser014_StartVoiceRecording_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser014_StartVoiceRecording( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser014_StartVoiceRecording, ¶ms ); } void __thiscall winISteamUser_SteamUser014_StopVoiceRecording(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser014_StopVoiceRecording_params params = + struct ISteamUser_SteamUser014_StopVoiceRecording_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser014_StopVoiceRecording( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser014_StopVoiceRecording, ¶ms ); } uint32_t __thiscall winISteamUser_SteamUser014_GetAvailableVoice(struct w_steam_iface *_this, uint32_t *pcbCompressed, uint32_t *pcbUncompressed) { - struct cppISteamUser_SteamUser014_GetAvailableVoice_params params = + struct ISteamUser_SteamUser014_GetAvailableVoice_params params = { .linux_side = _this->u_iface, .pcbCompressed = pcbCompressed, .pcbUncompressed = pcbUncompressed, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser014_GetAvailableVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser014_GetAvailableVoice, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser014_GetVoice(struct w_steam_iface *_this, bool bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, bool bWantUncompressed, void *pUncompressedDestBuffer, uint32_t cbUncompressedDestBufferSize, uint32_t *nUncompressBytesWritten) { - struct cppISteamUser_SteamUser014_GetVoice_params params = + struct ISteamUser_SteamUser014_GetVoice_params params = { .linux_side = _this->u_iface, .bWantCompressed = bWantCompressed, @@ -2624,13 +2602,13 @@ uint32_t __thiscall winISteamUser_SteamUser014_GetVoice(struct w_steam_iface *_t .nUncompressBytesWritten = nUncompressBytesWritten, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser014_GetVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser014_GetVoice, ¶ms ); 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) { - struct cppISteamUser_SteamUser014_DecompressVoice_params params = + struct ISteamUser_SteamUser014_DecompressVoice_params params = { .linux_side = _this->u_iface, .pCompressed = pCompressed, @@ -2640,13 +2618,13 @@ uint32_t __thiscall winISteamUser_SteamUser014_DecompressVoice(struct w_steam_if .nBytesWritten = nBytesWritten, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser014_DecompressVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser014_DecompressVoice, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser014_GetAuthSessionTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { - struct cppISteamUser_SteamUser014_GetAuthSessionTicket_params params = + struct ISteamUser_SteamUser014_GetAuthSessionTicket_params params = { .linux_side = _this->u_iface, .pTicket = pTicket, @@ -2654,13 +2632,13 @@ uint32_t __thiscall winISteamUser_SteamUser014_GetAuthSessionTicket(struct w_ste .pcbTicket = pcbTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser014_GetAuthSessionTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser014_GetAuthSessionTicket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser014_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { - struct cppISteamUser_SteamUser014_BeginAuthSession_params params = + struct ISteamUser_SteamUser014_BeginAuthSession_params params = { .linux_side = _this->u_iface, .pAuthTicket = pAuthTicket, @@ -2668,59 +2646,59 @@ uint32_t __thiscall winISteamUser_SteamUser014_BeginAuthSession(struct w_steam_i .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser014_BeginAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser014_BeginAuthSession, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser014_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamUser_SteamUser014_EndAuthSession_params params = + struct ISteamUser_SteamUser014_EndAuthSession_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser014_EndAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser014_EndAuthSession, ¶ms ); } void __thiscall winISteamUser_SteamUser014_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) { - struct cppISteamUser_SteamUser014_CancelAuthTicket_params params = + struct ISteamUser_SteamUser014_CancelAuthTicket_params params = { .linux_side = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser014_CancelAuthTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser014_CancelAuthTicket, ¶ms ); } uint32_t __thiscall winISteamUser_SteamUser014_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) { - struct cppISteamUser_SteamUser014_UserHasLicenseForApp_params params = + struct ISteamUser_SteamUser014_UserHasLicenseForApp_params params = { .linux_side = _this->u_iface, .steamID = steamID, .appID = appID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser014_UserHasLicenseForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser014_UserHasLicenseForApp, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser014_BIsBehindNAT(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser014_BIsBehindNAT_params params = + struct ISteamUser_SteamUser014_BIsBehindNAT_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser014_BIsBehindNAT( ¶ms ); + 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) { - struct cppISteamUser_SteamUser014_AdvertiseGame_params params = + struct ISteamUser_SteamUser014_AdvertiseGame_params params = { .linux_side = _this->u_iface, .steamIDGameServer = steamIDGameServer, @@ -2728,25 +2706,25 @@ void __thiscall winISteamUser_SteamUser014_AdvertiseGame(struct w_steam_iface *_ .usPortServer = usPortServer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser014_AdvertiseGame( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser014_AdvertiseGame, ¶ms ); } uint64_t __thiscall winISteamUser_SteamUser014_RequestEncryptedAppTicket(struct w_steam_iface *_this, void *pDataToInclude, int32_t cbDataToInclude) { - struct cppISteamUser_SteamUser014_RequestEncryptedAppTicket_params params = + struct ISteamUser_SteamUser014_RequestEncryptedAppTicket_params params = { .linux_side = _this->u_iface, .pDataToInclude = pDataToInclude, .cbDataToInclude = cbDataToInclude, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser014_RequestEncryptedAppTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser014_RequestEncryptedAppTicket, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser014_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { - struct cppISteamUser_SteamUser014_GetEncryptedAppTicket_params params = + struct ISteamUser_SteamUser014_GetEncryptedAppTicket_params params = { .linux_side = _this->u_iface, .pTicket = pTicket, @@ -2754,7 +2732,7 @@ bool __thiscall winISteamUser_SteamUser014_GetEncryptedAppTicket(struct w_steam_ .pcbTicket = pcbTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser014_GetEncryptedAppTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser014_GetEncryptedAppTicket, ¶ms ); return params._ret; } @@ -2797,8 +2775,6 @@ struct w_steam_iface *create_winISteamUser_SteamUser014(void *u_iface) return r; } -#include "cppISteamUser_SteamUser015.h" - DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser015_GetHSteamUser, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser015_BLoggedOn, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser015_GetSteamID, 8) @@ -2824,41 +2800,41 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser015_GetEncryptedAppTicket, 16) int32_t __thiscall winISteamUser_SteamUser015_GetHSteamUser(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser015_GetHSteamUser_params params = + struct ISteamUser_SteamUser015_GetHSteamUser_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser015_GetHSteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser015_GetHSteamUser, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser015_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser015_BLoggedOn_params params = + struct ISteamUser_SteamUser015_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser015_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser015_BLoggedOn, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamUser_SteamUser015_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamUser_SteamUser015_GetSteamID_params params = + struct ISteamUser_SteamUser015_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser015_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser015_GetSteamID, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser015_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) { - struct cppISteamUser_SteamUser015_InitiateGameConnection_params params = + struct ISteamUser_SteamUser015_InitiateGameConnection_params params = { .linux_side = _this->u_iface, .pAuthBlob = pAuthBlob, @@ -2869,25 +2845,25 @@ int32_t __thiscall winISteamUser_SteamUser015_InitiateGameConnection(struct w_st .bSecure = bSecure, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser015_InitiateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser015_InitiateGameConnection, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser015_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { - struct cppISteamUser_SteamUser015_TerminateGameConnection_params params = + struct ISteamUser_SteamUser015_TerminateGameConnection_params params = { .linux_side = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser015_TerminateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser015_TerminateGameConnection, ¶ms ); } void __thiscall winISteamUser_SteamUser015_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { - struct cppISteamUser_SteamUser015_TrackAppUsageEvent_params params = + struct ISteamUser_SteamUser015_TrackAppUsageEvent_params params = { .linux_side = _this->u_iface, .gameID = gameID, @@ -2895,59 +2871,59 @@ void __thiscall winISteamUser_SteamUser015_TrackAppUsageEvent(struct w_steam_ifa .pchExtraInfo = pchExtraInfo, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser015_TrackAppUsageEvent( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser015_TrackAppUsageEvent, ¶ms ); } bool __thiscall winISteamUser_SteamUser015_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) { - struct cppISteamUser_SteamUser015_GetUserDataFolder_params params = + struct ISteamUser_SteamUser015_GetUserDataFolder_params params = { .linux_side = _this->u_iface, .pchBuffer = pchBuffer, .cubBuffer = cubBuffer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser015_GetUserDataFolder( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser015_GetUserDataFolder, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchBuffer, pchBuffer, cubBuffer, 0 ); return params._ret; } void __thiscall winISteamUser_SteamUser015_StartVoiceRecording(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser015_StartVoiceRecording_params params = + struct ISteamUser_SteamUser015_StartVoiceRecording_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser015_StartVoiceRecording( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser015_StartVoiceRecording, ¶ms ); } void __thiscall winISteamUser_SteamUser015_StopVoiceRecording(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser015_StopVoiceRecording_params params = + struct ISteamUser_SteamUser015_StopVoiceRecording_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser015_StopVoiceRecording( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser015_StopVoiceRecording, ¶ms ); } uint32_t __thiscall winISteamUser_SteamUser015_GetAvailableVoice(struct w_steam_iface *_this, uint32_t *pcbCompressed, uint32_t *pcbUncompressed) { - struct cppISteamUser_SteamUser015_GetAvailableVoice_params params = + struct ISteamUser_SteamUser015_GetAvailableVoice_params params = { .linux_side = _this->u_iface, .pcbCompressed = pcbCompressed, .pcbUncompressed = pcbUncompressed, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser015_GetAvailableVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser015_GetAvailableVoice, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser015_GetVoice(struct w_steam_iface *_this, bool bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, bool bWantUncompressed, void *pUncompressedDestBuffer, uint32_t cbUncompressedDestBufferSize, uint32_t *nUncompressBytesWritten) { - struct cppISteamUser_SteamUser015_GetVoice_params params = + struct ISteamUser_SteamUser015_GetVoice_params params = { .linux_side = _this->u_iface, .bWantCompressed = bWantCompressed, @@ -2960,13 +2936,13 @@ uint32_t __thiscall winISteamUser_SteamUser015_GetVoice(struct w_steam_iface *_t .nUncompressBytesWritten = nUncompressBytesWritten, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser015_GetVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser015_GetVoice, ¶ms ); 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) { - struct cppISteamUser_SteamUser015_DecompressVoice_params params = + struct ISteamUser_SteamUser015_DecompressVoice_params params = { .linux_side = _this->u_iface, .pCompressed = pCompressed, @@ -2977,24 +2953,24 @@ uint32_t __thiscall winISteamUser_SteamUser015_DecompressVoice(struct w_steam_if .nDesiredSampleRate = nDesiredSampleRate, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser015_DecompressVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser015_DecompressVoice, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser015_GetVoiceOptimalSampleRate(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser015_GetVoiceOptimalSampleRate_params params = + struct ISteamUser_SteamUser015_GetVoiceOptimalSampleRate_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser015_GetVoiceOptimalSampleRate( ¶ms ); + 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) { - struct cppISteamUser_SteamUser015_GetAuthSessionTicket_params params = + struct ISteamUser_SteamUser015_GetAuthSessionTicket_params params = { .linux_side = _this->u_iface, .pTicket = pTicket, @@ -3002,13 +2978,13 @@ uint32_t __thiscall winISteamUser_SteamUser015_GetAuthSessionTicket(struct w_ste .pcbTicket = pcbTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser015_GetAuthSessionTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser015_GetAuthSessionTicket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser015_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { - struct cppISteamUser_SteamUser015_BeginAuthSession_params params = + struct ISteamUser_SteamUser015_BeginAuthSession_params params = { .linux_side = _this->u_iface, .pAuthTicket = pAuthTicket, @@ -3016,59 +2992,59 @@ uint32_t __thiscall winISteamUser_SteamUser015_BeginAuthSession(struct w_steam_i .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser015_BeginAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser015_BeginAuthSession, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser015_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamUser_SteamUser015_EndAuthSession_params params = + struct ISteamUser_SteamUser015_EndAuthSession_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser015_EndAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser015_EndAuthSession, ¶ms ); } void __thiscall winISteamUser_SteamUser015_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) { - struct cppISteamUser_SteamUser015_CancelAuthTicket_params params = + struct ISteamUser_SteamUser015_CancelAuthTicket_params params = { .linux_side = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser015_CancelAuthTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser015_CancelAuthTicket, ¶ms ); } uint32_t __thiscall winISteamUser_SteamUser015_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) { - struct cppISteamUser_SteamUser015_UserHasLicenseForApp_params params = + struct ISteamUser_SteamUser015_UserHasLicenseForApp_params params = { .linux_side = _this->u_iface, .steamID = steamID, .appID = appID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser015_UserHasLicenseForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser015_UserHasLicenseForApp, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser015_BIsBehindNAT(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser015_BIsBehindNAT_params params = + struct ISteamUser_SteamUser015_BIsBehindNAT_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser015_BIsBehindNAT( ¶ms ); + 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) { - struct cppISteamUser_SteamUser015_AdvertiseGame_params params = + struct ISteamUser_SteamUser015_AdvertiseGame_params params = { .linux_side = _this->u_iface, .steamIDGameServer = steamIDGameServer, @@ -3076,25 +3052,25 @@ void __thiscall winISteamUser_SteamUser015_AdvertiseGame(struct w_steam_iface *_ .usPortServer = usPortServer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser015_AdvertiseGame( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser015_AdvertiseGame, ¶ms ); } uint64_t __thiscall winISteamUser_SteamUser015_RequestEncryptedAppTicket(struct w_steam_iface *_this, void *pDataToInclude, int32_t cbDataToInclude) { - struct cppISteamUser_SteamUser015_RequestEncryptedAppTicket_params params = + struct ISteamUser_SteamUser015_RequestEncryptedAppTicket_params params = { .linux_side = _this->u_iface, .pDataToInclude = pDataToInclude, .cbDataToInclude = cbDataToInclude, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser015_RequestEncryptedAppTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser015_RequestEncryptedAppTicket, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser015_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { - struct cppISteamUser_SteamUser015_GetEncryptedAppTicket_params params = + struct ISteamUser_SteamUser015_GetEncryptedAppTicket_params params = { .linux_side = _this->u_iface, .pTicket = pTicket, @@ -3102,7 +3078,7 @@ bool __thiscall winISteamUser_SteamUser015_GetEncryptedAppTicket(struct w_steam_ .pcbTicket = pcbTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser015_GetEncryptedAppTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser015_GetEncryptedAppTicket, ¶ms ); return params._ret; } @@ -3146,8 +3122,6 @@ struct w_steam_iface *create_winISteamUser_SteamUser015(void *u_iface) return r; } -#include "cppISteamUser_SteamUser016.h" - DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser016_GetHSteamUser, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser016_BLoggedOn, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser016_GetSteamID, 8) @@ -3173,41 +3147,41 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser016_GetEncryptedAppTicket, 16) int32_t __thiscall winISteamUser_SteamUser016_GetHSteamUser(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser016_GetHSteamUser_params params = + struct ISteamUser_SteamUser016_GetHSteamUser_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser016_GetHSteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser016_GetHSteamUser, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser016_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser016_BLoggedOn_params params = + struct ISteamUser_SteamUser016_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser016_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser016_BLoggedOn, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamUser_SteamUser016_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamUser_SteamUser016_GetSteamID_params params = + struct ISteamUser_SteamUser016_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser016_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser016_GetSteamID, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser016_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) { - struct cppISteamUser_SteamUser016_InitiateGameConnection_params params = + struct ISteamUser_SteamUser016_InitiateGameConnection_params params = { .linux_side = _this->u_iface, .pAuthBlob = pAuthBlob, @@ -3218,25 +3192,25 @@ int32_t __thiscall winISteamUser_SteamUser016_InitiateGameConnection(struct w_st .bSecure = bSecure, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser016_InitiateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser016_InitiateGameConnection, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser016_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { - struct cppISteamUser_SteamUser016_TerminateGameConnection_params params = + struct ISteamUser_SteamUser016_TerminateGameConnection_params params = { .linux_side = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser016_TerminateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser016_TerminateGameConnection, ¶ms ); } void __thiscall winISteamUser_SteamUser016_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { - struct cppISteamUser_SteamUser016_TrackAppUsageEvent_params params = + struct ISteamUser_SteamUser016_TrackAppUsageEvent_params params = { .linux_side = _this->u_iface, .gameID = gameID, @@ -3244,46 +3218,46 @@ void __thiscall winISteamUser_SteamUser016_TrackAppUsageEvent(struct w_steam_ifa .pchExtraInfo = pchExtraInfo, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser016_TrackAppUsageEvent( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser016_TrackAppUsageEvent, ¶ms ); } bool __thiscall winISteamUser_SteamUser016_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) { - struct cppISteamUser_SteamUser016_GetUserDataFolder_params params = + struct ISteamUser_SteamUser016_GetUserDataFolder_params params = { .linux_side = _this->u_iface, .pchBuffer = pchBuffer, .cubBuffer = cubBuffer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser016_GetUserDataFolder( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser016_GetUserDataFolder, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchBuffer, pchBuffer, cubBuffer, 0 ); return params._ret; } void __thiscall winISteamUser_SteamUser016_StartVoiceRecording(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser016_StartVoiceRecording_params params = + struct ISteamUser_SteamUser016_StartVoiceRecording_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser016_StartVoiceRecording( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser016_StartVoiceRecording, ¶ms ); } void __thiscall winISteamUser_SteamUser016_StopVoiceRecording(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser016_StopVoiceRecording_params params = + struct ISteamUser_SteamUser016_StopVoiceRecording_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser016_StopVoiceRecording( ¶ms ); + 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) { - struct cppISteamUser_SteamUser016_GetAvailableVoice_params params = + struct ISteamUser_SteamUser016_GetAvailableVoice_params params = { .linux_side = _this->u_iface, .pcbCompressed = pcbCompressed, @@ -3291,13 +3265,13 @@ uint32_t __thiscall winISteamUser_SteamUser016_GetAvailableVoice(struct w_steam_ .nUncompressedVoiceDesiredSampleRate = nUncompressedVoiceDesiredSampleRate, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser016_GetAvailableVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser016_GetAvailableVoice, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser016_GetVoice(struct w_steam_iface *_this, bool bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, bool bWantUncompressed, void *pUncompressedDestBuffer, uint32_t cbUncompressedDestBufferSize, uint32_t *nUncompressBytesWritten, uint32_t nUncompressedVoiceDesiredSampleRate) { - struct cppISteamUser_SteamUser016_GetVoice_params params = + struct ISteamUser_SteamUser016_GetVoice_params params = { .linux_side = _this->u_iface, .bWantCompressed = bWantCompressed, @@ -3311,13 +3285,13 @@ uint32_t __thiscall winISteamUser_SteamUser016_GetVoice(struct w_steam_iface *_t .nUncompressedVoiceDesiredSampleRate = nUncompressedVoiceDesiredSampleRate, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser016_GetVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser016_GetVoice, ¶ms ); 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) { - struct cppISteamUser_SteamUser016_DecompressVoice_params params = + struct ISteamUser_SteamUser016_DecompressVoice_params params = { .linux_side = _this->u_iface, .pCompressed = pCompressed, @@ -3328,24 +3302,24 @@ uint32_t __thiscall winISteamUser_SteamUser016_DecompressVoice(struct w_steam_if .nDesiredSampleRate = nDesiredSampleRate, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser016_DecompressVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser016_DecompressVoice, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser016_GetVoiceOptimalSampleRate(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser016_GetVoiceOptimalSampleRate_params params = + struct ISteamUser_SteamUser016_GetVoiceOptimalSampleRate_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser016_GetVoiceOptimalSampleRate( ¶ms ); + 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) { - struct cppISteamUser_SteamUser016_GetAuthSessionTicket_params params = + struct ISteamUser_SteamUser016_GetAuthSessionTicket_params params = { .linux_side = _this->u_iface, .pTicket = pTicket, @@ -3353,13 +3327,13 @@ uint32_t __thiscall winISteamUser_SteamUser016_GetAuthSessionTicket(struct w_ste .pcbTicket = pcbTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser016_GetAuthSessionTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser016_GetAuthSessionTicket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser016_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { - struct cppISteamUser_SteamUser016_BeginAuthSession_params params = + struct ISteamUser_SteamUser016_BeginAuthSession_params params = { .linux_side = _this->u_iface, .pAuthTicket = pAuthTicket, @@ -3367,59 +3341,59 @@ uint32_t __thiscall winISteamUser_SteamUser016_BeginAuthSession(struct w_steam_i .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser016_BeginAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser016_BeginAuthSession, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser016_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamUser_SteamUser016_EndAuthSession_params params = + struct ISteamUser_SteamUser016_EndAuthSession_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser016_EndAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser016_EndAuthSession, ¶ms ); } void __thiscall winISteamUser_SteamUser016_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) { - struct cppISteamUser_SteamUser016_CancelAuthTicket_params params = + struct ISteamUser_SteamUser016_CancelAuthTicket_params params = { .linux_side = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser016_CancelAuthTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser016_CancelAuthTicket, ¶ms ); } uint32_t __thiscall winISteamUser_SteamUser016_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) { - struct cppISteamUser_SteamUser016_UserHasLicenseForApp_params params = + struct ISteamUser_SteamUser016_UserHasLicenseForApp_params params = { .linux_side = _this->u_iface, .steamID = steamID, .appID = appID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser016_UserHasLicenseForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser016_UserHasLicenseForApp, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser016_BIsBehindNAT(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser016_BIsBehindNAT_params params = + struct ISteamUser_SteamUser016_BIsBehindNAT_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser016_BIsBehindNAT( ¶ms ); + 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) { - struct cppISteamUser_SteamUser016_AdvertiseGame_params params = + struct ISteamUser_SteamUser016_AdvertiseGame_params params = { .linux_side = _this->u_iface, .steamIDGameServer = steamIDGameServer, @@ -3427,25 +3401,25 @@ void __thiscall winISteamUser_SteamUser016_AdvertiseGame(struct w_steam_iface *_ .usPortServer = usPortServer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser016_AdvertiseGame( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser016_AdvertiseGame, ¶ms ); } uint64_t __thiscall winISteamUser_SteamUser016_RequestEncryptedAppTicket(struct w_steam_iface *_this, void *pDataToInclude, int32_t cbDataToInclude) { - struct cppISteamUser_SteamUser016_RequestEncryptedAppTicket_params params = + struct ISteamUser_SteamUser016_RequestEncryptedAppTicket_params params = { .linux_side = _this->u_iface, .pDataToInclude = pDataToInclude, .cbDataToInclude = cbDataToInclude, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser016_RequestEncryptedAppTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser016_RequestEncryptedAppTicket, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser016_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { - struct cppISteamUser_SteamUser016_GetEncryptedAppTicket_params params = + struct ISteamUser_SteamUser016_GetEncryptedAppTicket_params params = { .linux_side = _this->u_iface, .pTicket = pTicket, @@ -3453,7 +3427,7 @@ bool __thiscall winISteamUser_SteamUser016_GetEncryptedAppTicket(struct w_steam_ .pcbTicket = pcbTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser016_GetEncryptedAppTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser016_GetEncryptedAppTicket, ¶ms ); return params._ret; } @@ -3497,8 +3471,6 @@ struct w_steam_iface *create_winISteamUser_SteamUser016(void *u_iface) return r; } -#include "cppISteamUser_SteamUser017.h" - DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser017_GetHSteamUser, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser017_BLoggedOn, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser017_GetSteamID, 8) @@ -3526,41 +3498,41 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser017_GetPlayerSteamLevel, 4) int32_t __thiscall winISteamUser_SteamUser017_GetHSteamUser(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser017_GetHSteamUser_params params = + struct ISteamUser_SteamUser017_GetHSteamUser_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser017_GetHSteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser017_GetHSteamUser, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser017_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser017_BLoggedOn_params params = + struct ISteamUser_SteamUser017_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser017_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser017_BLoggedOn, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamUser_SteamUser017_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamUser_SteamUser017_GetSteamID_params params = + struct ISteamUser_SteamUser017_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser017_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser017_GetSteamID, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser017_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) { - struct cppISteamUser_SteamUser017_InitiateGameConnection_params params = + struct ISteamUser_SteamUser017_InitiateGameConnection_params params = { .linux_side = _this->u_iface, .pAuthBlob = pAuthBlob, @@ -3571,25 +3543,25 @@ int32_t __thiscall winISteamUser_SteamUser017_InitiateGameConnection(struct w_st .bSecure = bSecure, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser017_InitiateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser017_InitiateGameConnection, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser017_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { - struct cppISteamUser_SteamUser017_TerminateGameConnection_params params = + struct ISteamUser_SteamUser017_TerminateGameConnection_params params = { .linux_side = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser017_TerminateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser017_TerminateGameConnection, ¶ms ); } void __thiscall winISteamUser_SteamUser017_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { - struct cppISteamUser_SteamUser017_TrackAppUsageEvent_params params = + struct ISteamUser_SteamUser017_TrackAppUsageEvent_params params = { .linux_side = _this->u_iface, .gameID = gameID, @@ -3597,46 +3569,46 @@ void __thiscall winISteamUser_SteamUser017_TrackAppUsageEvent(struct w_steam_ifa .pchExtraInfo = pchExtraInfo, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser017_TrackAppUsageEvent( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser017_TrackAppUsageEvent, ¶ms ); } bool __thiscall winISteamUser_SteamUser017_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) { - struct cppISteamUser_SteamUser017_GetUserDataFolder_params params = + struct ISteamUser_SteamUser017_GetUserDataFolder_params params = { .linux_side = _this->u_iface, .pchBuffer = pchBuffer, .cubBuffer = cubBuffer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser017_GetUserDataFolder( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser017_GetUserDataFolder, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchBuffer, pchBuffer, cubBuffer, 0 ); return params._ret; } void __thiscall winISteamUser_SteamUser017_StartVoiceRecording(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser017_StartVoiceRecording_params params = + struct ISteamUser_SteamUser017_StartVoiceRecording_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser017_StartVoiceRecording( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser017_StartVoiceRecording, ¶ms ); } void __thiscall winISteamUser_SteamUser017_StopVoiceRecording(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser017_StopVoiceRecording_params params = + struct ISteamUser_SteamUser017_StopVoiceRecording_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser017_StopVoiceRecording( ¶ms ); + 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) { - struct cppISteamUser_SteamUser017_GetAvailableVoice_params params = + struct ISteamUser_SteamUser017_GetAvailableVoice_params params = { .linux_side = _this->u_iface, .pcbCompressed = pcbCompressed, @@ -3644,13 +3616,13 @@ uint32_t __thiscall winISteamUser_SteamUser017_GetAvailableVoice(struct w_steam_ .nUncompressedVoiceDesiredSampleRate = nUncompressedVoiceDesiredSampleRate, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser017_GetAvailableVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser017_GetAvailableVoice, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser017_GetVoice(struct w_steam_iface *_this, bool bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, bool bWantUncompressed, void *pUncompressedDestBuffer, uint32_t cbUncompressedDestBufferSize, uint32_t *nUncompressBytesWritten, uint32_t nUncompressedVoiceDesiredSampleRate) { - struct cppISteamUser_SteamUser017_GetVoice_params params = + struct ISteamUser_SteamUser017_GetVoice_params params = { .linux_side = _this->u_iface, .bWantCompressed = bWantCompressed, @@ -3664,13 +3636,13 @@ uint32_t __thiscall winISteamUser_SteamUser017_GetVoice(struct w_steam_iface *_t .nUncompressedVoiceDesiredSampleRate = nUncompressedVoiceDesiredSampleRate, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser017_GetVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser017_GetVoice, ¶ms ); 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) { - struct cppISteamUser_SteamUser017_DecompressVoice_params params = + struct ISteamUser_SteamUser017_DecompressVoice_params params = { .linux_side = _this->u_iface, .pCompressed = pCompressed, @@ -3681,24 +3653,24 @@ uint32_t __thiscall winISteamUser_SteamUser017_DecompressVoice(struct w_steam_if .nDesiredSampleRate = nDesiredSampleRate, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser017_DecompressVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser017_DecompressVoice, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser017_GetVoiceOptimalSampleRate(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser017_GetVoiceOptimalSampleRate_params params = + struct ISteamUser_SteamUser017_GetVoiceOptimalSampleRate_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser017_GetVoiceOptimalSampleRate( ¶ms ); + 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) { - struct cppISteamUser_SteamUser017_GetAuthSessionTicket_params params = + struct ISteamUser_SteamUser017_GetAuthSessionTicket_params params = { .linux_side = _this->u_iface, .pTicket = pTicket, @@ -3706,13 +3678,13 @@ uint32_t __thiscall winISteamUser_SteamUser017_GetAuthSessionTicket(struct w_ste .pcbTicket = pcbTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser017_GetAuthSessionTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser017_GetAuthSessionTicket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser017_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { - struct cppISteamUser_SteamUser017_BeginAuthSession_params params = + struct ISteamUser_SteamUser017_BeginAuthSession_params params = { .linux_side = _this->u_iface, .pAuthTicket = pAuthTicket, @@ -3720,59 +3692,59 @@ uint32_t __thiscall winISteamUser_SteamUser017_BeginAuthSession(struct w_steam_i .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser017_BeginAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser017_BeginAuthSession, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser017_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamUser_SteamUser017_EndAuthSession_params params = + struct ISteamUser_SteamUser017_EndAuthSession_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser017_EndAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser017_EndAuthSession, ¶ms ); } void __thiscall winISteamUser_SteamUser017_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) { - struct cppISteamUser_SteamUser017_CancelAuthTicket_params params = + struct ISteamUser_SteamUser017_CancelAuthTicket_params params = { .linux_side = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser017_CancelAuthTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser017_CancelAuthTicket, ¶ms ); } uint32_t __thiscall winISteamUser_SteamUser017_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) { - struct cppISteamUser_SteamUser017_UserHasLicenseForApp_params params = + struct ISteamUser_SteamUser017_UserHasLicenseForApp_params params = { .linux_side = _this->u_iface, .steamID = steamID, .appID = appID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser017_UserHasLicenseForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser017_UserHasLicenseForApp, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser017_BIsBehindNAT(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser017_BIsBehindNAT_params params = + struct ISteamUser_SteamUser017_BIsBehindNAT_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser017_BIsBehindNAT( ¶ms ); + 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) { - struct cppISteamUser_SteamUser017_AdvertiseGame_params params = + struct ISteamUser_SteamUser017_AdvertiseGame_params params = { .linux_side = _this->u_iface, .steamIDGameServer = steamIDGameServer, @@ -3780,25 +3752,25 @@ void __thiscall winISteamUser_SteamUser017_AdvertiseGame(struct w_steam_iface *_ .usPortServer = usPortServer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser017_AdvertiseGame( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser017_AdvertiseGame, ¶ms ); } uint64_t __thiscall winISteamUser_SteamUser017_RequestEncryptedAppTicket(struct w_steam_iface *_this, void *pDataToInclude, int32_t cbDataToInclude) { - struct cppISteamUser_SteamUser017_RequestEncryptedAppTicket_params params = + struct ISteamUser_SteamUser017_RequestEncryptedAppTicket_params params = { .linux_side = _this->u_iface, .pDataToInclude = pDataToInclude, .cbDataToInclude = cbDataToInclude, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser017_RequestEncryptedAppTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser017_RequestEncryptedAppTicket, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser017_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { - struct cppISteamUser_SteamUser017_GetEncryptedAppTicket_params params = + struct ISteamUser_SteamUser017_GetEncryptedAppTicket_params params = { .linux_side = _this->u_iface, .pTicket = pTicket, @@ -3806,31 +3778,31 @@ bool __thiscall winISteamUser_SteamUser017_GetEncryptedAppTicket(struct w_steam_ .pcbTicket = pcbTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser017_GetEncryptedAppTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser017_GetEncryptedAppTicket, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser017_GetGameBadgeLevel(struct w_steam_iface *_this, int32_t nSeries, bool bFoil) { - struct cppISteamUser_SteamUser017_GetGameBadgeLevel_params params = + struct ISteamUser_SteamUser017_GetGameBadgeLevel_params params = { .linux_side = _this->u_iface, .nSeries = nSeries, .bFoil = bFoil, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser017_GetGameBadgeLevel( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser017_GetGameBadgeLevel, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser017_GetPlayerSteamLevel(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser017_GetPlayerSteamLevel_params params = + struct ISteamUser_SteamUser017_GetPlayerSteamLevel_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser017_GetPlayerSteamLevel( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser017_GetPlayerSteamLevel, ¶ms ); return params._ret; } @@ -3876,8 +3848,6 @@ struct w_steam_iface *create_winISteamUser_SteamUser017(void *u_iface) return r; } -#include "cppISteamUser_SteamUser018.h" - DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser018_GetHSteamUser, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser018_BLoggedOn, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser018_GetSteamID, 8) @@ -3906,41 +3876,41 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser018_RequestStoreAuthURL, 8) int32_t __thiscall winISteamUser_SteamUser018_GetHSteamUser(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser018_GetHSteamUser_params params = + struct ISteamUser_SteamUser018_GetHSteamUser_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser018_GetHSteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser018_GetHSteamUser, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser018_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser018_BLoggedOn_params params = + struct ISteamUser_SteamUser018_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser018_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser018_BLoggedOn, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamUser_SteamUser018_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamUser_SteamUser018_GetSteamID_params params = + struct ISteamUser_SteamUser018_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser018_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser018_GetSteamID, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser018_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) { - struct cppISteamUser_SteamUser018_InitiateGameConnection_params params = + struct ISteamUser_SteamUser018_InitiateGameConnection_params params = { .linux_side = _this->u_iface, .pAuthBlob = pAuthBlob, @@ -3951,25 +3921,25 @@ int32_t __thiscall winISteamUser_SteamUser018_InitiateGameConnection(struct w_st .bSecure = bSecure, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser018_InitiateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser018_InitiateGameConnection, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser018_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { - struct cppISteamUser_SteamUser018_TerminateGameConnection_params params = + struct ISteamUser_SteamUser018_TerminateGameConnection_params params = { .linux_side = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser018_TerminateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser018_TerminateGameConnection, ¶ms ); } void __thiscall winISteamUser_SteamUser018_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { - struct cppISteamUser_SteamUser018_TrackAppUsageEvent_params params = + struct ISteamUser_SteamUser018_TrackAppUsageEvent_params params = { .linux_side = _this->u_iface, .gameID = gameID, @@ -3977,46 +3947,46 @@ void __thiscall winISteamUser_SteamUser018_TrackAppUsageEvent(struct w_steam_ifa .pchExtraInfo = pchExtraInfo, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser018_TrackAppUsageEvent( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser018_TrackAppUsageEvent, ¶ms ); } bool __thiscall winISteamUser_SteamUser018_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) { - struct cppISteamUser_SteamUser018_GetUserDataFolder_params params = + struct ISteamUser_SteamUser018_GetUserDataFolder_params params = { .linux_side = _this->u_iface, .pchBuffer = pchBuffer, .cubBuffer = cubBuffer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser018_GetUserDataFolder( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser018_GetUserDataFolder, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchBuffer, pchBuffer, cubBuffer, 0 ); return params._ret; } void __thiscall winISteamUser_SteamUser018_StartVoiceRecording(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser018_StartVoiceRecording_params params = + struct ISteamUser_SteamUser018_StartVoiceRecording_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser018_StartVoiceRecording( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser018_StartVoiceRecording, ¶ms ); } void __thiscall winISteamUser_SteamUser018_StopVoiceRecording(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser018_StopVoiceRecording_params params = + struct ISteamUser_SteamUser018_StopVoiceRecording_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser018_StopVoiceRecording( ¶ms ); + 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) { - struct cppISteamUser_SteamUser018_GetAvailableVoice_params params = + struct ISteamUser_SteamUser018_GetAvailableVoice_params params = { .linux_side = _this->u_iface, .pcbCompressed = pcbCompressed, @@ -4024,13 +3994,13 @@ uint32_t __thiscall winISteamUser_SteamUser018_GetAvailableVoice(struct w_steam_ .nUncompressedVoiceDesiredSampleRate = nUncompressedVoiceDesiredSampleRate, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser018_GetAvailableVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser018_GetAvailableVoice, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser018_GetVoice(struct w_steam_iface *_this, bool bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, bool bWantUncompressed, void *pUncompressedDestBuffer, uint32_t cbUncompressedDestBufferSize, uint32_t *nUncompressBytesWritten, uint32_t nUncompressedVoiceDesiredSampleRate) { - struct cppISteamUser_SteamUser018_GetVoice_params params = + struct ISteamUser_SteamUser018_GetVoice_params params = { .linux_side = _this->u_iface, .bWantCompressed = bWantCompressed, @@ -4044,13 +4014,13 @@ uint32_t __thiscall winISteamUser_SteamUser018_GetVoice(struct w_steam_iface *_t .nUncompressedVoiceDesiredSampleRate = nUncompressedVoiceDesiredSampleRate, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser018_GetVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser018_GetVoice, ¶ms ); 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) { - struct cppISteamUser_SteamUser018_DecompressVoice_params params = + struct ISteamUser_SteamUser018_DecompressVoice_params params = { .linux_side = _this->u_iface, .pCompressed = pCompressed, @@ -4061,24 +4031,24 @@ uint32_t __thiscall winISteamUser_SteamUser018_DecompressVoice(struct w_steam_if .nDesiredSampleRate = nDesiredSampleRate, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser018_DecompressVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser018_DecompressVoice, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser018_GetVoiceOptimalSampleRate(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser018_GetVoiceOptimalSampleRate_params params = + struct ISteamUser_SteamUser018_GetVoiceOptimalSampleRate_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser018_GetVoiceOptimalSampleRate( ¶ms ); + 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) { - struct cppISteamUser_SteamUser018_GetAuthSessionTicket_params params = + struct ISteamUser_SteamUser018_GetAuthSessionTicket_params params = { .linux_side = _this->u_iface, .pTicket = pTicket, @@ -4086,13 +4056,13 @@ uint32_t __thiscall winISteamUser_SteamUser018_GetAuthSessionTicket(struct w_ste .pcbTicket = pcbTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser018_GetAuthSessionTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser018_GetAuthSessionTicket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser018_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { - struct cppISteamUser_SteamUser018_BeginAuthSession_params params = + struct ISteamUser_SteamUser018_BeginAuthSession_params params = { .linux_side = _this->u_iface, .pAuthTicket = pAuthTicket, @@ -4100,59 +4070,59 @@ uint32_t __thiscall winISteamUser_SteamUser018_BeginAuthSession(struct w_steam_i .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser018_BeginAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser018_BeginAuthSession, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser018_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamUser_SteamUser018_EndAuthSession_params params = + struct ISteamUser_SteamUser018_EndAuthSession_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser018_EndAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser018_EndAuthSession, ¶ms ); } void __thiscall winISteamUser_SteamUser018_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) { - struct cppISteamUser_SteamUser018_CancelAuthTicket_params params = + struct ISteamUser_SteamUser018_CancelAuthTicket_params params = { .linux_side = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser018_CancelAuthTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser018_CancelAuthTicket, ¶ms ); } uint32_t __thiscall winISteamUser_SteamUser018_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) { - struct cppISteamUser_SteamUser018_UserHasLicenseForApp_params params = + struct ISteamUser_SteamUser018_UserHasLicenseForApp_params params = { .linux_side = _this->u_iface, .steamID = steamID, .appID = appID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser018_UserHasLicenseForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser018_UserHasLicenseForApp, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser018_BIsBehindNAT(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser018_BIsBehindNAT_params params = + struct ISteamUser_SteamUser018_BIsBehindNAT_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser018_BIsBehindNAT( ¶ms ); + 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) { - struct cppISteamUser_SteamUser018_AdvertiseGame_params params = + struct ISteamUser_SteamUser018_AdvertiseGame_params params = { .linux_side = _this->u_iface, .steamIDGameServer = steamIDGameServer, @@ -4160,25 +4130,25 @@ void __thiscall winISteamUser_SteamUser018_AdvertiseGame(struct w_steam_iface *_ .usPortServer = usPortServer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser018_AdvertiseGame( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser018_AdvertiseGame, ¶ms ); } uint64_t __thiscall winISteamUser_SteamUser018_RequestEncryptedAppTicket(struct w_steam_iface *_this, void *pDataToInclude, int32_t cbDataToInclude) { - struct cppISteamUser_SteamUser018_RequestEncryptedAppTicket_params params = + struct ISteamUser_SteamUser018_RequestEncryptedAppTicket_params params = { .linux_side = _this->u_iface, .pDataToInclude = pDataToInclude, .cbDataToInclude = cbDataToInclude, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser018_RequestEncryptedAppTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser018_RequestEncryptedAppTicket, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser018_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { - struct cppISteamUser_SteamUser018_GetEncryptedAppTicket_params params = + struct ISteamUser_SteamUser018_GetEncryptedAppTicket_params params = { .linux_side = _this->u_iface, .pTicket = pTicket, @@ -4186,43 +4156,43 @@ bool __thiscall winISteamUser_SteamUser018_GetEncryptedAppTicket(struct w_steam_ .pcbTicket = pcbTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser018_GetEncryptedAppTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser018_GetEncryptedAppTicket, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser018_GetGameBadgeLevel(struct w_steam_iface *_this, int32_t nSeries, bool bFoil) { - struct cppISteamUser_SteamUser018_GetGameBadgeLevel_params params = + struct ISteamUser_SteamUser018_GetGameBadgeLevel_params params = { .linux_side = _this->u_iface, .nSeries = nSeries, .bFoil = bFoil, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser018_GetGameBadgeLevel( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser018_GetGameBadgeLevel, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser018_GetPlayerSteamLevel(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser018_GetPlayerSteamLevel_params params = + struct ISteamUser_SteamUser018_GetPlayerSteamLevel_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser018_GetPlayerSteamLevel( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser018_GetPlayerSteamLevel, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUser_SteamUser018_RequestStoreAuthURL(struct w_steam_iface *_this, const char *pchRedirectURL) { - struct cppISteamUser_SteamUser018_RequestStoreAuthURL_params params = + struct ISteamUser_SteamUser018_RequestStoreAuthURL_params params = { .linux_side = _this->u_iface, .pchRedirectURL = pchRedirectURL, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser018_RequestStoreAuthURL( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser018_RequestStoreAuthURL, ¶ms ); return params._ret; } @@ -4269,8 +4239,6 @@ struct w_steam_iface *create_winISteamUser_SteamUser018(void *u_iface) return r; } -#include "cppISteamUser_SteamUser019.h" - DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser019_GetHSteamUser, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser019_BLoggedOn, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser019_GetSteamID, 8) @@ -4303,41 +4271,41 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser019_BIsPhoneRequiringVerification int32_t __thiscall winISteamUser_SteamUser019_GetHSteamUser(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser019_GetHSteamUser_params params = + struct ISteamUser_SteamUser019_GetHSteamUser_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser019_GetHSteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser019_GetHSteamUser, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser019_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser019_BLoggedOn_params params = + struct ISteamUser_SteamUser019_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser019_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser019_BLoggedOn, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamUser_SteamUser019_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamUser_SteamUser019_GetSteamID_params params = + struct ISteamUser_SteamUser019_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser019_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser019_GetSteamID, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser019_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) { - struct cppISteamUser_SteamUser019_InitiateGameConnection_params params = + struct ISteamUser_SteamUser019_InitiateGameConnection_params params = { .linux_side = _this->u_iface, .pAuthBlob = pAuthBlob, @@ -4348,25 +4316,25 @@ int32_t __thiscall winISteamUser_SteamUser019_InitiateGameConnection(struct w_st .bSecure = bSecure, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser019_InitiateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser019_InitiateGameConnection, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser019_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { - struct cppISteamUser_SteamUser019_TerminateGameConnection_params params = + struct ISteamUser_SteamUser019_TerminateGameConnection_params params = { .linux_side = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser019_TerminateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser019_TerminateGameConnection, ¶ms ); } void __thiscall winISteamUser_SteamUser019_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { - struct cppISteamUser_SteamUser019_TrackAppUsageEvent_params params = + struct ISteamUser_SteamUser019_TrackAppUsageEvent_params params = { .linux_side = _this->u_iface, .gameID = gameID, @@ -4374,46 +4342,46 @@ void __thiscall winISteamUser_SteamUser019_TrackAppUsageEvent(struct w_steam_ifa .pchExtraInfo = pchExtraInfo, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser019_TrackAppUsageEvent( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser019_TrackAppUsageEvent, ¶ms ); } bool __thiscall winISteamUser_SteamUser019_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) { - struct cppISteamUser_SteamUser019_GetUserDataFolder_params params = + struct ISteamUser_SteamUser019_GetUserDataFolder_params params = { .linux_side = _this->u_iface, .pchBuffer = pchBuffer, .cubBuffer = cubBuffer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser019_GetUserDataFolder( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser019_GetUserDataFolder, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchBuffer, pchBuffer, cubBuffer, 0 ); return params._ret; } void __thiscall winISteamUser_SteamUser019_StartVoiceRecording(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser019_StartVoiceRecording_params params = + struct ISteamUser_SteamUser019_StartVoiceRecording_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser019_StartVoiceRecording( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser019_StartVoiceRecording, ¶ms ); } void __thiscall winISteamUser_SteamUser019_StopVoiceRecording(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser019_StopVoiceRecording_params params = + struct ISteamUser_SteamUser019_StopVoiceRecording_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser019_StopVoiceRecording( ¶ms ); + 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) { - struct cppISteamUser_SteamUser019_GetAvailableVoice_params params = + struct ISteamUser_SteamUser019_GetAvailableVoice_params params = { .linux_side = _this->u_iface, .pcbCompressed = pcbCompressed, @@ -4421,13 +4389,13 @@ uint32_t __thiscall winISteamUser_SteamUser019_GetAvailableVoice(struct w_steam_ .nUncompressedVoiceDesiredSampleRate_Deprecated = nUncompressedVoiceDesiredSampleRate_Deprecated, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser019_GetAvailableVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser019_GetAvailableVoice, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser019_GetVoice(struct w_steam_iface *_this, bool bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, bool bWantUncompressed_Deprecated, void *pUncompressedDestBuffer_Deprecated, uint32_t cbUncompressedDestBufferSize_Deprecated, uint32_t *nUncompressBytesWritten_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) { - struct cppISteamUser_SteamUser019_GetVoice_params params = + struct ISteamUser_SteamUser019_GetVoice_params params = { .linux_side = _this->u_iface, .bWantCompressed = bWantCompressed, @@ -4441,13 +4409,13 @@ uint32_t __thiscall winISteamUser_SteamUser019_GetVoice(struct w_steam_iface *_t .nUncompressedVoiceDesiredSampleRate_Deprecated = nUncompressedVoiceDesiredSampleRate_Deprecated, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser019_GetVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser019_GetVoice, ¶ms ); 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) { - struct cppISteamUser_SteamUser019_DecompressVoice_params params = + struct ISteamUser_SteamUser019_DecompressVoice_params params = { .linux_side = _this->u_iface, .pCompressed = pCompressed, @@ -4458,24 +4426,24 @@ uint32_t __thiscall winISteamUser_SteamUser019_DecompressVoice(struct w_steam_if .nDesiredSampleRate = nDesiredSampleRate, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser019_DecompressVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser019_DecompressVoice, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser019_GetVoiceOptimalSampleRate(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser019_GetVoiceOptimalSampleRate_params params = + struct ISteamUser_SteamUser019_GetVoiceOptimalSampleRate_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser019_GetVoiceOptimalSampleRate( ¶ms ); + 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) { - struct cppISteamUser_SteamUser019_GetAuthSessionTicket_params params = + struct ISteamUser_SteamUser019_GetAuthSessionTicket_params params = { .linux_side = _this->u_iface, .pTicket = pTicket, @@ -4483,13 +4451,13 @@ uint32_t __thiscall winISteamUser_SteamUser019_GetAuthSessionTicket(struct w_ste .pcbTicket = pcbTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser019_GetAuthSessionTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser019_GetAuthSessionTicket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser019_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { - struct cppISteamUser_SteamUser019_BeginAuthSession_params params = + struct ISteamUser_SteamUser019_BeginAuthSession_params params = { .linux_side = _this->u_iface, .pAuthTicket = pAuthTicket, @@ -4497,59 +4465,59 @@ uint32_t __thiscall winISteamUser_SteamUser019_BeginAuthSession(struct w_steam_i .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser019_BeginAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser019_BeginAuthSession, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser019_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamUser_SteamUser019_EndAuthSession_params params = + struct ISteamUser_SteamUser019_EndAuthSession_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser019_EndAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser019_EndAuthSession, ¶ms ); } void __thiscall winISteamUser_SteamUser019_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) { - struct cppISteamUser_SteamUser019_CancelAuthTicket_params params = + struct ISteamUser_SteamUser019_CancelAuthTicket_params params = { .linux_side = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser019_CancelAuthTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser019_CancelAuthTicket, ¶ms ); } uint32_t __thiscall winISteamUser_SteamUser019_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) { - struct cppISteamUser_SteamUser019_UserHasLicenseForApp_params params = + struct ISteamUser_SteamUser019_UserHasLicenseForApp_params params = { .linux_side = _this->u_iface, .steamID = steamID, .appID = appID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser019_UserHasLicenseForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser019_UserHasLicenseForApp, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser019_BIsBehindNAT(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser019_BIsBehindNAT_params params = + struct ISteamUser_SteamUser019_BIsBehindNAT_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser019_BIsBehindNAT( ¶ms ); + 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) { - struct cppISteamUser_SteamUser019_AdvertiseGame_params params = + struct ISteamUser_SteamUser019_AdvertiseGame_params params = { .linux_side = _this->u_iface, .steamIDGameServer = steamIDGameServer, @@ -4557,25 +4525,25 @@ void __thiscall winISteamUser_SteamUser019_AdvertiseGame(struct w_steam_iface *_ .usPortServer = usPortServer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser019_AdvertiseGame( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser019_AdvertiseGame, ¶ms ); } uint64_t __thiscall winISteamUser_SteamUser019_RequestEncryptedAppTicket(struct w_steam_iface *_this, void *pDataToInclude, int32_t cbDataToInclude) { - struct cppISteamUser_SteamUser019_RequestEncryptedAppTicket_params params = + struct ISteamUser_SteamUser019_RequestEncryptedAppTicket_params params = { .linux_side = _this->u_iface, .pDataToInclude = pDataToInclude, .cbDataToInclude = cbDataToInclude, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser019_RequestEncryptedAppTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser019_RequestEncryptedAppTicket, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser019_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { - struct cppISteamUser_SteamUser019_GetEncryptedAppTicket_params params = + struct ISteamUser_SteamUser019_GetEncryptedAppTicket_params params = { .linux_side = _this->u_iface, .pTicket = pTicket, @@ -4583,87 +4551,87 @@ bool __thiscall winISteamUser_SteamUser019_GetEncryptedAppTicket(struct w_steam_ .pcbTicket = pcbTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser019_GetEncryptedAppTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser019_GetEncryptedAppTicket, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser019_GetGameBadgeLevel(struct w_steam_iface *_this, int32_t nSeries, bool bFoil) { - struct cppISteamUser_SteamUser019_GetGameBadgeLevel_params params = + struct ISteamUser_SteamUser019_GetGameBadgeLevel_params params = { .linux_side = _this->u_iface, .nSeries = nSeries, .bFoil = bFoil, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser019_GetGameBadgeLevel( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser019_GetGameBadgeLevel, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser019_GetPlayerSteamLevel(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser019_GetPlayerSteamLevel_params params = + struct ISteamUser_SteamUser019_GetPlayerSteamLevel_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser019_GetPlayerSteamLevel( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser019_GetPlayerSteamLevel, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUser_SteamUser019_RequestStoreAuthURL(struct w_steam_iface *_this, const char *pchRedirectURL) { - struct cppISteamUser_SteamUser019_RequestStoreAuthURL_params params = + struct ISteamUser_SteamUser019_RequestStoreAuthURL_params params = { .linux_side = _this->u_iface, .pchRedirectURL = pchRedirectURL, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser019_RequestStoreAuthURL( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser019_RequestStoreAuthURL, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser019_BIsPhoneVerified(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser019_BIsPhoneVerified_params params = + struct ISteamUser_SteamUser019_BIsPhoneVerified_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser019_BIsPhoneVerified( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser019_BIsPhoneVerified, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser019_BIsTwoFactorEnabled(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser019_BIsTwoFactorEnabled_params params = + struct ISteamUser_SteamUser019_BIsTwoFactorEnabled_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser019_BIsTwoFactorEnabled( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser019_BIsTwoFactorEnabled, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser019_BIsPhoneIdentifying(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser019_BIsPhoneIdentifying_params params = + struct ISteamUser_SteamUser019_BIsPhoneIdentifying_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser019_BIsPhoneIdentifying( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser019_BIsPhoneIdentifying, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser019_BIsPhoneRequiringVerification(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser019_BIsPhoneRequiringVerification_params params = + struct ISteamUser_SteamUser019_BIsPhoneRequiringVerification_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser019_BIsPhoneRequiringVerification( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser019_BIsPhoneRequiringVerification, ¶ms ); return params._ret; } @@ -4714,8 +4682,6 @@ struct w_steam_iface *create_winISteamUser_SteamUser019(void *u_iface) return r; } -#include "cppISteamUser_SteamUser020.h" - DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser020_GetHSteamUser, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser020_BLoggedOn, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser020_GetSteamID, 8) @@ -4750,41 +4716,41 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser020_GetDurationControl, 4) int32_t __thiscall winISteamUser_SteamUser020_GetHSteamUser(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser020_GetHSteamUser_params params = + struct ISteamUser_SteamUser020_GetHSteamUser_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser020_GetHSteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser020_GetHSteamUser, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser020_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser020_BLoggedOn_params params = + struct ISteamUser_SteamUser020_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser020_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser020_BLoggedOn, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamUser_SteamUser020_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamUser_SteamUser020_GetSteamID_params params = + struct ISteamUser_SteamUser020_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser020_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser020_GetSteamID, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser020_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) { - struct cppISteamUser_SteamUser020_InitiateGameConnection_params params = + struct ISteamUser_SteamUser020_InitiateGameConnection_params params = { .linux_side = _this->u_iface, .pAuthBlob = pAuthBlob, @@ -4795,25 +4761,25 @@ int32_t __thiscall winISteamUser_SteamUser020_InitiateGameConnection(struct w_st .bSecure = bSecure, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser020_InitiateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser020_InitiateGameConnection, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser020_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { - struct cppISteamUser_SteamUser020_TerminateGameConnection_params params = + struct ISteamUser_SteamUser020_TerminateGameConnection_params params = { .linux_side = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser020_TerminateGameConnection( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser020_TerminateGameConnection, ¶ms ); } void __thiscall winISteamUser_SteamUser020_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { - struct cppISteamUser_SteamUser020_TrackAppUsageEvent_params params = + struct ISteamUser_SteamUser020_TrackAppUsageEvent_params params = { .linux_side = _this->u_iface, .gameID = gameID, @@ -4821,46 +4787,46 @@ void __thiscall winISteamUser_SteamUser020_TrackAppUsageEvent(struct w_steam_ifa .pchExtraInfo = pchExtraInfo, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser020_TrackAppUsageEvent( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser020_TrackAppUsageEvent, ¶ms ); } bool __thiscall winISteamUser_SteamUser020_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) { - struct cppISteamUser_SteamUser020_GetUserDataFolder_params params = + struct ISteamUser_SteamUser020_GetUserDataFolder_params params = { .linux_side = _this->u_iface, .pchBuffer = pchBuffer, .cubBuffer = cubBuffer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser020_GetUserDataFolder( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser020_GetUserDataFolder, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchBuffer, pchBuffer, cubBuffer, 0 ); return params._ret; } void __thiscall winISteamUser_SteamUser020_StartVoiceRecording(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser020_StartVoiceRecording_params params = + struct ISteamUser_SteamUser020_StartVoiceRecording_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser020_StartVoiceRecording( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser020_StartVoiceRecording, ¶ms ); } void __thiscall winISteamUser_SteamUser020_StopVoiceRecording(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser020_StopVoiceRecording_params params = + struct ISteamUser_SteamUser020_StopVoiceRecording_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser020_StopVoiceRecording( ¶ms ); + 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) { - struct cppISteamUser_SteamUser020_GetAvailableVoice_params params = + struct ISteamUser_SteamUser020_GetAvailableVoice_params params = { .linux_side = _this->u_iface, .pcbCompressed = pcbCompressed, @@ -4868,13 +4834,13 @@ uint32_t __thiscall winISteamUser_SteamUser020_GetAvailableVoice(struct w_steam_ .nUncompressedVoiceDesiredSampleRate_Deprecated = nUncompressedVoiceDesiredSampleRate_Deprecated, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser020_GetAvailableVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser020_GetAvailableVoice, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser020_GetVoice(struct w_steam_iface *_this, bool bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, bool bWantUncompressed_Deprecated, void *pUncompressedDestBuffer_Deprecated, uint32_t cbUncompressedDestBufferSize_Deprecated, uint32_t *nUncompressBytesWritten_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) { - struct cppISteamUser_SteamUser020_GetVoice_params params = + struct ISteamUser_SteamUser020_GetVoice_params params = { .linux_side = _this->u_iface, .bWantCompressed = bWantCompressed, @@ -4888,13 +4854,13 @@ uint32_t __thiscall winISteamUser_SteamUser020_GetVoice(struct w_steam_iface *_t .nUncompressedVoiceDesiredSampleRate_Deprecated = nUncompressedVoiceDesiredSampleRate_Deprecated, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser020_GetVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser020_GetVoice, ¶ms ); 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) { - struct cppISteamUser_SteamUser020_DecompressVoice_params params = + struct ISteamUser_SteamUser020_DecompressVoice_params params = { .linux_side = _this->u_iface, .pCompressed = pCompressed, @@ -4905,24 +4871,24 @@ uint32_t __thiscall winISteamUser_SteamUser020_DecompressVoice(struct w_steam_if .nDesiredSampleRate = nDesiredSampleRate, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser020_DecompressVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser020_DecompressVoice, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser020_GetVoiceOptimalSampleRate(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser020_GetVoiceOptimalSampleRate_params params = + struct ISteamUser_SteamUser020_GetVoiceOptimalSampleRate_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser020_GetVoiceOptimalSampleRate( ¶ms ); + 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) { - struct cppISteamUser_SteamUser020_GetAuthSessionTicket_params params = + struct ISteamUser_SteamUser020_GetAuthSessionTicket_params params = { .linux_side = _this->u_iface, .pTicket = pTicket, @@ -4930,13 +4896,13 @@ uint32_t __thiscall winISteamUser_SteamUser020_GetAuthSessionTicket(struct w_ste .pcbTicket = pcbTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser020_GetAuthSessionTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser020_GetAuthSessionTicket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser020_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { - struct cppISteamUser_SteamUser020_BeginAuthSession_params params = + struct ISteamUser_SteamUser020_BeginAuthSession_params params = { .linux_side = _this->u_iface, .pAuthTicket = pAuthTicket, @@ -4944,59 +4910,59 @@ uint32_t __thiscall winISteamUser_SteamUser020_BeginAuthSession(struct w_steam_i .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser020_BeginAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser020_BeginAuthSession, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser020_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamUser_SteamUser020_EndAuthSession_params params = + struct ISteamUser_SteamUser020_EndAuthSession_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser020_EndAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser020_EndAuthSession, ¶ms ); } void __thiscall winISteamUser_SteamUser020_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) { - struct cppISteamUser_SteamUser020_CancelAuthTicket_params params = + struct ISteamUser_SteamUser020_CancelAuthTicket_params params = { .linux_side = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser020_CancelAuthTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser020_CancelAuthTicket, ¶ms ); } uint32_t __thiscall winISteamUser_SteamUser020_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) { - struct cppISteamUser_SteamUser020_UserHasLicenseForApp_params params = + struct ISteamUser_SteamUser020_UserHasLicenseForApp_params params = { .linux_side = _this->u_iface, .steamID = steamID, .appID = appID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser020_UserHasLicenseForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser020_UserHasLicenseForApp, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser020_BIsBehindNAT(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser020_BIsBehindNAT_params params = + struct ISteamUser_SteamUser020_BIsBehindNAT_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser020_BIsBehindNAT( ¶ms ); + 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) { - struct cppISteamUser_SteamUser020_AdvertiseGame_params params = + struct ISteamUser_SteamUser020_AdvertiseGame_params params = { .linux_side = _this->u_iface, .steamIDGameServer = steamIDGameServer, @@ -5004,25 +4970,25 @@ void __thiscall winISteamUser_SteamUser020_AdvertiseGame(struct w_steam_iface *_ .usPortServer = usPortServer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser020_AdvertiseGame( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser020_AdvertiseGame, ¶ms ); } uint64_t __thiscall winISteamUser_SteamUser020_RequestEncryptedAppTicket(struct w_steam_iface *_this, void *pDataToInclude, int32_t cbDataToInclude) { - struct cppISteamUser_SteamUser020_RequestEncryptedAppTicket_params params = + struct ISteamUser_SteamUser020_RequestEncryptedAppTicket_params params = { .linux_side = _this->u_iface, .pDataToInclude = pDataToInclude, .cbDataToInclude = cbDataToInclude, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser020_RequestEncryptedAppTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser020_RequestEncryptedAppTicket, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser020_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { - struct cppISteamUser_SteamUser020_GetEncryptedAppTicket_params params = + struct ISteamUser_SteamUser020_GetEncryptedAppTicket_params params = { .linux_side = _this->u_iface, .pTicket = pTicket, @@ -5030,109 +4996,109 @@ bool __thiscall winISteamUser_SteamUser020_GetEncryptedAppTicket(struct w_steam_ .pcbTicket = pcbTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser020_GetEncryptedAppTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser020_GetEncryptedAppTicket, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser020_GetGameBadgeLevel(struct w_steam_iface *_this, int32_t nSeries, bool bFoil) { - struct cppISteamUser_SteamUser020_GetGameBadgeLevel_params params = + struct ISteamUser_SteamUser020_GetGameBadgeLevel_params params = { .linux_side = _this->u_iface, .nSeries = nSeries, .bFoil = bFoil, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser020_GetGameBadgeLevel( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser020_GetGameBadgeLevel, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser020_GetPlayerSteamLevel(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser020_GetPlayerSteamLevel_params params = + struct ISteamUser_SteamUser020_GetPlayerSteamLevel_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser020_GetPlayerSteamLevel( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser020_GetPlayerSteamLevel, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUser_SteamUser020_RequestStoreAuthURL(struct w_steam_iface *_this, const char *pchRedirectURL) { - struct cppISteamUser_SteamUser020_RequestStoreAuthURL_params params = + struct ISteamUser_SteamUser020_RequestStoreAuthURL_params params = { .linux_side = _this->u_iface, .pchRedirectURL = pchRedirectURL, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser020_RequestStoreAuthURL( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser020_RequestStoreAuthURL, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser020_BIsPhoneVerified(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser020_BIsPhoneVerified_params params = + struct ISteamUser_SteamUser020_BIsPhoneVerified_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser020_BIsPhoneVerified( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser020_BIsPhoneVerified, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser020_BIsTwoFactorEnabled(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser020_BIsTwoFactorEnabled_params params = + struct ISteamUser_SteamUser020_BIsTwoFactorEnabled_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser020_BIsTwoFactorEnabled( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser020_BIsTwoFactorEnabled, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser020_BIsPhoneIdentifying(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser020_BIsPhoneIdentifying_params params = + struct ISteamUser_SteamUser020_BIsPhoneIdentifying_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser020_BIsPhoneIdentifying( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser020_BIsPhoneIdentifying, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser020_BIsPhoneRequiringVerification(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser020_BIsPhoneRequiringVerification_params params = + struct ISteamUser_SteamUser020_BIsPhoneRequiringVerification_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser020_BIsPhoneRequiringVerification( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser020_BIsPhoneRequiringVerification, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUser_SteamUser020_GetMarketEligibility(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser020_GetMarketEligibility_params params = + struct ISteamUser_SteamUser020_GetMarketEligibility_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser020_GetMarketEligibility( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser020_GetMarketEligibility, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUser_SteamUser020_GetDurationControl(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser020_GetDurationControl_params params = + struct ISteamUser_SteamUser020_GetDurationControl_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser020_GetDurationControl( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser020_GetDurationControl, ¶ms ); return params._ret; } @@ -5185,8 +5151,6 @@ struct w_steam_iface *create_winISteamUser_SteamUser020(void *u_iface) return r; } -#include "cppISteamUser_SteamUser021.h" - DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser021_GetHSteamUser, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser021_BLoggedOn, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser021_GetSteamID, 8) @@ -5222,41 +5186,41 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser021_BSetDurationControlOnlineStat int32_t __thiscall winISteamUser_SteamUser021_GetHSteamUser(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser021_GetHSteamUser_params params = + struct ISteamUser_SteamUser021_GetHSteamUser_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_GetHSteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser021_GetHSteamUser, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser021_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser021_BLoggedOn_params params = + struct ISteamUser_SteamUser021_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser021_BLoggedOn, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamUser_SteamUser021_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamUser_SteamUser021_GetSteamID_params params = + struct ISteamUser_SteamUser021_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser021_GetSteamID, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser021_InitiateGameConnection_DEPRECATED(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) { - struct cppISteamUser_SteamUser021_InitiateGameConnection_DEPRECATED_params params = + struct ISteamUser_SteamUser021_InitiateGameConnection_DEPRECATED_params params = { .linux_side = _this->u_iface, .pAuthBlob = pAuthBlob, @@ -5267,25 +5231,25 @@ int32_t __thiscall winISteamUser_SteamUser021_InitiateGameConnection_DEPRECATED( .bSecure = bSecure, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_InitiateGameConnection_DEPRECATED( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser021_InitiateGameConnection_DEPRECATED, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser021_TerminateGameConnection_DEPRECATED(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { - struct cppISteamUser_SteamUser021_TerminateGameConnection_DEPRECATED_params params = + struct ISteamUser_SteamUser021_TerminateGameConnection_DEPRECATED_params params = { .linux_side = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_TerminateGameConnection_DEPRECATED( ¶ms ); + 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) { - struct cppISteamUser_SteamUser021_TrackAppUsageEvent_params params = + struct ISteamUser_SteamUser021_TrackAppUsageEvent_params params = { .linux_side = _this->u_iface, .gameID = gameID, @@ -5293,46 +5257,46 @@ void __thiscall winISteamUser_SteamUser021_TrackAppUsageEvent(struct w_steam_ifa .pchExtraInfo = pchExtraInfo, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_TrackAppUsageEvent( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser021_TrackAppUsageEvent, ¶ms ); } bool __thiscall winISteamUser_SteamUser021_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) { - struct cppISteamUser_SteamUser021_GetUserDataFolder_params params = + struct ISteamUser_SteamUser021_GetUserDataFolder_params params = { .linux_side = _this->u_iface, .pchBuffer = pchBuffer, .cubBuffer = cubBuffer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_GetUserDataFolder( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser021_GetUserDataFolder, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchBuffer, pchBuffer, cubBuffer, 0 ); return params._ret; } void __thiscall winISteamUser_SteamUser021_StartVoiceRecording(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser021_StartVoiceRecording_params params = + struct ISteamUser_SteamUser021_StartVoiceRecording_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_StartVoiceRecording( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser021_StartVoiceRecording, ¶ms ); } void __thiscall winISteamUser_SteamUser021_StopVoiceRecording(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser021_StopVoiceRecording_params params = + struct ISteamUser_SteamUser021_StopVoiceRecording_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_StopVoiceRecording( ¶ms ); + 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) { - struct cppISteamUser_SteamUser021_GetAvailableVoice_params params = + struct ISteamUser_SteamUser021_GetAvailableVoice_params params = { .linux_side = _this->u_iface, .pcbCompressed = pcbCompressed, @@ -5340,13 +5304,13 @@ uint32_t __thiscall winISteamUser_SteamUser021_GetAvailableVoice(struct w_steam_ .nUncompressedVoiceDesiredSampleRate_Deprecated = nUncompressedVoiceDesiredSampleRate_Deprecated, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_GetAvailableVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser021_GetAvailableVoice, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser021_GetVoice(struct w_steam_iface *_this, bool bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, bool bWantUncompressed_Deprecated, void *pUncompressedDestBuffer_Deprecated, uint32_t cbUncompressedDestBufferSize_Deprecated, uint32_t *nUncompressBytesWritten_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) { - struct cppISteamUser_SteamUser021_GetVoice_params params = + struct ISteamUser_SteamUser021_GetVoice_params params = { .linux_side = _this->u_iface, .bWantCompressed = bWantCompressed, @@ -5360,13 +5324,13 @@ uint32_t __thiscall winISteamUser_SteamUser021_GetVoice(struct w_steam_iface *_t .nUncompressedVoiceDesiredSampleRate_Deprecated = nUncompressedVoiceDesiredSampleRate_Deprecated, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_GetVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser021_GetVoice, ¶ms ); 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) { - struct cppISteamUser_SteamUser021_DecompressVoice_params params = + struct ISteamUser_SteamUser021_DecompressVoice_params params = { .linux_side = _this->u_iface, .pCompressed = pCompressed, @@ -5377,24 +5341,24 @@ uint32_t __thiscall winISteamUser_SteamUser021_DecompressVoice(struct w_steam_if .nDesiredSampleRate = nDesiredSampleRate, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_DecompressVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser021_DecompressVoice, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser021_GetVoiceOptimalSampleRate(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser021_GetVoiceOptimalSampleRate_params params = + struct ISteamUser_SteamUser021_GetVoiceOptimalSampleRate_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_GetVoiceOptimalSampleRate( ¶ms ); + 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) { - struct cppISteamUser_SteamUser021_GetAuthSessionTicket_params params = + struct ISteamUser_SteamUser021_GetAuthSessionTicket_params params = { .linux_side = _this->u_iface, .pTicket = pTicket, @@ -5402,13 +5366,13 @@ uint32_t __thiscall winISteamUser_SteamUser021_GetAuthSessionTicket(struct w_ste .pcbTicket = pcbTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_GetAuthSessionTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser021_GetAuthSessionTicket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser021_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { - struct cppISteamUser_SteamUser021_BeginAuthSession_params params = + struct ISteamUser_SteamUser021_BeginAuthSession_params params = { .linux_side = _this->u_iface, .pAuthTicket = pAuthTicket, @@ -5416,59 +5380,59 @@ uint32_t __thiscall winISteamUser_SteamUser021_BeginAuthSession(struct w_steam_i .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_BeginAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser021_BeginAuthSession, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser021_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamUser_SteamUser021_EndAuthSession_params params = + struct ISteamUser_SteamUser021_EndAuthSession_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_EndAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser021_EndAuthSession, ¶ms ); } void __thiscall winISteamUser_SteamUser021_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) { - struct cppISteamUser_SteamUser021_CancelAuthTicket_params params = + struct ISteamUser_SteamUser021_CancelAuthTicket_params params = { .linux_side = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_CancelAuthTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser021_CancelAuthTicket, ¶ms ); } uint32_t __thiscall winISteamUser_SteamUser021_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) { - struct cppISteamUser_SteamUser021_UserHasLicenseForApp_params params = + struct ISteamUser_SteamUser021_UserHasLicenseForApp_params params = { .linux_side = _this->u_iface, .steamID = steamID, .appID = appID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_UserHasLicenseForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser021_UserHasLicenseForApp, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser021_BIsBehindNAT(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser021_BIsBehindNAT_params params = + struct ISteamUser_SteamUser021_BIsBehindNAT_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_BIsBehindNAT( ¶ms ); + 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) { - struct cppISteamUser_SteamUser021_AdvertiseGame_params params = + struct ISteamUser_SteamUser021_AdvertiseGame_params params = { .linux_side = _this->u_iface, .steamIDGameServer = steamIDGameServer, @@ -5476,25 +5440,25 @@ void __thiscall winISteamUser_SteamUser021_AdvertiseGame(struct w_steam_iface *_ .usPortServer = usPortServer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_AdvertiseGame( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser021_AdvertiseGame, ¶ms ); } uint64_t __thiscall winISteamUser_SteamUser021_RequestEncryptedAppTicket(struct w_steam_iface *_this, void *pDataToInclude, int32_t cbDataToInclude) { - struct cppISteamUser_SteamUser021_RequestEncryptedAppTicket_params params = + struct ISteamUser_SteamUser021_RequestEncryptedAppTicket_params params = { .linux_side = _this->u_iface, .pDataToInclude = pDataToInclude, .cbDataToInclude = cbDataToInclude, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_RequestEncryptedAppTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser021_RequestEncryptedAppTicket, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser021_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { - struct cppISteamUser_SteamUser021_GetEncryptedAppTicket_params params = + struct ISteamUser_SteamUser021_GetEncryptedAppTicket_params params = { .linux_side = _this->u_iface, .pTicket = pTicket, @@ -5502,121 +5466,121 @@ bool __thiscall winISteamUser_SteamUser021_GetEncryptedAppTicket(struct w_steam_ .pcbTicket = pcbTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_GetEncryptedAppTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser021_GetEncryptedAppTicket, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser021_GetGameBadgeLevel(struct w_steam_iface *_this, int32_t nSeries, bool bFoil) { - struct cppISteamUser_SteamUser021_GetGameBadgeLevel_params params = + struct ISteamUser_SteamUser021_GetGameBadgeLevel_params params = { .linux_side = _this->u_iface, .nSeries = nSeries, .bFoil = bFoil, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_GetGameBadgeLevel( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser021_GetGameBadgeLevel, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser021_GetPlayerSteamLevel(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser021_GetPlayerSteamLevel_params params = + struct ISteamUser_SteamUser021_GetPlayerSteamLevel_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_GetPlayerSteamLevel( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser021_GetPlayerSteamLevel, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUser_SteamUser021_RequestStoreAuthURL(struct w_steam_iface *_this, const char *pchRedirectURL) { - struct cppISteamUser_SteamUser021_RequestStoreAuthURL_params params = + struct ISteamUser_SteamUser021_RequestStoreAuthURL_params params = { .linux_side = _this->u_iface, .pchRedirectURL = pchRedirectURL, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_RequestStoreAuthURL( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser021_RequestStoreAuthURL, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser021_BIsPhoneVerified(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser021_BIsPhoneVerified_params params = + struct ISteamUser_SteamUser021_BIsPhoneVerified_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_BIsPhoneVerified( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser021_BIsPhoneVerified, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser021_BIsTwoFactorEnabled(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser021_BIsTwoFactorEnabled_params params = + struct ISteamUser_SteamUser021_BIsTwoFactorEnabled_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_BIsTwoFactorEnabled( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser021_BIsTwoFactorEnabled, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser021_BIsPhoneIdentifying(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser021_BIsPhoneIdentifying_params params = + struct ISteamUser_SteamUser021_BIsPhoneIdentifying_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_BIsPhoneIdentifying( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser021_BIsPhoneIdentifying, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser021_BIsPhoneRequiringVerification(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser021_BIsPhoneRequiringVerification_params params = + struct ISteamUser_SteamUser021_BIsPhoneRequiringVerification_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_BIsPhoneRequiringVerification( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser021_BIsPhoneRequiringVerification, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUser_SteamUser021_GetMarketEligibility(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser021_GetMarketEligibility_params params = + struct ISteamUser_SteamUser021_GetMarketEligibility_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_GetMarketEligibility( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser021_GetMarketEligibility, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUser_SteamUser021_GetDurationControl(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser021_GetDurationControl_params params = + struct ISteamUser_SteamUser021_GetDurationControl_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_GetDurationControl( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser021_GetDurationControl, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser021_BSetDurationControlOnlineState(struct w_steam_iface *_this, uint32_t eNewState) { - struct cppISteamUser_SteamUser021_BSetDurationControlOnlineState_params params = + struct ISteamUser_SteamUser021_BSetDurationControlOnlineState_params params = { .linux_side = _this->u_iface, .eNewState = eNewState, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser021_BSetDurationControlOnlineState( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser021_BSetDurationControlOnlineState, ¶ms ); return params._ret; } @@ -5670,8 +5634,6 @@ struct w_steam_iface *create_winISteamUser_SteamUser021(void *u_iface) return r; } -#include "cppISteamUser_SteamUser022.h" - DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser022_GetHSteamUser, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser022_BLoggedOn, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser022_GetSteamID, 8) @@ -5707,41 +5669,41 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser022_BSetDurationControlOnlineStat int32_t __thiscall winISteamUser_SteamUser022_GetHSteamUser(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser022_GetHSteamUser_params params = + struct ISteamUser_SteamUser022_GetHSteamUser_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_GetHSteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser022_GetHSteamUser, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser022_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser022_BLoggedOn_params params = + struct ISteamUser_SteamUser022_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser022_BLoggedOn, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamUser_SteamUser022_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamUser_SteamUser022_GetSteamID_params params = + struct ISteamUser_SteamUser022_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser022_GetSteamID, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser022_InitiateGameConnection_DEPRECATED(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) { - struct cppISteamUser_SteamUser022_InitiateGameConnection_DEPRECATED_params params = + struct ISteamUser_SteamUser022_InitiateGameConnection_DEPRECATED_params params = { .linux_side = _this->u_iface, .pAuthBlob = pAuthBlob, @@ -5752,25 +5714,25 @@ int32_t __thiscall winISteamUser_SteamUser022_InitiateGameConnection_DEPRECATED( .bSecure = bSecure, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_InitiateGameConnection_DEPRECATED( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser022_InitiateGameConnection_DEPRECATED, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser022_TerminateGameConnection_DEPRECATED(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { - struct cppISteamUser_SteamUser022_TerminateGameConnection_DEPRECATED_params params = + struct ISteamUser_SteamUser022_TerminateGameConnection_DEPRECATED_params params = { .linux_side = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_TerminateGameConnection_DEPRECATED( ¶ms ); + 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) { - struct cppISteamUser_SteamUser022_TrackAppUsageEvent_params params = + struct ISteamUser_SteamUser022_TrackAppUsageEvent_params params = { .linux_side = _this->u_iface, .gameID = gameID, @@ -5778,46 +5740,46 @@ void __thiscall winISteamUser_SteamUser022_TrackAppUsageEvent(struct w_steam_ifa .pchExtraInfo = pchExtraInfo, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_TrackAppUsageEvent( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser022_TrackAppUsageEvent, ¶ms ); } bool __thiscall winISteamUser_SteamUser022_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) { - struct cppISteamUser_SteamUser022_GetUserDataFolder_params params = + struct ISteamUser_SteamUser022_GetUserDataFolder_params params = { .linux_side = _this->u_iface, .pchBuffer = pchBuffer, .cubBuffer = cubBuffer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_GetUserDataFolder( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser022_GetUserDataFolder, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchBuffer, pchBuffer, cubBuffer, 0 ); return params._ret; } void __thiscall winISteamUser_SteamUser022_StartVoiceRecording(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser022_StartVoiceRecording_params params = + struct ISteamUser_SteamUser022_StartVoiceRecording_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_StartVoiceRecording( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser022_StartVoiceRecording, ¶ms ); } void __thiscall winISteamUser_SteamUser022_StopVoiceRecording(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser022_StopVoiceRecording_params params = + struct ISteamUser_SteamUser022_StopVoiceRecording_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_StopVoiceRecording( ¶ms ); + 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) { - struct cppISteamUser_SteamUser022_GetAvailableVoice_params params = + struct ISteamUser_SteamUser022_GetAvailableVoice_params params = { .linux_side = _this->u_iface, .pcbCompressed = pcbCompressed, @@ -5825,13 +5787,13 @@ uint32_t __thiscall winISteamUser_SteamUser022_GetAvailableVoice(struct w_steam_ .nUncompressedVoiceDesiredSampleRate_Deprecated = nUncompressedVoiceDesiredSampleRate_Deprecated, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_GetAvailableVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser022_GetAvailableVoice, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser022_GetVoice(struct w_steam_iface *_this, bool bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, bool bWantUncompressed_Deprecated, void *pUncompressedDestBuffer_Deprecated, uint32_t cbUncompressedDestBufferSize_Deprecated, uint32_t *nUncompressBytesWritten_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) { - struct cppISteamUser_SteamUser022_GetVoice_params params = + struct ISteamUser_SteamUser022_GetVoice_params params = { .linux_side = _this->u_iface, .bWantCompressed = bWantCompressed, @@ -5845,13 +5807,13 @@ uint32_t __thiscall winISteamUser_SteamUser022_GetVoice(struct w_steam_iface *_t .nUncompressedVoiceDesiredSampleRate_Deprecated = nUncompressedVoiceDesiredSampleRate_Deprecated, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_GetVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser022_GetVoice, ¶ms ); 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) { - struct cppISteamUser_SteamUser022_DecompressVoice_params params = + struct ISteamUser_SteamUser022_DecompressVoice_params params = { .linux_side = _this->u_iface, .pCompressed = pCompressed, @@ -5862,24 +5824,24 @@ uint32_t __thiscall winISteamUser_SteamUser022_DecompressVoice(struct w_steam_if .nDesiredSampleRate = nDesiredSampleRate, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_DecompressVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser022_DecompressVoice, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser022_GetVoiceOptimalSampleRate(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser022_GetVoiceOptimalSampleRate_params params = + struct ISteamUser_SteamUser022_GetVoiceOptimalSampleRate_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_GetVoiceOptimalSampleRate( ¶ms ); + 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) { - struct cppISteamUser_SteamUser022_GetAuthSessionTicket_params params = + struct ISteamUser_SteamUser022_GetAuthSessionTicket_params params = { .linux_side = _this->u_iface, .pTicket = pTicket, @@ -5888,13 +5850,13 @@ uint32_t __thiscall winISteamUser_SteamUser022_GetAuthSessionTicket(struct w_ste .pSteamNetworkingIdentity = pSteamNetworkingIdentity, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_GetAuthSessionTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser022_GetAuthSessionTicket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser022_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { - struct cppISteamUser_SteamUser022_BeginAuthSession_params params = + struct ISteamUser_SteamUser022_BeginAuthSession_params params = { .linux_side = _this->u_iface, .pAuthTicket = pAuthTicket, @@ -5902,59 +5864,59 @@ uint32_t __thiscall winISteamUser_SteamUser022_BeginAuthSession(struct w_steam_i .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_BeginAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser022_BeginAuthSession, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser022_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamUser_SteamUser022_EndAuthSession_params params = + struct ISteamUser_SteamUser022_EndAuthSession_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_EndAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser022_EndAuthSession, ¶ms ); } void __thiscall winISteamUser_SteamUser022_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) { - struct cppISteamUser_SteamUser022_CancelAuthTicket_params params = + struct ISteamUser_SteamUser022_CancelAuthTicket_params params = { .linux_side = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_CancelAuthTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser022_CancelAuthTicket, ¶ms ); } uint32_t __thiscall winISteamUser_SteamUser022_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) { - struct cppISteamUser_SteamUser022_UserHasLicenseForApp_params params = + struct ISteamUser_SteamUser022_UserHasLicenseForApp_params params = { .linux_side = _this->u_iface, .steamID = steamID, .appID = appID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_UserHasLicenseForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser022_UserHasLicenseForApp, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser022_BIsBehindNAT(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser022_BIsBehindNAT_params params = + struct ISteamUser_SteamUser022_BIsBehindNAT_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_BIsBehindNAT( ¶ms ); + 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) { - struct cppISteamUser_SteamUser022_AdvertiseGame_params params = + struct ISteamUser_SteamUser022_AdvertiseGame_params params = { .linux_side = _this->u_iface, .steamIDGameServer = steamIDGameServer, @@ -5962,25 +5924,25 @@ void __thiscall winISteamUser_SteamUser022_AdvertiseGame(struct w_steam_iface *_ .usPortServer = usPortServer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_AdvertiseGame( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser022_AdvertiseGame, ¶ms ); } uint64_t __thiscall winISteamUser_SteamUser022_RequestEncryptedAppTicket(struct w_steam_iface *_this, void *pDataToInclude, int32_t cbDataToInclude) { - struct cppISteamUser_SteamUser022_RequestEncryptedAppTicket_params params = + struct ISteamUser_SteamUser022_RequestEncryptedAppTicket_params params = { .linux_side = _this->u_iface, .pDataToInclude = pDataToInclude, .cbDataToInclude = cbDataToInclude, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_RequestEncryptedAppTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser022_RequestEncryptedAppTicket, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser022_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { - struct cppISteamUser_SteamUser022_GetEncryptedAppTicket_params params = + struct ISteamUser_SteamUser022_GetEncryptedAppTicket_params params = { .linux_side = _this->u_iface, .pTicket = pTicket, @@ -5988,121 +5950,121 @@ bool __thiscall winISteamUser_SteamUser022_GetEncryptedAppTicket(struct w_steam_ .pcbTicket = pcbTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_GetEncryptedAppTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser022_GetEncryptedAppTicket, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser022_GetGameBadgeLevel(struct w_steam_iface *_this, int32_t nSeries, bool bFoil) { - struct cppISteamUser_SteamUser022_GetGameBadgeLevel_params params = + struct ISteamUser_SteamUser022_GetGameBadgeLevel_params params = { .linux_side = _this->u_iface, .nSeries = nSeries, .bFoil = bFoil, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_GetGameBadgeLevel( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser022_GetGameBadgeLevel, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser022_GetPlayerSteamLevel(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser022_GetPlayerSteamLevel_params params = + struct ISteamUser_SteamUser022_GetPlayerSteamLevel_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_GetPlayerSteamLevel( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser022_GetPlayerSteamLevel, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUser_SteamUser022_RequestStoreAuthURL(struct w_steam_iface *_this, const char *pchRedirectURL) { - struct cppISteamUser_SteamUser022_RequestStoreAuthURL_params params = + struct ISteamUser_SteamUser022_RequestStoreAuthURL_params params = { .linux_side = _this->u_iface, .pchRedirectURL = pchRedirectURL, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_RequestStoreAuthURL( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser022_RequestStoreAuthURL, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser022_BIsPhoneVerified(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser022_BIsPhoneVerified_params params = + struct ISteamUser_SteamUser022_BIsPhoneVerified_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_BIsPhoneVerified( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser022_BIsPhoneVerified, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser022_BIsTwoFactorEnabled(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser022_BIsTwoFactorEnabled_params params = + struct ISteamUser_SteamUser022_BIsTwoFactorEnabled_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_BIsTwoFactorEnabled( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser022_BIsTwoFactorEnabled, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser022_BIsPhoneIdentifying(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser022_BIsPhoneIdentifying_params params = + struct ISteamUser_SteamUser022_BIsPhoneIdentifying_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_BIsPhoneIdentifying( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser022_BIsPhoneIdentifying, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser022_BIsPhoneRequiringVerification(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser022_BIsPhoneRequiringVerification_params params = + struct ISteamUser_SteamUser022_BIsPhoneRequiringVerification_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_BIsPhoneRequiringVerification( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser022_BIsPhoneRequiringVerification, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUser_SteamUser022_GetMarketEligibility(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser022_GetMarketEligibility_params params = + struct ISteamUser_SteamUser022_GetMarketEligibility_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_GetMarketEligibility( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser022_GetMarketEligibility, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUser_SteamUser022_GetDurationControl(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser022_GetDurationControl_params params = + struct ISteamUser_SteamUser022_GetDurationControl_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_GetDurationControl( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser022_GetDurationControl, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser022_BSetDurationControlOnlineState(struct w_steam_iface *_this, uint32_t eNewState) { - struct cppISteamUser_SteamUser022_BSetDurationControlOnlineState_params params = + struct ISteamUser_SteamUser022_BSetDurationControlOnlineState_params params = { .linux_side = _this->u_iface, .eNewState = eNewState, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser022_BSetDurationControlOnlineState( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser022_BSetDurationControlOnlineState, ¶ms ); return params._ret; } @@ -6156,8 +6118,6 @@ struct w_steam_iface *create_winISteamUser_SteamUser022(void *u_iface) return r; } -#include "cppISteamUser_SteamUser023.h" - DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser023_GetHSteamUser, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser023_BLoggedOn, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser023_GetSteamID, 8) @@ -6194,41 +6154,41 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser023_BSetDurationControlOnlineStat int32_t __thiscall winISteamUser_SteamUser023_GetHSteamUser(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser023_GetHSteamUser_params params = + struct ISteamUser_SteamUser023_GetHSteamUser_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_GetHSteamUser( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser023_GetHSteamUser, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser023_BLoggedOn(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser023_BLoggedOn_params params = + struct ISteamUser_SteamUser023_BLoggedOn_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_BLoggedOn( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser023_BLoggedOn, ¶ms ); return params._ret; } CSteamID * __thiscall winISteamUser_SteamUser023_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) { - struct cppISteamUser_SteamUser023_GetSteamID_params params = + struct ISteamUser_SteamUser023_GetSteamID_params params = { .linux_side = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_GetSteamID( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser023_GetSteamID, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser023_InitiateGameConnection_DEPRECATED(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) { - struct cppISteamUser_SteamUser023_InitiateGameConnection_DEPRECATED_params params = + struct ISteamUser_SteamUser023_InitiateGameConnection_DEPRECATED_params params = { .linux_side = _this->u_iface, .pAuthBlob = pAuthBlob, @@ -6239,25 +6199,25 @@ int32_t __thiscall winISteamUser_SteamUser023_InitiateGameConnection_DEPRECATED( .bSecure = bSecure, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_InitiateGameConnection_DEPRECATED( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser023_InitiateGameConnection_DEPRECATED, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser023_TerminateGameConnection_DEPRECATED(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { - struct cppISteamUser_SteamUser023_TerminateGameConnection_DEPRECATED_params params = + struct ISteamUser_SteamUser023_TerminateGameConnection_DEPRECATED_params params = { .linux_side = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_TerminateGameConnection_DEPRECATED( ¶ms ); + 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) { - struct cppISteamUser_SteamUser023_TrackAppUsageEvent_params params = + struct ISteamUser_SteamUser023_TrackAppUsageEvent_params params = { .linux_side = _this->u_iface, .gameID = gameID, @@ -6265,46 +6225,46 @@ void __thiscall winISteamUser_SteamUser023_TrackAppUsageEvent(struct w_steam_ifa .pchExtraInfo = pchExtraInfo, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_TrackAppUsageEvent( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser023_TrackAppUsageEvent, ¶ms ); } bool __thiscall winISteamUser_SteamUser023_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) { - struct cppISteamUser_SteamUser023_GetUserDataFolder_params params = + struct ISteamUser_SteamUser023_GetUserDataFolder_params params = { .linux_side = _this->u_iface, .pchBuffer = pchBuffer, .cubBuffer = cubBuffer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_GetUserDataFolder( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser023_GetUserDataFolder, ¶ms ); steamclient_unix_path_to_dos_path( params._ret, pchBuffer, pchBuffer, cubBuffer, 0 ); return params._ret; } void __thiscall winISteamUser_SteamUser023_StartVoiceRecording(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser023_StartVoiceRecording_params params = + struct ISteamUser_SteamUser023_StartVoiceRecording_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_StartVoiceRecording( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser023_StartVoiceRecording, ¶ms ); } void __thiscall winISteamUser_SteamUser023_StopVoiceRecording(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser023_StopVoiceRecording_params params = + struct ISteamUser_SteamUser023_StopVoiceRecording_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_StopVoiceRecording( ¶ms ); + 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) { - struct cppISteamUser_SteamUser023_GetAvailableVoice_params params = + struct ISteamUser_SteamUser023_GetAvailableVoice_params params = { .linux_side = _this->u_iface, .pcbCompressed = pcbCompressed, @@ -6312,13 +6272,13 @@ uint32_t __thiscall winISteamUser_SteamUser023_GetAvailableVoice(struct w_steam_ .nUncompressedVoiceDesiredSampleRate_Deprecated = nUncompressedVoiceDesiredSampleRate_Deprecated, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_GetAvailableVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser023_GetAvailableVoice, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser023_GetVoice(struct w_steam_iface *_this, bool bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, bool bWantUncompressed_Deprecated, void *pUncompressedDestBuffer_Deprecated, uint32_t cbUncompressedDestBufferSize_Deprecated, uint32_t *nUncompressBytesWritten_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) { - struct cppISteamUser_SteamUser023_GetVoice_params params = + struct ISteamUser_SteamUser023_GetVoice_params params = { .linux_side = _this->u_iface, .bWantCompressed = bWantCompressed, @@ -6332,13 +6292,13 @@ uint32_t __thiscall winISteamUser_SteamUser023_GetVoice(struct w_steam_iface *_t .nUncompressedVoiceDesiredSampleRate_Deprecated = nUncompressedVoiceDesiredSampleRate_Deprecated, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_GetVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser023_GetVoice, ¶ms ); 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) { - struct cppISteamUser_SteamUser023_DecompressVoice_params params = + struct ISteamUser_SteamUser023_DecompressVoice_params params = { .linux_side = _this->u_iface, .pCompressed = pCompressed, @@ -6349,24 +6309,24 @@ uint32_t __thiscall winISteamUser_SteamUser023_DecompressVoice(struct w_steam_if .nDesiredSampleRate = nDesiredSampleRate, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_DecompressVoice( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser023_DecompressVoice, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser023_GetVoiceOptimalSampleRate(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser023_GetVoiceOptimalSampleRate_params params = + struct ISteamUser_SteamUser023_GetVoiceOptimalSampleRate_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_GetVoiceOptimalSampleRate( ¶ms ); + 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) { - struct cppISteamUser_SteamUser023_GetAuthSessionTicket_params params = + struct ISteamUser_SteamUser023_GetAuthSessionTicket_params params = { .linux_side = _this->u_iface, .pTicket = pTicket, @@ -6375,25 +6335,25 @@ uint32_t __thiscall winISteamUser_SteamUser023_GetAuthSessionTicket(struct w_ste .pSteamNetworkingIdentity = pSteamNetworkingIdentity, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_GetAuthSessionTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser023_GetAuthSessionTicket, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser023_GetAuthTicketForWebApi(struct w_steam_iface *_this, const char *pchIdentity) { - struct cppISteamUser_SteamUser023_GetAuthTicketForWebApi_params params = + struct ISteamUser_SteamUser023_GetAuthTicketForWebApi_params params = { .linux_side = _this->u_iface, .pchIdentity = pchIdentity, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_GetAuthTicketForWebApi( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser023_GetAuthTicketForWebApi, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUser_SteamUser023_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { - struct cppISteamUser_SteamUser023_BeginAuthSession_params params = + struct ISteamUser_SteamUser023_BeginAuthSession_params params = { .linux_side = _this->u_iface, .pAuthTicket = pAuthTicket, @@ -6401,59 +6361,59 @@ uint32_t __thiscall winISteamUser_SteamUser023_BeginAuthSession(struct w_steam_i .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_BeginAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser023_BeginAuthSession, ¶ms ); return params._ret; } void __thiscall winISteamUser_SteamUser023_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) { - struct cppISteamUser_SteamUser023_EndAuthSession_params params = + struct ISteamUser_SteamUser023_EndAuthSession_params params = { .linux_side = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_EndAuthSession( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser023_EndAuthSession, ¶ms ); } void __thiscall winISteamUser_SteamUser023_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) { - struct cppISteamUser_SteamUser023_CancelAuthTicket_params params = + struct ISteamUser_SteamUser023_CancelAuthTicket_params params = { .linux_side = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_CancelAuthTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser023_CancelAuthTicket, ¶ms ); } uint32_t __thiscall winISteamUser_SteamUser023_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) { - struct cppISteamUser_SteamUser023_UserHasLicenseForApp_params params = + struct ISteamUser_SteamUser023_UserHasLicenseForApp_params params = { .linux_side = _this->u_iface, .steamID = steamID, .appID = appID, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_UserHasLicenseForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser023_UserHasLicenseForApp, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser023_BIsBehindNAT(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser023_BIsBehindNAT_params params = + struct ISteamUser_SteamUser023_BIsBehindNAT_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_BIsBehindNAT( ¶ms ); + 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) { - struct cppISteamUser_SteamUser023_AdvertiseGame_params params = + struct ISteamUser_SteamUser023_AdvertiseGame_params params = { .linux_side = _this->u_iface, .steamIDGameServer = steamIDGameServer, @@ -6461,25 +6421,25 @@ void __thiscall winISteamUser_SteamUser023_AdvertiseGame(struct w_steam_iface *_ .usPortServer = usPortServer, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_AdvertiseGame( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser023_AdvertiseGame, ¶ms ); } uint64_t __thiscall winISteamUser_SteamUser023_RequestEncryptedAppTicket(struct w_steam_iface *_this, void *pDataToInclude, int32_t cbDataToInclude) { - struct cppISteamUser_SteamUser023_RequestEncryptedAppTicket_params params = + struct ISteamUser_SteamUser023_RequestEncryptedAppTicket_params params = { .linux_side = _this->u_iface, .pDataToInclude = pDataToInclude, .cbDataToInclude = cbDataToInclude, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_RequestEncryptedAppTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser023_RequestEncryptedAppTicket, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser023_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { - struct cppISteamUser_SteamUser023_GetEncryptedAppTicket_params params = + struct ISteamUser_SteamUser023_GetEncryptedAppTicket_params params = { .linux_side = _this->u_iface, .pTicket = pTicket, @@ -6487,121 +6447,121 @@ bool __thiscall winISteamUser_SteamUser023_GetEncryptedAppTicket(struct w_steam_ .pcbTicket = pcbTicket, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_GetEncryptedAppTicket( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser023_GetEncryptedAppTicket, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser023_GetGameBadgeLevel(struct w_steam_iface *_this, int32_t nSeries, bool bFoil) { - struct cppISteamUser_SteamUser023_GetGameBadgeLevel_params params = + struct ISteamUser_SteamUser023_GetGameBadgeLevel_params params = { .linux_side = _this->u_iface, .nSeries = nSeries, .bFoil = bFoil, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_GetGameBadgeLevel( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser023_GetGameBadgeLevel, ¶ms ); return params._ret; } int32_t __thiscall winISteamUser_SteamUser023_GetPlayerSteamLevel(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser023_GetPlayerSteamLevel_params params = + struct ISteamUser_SteamUser023_GetPlayerSteamLevel_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_GetPlayerSteamLevel( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser023_GetPlayerSteamLevel, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUser_SteamUser023_RequestStoreAuthURL(struct w_steam_iface *_this, const char *pchRedirectURL) { - struct cppISteamUser_SteamUser023_RequestStoreAuthURL_params params = + struct ISteamUser_SteamUser023_RequestStoreAuthURL_params params = { .linux_side = _this->u_iface, .pchRedirectURL = pchRedirectURL, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_RequestStoreAuthURL( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser023_RequestStoreAuthURL, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser023_BIsPhoneVerified(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser023_BIsPhoneVerified_params params = + struct ISteamUser_SteamUser023_BIsPhoneVerified_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_BIsPhoneVerified( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser023_BIsPhoneVerified, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser023_BIsTwoFactorEnabled(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser023_BIsTwoFactorEnabled_params params = + struct ISteamUser_SteamUser023_BIsTwoFactorEnabled_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_BIsTwoFactorEnabled( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser023_BIsTwoFactorEnabled, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser023_BIsPhoneIdentifying(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser023_BIsPhoneIdentifying_params params = + struct ISteamUser_SteamUser023_BIsPhoneIdentifying_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_BIsPhoneIdentifying( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser023_BIsPhoneIdentifying, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser023_BIsPhoneRequiringVerification(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser023_BIsPhoneRequiringVerification_params params = + struct ISteamUser_SteamUser023_BIsPhoneRequiringVerification_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_BIsPhoneRequiringVerification( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser023_BIsPhoneRequiringVerification, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUser_SteamUser023_GetMarketEligibility(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser023_GetMarketEligibility_params params = + struct ISteamUser_SteamUser023_GetMarketEligibility_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_GetMarketEligibility( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser023_GetMarketEligibility, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUser_SteamUser023_GetDurationControl(struct w_steam_iface *_this) { - struct cppISteamUser_SteamUser023_GetDurationControl_params params = + struct ISteamUser_SteamUser023_GetDurationControl_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_GetDurationControl( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser023_GetDurationControl, ¶ms ); return params._ret; } bool __thiscall winISteamUser_SteamUser023_BSetDurationControlOnlineState(struct w_steam_iface *_this, uint32_t eNewState) { - struct cppISteamUser_SteamUser023_BSetDurationControlOnlineState_params params = + struct ISteamUser_SteamUser023_BSetDurationControlOnlineState_params params = { .linux_side = _this->u_iface, .eNewState = eNewState, }; TRACE("%p\n", _this); - cppISteamUser_SteamUser023_BSetDurationControlOnlineState( ¶ms ); + STEAMCLIENT_CALL( ISteamUser_SteamUser023_BSetDurationControlOnlineState, ¶ms ); return params._ret; } diff --git a/lsteamclient/winISteamUserStats.c b/lsteamclient/winISteamUserStats.c index ffa21fca..9de74099 100644 --- a/lsteamclient/winISteamUserStats.c +++ b/lsteamclient/winISteamUserStats.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001.h" - DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumStats, 12) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatName, 16) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatType, 16) @@ -30,107 +28,107 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_G uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumStats(struct w_steam_iface *_this, CGameID nGameID) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumStats_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumStats, ¶ms ); return params._ret; } const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatName(struct w_steam_iface *_this, CGameID nGameID, uint32_t iStat) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatName_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatName_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, .iStat = iStat, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatName( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatName, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatType(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatType_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatType_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatType( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatType, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumAchievements(struct w_steam_iface *_this, CGameID nGameID) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumAchievements_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumAchievements_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumAchievements( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumAchievements, ¶ms ); return params._ret; } const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementName(struct w_steam_iface *_this, CGameID nGameID, uint32_t iAchievement) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementName_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementName_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, .iAchievement = iAchievement, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementName( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementName, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumGroupAchievements(struct w_steam_iface *_this, CGameID nGameID) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumGroupAchievements_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumGroupAchievements_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumGroupAchievements( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumGroupAchievements, ¶ms ); return params._ret; } const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievementName(struct w_steam_iface *_this, CGameID nGameID, uint32_t iAchievement) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievementName_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievementName_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, .iAchievement = iAchievement, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievementName( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievementName, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_RequestCurrentStats(struct w_steam_iface *_this, CGameID nGameID) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_RequestCurrentStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_RequestCurrentStats_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_RequestCurrentStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_RequestCurrentStats, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, int32_t *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, @@ -138,13 +136,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat(s .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, float *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, @@ -152,13 +150,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2 .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, int32_t nData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, @@ -166,13 +164,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat(s .nData = nData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, float fData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, @@ -180,13 +178,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2 .fData = fData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvgRateStat(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, float flCountThisSession, double dSessionLength) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvgRateStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvgRateStat_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, @@ -195,13 +193,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvg .dSessionLength = dSessionLength, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvgRateStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvgRateStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, bool *pbAchieved) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievement_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, @@ -209,13 +207,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchiev .pbAchieved = pbAchieved, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, bool *pbAchieved) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievement_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, @@ -223,90 +221,90 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupA .pbAchieved = pbAchieved, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchievement_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGroupAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGroupAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGroupAchievement_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGroupAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGroupAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_StoreStats(struct w_steam_iface *_this, CGameID nGameID) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_StoreStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_StoreStats_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_StoreStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_StoreStats, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAchievement_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearGroupAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearGroupAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearGroupAchievement_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearGroupAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearGroupAchievement, ¶ms ); return params._ret; } int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementIcon(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementIcon_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementIcon_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementIcon( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementIcon, ¶ms ); return params._ret; } const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementDisplayAttribute(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, const char *pchKey) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementDisplayAttribute_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementDisplayAttribute_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, @@ -314,7 +312,7 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_G .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementDisplayAttribute( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementDisplayAttribute, ¶ms ); return params._ret; } @@ -358,8 +356,6 @@ struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION return r; } -#include "cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002.h" - DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumStats, 12) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatName, 16) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatType, 16) @@ -381,82 +377,82 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_I uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumStats(struct w_steam_iface *_this, CGameID nGameID) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumStats_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumStats, ¶ms ); return params._ret; } const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatName(struct w_steam_iface *_this, CGameID nGameID, uint32_t iStat) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatName_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatName_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, .iStat = iStat, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatName( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatName, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatType(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatType_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatType_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatType( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatType, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumAchievements(struct w_steam_iface *_this, CGameID nGameID) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumAchievements_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumAchievements_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumAchievements( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumAchievements, ¶ms ); return params._ret; } const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementName(struct w_steam_iface *_this, CGameID nGameID, uint32_t iAchievement) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementName_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementName_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, .iAchievement = iAchievement, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementName( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementName, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_RequestCurrentStats(struct w_steam_iface *_this, CGameID nGameID) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_RequestCurrentStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_RequestCurrentStats_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_RequestCurrentStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_RequestCurrentStats, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, int32_t *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, @@ -464,13 +460,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat(s .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, float *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, @@ -478,13 +474,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2 .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, int32_t nData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, @@ -492,13 +488,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat(s .nData = nData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, float fData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, @@ -506,13 +502,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2 .fData = fData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvgRateStat(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, float flCountThisSession, double dSessionLength) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvgRateStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvgRateStat_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, @@ -521,13 +517,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvg .dSessionLength = dSessionLength, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvgRateStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvgRateStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, bool *pbAchieved) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievement_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, @@ -535,64 +531,64 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchiev .pbAchieved = pbAchieved, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchievement_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAchievement_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_StoreStats(struct w_steam_iface *_this, CGameID nGameID) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_StoreStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_StoreStats_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_StoreStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_StoreStats, ¶ms ); return params._ret; } int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementIcon(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementIcon_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementIcon_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementIcon( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementIcon, ¶ms ); return params._ret; } const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementDisplayAttribute(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, const char *pchKey) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementDisplayAttribute_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementDisplayAttribute_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, @@ -600,13 +596,13 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_G .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementDisplayAttribute( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementDisplayAttribute, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_IndicateAchievementProgress(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_IndicateAchievementProgress_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_IndicateAchievementProgress_params params = { .linux_side = _this->u_iface, .nGameID = nGameID, @@ -615,7 +611,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_IndicateA .nMaxProgress = nMaxProgress, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_IndicateAchievementProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_IndicateAchievementProgress, ¶ms ); return params._ret; } @@ -655,8 +651,6 @@ struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION return r; } -#include "cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003.h" - DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_RequestCurrentStats, 4) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat, 12) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2, 12) @@ -673,70 +667,70 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_I bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_RequestCurrentStats(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_RequestCurrentStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_RequestCurrentStats_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_RequestCurrentStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_RequestCurrentStats, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_params params = { .linux_side = _this->u_iface, .pchName = pchName, .nData = nData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2_params params = { .linux_side = _this->u_iface, .pchName = pchName, .fData = fData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvgRateStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvgRateStat_params params = { .linux_side = _this->u_iface, .pchName = pchName, @@ -744,86 +738,86 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvg .dSessionLength = dSessionLength, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvgRateStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvgRateStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievement(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievement_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pbAchieved = pbAchieved, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetAchievement(struct w_steam_iface *_this, const char *pchName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetAchievement_params params = { .linux_side = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_ClearAchievement(struct w_steam_iface *_this, const char *pchName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_ClearAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_ClearAchievement_params params = { .linux_side = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_ClearAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_ClearAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_StoreStats(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_StoreStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_StoreStats_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_StoreStats( ¶ms ); + 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementIcon_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementIcon_params params = { .linux_side = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementIcon( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementIcon, ¶ms ); return params._ret; } const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementDisplayAttribute(struct w_steam_iface *_this, const char *pchName, const char *pchKey) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementDisplayAttribute_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementDisplayAttribute_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementDisplayAttribute( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementDisplayAttribute, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementProgress_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementProgress_params params = { .linux_side = _this->u_iface, .pchName = pchName, @@ -831,7 +825,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateA .nMaxProgress = nMaxProgress, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementProgress, ¶ms ); return params._ret; } @@ -866,8 +860,6 @@ struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION return r; } -#include "cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004.h" - DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestCurrentStats, 4) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat, 12) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2, 12) @@ -888,70 +880,70 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_G bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestCurrentStats(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestCurrentStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestCurrentStats_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestCurrentStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestCurrentStats, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_params params = { .linux_side = _this->u_iface, .pchName = pchName, .nData = nData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_2_params params = { .linux_side = _this->u_iface, .pchName = pchName, .fData = fData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvgRateStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvgRateStat_params params = { .linux_side = _this->u_iface, .pchName = pchName, @@ -959,86 +951,86 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvg .dSessionLength = dSessionLength, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvgRateStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvgRateStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievement(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievement_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pbAchieved = pbAchieved, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetAchievement(struct w_steam_iface *_this, const char *pchName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetAchievement_params params = { .linux_side = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_ClearAchievement(struct w_steam_iface *_this, const char *pchName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_ClearAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_ClearAchievement_params params = { .linux_side = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_ClearAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_ClearAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_StoreStats(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_StoreStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_StoreStats_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_StoreStats( ¶ms ); + 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementIcon_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementIcon_params params = { .linux_side = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementIcon( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementIcon, ¶ms ); return params._ret; } const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementDisplayAttribute(struct w_steam_iface *_this, const char *pchName, const char *pchKey) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementDisplayAttribute_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementDisplayAttribute_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementDisplayAttribute( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementDisplayAttribute, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_IndicateAchievementProgress_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_IndicateAchievementProgress_params params = { .linux_side = _this->u_iface, .pchName = pchName, @@ -1046,25 +1038,25 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_IndicateA .nMaxProgress = nMaxProgress, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_IndicateAchievementProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_IndicateAchievementProgress, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestUserStats(struct w_steam_iface *_this, CSteamID steamIDUser) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestUserStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestUserStats_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestUserStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestUserStats, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -1072,13 +1064,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserSt .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -1086,13 +1078,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserSt .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserAchievement_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -1100,7 +1092,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserAc .pbAchieved = pbAchieved, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserAchievement, ¶ms ); return params._ret; } @@ -1139,8 +1131,6 @@ struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION return r; } -#include "cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005.h" - DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestCurrentStats, 4) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat, 12) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2, 12) @@ -1171,70 +1161,70 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_U bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestCurrentStats(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestCurrentStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestCurrentStats_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestCurrentStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestCurrentStats, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_params params = { .linux_side = _this->u_iface, .pchName = pchName, .nData = nData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_2_params params = { .linux_side = _this->u_iface, .pchName = pchName, .fData = fData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvgRateStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvgRateStat_params params = { .linux_side = _this->u_iface, .pchName = pchName, @@ -1242,86 +1232,86 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvg .dSessionLength = dSessionLength, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvgRateStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvgRateStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievement(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievement_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pbAchieved = pbAchieved, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetAchievement(struct w_steam_iface *_this, const char *pchName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetAchievement_params params = { .linux_side = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ClearAchievement(struct w_steam_iface *_this, const char *pchName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ClearAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ClearAchievement_params params = { .linux_side = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ClearAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ClearAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_StoreStats(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_StoreStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_StoreStats_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_StoreStats( ¶ms ); + 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementIcon_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementIcon_params params = { .linux_side = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementIcon( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementIcon, ¶ms ); return params._ret; } const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementDisplayAttribute(struct w_steam_iface *_this, const char *pchName, const char *pchKey) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementDisplayAttribute_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementDisplayAttribute_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementDisplayAttribute( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementDisplayAttribute, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_IndicateAchievementProgress_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_IndicateAchievementProgress_params params = { .linux_side = _this->u_iface, .pchName = pchName, @@ -1329,25 +1319,25 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_IndicateA .nMaxProgress = nMaxProgress, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_IndicateAchievementProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_IndicateAchievementProgress, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestUserStats(struct w_steam_iface *_this, CSteamID steamIDUser) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestUserStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestUserStats_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestUserStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestUserStats, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -1355,13 +1345,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserSt .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_2_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -1369,13 +1359,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserSt .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserAchievement_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -1383,25 +1373,25 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserAc .pbAchieved = pbAchieved, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ResetAllStats(struct w_steam_iface *_this, bool bAchievementsToo) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ResetAllStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ResetAllStats_params params = { .linux_side = _this->u_iface, .bAchievementsToo = bAchievementsToo, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ResetAllStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ResetAllStats, ¶ms ); 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindOrCreateLeaderboard_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindOrCreateLeaderboard_params params = { .linux_side = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, @@ -1409,73 +1399,73 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindO .eLeaderboardDisplayType = eLeaderboardDisplayType, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindOrCreateLeaderboard( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindOrCreateLeaderboard, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindLeaderboard(struct w_steam_iface *_this, const char *pchLeaderboardName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindLeaderboard_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindLeaderboard_params params = { .linux_side = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindLeaderboard( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindLeaderboard, ¶ms ); return params._ret; } const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardName(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardName_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardName_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardName( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardName, ¶ms ); return params._ret; } int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardEntryCount(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardEntryCount_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardEntryCount_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardEntryCount( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardEntryCount, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardSortMethod(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardSortMethod_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardSortMethod_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardSortMethod( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardSortMethod, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardDisplayType(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardDisplayType_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardDisplayType_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardDisplayType( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardDisplayType, ¶ms ); 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_DownloadLeaderboardEntries_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_DownloadLeaderboardEntries_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, @@ -1484,13 +1474,13 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_Downl .nRangeEnd = nRangeEnd, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_DownloadLeaderboardEntries( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_DownloadLeaderboardEntries, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_104 *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownloadedLeaderboardEntry_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownloadedLeaderboardEntry_params params = { .linux_side = _this->u_iface, .hSteamLeaderboardEntries = hSteamLeaderboardEntries, @@ -1500,13 +1490,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownlo .cDetailsMax = cDetailsMax, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownloadedLeaderboardEntry( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownloadedLeaderboardEntry, ¶ms ); 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UploadLeaderboardScore_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UploadLeaderboardScore_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, @@ -1515,7 +1505,7 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_Uploa .cScoreDetailsCount = cScoreDetailsCount, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UploadLeaderboardScore( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UploadLeaderboardScore, ¶ms ); return params._ret; } @@ -1564,8 +1554,6 @@ struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION return r; } -#include "cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006.h" - DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestCurrentStats, 4) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat, 12) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2, 12) @@ -1597,70 +1585,70 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_G bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestCurrentStats(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestCurrentStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestCurrentStats_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestCurrentStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestCurrentStats, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_params params = { .linux_side = _this->u_iface, .pchName = pchName, .nData = nData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_2_params params = { .linux_side = _this->u_iface, .pchName = pchName, .fData = fData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvgRateStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvgRateStat_params params = { .linux_side = _this->u_iface, .pchName = pchName, @@ -1668,86 +1656,86 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvg .dSessionLength = dSessionLength, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvgRateStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvgRateStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievement(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievement_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pbAchieved = pbAchieved, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetAchievement(struct w_steam_iface *_this, const char *pchName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetAchievement_params params = { .linux_side = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ClearAchievement(struct w_steam_iface *_this, const char *pchName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ClearAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ClearAchievement_params params = { .linux_side = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ClearAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ClearAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_StoreStats(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_StoreStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_StoreStats_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_StoreStats( ¶ms ); + 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementIcon_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementIcon_params params = { .linux_side = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementIcon( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementIcon, ¶ms ); return params._ret; } const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementDisplayAttribute(struct w_steam_iface *_this, const char *pchName, const char *pchKey) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementDisplayAttribute_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementDisplayAttribute_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementDisplayAttribute( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementDisplayAttribute, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_IndicateAchievementProgress_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_IndicateAchievementProgress_params params = { .linux_side = _this->u_iface, .pchName = pchName, @@ -1755,25 +1743,25 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_IndicateA .nMaxProgress = nMaxProgress, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_IndicateAchievementProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_IndicateAchievementProgress, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestUserStats(struct w_steam_iface *_this, CSteamID steamIDUser) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestUserStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestUserStats_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestUserStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestUserStats, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -1781,13 +1769,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserSt .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_2_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -1795,13 +1783,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserSt .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserAchievement_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -1809,25 +1797,25 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserAc .pbAchieved = pbAchieved, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ResetAllStats(struct w_steam_iface *_this, bool bAchievementsToo) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ResetAllStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ResetAllStats_params params = { .linux_side = _this->u_iface, .bAchievementsToo = bAchievementsToo, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ResetAllStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ResetAllStats, ¶ms ); 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindOrCreateLeaderboard_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindOrCreateLeaderboard_params params = { .linux_side = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, @@ -1835,73 +1823,73 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindO .eLeaderboardDisplayType = eLeaderboardDisplayType, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindOrCreateLeaderboard( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindOrCreateLeaderboard, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindLeaderboard(struct w_steam_iface *_this, const char *pchLeaderboardName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindLeaderboard_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindLeaderboard_params params = { .linux_side = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindLeaderboard( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindLeaderboard, ¶ms ); return params._ret; } const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardName(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardName_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardName_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardName( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardName, ¶ms ); return params._ret; } int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardEntryCount(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardEntryCount_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardEntryCount_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardEntryCount( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardEntryCount, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardSortMethod(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardSortMethod_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardSortMethod_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardSortMethod( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardSortMethod, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardDisplayType(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardDisplayType_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardDisplayType_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardDisplayType( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardDisplayType, ¶ms ); 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_DownloadLeaderboardEntries_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_DownloadLeaderboardEntries_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, @@ -1910,13 +1898,13 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_Downl .nRangeEnd = nRangeEnd, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_DownloadLeaderboardEntries( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_DownloadLeaderboardEntries, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_104 *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetDownloadedLeaderboardEntry_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetDownloadedLeaderboardEntry_params params = { .linux_side = _this->u_iface, .hSteamLeaderboardEntries = hSteamLeaderboardEntries, @@ -1926,13 +1914,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetDownlo .cDetailsMax = cDetailsMax, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetDownloadedLeaderboardEntry( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetDownloadedLeaderboardEntry, ¶ms ); 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UploadLeaderboardScore_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UploadLeaderboardScore_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, @@ -1942,18 +1930,18 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_Uploa .cScoreDetailsCount = cScoreDetailsCount, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UploadLeaderboardScore( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UploadLeaderboardScore, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetNumberOfCurrentPlayers(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetNumberOfCurrentPlayers_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetNumberOfCurrentPlayers_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetNumberOfCurrentPlayers( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetNumberOfCurrentPlayers, ¶ms ); return params._ret; } @@ -2003,8 +1991,6 @@ struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION return r; } -#include "cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007.h" - DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestCurrentStats, 4) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat, 12) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2, 12) @@ -2038,70 +2024,70 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_G bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestCurrentStats(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestCurrentStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestCurrentStats_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestCurrentStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestCurrentStats, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_params params = { .linux_side = _this->u_iface, .pchName = pchName, .nData = nData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_2_params params = { .linux_side = _this->u_iface, .pchName = pchName, .fData = fData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvgRateStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvgRateStat_params params = { .linux_side = _this->u_iface, .pchName = pchName, @@ -2109,50 +2095,50 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvg .dSessionLength = dSessionLength, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvgRateStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvgRateStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievement(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievement_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pbAchieved = pbAchieved, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetAchievement(struct w_steam_iface *_this, const char *pchName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetAchievement_params params = { .linux_side = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ClearAchievement(struct w_steam_iface *_this, const char *pchName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ClearAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ClearAchievement_params params = { .linux_side = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ClearAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ClearAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementAndUnlockTime(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved, uint32_t *punUnlockTime) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementAndUnlockTime_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementAndUnlockTime_params params = { .linux_side = _this->u_iface, .pchName = pchName, @@ -2160,49 +2146,49 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchiev .punUnlockTime = punUnlockTime, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementAndUnlockTime( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementAndUnlockTime, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_StoreStats(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_StoreStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_StoreStats_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_StoreStats( ¶ms ); + 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementIcon_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementIcon_params params = { .linux_side = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementIcon( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementIcon, ¶ms ); return params._ret; } const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementDisplayAttribute(struct w_steam_iface *_this, const char *pchName, const char *pchKey) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementDisplayAttribute_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementDisplayAttribute_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementDisplayAttribute( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementDisplayAttribute, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_IndicateAchievementProgress_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_IndicateAchievementProgress_params params = { .linux_side = _this->u_iface, .pchName = pchName, @@ -2210,25 +2196,25 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_IndicateA .nMaxProgress = nMaxProgress, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_IndicateAchievementProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_IndicateAchievementProgress, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestUserStats(struct w_steam_iface *_this, CSteamID steamIDUser) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestUserStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestUserStats_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestUserStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestUserStats, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -2236,13 +2222,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserSt .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_2_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -2250,13 +2236,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserSt .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievement_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -2264,13 +2250,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAc .pbAchieved = pbAchieved, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievementAndUnlockTime(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved, uint32_t *punUnlockTime) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievementAndUnlockTime_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievementAndUnlockTime_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -2279,25 +2265,25 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAc .punUnlockTime = punUnlockTime, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievementAndUnlockTime( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievementAndUnlockTime, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ResetAllStats(struct w_steam_iface *_this, bool bAchievementsToo) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ResetAllStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ResetAllStats_params params = { .linux_side = _this->u_iface, .bAchievementsToo = bAchievementsToo, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ResetAllStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ResetAllStats, ¶ms ); 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindOrCreateLeaderboard_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindOrCreateLeaderboard_params params = { .linux_side = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, @@ -2305,73 +2291,73 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindO .eLeaderboardDisplayType = eLeaderboardDisplayType, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindOrCreateLeaderboard( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindOrCreateLeaderboard, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindLeaderboard(struct w_steam_iface *_this, const char *pchLeaderboardName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindLeaderboard_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindLeaderboard_params params = { .linux_side = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindLeaderboard( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindLeaderboard, ¶ms ); return params._ret; } const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardName(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardName_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardName_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardName( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardName, ¶ms ); return params._ret; } int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardEntryCount(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardEntryCount_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardEntryCount_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardEntryCount( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardEntryCount, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardSortMethod(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardSortMethod_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardSortMethod_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardSortMethod( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardSortMethod, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardDisplayType(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardDisplayType_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardDisplayType_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardDisplayType( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardDisplayType, ¶ms ); 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_DownloadLeaderboardEntries_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_DownloadLeaderboardEntries_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, @@ -2380,13 +2366,13 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_Downl .nRangeEnd = nRangeEnd, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_DownloadLeaderboardEntries( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_DownloadLeaderboardEntries, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_104 *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetDownloadedLeaderboardEntry_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetDownloadedLeaderboardEntry_params params = { .linux_side = _this->u_iface, .hSteamLeaderboardEntries = hSteamLeaderboardEntries, @@ -2396,13 +2382,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetDownlo .cDetailsMax = cDetailsMax, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetDownloadedLeaderboardEntry( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetDownloadedLeaderboardEntry, ¶ms ); 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UploadLeaderboardScore_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UploadLeaderboardScore_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, @@ -2412,18 +2398,18 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_Uploa .cScoreDetailsCount = cScoreDetailsCount, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UploadLeaderboardScore( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UploadLeaderboardScore, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetNumberOfCurrentPlayers(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetNumberOfCurrentPlayers_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetNumberOfCurrentPlayers_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetNumberOfCurrentPlayers( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetNumberOfCurrentPlayers, ¶ms ); return params._ret; } @@ -2475,8 +2461,6 @@ struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION return r; } -#include "cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008.h" - DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestCurrentStats, 4) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat, 12) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2, 12) @@ -2511,70 +2495,70 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_G bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestCurrentStats(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestCurrentStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestCurrentStats_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestCurrentStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestCurrentStats, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_params params = { .linux_side = _this->u_iface, .pchName = pchName, .nData = nData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_2_params params = { .linux_side = _this->u_iface, .pchName = pchName, .fData = fData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvgRateStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvgRateStat_params params = { .linux_side = _this->u_iface, .pchName = pchName, @@ -2582,50 +2566,50 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvg .dSessionLength = dSessionLength, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvgRateStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvgRateStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievement(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievement_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pbAchieved = pbAchieved, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetAchievement(struct w_steam_iface *_this, const char *pchName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetAchievement_params params = { .linux_side = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ClearAchievement(struct w_steam_iface *_this, const char *pchName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ClearAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ClearAchievement_params params = { .linux_side = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ClearAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ClearAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementAndUnlockTime(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved, uint32_t *punUnlockTime) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementAndUnlockTime_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementAndUnlockTime_params params = { .linux_side = _this->u_iface, .pchName = pchName, @@ -2633,49 +2617,49 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchiev .punUnlockTime = punUnlockTime, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementAndUnlockTime( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementAndUnlockTime, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_StoreStats(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_StoreStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_StoreStats_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_StoreStats( ¶ms ); + 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementIcon_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementIcon_params params = { .linux_side = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementIcon( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementIcon, ¶ms ); return params._ret; } const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementDisplayAttribute(struct w_steam_iface *_this, const char *pchName, const char *pchKey) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementDisplayAttribute_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementDisplayAttribute_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementDisplayAttribute( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementDisplayAttribute, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_IndicateAchievementProgress_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_IndicateAchievementProgress_params params = { .linux_side = _this->u_iface, .pchName = pchName, @@ -2683,25 +2667,25 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_IndicateA .nMaxProgress = nMaxProgress, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_IndicateAchievementProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_IndicateAchievementProgress, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestUserStats(struct w_steam_iface *_this, CSteamID steamIDUser) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestUserStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestUserStats_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestUserStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestUserStats, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -2709,13 +2693,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserSt .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_2_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -2723,13 +2707,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserSt .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievement_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -2737,13 +2721,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAc .pbAchieved = pbAchieved, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievementAndUnlockTime(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved, uint32_t *punUnlockTime) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievementAndUnlockTime_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievementAndUnlockTime_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -2752,25 +2736,25 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAc .punUnlockTime = punUnlockTime, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievementAndUnlockTime( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievementAndUnlockTime, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ResetAllStats(struct w_steam_iface *_this, bool bAchievementsToo) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ResetAllStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ResetAllStats_params params = { .linux_side = _this->u_iface, .bAchievementsToo = bAchievementsToo, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ResetAllStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ResetAllStats, ¶ms ); 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindOrCreateLeaderboard_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindOrCreateLeaderboard_params params = { .linux_side = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, @@ -2778,73 +2762,73 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindO .eLeaderboardDisplayType = eLeaderboardDisplayType, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindOrCreateLeaderboard( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindOrCreateLeaderboard, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindLeaderboard(struct w_steam_iface *_this, const char *pchLeaderboardName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindLeaderboard_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindLeaderboard_params params = { .linux_side = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindLeaderboard( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindLeaderboard, ¶ms ); return params._ret; } const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardName(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardName_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardName_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardName( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardName, ¶ms ); return params._ret; } int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardEntryCount(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardEntryCount_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardEntryCount_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardEntryCount( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardEntryCount, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardSortMethod(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardSortMethod_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardSortMethod_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardSortMethod( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardSortMethod, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardDisplayType(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardDisplayType_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardDisplayType_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardDisplayType( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardDisplayType, ¶ms ); 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_DownloadLeaderboardEntries_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_DownloadLeaderboardEntries_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, @@ -2853,13 +2837,13 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_Downl .nRangeEnd = nRangeEnd, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_DownloadLeaderboardEntries( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_DownloadLeaderboardEntries, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_111x *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetDownloadedLeaderboardEntry_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetDownloadedLeaderboardEntry_params params = { .linux_side = _this->u_iface, .hSteamLeaderboardEntries = hSteamLeaderboardEntries, @@ -2869,13 +2853,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetDownlo .cDetailsMax = cDetailsMax, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetDownloadedLeaderboardEntry( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetDownloadedLeaderboardEntry, ¶ms ); 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UploadLeaderboardScore_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UploadLeaderboardScore_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, @@ -2885,31 +2869,31 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_Uploa .cScoreDetailsCount = cScoreDetailsCount, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UploadLeaderboardScore( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UploadLeaderboardScore, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_AttachLeaderboardUGC(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, uint64_t hUGC) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_AttachLeaderboardUGC_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_AttachLeaderboardUGC_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .hUGC = hUGC, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_AttachLeaderboardUGC( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_AttachLeaderboardUGC, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetNumberOfCurrentPlayers(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetNumberOfCurrentPlayers_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetNumberOfCurrentPlayers_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetNumberOfCurrentPlayers( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetNumberOfCurrentPlayers, ¶ms ); return params._ret; } @@ -2962,8 +2946,6 @@ struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION return r; } -#include "cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009.h" - DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestCurrentStats, 4) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat, 12) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2, 12) @@ -2999,70 +2981,70 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_G bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestCurrentStats(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestCurrentStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestCurrentStats_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestCurrentStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestCurrentStats, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_params params = { .linux_side = _this->u_iface, .pchName = pchName, .nData = nData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_2_params params = { .linux_side = _this->u_iface, .pchName = pchName, .fData = fData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvgRateStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvgRateStat_params params = { .linux_side = _this->u_iface, .pchName = pchName, @@ -3070,50 +3052,50 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvg .dSessionLength = dSessionLength, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvgRateStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvgRateStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievement(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievement_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pbAchieved = pbAchieved, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetAchievement(struct w_steam_iface *_this, const char *pchName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetAchievement_params params = { .linux_side = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ClearAchievement(struct w_steam_iface *_this, const char *pchName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ClearAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ClearAchievement_params params = { .linux_side = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ClearAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ClearAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementAndUnlockTime(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved, uint32_t *punUnlockTime) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementAndUnlockTime_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementAndUnlockTime_params params = { .linux_side = _this->u_iface, .pchName = pchName, @@ -3121,49 +3103,49 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchiev .punUnlockTime = punUnlockTime, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementAndUnlockTime( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementAndUnlockTime, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_StoreStats(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_StoreStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_StoreStats_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_StoreStats( ¶ms ); + 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementIcon_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementIcon_params params = { .linux_side = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementIcon( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementIcon, ¶ms ); return params._ret; } const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementDisplayAttribute(struct w_steam_iface *_this, const char *pchName, const char *pchKey) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementDisplayAttribute_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementDisplayAttribute_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementDisplayAttribute( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementDisplayAttribute, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_IndicateAchievementProgress_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_IndicateAchievementProgress_params params = { .linux_side = _this->u_iface, .pchName = pchName, @@ -3171,25 +3153,25 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_IndicateA .nMaxProgress = nMaxProgress, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_IndicateAchievementProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_IndicateAchievementProgress, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestUserStats(struct w_steam_iface *_this, CSteamID steamIDUser) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestUserStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestUserStats_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestUserStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestUserStats, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -3197,13 +3179,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserSt .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_2_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -3211,13 +3193,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserSt .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievement_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -3225,13 +3207,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAc .pbAchieved = pbAchieved, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievementAndUnlockTime(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved, uint32_t *punUnlockTime) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievementAndUnlockTime_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievementAndUnlockTime_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -3240,25 +3222,25 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAc .punUnlockTime = punUnlockTime, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievementAndUnlockTime( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievementAndUnlockTime, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ResetAllStats(struct w_steam_iface *_this, bool bAchievementsToo) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ResetAllStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ResetAllStats_params params = { .linux_side = _this->u_iface, .bAchievementsToo = bAchievementsToo, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ResetAllStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ResetAllStats, ¶ms ); 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindOrCreateLeaderboard_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindOrCreateLeaderboard_params params = { .linux_side = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, @@ -3266,73 +3248,73 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindO .eLeaderboardDisplayType = eLeaderboardDisplayType, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindOrCreateLeaderboard( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindOrCreateLeaderboard, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindLeaderboard(struct w_steam_iface *_this, const char *pchLeaderboardName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindLeaderboard_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindLeaderboard_params params = { .linux_side = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindLeaderboard( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindLeaderboard, ¶ms ); return params._ret; } const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardName(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardName_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardName_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardName( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardName, ¶ms ); return params._ret; } int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardEntryCount(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardEntryCount_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardEntryCount_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardEntryCount( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardEntryCount, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardSortMethod(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardSortMethod_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardSortMethod_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardSortMethod( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardSortMethod, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardDisplayType(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardDisplayType_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardDisplayType_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardDisplayType( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardDisplayType, ¶ms ); 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntries_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntries_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, @@ -3341,13 +3323,13 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_Downl .nRangeEnd = nRangeEnd, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntries( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntries, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntriesForUsers(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, CSteamID *prgUsers, int32_t cUsers) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntriesForUsers_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntriesForUsers_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, @@ -3355,13 +3337,13 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_Downl .cUsers = cUsers, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntriesForUsers( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntriesForUsers, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_111x *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetDownloadedLeaderboardEntry_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetDownloadedLeaderboardEntry_params params = { .linux_side = _this->u_iface, .hSteamLeaderboardEntries = hSteamLeaderboardEntries, @@ -3371,13 +3353,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetDownlo .cDetailsMax = cDetailsMax, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetDownloadedLeaderboardEntry( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetDownloadedLeaderboardEntry, ¶ms ); 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UploadLeaderboardScore_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UploadLeaderboardScore_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, @@ -3387,31 +3369,31 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_Uploa .cScoreDetailsCount = cScoreDetailsCount, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UploadLeaderboardScore( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UploadLeaderboardScore, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_AttachLeaderboardUGC(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, uint64_t hUGC) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_AttachLeaderboardUGC_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_AttachLeaderboardUGC_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .hUGC = hUGC, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_AttachLeaderboardUGC( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_AttachLeaderboardUGC, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetNumberOfCurrentPlayers(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetNumberOfCurrentPlayers_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetNumberOfCurrentPlayers_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetNumberOfCurrentPlayers( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetNumberOfCurrentPlayers, ¶ms ); return params._ret; } @@ -3465,8 +3447,6 @@ struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION return r; } -#include "cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010.h" - DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCurrentStats, 4) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat, 12) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2, 12) @@ -3511,70 +3491,70 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_G bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCurrentStats(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCurrentStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCurrentStats_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCurrentStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCurrentStats, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_params params = { .linux_side = _this->u_iface, .pchName = pchName, .nData = nData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2_params params = { .linux_side = _this->u_iface, .pchName = pchName, .fData = fData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat_params params = { .linux_side = _this->u_iface, .pchName = pchName, @@ -3582,50 +3562,50 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvg .dSessionLength = dSessionLength, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievement(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievement_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pbAchieved = pbAchieved, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetAchievement(struct w_steam_iface *_this, const char *pchName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetAchievement_params params = { .linux_side = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ClearAchievement(struct w_steam_iface *_this, const char *pchName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ClearAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ClearAchievement_params params = { .linux_side = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ClearAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ClearAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAndUnlockTime(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved, uint32_t *punUnlockTime) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAndUnlockTime_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAndUnlockTime_params params = { .linux_side = _this->u_iface, .pchName = pchName, @@ -3633,49 +3613,49 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchiev .punUnlockTime = punUnlockTime, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAndUnlockTime( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAndUnlockTime, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_StoreStats(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_StoreStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_StoreStats_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_StoreStats( ¶ms ); + 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementIcon_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementIcon_params params = { .linux_side = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementIcon( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementIcon, ¶ms ); return params._ret; } const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementDisplayAttribute(struct w_steam_iface *_this, const char *pchName, const char *pchKey) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementDisplayAttribute_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementDisplayAttribute_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementDisplayAttribute( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementDisplayAttribute, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateAchievementProgress_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateAchievementProgress_params params = { .linux_side = _this->u_iface, .pchName = pchName, @@ -3683,25 +3663,25 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateA .nMaxProgress = nMaxProgress, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateAchievementProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateAchievementProgress, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestUserStats(struct w_steam_iface *_this, CSteamID steamIDUser) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestUserStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestUserStats_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestUserStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestUserStats, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -3709,13 +3689,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserSt .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -3723,13 +3703,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserSt .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievement_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -3737,13 +3717,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAc .pbAchieved = pbAchieved, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievementAndUnlockTime(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved, uint32_t *punUnlockTime) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievementAndUnlockTime_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievementAndUnlockTime_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -3752,25 +3732,25 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAc .punUnlockTime = punUnlockTime, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievementAndUnlockTime( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievementAndUnlockTime, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ResetAllStats(struct w_steam_iface *_this, bool bAchievementsToo) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ResetAllStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ResetAllStats_params params = { .linux_side = _this->u_iface, .bAchievementsToo = bAchievementsToo, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ResetAllStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ResetAllStats, ¶ms ); 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindOrCreateLeaderboard_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindOrCreateLeaderboard_params params = { .linux_side = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, @@ -3778,73 +3758,73 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindO .eLeaderboardDisplayType = eLeaderboardDisplayType, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindOrCreateLeaderboard( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindOrCreateLeaderboard, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindLeaderboard(struct w_steam_iface *_this, const char *pchLeaderboardName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindLeaderboard_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindLeaderboard_params params = { .linux_side = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindLeaderboard( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindLeaderboard, ¶ms ); return params._ret; } const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardName(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardName_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardName_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardName( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardName, ¶ms ); return params._ret; } int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardEntryCount(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardEntryCount_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardEntryCount_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardEntryCount( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardEntryCount, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardSortMethod(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardSortMethod_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardSortMethod_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardSortMethod( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardSortMethod, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardDisplayType(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardDisplayType_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardDisplayType_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardDisplayType( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardDisplayType, ¶ms ); 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntries_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntries_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, @@ -3853,13 +3833,13 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_Downl .nRangeEnd = nRangeEnd, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntries( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntries, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntriesForUsers(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, CSteamID *prgUsers, int32_t cUsers) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntriesForUsers_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntriesForUsers_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, @@ -3867,13 +3847,13 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_Downl .cUsers = cUsers, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntriesForUsers( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntriesForUsers, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_111x *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownloadedLeaderboardEntry_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownloadedLeaderboardEntry_params params = { .linux_side = _this->u_iface, .hSteamLeaderboardEntries = hSteamLeaderboardEntries, @@ -3883,13 +3863,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownlo .cDetailsMax = cDetailsMax, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownloadedLeaderboardEntry( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownloadedLeaderboardEntry, ¶ms ); 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UploadLeaderboardScore_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UploadLeaderboardScore_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, @@ -3899,48 +3879,48 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_Uploa .cScoreDetailsCount = cScoreDetailsCount, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UploadLeaderboardScore( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UploadLeaderboardScore, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_AttachLeaderboardUGC(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, uint64_t hUGC) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_AttachLeaderboardUGC_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_AttachLeaderboardUGC_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .hUGC = hUGC, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_AttachLeaderboardUGC( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_AttachLeaderboardUGC, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNumberOfCurrentPlayers(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNumberOfCurrentPlayers_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNumberOfCurrentPlayers_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNumberOfCurrentPlayers( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNumberOfCurrentPlayers, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalAchievementPercentages(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalAchievementPercentages_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalAchievementPercentages_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalAchievementPercentages( ¶ms ); + 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, bool *pbAchieved) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMostAchievedAchievementInfo_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMostAchievedAchievementInfo_params params = { .linux_side = _this->u_iface, .pchName = pchName, @@ -3949,13 +3929,13 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMos .pbAchieved = pbAchieved, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMostAchievedAchievementInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMostAchievedAchievementInfo, ¶ms ); return params._ret; } int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchievedAchievementInfo(struct w_steam_iface *_this, int32_t iIteratorPrevious, char *pchName, uint32_t unNameBufLen, float *pflPercent, bool *pbAchieved) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchievedAchievementInfo_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchievedAchievementInfo_params params = { .linux_side = _this->u_iface, .iIteratorPrevious = iIteratorPrevious, @@ -3965,64 +3945,64 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNex .pbAchieved = pbAchieved, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchievedAchievementInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchievedAchievementInfo, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAchievedPercent(struct w_steam_iface *_this, const char *pchName, float *pflPercent) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAchievedPercent_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAchievedPercent_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pflPercent = pflPercent, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAchievedPercent( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAchievedPercent, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalStats(struct w_steam_iface *_this, int32_t nHistoryDays) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalStats_params params = { .linux_side = _this->u_iface, .nHistoryDays = nHistoryDays, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalStats, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat(struct w_steam_iface *_this, const char *pchStatName, int64_t *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_params params = { .linux_side = _this->u_iface, .pchStatName = pchStatName, .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_2(struct w_steam_iface *_this, const char *pchStatName, double *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_2_params params = { .linux_side = _this->u_iface, .pchStatName = pchStatName, .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_2, ¶ms ); 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_params params = { .linux_side = _this->u_iface, .pchStatName = pchStatName, @@ -4030,13 +4010,13 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlo .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory, ¶ms ); 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_2_params params = { .linux_side = _this->u_iface, .pchStatName = pchStatName, @@ -4044,7 +4024,7 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlo .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_2, ¶ms ); return params._ret; } @@ -4107,8 +4087,6 @@ struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION return r; } -#include "cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011.h" - DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestCurrentStats, 4) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat, 12) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2, 12) @@ -4155,70 +4133,70 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_G bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestCurrentStats(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestCurrentStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestCurrentStats_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestCurrentStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestCurrentStats, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_params params = { .linux_side = _this->u_iface, .pchName = pchName, .nData = nData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_2_params params = { .linux_side = _this->u_iface, .pchName = pchName, .fData = fData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvgRateStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvgRateStat_params params = { .linux_side = _this->u_iface, .pchName = pchName, @@ -4226,50 +4204,50 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvg .dSessionLength = dSessionLength, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvgRateStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvgRateStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievement(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievement_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pbAchieved = pbAchieved, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetAchievement(struct w_steam_iface *_this, const char *pchName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetAchievement_params params = { .linux_side = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ClearAchievement(struct w_steam_iface *_this, const char *pchName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ClearAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ClearAchievement_params params = { .linux_side = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ClearAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ClearAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAndUnlockTime(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved, uint32_t *punUnlockTime) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAndUnlockTime_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAndUnlockTime_params params = { .linux_side = _this->u_iface, .pchName = pchName, @@ -4277,49 +4255,49 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchiev .punUnlockTime = punUnlockTime, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAndUnlockTime( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAndUnlockTime, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_StoreStats(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_StoreStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_StoreStats_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_StoreStats( ¶ms ); + 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementIcon_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementIcon_params params = { .linux_side = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementIcon( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementIcon, ¶ms ); return params._ret; } const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementDisplayAttribute(struct w_steam_iface *_this, const char *pchName, const char *pchKey) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementDisplayAttribute_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementDisplayAttribute_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementDisplayAttribute( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementDisplayAttribute, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_IndicateAchievementProgress_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_IndicateAchievementProgress_params params = { .linux_side = _this->u_iface, .pchName = pchName, @@ -4327,48 +4305,48 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_IndicateA .nMaxProgress = nMaxProgress, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_IndicateAchievementProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_IndicateAchievementProgress, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumAchievements(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumAchievements_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumAchievements_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumAchievements( ¶ms ); + 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementName_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementName_params params = { .linux_side = _this->u_iface, .iAchievement = iAchievement, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementName( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementName, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestUserStats(struct w_steam_iface *_this, CSteamID steamIDUser) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestUserStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestUserStats_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestUserStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestUserStats, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -4376,13 +4354,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserSt .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_2_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -4390,13 +4368,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserSt .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievement_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -4404,13 +4382,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAc .pbAchieved = pbAchieved, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievementAndUnlockTime(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved, uint32_t *punUnlockTime) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievementAndUnlockTime_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievementAndUnlockTime_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -4419,25 +4397,25 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAc .punUnlockTime = punUnlockTime, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievementAndUnlockTime( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievementAndUnlockTime, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ResetAllStats(struct w_steam_iface *_this, bool bAchievementsToo) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ResetAllStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ResetAllStats_params params = { .linux_side = _this->u_iface, .bAchievementsToo = bAchievementsToo, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ResetAllStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ResetAllStats, ¶ms ); 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindOrCreateLeaderboard_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindOrCreateLeaderboard_params params = { .linux_side = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, @@ -4445,73 +4423,73 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindO .eLeaderboardDisplayType = eLeaderboardDisplayType, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindOrCreateLeaderboard( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindOrCreateLeaderboard, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindLeaderboard(struct w_steam_iface *_this, const char *pchLeaderboardName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindLeaderboard_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindLeaderboard_params params = { .linux_side = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindLeaderboard( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindLeaderboard, ¶ms ); return params._ret; } const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardName(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardName_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardName_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardName( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardName, ¶ms ); return params._ret; } int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardEntryCount(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardEntryCount_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardEntryCount_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardEntryCount( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardEntryCount, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardSortMethod(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardSortMethod_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardSortMethod_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardSortMethod( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardSortMethod, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardDisplayType(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardDisplayType_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardDisplayType_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardDisplayType( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardDisplayType, ¶ms ); 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntries_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntries_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, @@ -4520,13 +4498,13 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_Downl .nRangeEnd = nRangeEnd, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntries( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntries, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntriesForUsers(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, CSteamID *prgUsers, int32_t cUsers) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntriesForUsers_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntriesForUsers_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, @@ -4534,13 +4512,13 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_Downl .cUsers = cUsers, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntriesForUsers( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntriesForUsers, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_123 *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetDownloadedLeaderboardEntry_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetDownloadedLeaderboardEntry_params params = { .linux_side = _this->u_iface, .hSteamLeaderboardEntries = hSteamLeaderboardEntries, @@ -4550,13 +4528,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetDownlo .cDetailsMax = cDetailsMax, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetDownloadedLeaderboardEntry( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetDownloadedLeaderboardEntry, ¶ms ); 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UploadLeaderboardScore_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UploadLeaderboardScore_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, @@ -4566,48 +4544,48 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_Uploa .cScoreDetailsCount = cScoreDetailsCount, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UploadLeaderboardScore( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UploadLeaderboardScore, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_AttachLeaderboardUGC(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, uint64_t hUGC) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_AttachLeaderboardUGC_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_AttachLeaderboardUGC_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .hUGC = hUGC, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_AttachLeaderboardUGC( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_AttachLeaderboardUGC, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumberOfCurrentPlayers(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumberOfCurrentPlayers_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumberOfCurrentPlayers_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumberOfCurrentPlayers( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumberOfCurrentPlayers, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalAchievementPercentages(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalAchievementPercentages_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalAchievementPercentages_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalAchievementPercentages( ¶ms ); + 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, bool *pbAchieved) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetMostAchievedAchievementInfo_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetMostAchievedAchievementInfo_params params = { .linux_side = _this->u_iface, .pchName = pchName, @@ -4616,13 +4594,13 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetMos .pbAchieved = pbAchieved, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetMostAchievedAchievementInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetMostAchievedAchievementInfo, ¶ms ); return params._ret; } int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNextMostAchievedAchievementInfo(struct w_steam_iface *_this, int32_t iIteratorPrevious, char *pchName, uint32_t unNameBufLen, float *pflPercent, bool *pbAchieved) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNextMostAchievedAchievementInfo_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNextMostAchievedAchievementInfo_params params = { .linux_side = _this->u_iface, .iIteratorPrevious = iIteratorPrevious, @@ -4632,64 +4610,64 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNex .pbAchieved = pbAchieved, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNextMostAchievedAchievementInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNextMostAchievedAchievementInfo, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAchievedPercent(struct w_steam_iface *_this, const char *pchName, float *pflPercent) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAchievedPercent_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAchievedPercent_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pflPercent = pflPercent, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAchievedPercent( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAchievedPercent, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalStats(struct w_steam_iface *_this, int32_t nHistoryDays) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalStats_params params = { .linux_side = _this->u_iface, .nHistoryDays = nHistoryDays, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalStats, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat(struct w_steam_iface *_this, const char *pchStatName, int64_t *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_params params = { .linux_side = _this->u_iface, .pchStatName = pchStatName, .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_2(struct w_steam_iface *_this, const char *pchStatName, double *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_2_params params = { .linux_side = _this->u_iface, .pchStatName = pchStatName, .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_2, ¶ms ); 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_params params = { .linux_side = _this->u_iface, .pchStatName = pchStatName, @@ -4697,13 +4675,13 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlo .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory, ¶ms ); 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_2_params params = { .linux_side = _this->u_iface, .pchStatName = pchStatName, @@ -4711,7 +4689,7 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlo .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_2, ¶ms ); return params._ret; } @@ -4776,8 +4754,6 @@ struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION return r; } -#include "cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012.h" - DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestCurrentStats, 4) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat, 12) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2, 12) @@ -4826,70 +4802,70 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_G bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestCurrentStats(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestCurrentStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestCurrentStats_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestCurrentStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestCurrentStats, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_params params = { .linux_side = _this->u_iface, .pchName = pchName, .nData = nData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_2_params params = { .linux_side = _this->u_iface, .pchName = pchName, .fData = fData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvgRateStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvgRateStat_params params = { .linux_side = _this->u_iface, .pchName = pchName, @@ -4897,50 +4873,50 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvg .dSessionLength = dSessionLength, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvgRateStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvgRateStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievement(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievement_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pbAchieved = pbAchieved, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetAchievement(struct w_steam_iface *_this, const char *pchName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetAchievement_params params = { .linux_side = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ClearAchievement(struct w_steam_iface *_this, const char *pchName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ClearAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ClearAchievement_params params = { .linux_side = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ClearAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ClearAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAndUnlockTime(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved, uint32_t *punUnlockTime) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAndUnlockTime_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAndUnlockTime_params params = { .linux_side = _this->u_iface, .pchName = pchName, @@ -4948,49 +4924,49 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchiev .punUnlockTime = punUnlockTime, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAndUnlockTime( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAndUnlockTime, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_StoreStats(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_StoreStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_StoreStats_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_StoreStats( ¶ms ); + 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementIcon_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementIcon_params params = { .linux_side = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementIcon( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementIcon, ¶ms ); return params._ret; } const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementDisplayAttribute(struct w_steam_iface *_this, const char *pchName, const char *pchKey) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementDisplayAttribute_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementDisplayAttribute_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pchKey = pchKey, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementDisplayAttribute( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementDisplayAttribute, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_IndicateAchievementProgress_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_IndicateAchievementProgress_params params = { .linux_side = _this->u_iface, .pchName = pchName, @@ -4998,48 +4974,48 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_IndicateA .nMaxProgress = nMaxProgress, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_IndicateAchievementProgress( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_IndicateAchievementProgress, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumAchievements(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumAchievements_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumAchievements_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumAchievements( ¶ms ); + 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementName_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementName_params params = { .linux_side = _this->u_iface, .iAchievement = iAchievement, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementName( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementName, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestUserStats(struct w_steam_iface *_this, CSteamID steamIDUser) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestUserStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestUserStats_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestUserStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestUserStats, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -5047,13 +5023,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserSt .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_2_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -5061,13 +5037,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserSt .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievement_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievement_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -5075,13 +5051,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAc .pbAchieved = pbAchieved, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievement( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievement, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievementAndUnlockTime(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved, uint32_t *punUnlockTime) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievementAndUnlockTime_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievementAndUnlockTime_params params = { .linux_side = _this->u_iface, .steamIDUser = steamIDUser, @@ -5090,25 +5066,25 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAc .punUnlockTime = punUnlockTime, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievementAndUnlockTime( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievementAndUnlockTime, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ResetAllStats(struct w_steam_iface *_this, bool bAchievementsToo) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ResetAllStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ResetAllStats_params params = { .linux_side = _this->u_iface, .bAchievementsToo = bAchievementsToo, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ResetAllStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ResetAllStats, ¶ms ); 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindOrCreateLeaderboard_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindOrCreateLeaderboard_params params = { .linux_side = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, @@ -5116,73 +5092,73 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindO .eLeaderboardDisplayType = eLeaderboardDisplayType, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindOrCreateLeaderboard( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindOrCreateLeaderboard, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindLeaderboard(struct w_steam_iface *_this, const char *pchLeaderboardName) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindLeaderboard_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindLeaderboard_params params = { .linux_side = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindLeaderboard( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindLeaderboard, ¶ms ); return params._ret; } const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardName(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardName_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardName_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardName( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardName, ¶ms ); return params._ret; } int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardEntryCount(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardEntryCount_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardEntryCount_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardEntryCount( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardEntryCount, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardSortMethod(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardSortMethod_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardSortMethod_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardSortMethod( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardSortMethod, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardDisplayType(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardDisplayType_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardDisplayType_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardDisplayType( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardDisplayType, ¶ms ); 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntries_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntries_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, @@ -5191,13 +5167,13 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_Downl .nRangeEnd = nRangeEnd, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntries( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntries, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntriesForUsers(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, CSteamID *prgUsers, int32_t cUsers) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntriesForUsers_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntriesForUsers_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, @@ -5205,13 +5181,13 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_Downl .cUsers = cUsers, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntriesForUsers( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntriesForUsers, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_123 *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetDownloadedLeaderboardEntry_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetDownloadedLeaderboardEntry_params params = { .linux_side = _this->u_iface, .hSteamLeaderboardEntries = hSteamLeaderboardEntries, @@ -5221,13 +5197,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetDownlo .cDetailsMax = cDetailsMax, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetDownloadedLeaderboardEntry( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetDownloadedLeaderboardEntry, ¶ms ); 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UploadLeaderboardScore_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UploadLeaderboardScore_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, @@ -5237,48 +5213,48 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_Uploa .cScoreDetailsCount = cScoreDetailsCount, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UploadLeaderboardScore( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UploadLeaderboardScore, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_AttachLeaderboardUGC(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, uint64_t hUGC) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_AttachLeaderboardUGC_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_AttachLeaderboardUGC_params params = { .linux_side = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .hUGC = hUGC, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_AttachLeaderboardUGC( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_AttachLeaderboardUGC, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumberOfCurrentPlayers(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumberOfCurrentPlayers_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumberOfCurrentPlayers_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumberOfCurrentPlayers( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumberOfCurrentPlayers, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalAchievementPercentages(struct w_steam_iface *_this) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalAchievementPercentages_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalAchievementPercentages_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalAchievementPercentages( ¶ms ); + 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, bool *pbAchieved) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetMostAchievedAchievementInfo_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetMostAchievedAchievementInfo_params params = { .linux_side = _this->u_iface, .pchName = pchName, @@ -5287,13 +5263,13 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetMos .pbAchieved = pbAchieved, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetMostAchievedAchievementInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetMostAchievedAchievementInfo, ¶ms ); return params._ret; } int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNextMostAchievedAchievementInfo(struct w_steam_iface *_this, int32_t iIteratorPrevious, char *pchName, uint32_t unNameBufLen, float *pflPercent, bool *pbAchieved) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNextMostAchievedAchievementInfo_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNextMostAchievedAchievementInfo_params params = { .linux_side = _this->u_iface, .iIteratorPrevious = iIteratorPrevious, @@ -5303,64 +5279,64 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNex .pbAchieved = pbAchieved, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNextMostAchievedAchievementInfo( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNextMostAchievedAchievementInfo, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAchievedPercent(struct w_steam_iface *_this, const char *pchName, float *pflPercent) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAchievedPercent_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAchievedPercent_params params = { .linux_side = _this->u_iface, .pchName = pchName, .pflPercent = pflPercent, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAchievedPercent( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAchievedPercent, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalStats(struct w_steam_iface *_this, int32_t nHistoryDays) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalStats_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalStats_params params = { .linux_side = _this->u_iface, .nHistoryDays = nHistoryDays, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalStats( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalStats, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat(struct w_steam_iface *_this, const char *pchStatName, int64_t *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_params params = { .linux_side = _this->u_iface, .pchStatName = pchStatName, .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_2(struct w_steam_iface *_this, const char *pchStatName, double *pData) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_2_params params = { .linux_side = _this->u_iface, .pchStatName = pchStatName, .pData = pData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_2, ¶ms ); 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_params params = { .linux_side = _this->u_iface, .pchStatName = pchStatName, @@ -5368,13 +5344,13 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlo .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory, ¶ms ); 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) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_2_params params = { .linux_side = _this->u_iface, .pchStatName = pchStatName, @@ -5382,13 +5358,13 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlo .cubData = cubData, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_2, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits(struct w_steam_iface *_this, const char *pchName, int32_t *pnMinProgress, int32_t *pnMaxProgress) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_params params = { .linux_side = _this->u_iface, .pchName = pchName, @@ -5396,13 +5372,13 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchiev .pnMaxProgress = pnMaxProgress, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits, ¶ms ); return params._ret; } bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_2(struct w_steam_iface *_this, const char *pchName, float *pfMinProgress, float *pfMaxProgress) { - struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_2_params params = + struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_2_params params = { .linux_side = _this->u_iface, .pchName = pchName, @@ -5410,7 +5386,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchiev .pfMaxProgress = pfMaxProgress, }; TRACE("%p\n", _this); - cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_2( ¶ms ); + STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_2, ¶ms ); return params._ret; } diff --git a/lsteamclient/winISteamUtils.c b/lsteamclient/winISteamUtils.c index bdfc01d9..1ec56b60 100644 --- a/lsteamclient/winISteamUtils.c +++ b/lsteamclient/winISteamUtils.c @@ -3,8 +3,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamUtils_SteamUtils002.h" - DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils002_GetSecondsSinceAppActive, 4) DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils002_GetSecondsSinceComputerActive, 4) DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils002_GetConnectedUniverse, 4) @@ -22,62 +20,62 @@ DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils002_GetAPICallResult, 28) uint32_t __thiscall winISteamUtils_SteamUtils002_GetSecondsSinceAppActive(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils002_GetSecondsSinceAppActive_params params = + struct ISteamUtils_SteamUtils002_GetSecondsSinceAppActive_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils002_GetSecondsSinceAppActive( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils002_GetSecondsSinceAppActive, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils002_GetSecondsSinceComputerActive(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils002_GetSecondsSinceComputerActive_params params = + struct ISteamUtils_SteamUtils002_GetSecondsSinceComputerActive_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils002_GetSecondsSinceComputerActive( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils002_GetSecondsSinceComputerActive, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils002_GetConnectedUniverse(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils002_GetConnectedUniverse_params params = + struct ISteamUtils_SteamUtils002_GetConnectedUniverse_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils002_GetConnectedUniverse( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils002_GetConnectedUniverse, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils002_GetServerRealTime(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils002_GetServerRealTime_params params = + struct ISteamUtils_SteamUtils002_GetServerRealTime_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils002_GetServerRealTime( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils002_GetServerRealTime, ¶ms ); return params._ret; } const char * __thiscall winISteamUtils_SteamUtils002_GetIPCountry(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils002_GetIPCountry_params params = + struct ISteamUtils_SteamUtils002_GetIPCountry_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils002_GetIPCountry( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils002_GetIPCountry, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils002_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) { - struct cppISteamUtils_SteamUtils002_GetImageSize_params params = + struct ISteamUtils_SteamUtils002_GetImageSize_params params = { .linux_side = _this->u_iface, .iImage = iImage, @@ -85,13 +83,13 @@ bool __thiscall winISteamUtils_SteamUtils002_GetImageSize(struct w_steam_iface * .pnHeight = pnHeight, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils002_GetImageSize( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils002_GetImageSize, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils002_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) { - struct cppISteamUtils_SteamUtils002_GetImageRGBA_params params = + struct ISteamUtils_SteamUtils002_GetImageRGBA_params params = { .linux_side = _this->u_iface, .iImage = iImage, @@ -99,84 +97,84 @@ bool __thiscall winISteamUtils_SteamUtils002_GetImageRGBA(struct w_steam_iface * .nDestBufferSize = nDestBufferSize, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils002_GetImageRGBA( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils002_GetImageRGBA, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils002_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) { - struct cppISteamUtils_SteamUtils002_GetCSERIPPort_params params = + struct ISteamUtils_SteamUtils002_GetCSERIPPort_params params = { .linux_side = _this->u_iface, .unIP = unIP, .usPort = usPort, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils002_GetCSERIPPort( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils002_GetCSERIPPort, ¶ms ); return params._ret; } uint8_t __thiscall winISteamUtils_SteamUtils002_GetCurrentBatteryPower(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils002_GetCurrentBatteryPower_params params = + struct ISteamUtils_SteamUtils002_GetCurrentBatteryPower_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils002_GetCurrentBatteryPower( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils002_GetCurrentBatteryPower, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils002_GetAppID(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils002_GetAppID_params params = + struct ISteamUtils_SteamUtils002_GetAppID_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils002_GetAppID( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils002_GetAppID, ¶ms ); return params._ret; } void __thiscall winISteamUtils_SteamUtils002_SetOverlayNotificationPosition(struct w_steam_iface *_this, uint32_t eNotificationPosition) { - struct cppISteamUtils_SteamUtils002_SetOverlayNotificationPosition_params params = + struct ISteamUtils_SteamUtils002_SetOverlayNotificationPosition_params params = { .linux_side = _this->u_iface, .eNotificationPosition = eNotificationPosition, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils002_SetOverlayNotificationPosition( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils002_SetOverlayNotificationPosition, ¶ms ); } bool __thiscall winISteamUtils_SteamUtils002_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, bool *pbFailed) { - struct cppISteamUtils_SteamUtils002_IsAPICallCompleted_params params = + struct ISteamUtils_SteamUtils002_IsAPICallCompleted_params params = { .linux_side = _this->u_iface, .hSteamAPICall = hSteamAPICall, .pbFailed = pbFailed, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils002_IsAPICallCompleted( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils002_IsAPICallCompleted, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils002_GetAPICallFailureReason(struct w_steam_iface *_this, uint64_t hSteamAPICall) { - struct cppISteamUtils_SteamUtils002_GetAPICallFailureReason_params params = + struct ISteamUtils_SteamUtils002_GetAPICallFailureReason_params params = { .linux_side = _this->u_iface, .hSteamAPICall = hSteamAPICall, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils002_GetAPICallFailureReason( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils002_GetAPICallFailureReason, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils002_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, bool *pbFailed) { - struct cppISteamUtils_SteamUtils002_GetAPICallResult_params params = + struct ISteamUtils_SteamUtils002_GetAPICallResult_params params = { .linux_side = _this->u_iface, .hSteamAPICall = hSteamAPICall, @@ -186,7 +184,7 @@ bool __thiscall winISteamUtils_SteamUtils002_GetAPICallResult(struct w_steam_ifa .pbFailed = pbFailed, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils002_GetAPICallResult( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils002_GetAPICallResult, ¶ms ); return params._ret; } @@ -222,8 +220,6 @@ struct w_steam_iface *create_winISteamUtils_SteamUtils002(void *u_iface) return r; } -#include "cppISteamUtils_SteamUtils004.h" - DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils004_GetSecondsSinceAppActive, 4) DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils004_GetSecondsSinceComputerActive, 4) DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils004_GetConnectedUniverse, 4) @@ -245,62 +241,62 @@ DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils004_IsOverlayEnabled, 4) uint32_t __thiscall winISteamUtils_SteamUtils004_GetSecondsSinceAppActive(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils004_GetSecondsSinceAppActive_params params = + struct ISteamUtils_SteamUtils004_GetSecondsSinceAppActive_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils004_GetSecondsSinceAppActive( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils004_GetSecondsSinceAppActive, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils004_GetSecondsSinceComputerActive(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils004_GetSecondsSinceComputerActive_params params = + struct ISteamUtils_SteamUtils004_GetSecondsSinceComputerActive_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils004_GetSecondsSinceComputerActive( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils004_GetSecondsSinceComputerActive, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils004_GetConnectedUniverse(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils004_GetConnectedUniverse_params params = + struct ISteamUtils_SteamUtils004_GetConnectedUniverse_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils004_GetConnectedUniverse( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils004_GetConnectedUniverse, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils004_GetServerRealTime(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils004_GetServerRealTime_params params = + struct ISteamUtils_SteamUtils004_GetServerRealTime_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils004_GetServerRealTime( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils004_GetServerRealTime, ¶ms ); return params._ret; } const char * __thiscall winISteamUtils_SteamUtils004_GetIPCountry(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils004_GetIPCountry_params params = + struct ISteamUtils_SteamUtils004_GetIPCountry_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils004_GetIPCountry( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils004_GetIPCountry, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils004_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) { - struct cppISteamUtils_SteamUtils004_GetImageSize_params params = + struct ISteamUtils_SteamUtils004_GetImageSize_params params = { .linux_side = _this->u_iface, .iImage = iImage, @@ -308,13 +304,13 @@ bool __thiscall winISteamUtils_SteamUtils004_GetImageSize(struct w_steam_iface * .pnHeight = pnHeight, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils004_GetImageSize( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils004_GetImageSize, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils004_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) { - struct cppISteamUtils_SteamUtils004_GetImageRGBA_params params = + struct ISteamUtils_SteamUtils004_GetImageRGBA_params params = { .linux_side = _this->u_iface, .iImage = iImage, @@ -322,84 +318,84 @@ bool __thiscall winISteamUtils_SteamUtils004_GetImageRGBA(struct w_steam_iface * .nDestBufferSize = nDestBufferSize, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils004_GetImageRGBA( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils004_GetImageRGBA, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils004_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) { - struct cppISteamUtils_SteamUtils004_GetCSERIPPort_params params = + struct ISteamUtils_SteamUtils004_GetCSERIPPort_params params = { .linux_side = _this->u_iface, .unIP = unIP, .usPort = usPort, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils004_GetCSERIPPort( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils004_GetCSERIPPort, ¶ms ); return params._ret; } uint8_t __thiscall winISteamUtils_SteamUtils004_GetCurrentBatteryPower(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils004_GetCurrentBatteryPower_params params = + struct ISteamUtils_SteamUtils004_GetCurrentBatteryPower_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils004_GetCurrentBatteryPower( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils004_GetCurrentBatteryPower, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils004_GetAppID(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils004_GetAppID_params params = + struct ISteamUtils_SteamUtils004_GetAppID_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils004_GetAppID( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils004_GetAppID, ¶ms ); return params._ret; } void __thiscall winISteamUtils_SteamUtils004_SetOverlayNotificationPosition(struct w_steam_iface *_this, uint32_t eNotificationPosition) { - struct cppISteamUtils_SteamUtils004_SetOverlayNotificationPosition_params params = + struct ISteamUtils_SteamUtils004_SetOverlayNotificationPosition_params params = { .linux_side = _this->u_iface, .eNotificationPosition = eNotificationPosition, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils004_SetOverlayNotificationPosition( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils004_SetOverlayNotificationPosition, ¶ms ); } bool __thiscall winISteamUtils_SteamUtils004_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, bool *pbFailed) { - struct cppISteamUtils_SteamUtils004_IsAPICallCompleted_params params = + struct ISteamUtils_SteamUtils004_IsAPICallCompleted_params params = { .linux_side = _this->u_iface, .hSteamAPICall = hSteamAPICall, .pbFailed = pbFailed, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils004_IsAPICallCompleted( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils004_IsAPICallCompleted, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils004_GetAPICallFailureReason(struct w_steam_iface *_this, uint64_t hSteamAPICall) { - struct cppISteamUtils_SteamUtils004_GetAPICallFailureReason_params params = + struct ISteamUtils_SteamUtils004_GetAPICallFailureReason_params params = { .linux_side = _this->u_iface, .hSteamAPICall = hSteamAPICall, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils004_GetAPICallFailureReason( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils004_GetAPICallFailureReason, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils004_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, bool *pbFailed) { - struct cppISteamUtils_SteamUtils004_GetAPICallResult_params params = + struct ISteamUtils_SteamUtils004_GetAPICallResult_params params = { .linux_side = _this->u_iface, .hSteamAPICall = hSteamAPICall, @@ -409,50 +405,50 @@ bool __thiscall winISteamUtils_SteamUtils004_GetAPICallResult(struct w_steam_ifa .pbFailed = pbFailed, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils004_GetAPICallResult( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils004_GetAPICallResult, ¶ms ); return params._ret; } void __thiscall winISteamUtils_SteamUtils004_RunFrame(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils004_RunFrame_params params = + struct ISteamUtils_SteamUtils004_RunFrame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils004_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils004_RunFrame, ¶ms ); } uint32_t __thiscall winISteamUtils_SteamUtils004_GetIPCCallCount(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils004_GetIPCCallCount_params params = + struct ISteamUtils_SteamUtils004_GetIPCCallCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils004_GetIPCCallCount( ¶ms ); + 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 *)) { - struct cppISteamUtils_SteamUtils004_SetWarningMessageHook_params params = + struct ISteamUtils_SteamUtils004_SetWarningMessageHook_params params = { .linux_side = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils004_SetWarningMessageHook( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils004_SetWarningMessageHook, ¶ms ); } bool __thiscall winISteamUtils_SteamUtils004_IsOverlayEnabled(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils004_IsOverlayEnabled_params params = + struct ISteamUtils_SteamUtils004_IsOverlayEnabled_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils004_IsOverlayEnabled( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils004_IsOverlayEnabled, ¶ms ); return params._ret; } @@ -492,8 +488,6 @@ struct w_steam_iface *create_winISteamUtils_SteamUtils004(void *u_iface) return r; } -#include "cppISteamUtils_SteamUtils005.h" - DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils005_GetSecondsSinceAppActive, 4) DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils005_GetSecondsSinceComputerActive, 4) DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils005_GetConnectedUniverse, 4) @@ -520,62 +514,62 @@ DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils005_GetEnteredGamepadTextInput, uint32_t __thiscall winISteamUtils_SteamUtils005_GetSecondsSinceAppActive(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils005_GetSecondsSinceAppActive_params params = + struct ISteamUtils_SteamUtils005_GetSecondsSinceAppActive_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils005_GetSecondsSinceAppActive( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_GetSecondsSinceAppActive, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils005_GetSecondsSinceComputerActive(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils005_GetSecondsSinceComputerActive_params params = + struct ISteamUtils_SteamUtils005_GetSecondsSinceComputerActive_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils005_GetSecondsSinceComputerActive( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_GetSecondsSinceComputerActive, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils005_GetConnectedUniverse(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils005_GetConnectedUniverse_params params = + struct ISteamUtils_SteamUtils005_GetConnectedUniverse_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils005_GetConnectedUniverse( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_GetConnectedUniverse, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils005_GetServerRealTime(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils005_GetServerRealTime_params params = + struct ISteamUtils_SteamUtils005_GetServerRealTime_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils005_GetServerRealTime( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_GetServerRealTime, ¶ms ); return params._ret; } const char * __thiscall winISteamUtils_SteamUtils005_GetIPCountry(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils005_GetIPCountry_params params = + struct ISteamUtils_SteamUtils005_GetIPCountry_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils005_GetIPCountry( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_GetIPCountry, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils005_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) { - struct cppISteamUtils_SteamUtils005_GetImageSize_params params = + struct ISteamUtils_SteamUtils005_GetImageSize_params params = { .linux_side = _this->u_iface, .iImage = iImage, @@ -583,13 +577,13 @@ bool __thiscall winISteamUtils_SteamUtils005_GetImageSize(struct w_steam_iface * .pnHeight = pnHeight, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils005_GetImageSize( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_GetImageSize, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils005_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) { - struct cppISteamUtils_SteamUtils005_GetImageRGBA_params params = + struct ISteamUtils_SteamUtils005_GetImageRGBA_params params = { .linux_side = _this->u_iface, .iImage = iImage, @@ -597,84 +591,84 @@ bool __thiscall winISteamUtils_SteamUtils005_GetImageRGBA(struct w_steam_iface * .nDestBufferSize = nDestBufferSize, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils005_GetImageRGBA( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_GetImageRGBA, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils005_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) { - struct cppISteamUtils_SteamUtils005_GetCSERIPPort_params params = + struct ISteamUtils_SteamUtils005_GetCSERIPPort_params params = { .linux_side = _this->u_iface, .unIP = unIP, .usPort = usPort, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils005_GetCSERIPPort( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_GetCSERIPPort, ¶ms ); return params._ret; } uint8_t __thiscall winISteamUtils_SteamUtils005_GetCurrentBatteryPower(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils005_GetCurrentBatteryPower_params params = + struct ISteamUtils_SteamUtils005_GetCurrentBatteryPower_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils005_GetCurrentBatteryPower( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_GetCurrentBatteryPower, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils005_GetAppID(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils005_GetAppID_params params = + struct ISteamUtils_SteamUtils005_GetAppID_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils005_GetAppID( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_GetAppID, ¶ms ); return params._ret; } void __thiscall winISteamUtils_SteamUtils005_SetOverlayNotificationPosition(struct w_steam_iface *_this, uint32_t eNotificationPosition) { - struct cppISteamUtils_SteamUtils005_SetOverlayNotificationPosition_params params = + struct ISteamUtils_SteamUtils005_SetOverlayNotificationPosition_params params = { .linux_side = _this->u_iface, .eNotificationPosition = eNotificationPosition, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils005_SetOverlayNotificationPosition( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_SetOverlayNotificationPosition, ¶ms ); } bool __thiscall winISteamUtils_SteamUtils005_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, bool *pbFailed) { - struct cppISteamUtils_SteamUtils005_IsAPICallCompleted_params params = + struct ISteamUtils_SteamUtils005_IsAPICallCompleted_params params = { .linux_side = _this->u_iface, .hSteamAPICall = hSteamAPICall, .pbFailed = pbFailed, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils005_IsAPICallCompleted( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_IsAPICallCompleted, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils005_GetAPICallFailureReason(struct w_steam_iface *_this, uint64_t hSteamAPICall) { - struct cppISteamUtils_SteamUtils005_GetAPICallFailureReason_params params = + struct ISteamUtils_SteamUtils005_GetAPICallFailureReason_params params = { .linux_side = _this->u_iface, .hSteamAPICall = hSteamAPICall, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils005_GetAPICallFailureReason( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_GetAPICallFailureReason, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils005_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, bool *pbFailed) { - struct cppISteamUtils_SteamUtils005_GetAPICallResult_params params = + struct ISteamUtils_SteamUtils005_GetAPICallResult_params params = { .linux_side = _this->u_iface, .hSteamAPICall = hSteamAPICall, @@ -684,81 +678,81 @@ bool __thiscall winISteamUtils_SteamUtils005_GetAPICallResult(struct w_steam_ifa .pbFailed = pbFailed, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils005_GetAPICallResult( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_GetAPICallResult, ¶ms ); return params._ret; } void __thiscall winISteamUtils_SteamUtils005_RunFrame(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils005_RunFrame_params params = + struct ISteamUtils_SteamUtils005_RunFrame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils005_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_RunFrame, ¶ms ); } uint32_t __thiscall winISteamUtils_SteamUtils005_GetIPCCallCount(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils005_GetIPCCallCount_params params = + struct ISteamUtils_SteamUtils005_GetIPCCallCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils005_GetIPCCallCount( ¶ms ); + 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 *)) { - struct cppISteamUtils_SteamUtils005_SetWarningMessageHook_params params = + struct ISteamUtils_SteamUtils005_SetWarningMessageHook_params params = { .linux_side = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils005_SetWarningMessageHook( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_SetWarningMessageHook, ¶ms ); } bool __thiscall winISteamUtils_SteamUtils005_IsOverlayEnabled(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils005_IsOverlayEnabled_params params = + struct ISteamUtils_SteamUtils005_IsOverlayEnabled_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils005_IsOverlayEnabled( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_IsOverlayEnabled, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils005_BOverlayNeedsPresent(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils005_BOverlayNeedsPresent_params params = + struct ISteamUtils_SteamUtils005_BOverlayNeedsPresent_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils005_BOverlayNeedsPresent( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_BOverlayNeedsPresent, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUtils_SteamUtils005_CheckFileSignature(struct w_steam_iface *_this, const char *szFileName) { - struct cppISteamUtils_SteamUtils005_CheckFileSignature_params params = + struct ISteamUtils_SteamUtils005_CheckFileSignature_params params = { .linux_side = _this->u_iface, .szFileName = szFileName, }; params.szFileName = steamclient_dos_to_unix_path( szFileName, 0 ); TRACE("%p\n", _this); - cppISteamUtils_SteamUtils005_CheckFileSignature( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_CheckFileSignature, ¶ms ); steamclient_free_path( params.szFileName ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils005_ShowGamepadTextInput(struct w_steam_iface *_this, uint32_t eInputMode, uint32_t eLineInputMode, const char *pchDescription, uint32_t unCharMax) { - struct cppISteamUtils_SteamUtils005_ShowGamepadTextInput_params params = + struct ISteamUtils_SteamUtils005_ShowGamepadTextInput_params params = { .linux_side = _this->u_iface, .eInputMode = eInputMode, @@ -767,31 +761,31 @@ bool __thiscall winISteamUtils_SteamUtils005_ShowGamepadTextInput(struct w_steam .unCharMax = unCharMax, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils005_ShowGamepadTextInput( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_ShowGamepadTextInput, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils005_GetEnteredGamepadTextLength(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils005_GetEnteredGamepadTextLength_params params = + struct ISteamUtils_SteamUtils005_GetEnteredGamepadTextLength_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils005_GetEnteredGamepadTextLength( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_GetEnteredGamepadTextLength, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils005_GetEnteredGamepadTextInput(struct w_steam_iface *_this, char *pchText, uint32_t cchText) { - struct cppISteamUtils_SteamUtils005_GetEnteredGamepadTextInput_params params = + struct ISteamUtils_SteamUtils005_GetEnteredGamepadTextInput_params params = { .linux_side = _this->u_iface, .pchText = pchText, .cchText = cchText, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils005_GetEnteredGamepadTextInput( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_GetEnteredGamepadTextInput, ¶ms ); return params._ret; } @@ -836,8 +830,6 @@ struct w_steam_iface *create_winISteamUtils_SteamUtils005(void *u_iface) return r; } -#include "cppISteamUtils_SteamUtils006.h" - DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils006_GetSecondsSinceAppActive, 4) DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils006_GetSecondsSinceComputerActive, 4) DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils006_GetConnectedUniverse, 4) @@ -866,62 +858,62 @@ DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils006_IsSteamRunningInVR, 4) uint32_t __thiscall winISteamUtils_SteamUtils006_GetSecondsSinceAppActive(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils006_GetSecondsSinceAppActive_params params = + struct ISteamUtils_SteamUtils006_GetSecondsSinceAppActive_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils006_GetSecondsSinceAppActive( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_GetSecondsSinceAppActive, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils006_GetSecondsSinceComputerActive(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils006_GetSecondsSinceComputerActive_params params = + struct ISteamUtils_SteamUtils006_GetSecondsSinceComputerActive_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils006_GetSecondsSinceComputerActive( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_GetSecondsSinceComputerActive, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils006_GetConnectedUniverse(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils006_GetConnectedUniverse_params params = + struct ISteamUtils_SteamUtils006_GetConnectedUniverse_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils006_GetConnectedUniverse( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_GetConnectedUniverse, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils006_GetServerRealTime(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils006_GetServerRealTime_params params = + struct ISteamUtils_SteamUtils006_GetServerRealTime_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils006_GetServerRealTime( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_GetServerRealTime, ¶ms ); return params._ret; } const char * __thiscall winISteamUtils_SteamUtils006_GetIPCountry(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils006_GetIPCountry_params params = + struct ISteamUtils_SteamUtils006_GetIPCountry_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils006_GetIPCountry( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_GetIPCountry, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils006_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) { - struct cppISteamUtils_SteamUtils006_GetImageSize_params params = + struct ISteamUtils_SteamUtils006_GetImageSize_params params = { .linux_side = _this->u_iface, .iImage = iImage, @@ -929,13 +921,13 @@ bool __thiscall winISteamUtils_SteamUtils006_GetImageSize(struct w_steam_iface * .pnHeight = pnHeight, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils006_GetImageSize( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_GetImageSize, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils006_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) { - struct cppISteamUtils_SteamUtils006_GetImageRGBA_params params = + struct ISteamUtils_SteamUtils006_GetImageRGBA_params params = { .linux_side = _this->u_iface, .iImage = iImage, @@ -943,84 +935,84 @@ bool __thiscall winISteamUtils_SteamUtils006_GetImageRGBA(struct w_steam_iface * .nDestBufferSize = nDestBufferSize, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils006_GetImageRGBA( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_GetImageRGBA, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils006_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) { - struct cppISteamUtils_SteamUtils006_GetCSERIPPort_params params = + struct ISteamUtils_SteamUtils006_GetCSERIPPort_params params = { .linux_side = _this->u_iface, .unIP = unIP, .usPort = usPort, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils006_GetCSERIPPort( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_GetCSERIPPort, ¶ms ); return params._ret; } uint8_t __thiscall winISteamUtils_SteamUtils006_GetCurrentBatteryPower(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils006_GetCurrentBatteryPower_params params = + struct ISteamUtils_SteamUtils006_GetCurrentBatteryPower_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils006_GetCurrentBatteryPower( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_GetCurrentBatteryPower, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils006_GetAppID(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils006_GetAppID_params params = + struct ISteamUtils_SteamUtils006_GetAppID_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils006_GetAppID( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_GetAppID, ¶ms ); return params._ret; } void __thiscall winISteamUtils_SteamUtils006_SetOverlayNotificationPosition(struct w_steam_iface *_this, uint32_t eNotificationPosition) { - struct cppISteamUtils_SteamUtils006_SetOverlayNotificationPosition_params params = + struct ISteamUtils_SteamUtils006_SetOverlayNotificationPosition_params params = { .linux_side = _this->u_iface, .eNotificationPosition = eNotificationPosition, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils006_SetOverlayNotificationPosition( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_SetOverlayNotificationPosition, ¶ms ); } bool __thiscall winISteamUtils_SteamUtils006_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, bool *pbFailed) { - struct cppISteamUtils_SteamUtils006_IsAPICallCompleted_params params = + struct ISteamUtils_SteamUtils006_IsAPICallCompleted_params params = { .linux_side = _this->u_iface, .hSteamAPICall = hSteamAPICall, .pbFailed = pbFailed, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils006_IsAPICallCompleted( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_IsAPICallCompleted, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils006_GetAPICallFailureReason(struct w_steam_iface *_this, uint64_t hSteamAPICall) { - struct cppISteamUtils_SteamUtils006_GetAPICallFailureReason_params params = + struct ISteamUtils_SteamUtils006_GetAPICallFailureReason_params params = { .linux_side = _this->u_iface, .hSteamAPICall = hSteamAPICall, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils006_GetAPICallFailureReason( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_GetAPICallFailureReason, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils006_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, bool *pbFailed) { - struct cppISteamUtils_SteamUtils006_GetAPICallResult_params params = + struct ISteamUtils_SteamUtils006_GetAPICallResult_params params = { .linux_side = _this->u_iface, .hSteamAPICall = hSteamAPICall, @@ -1030,81 +1022,81 @@ bool __thiscall winISteamUtils_SteamUtils006_GetAPICallResult(struct w_steam_ifa .pbFailed = pbFailed, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils006_GetAPICallResult( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_GetAPICallResult, ¶ms ); return params._ret; } void __thiscall winISteamUtils_SteamUtils006_RunFrame(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils006_RunFrame_params params = + struct ISteamUtils_SteamUtils006_RunFrame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils006_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_RunFrame, ¶ms ); } uint32_t __thiscall winISteamUtils_SteamUtils006_GetIPCCallCount(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils006_GetIPCCallCount_params params = + struct ISteamUtils_SteamUtils006_GetIPCCallCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils006_GetIPCCallCount( ¶ms ); + 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 *)) { - struct cppISteamUtils_SteamUtils006_SetWarningMessageHook_params params = + struct ISteamUtils_SteamUtils006_SetWarningMessageHook_params params = { .linux_side = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils006_SetWarningMessageHook( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_SetWarningMessageHook, ¶ms ); } bool __thiscall winISteamUtils_SteamUtils006_IsOverlayEnabled(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils006_IsOverlayEnabled_params params = + struct ISteamUtils_SteamUtils006_IsOverlayEnabled_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils006_IsOverlayEnabled( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_IsOverlayEnabled, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils006_BOverlayNeedsPresent(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils006_BOverlayNeedsPresent_params params = + struct ISteamUtils_SteamUtils006_BOverlayNeedsPresent_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils006_BOverlayNeedsPresent( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_BOverlayNeedsPresent, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUtils_SteamUtils006_CheckFileSignature(struct w_steam_iface *_this, const char *szFileName) { - struct cppISteamUtils_SteamUtils006_CheckFileSignature_params params = + struct ISteamUtils_SteamUtils006_CheckFileSignature_params params = { .linux_side = _this->u_iface, .szFileName = szFileName, }; params.szFileName = steamclient_dos_to_unix_path( szFileName, 0 ); TRACE("%p\n", _this); - cppISteamUtils_SteamUtils006_CheckFileSignature( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_CheckFileSignature, ¶ms ); steamclient_free_path( params.szFileName ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils006_ShowGamepadTextInput(struct w_steam_iface *_this, uint32_t eInputMode, uint32_t eLineInputMode, const char *pchDescription, uint32_t unCharMax) { - struct cppISteamUtils_SteamUtils006_ShowGamepadTextInput_params params = + struct ISteamUtils_SteamUtils006_ShowGamepadTextInput_params params = { .linux_side = _this->u_iface, .eInputMode = eInputMode, @@ -1113,53 +1105,53 @@ bool __thiscall winISteamUtils_SteamUtils006_ShowGamepadTextInput(struct w_steam .unCharMax = unCharMax, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils006_ShowGamepadTextInput( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_ShowGamepadTextInput, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils006_GetEnteredGamepadTextLength(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils006_GetEnteredGamepadTextLength_params params = + struct ISteamUtils_SteamUtils006_GetEnteredGamepadTextLength_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils006_GetEnteredGamepadTextLength( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_GetEnteredGamepadTextLength, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils006_GetEnteredGamepadTextInput(struct w_steam_iface *_this, char *pchText, uint32_t cchText) { - struct cppISteamUtils_SteamUtils006_GetEnteredGamepadTextInput_params params = + struct ISteamUtils_SteamUtils006_GetEnteredGamepadTextInput_params params = { .linux_side = _this->u_iface, .pchText = pchText, .cchText = cchText, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils006_GetEnteredGamepadTextInput( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_GetEnteredGamepadTextInput, ¶ms ); return params._ret; } const char * __thiscall winISteamUtils_SteamUtils006_GetSteamUILanguage(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils006_GetSteamUILanguage_params params = + struct ISteamUtils_SteamUtils006_GetSteamUILanguage_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils006_GetSteamUILanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_GetSteamUILanguage, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils006_IsSteamRunningInVR(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils006_IsSteamRunningInVR_params params = + struct ISteamUtils_SteamUtils006_IsSteamRunningInVR_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils006_IsSteamRunningInVR( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_IsSteamRunningInVR, ¶ms ); return params._ret; } @@ -1206,8 +1198,6 @@ struct w_steam_iface *create_winISteamUtils_SteamUtils006(void *u_iface) return r; } -#include "cppISteamUtils_SteamUtils007.h" - DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils007_GetSecondsSinceAppActive, 4) DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils007_GetSecondsSinceComputerActive, 4) DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils007_GetConnectedUniverse, 4) @@ -1237,62 +1227,62 @@ DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils007_SetOverlayNotificationInset uint32_t __thiscall winISteamUtils_SteamUtils007_GetSecondsSinceAppActive(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils007_GetSecondsSinceAppActive_params params = + struct ISteamUtils_SteamUtils007_GetSecondsSinceAppActive_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils007_GetSecondsSinceAppActive( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_GetSecondsSinceAppActive, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils007_GetSecondsSinceComputerActive(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils007_GetSecondsSinceComputerActive_params params = + struct ISteamUtils_SteamUtils007_GetSecondsSinceComputerActive_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils007_GetSecondsSinceComputerActive( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_GetSecondsSinceComputerActive, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils007_GetConnectedUniverse(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils007_GetConnectedUniverse_params params = + struct ISteamUtils_SteamUtils007_GetConnectedUniverse_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils007_GetConnectedUniverse( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_GetConnectedUniverse, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils007_GetServerRealTime(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils007_GetServerRealTime_params params = + struct ISteamUtils_SteamUtils007_GetServerRealTime_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils007_GetServerRealTime( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_GetServerRealTime, ¶ms ); return params._ret; } const char * __thiscall winISteamUtils_SteamUtils007_GetIPCountry(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils007_GetIPCountry_params params = + struct ISteamUtils_SteamUtils007_GetIPCountry_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils007_GetIPCountry( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_GetIPCountry, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils007_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) { - struct cppISteamUtils_SteamUtils007_GetImageSize_params params = + struct ISteamUtils_SteamUtils007_GetImageSize_params params = { .linux_side = _this->u_iface, .iImage = iImage, @@ -1300,13 +1290,13 @@ bool __thiscall winISteamUtils_SteamUtils007_GetImageSize(struct w_steam_iface * .pnHeight = pnHeight, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils007_GetImageSize( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_GetImageSize, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils007_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) { - struct cppISteamUtils_SteamUtils007_GetImageRGBA_params params = + struct ISteamUtils_SteamUtils007_GetImageRGBA_params params = { .linux_side = _this->u_iface, .iImage = iImage, @@ -1314,84 +1304,84 @@ bool __thiscall winISteamUtils_SteamUtils007_GetImageRGBA(struct w_steam_iface * .nDestBufferSize = nDestBufferSize, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils007_GetImageRGBA( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_GetImageRGBA, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils007_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) { - struct cppISteamUtils_SteamUtils007_GetCSERIPPort_params params = + struct ISteamUtils_SteamUtils007_GetCSERIPPort_params params = { .linux_side = _this->u_iface, .unIP = unIP, .usPort = usPort, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils007_GetCSERIPPort( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_GetCSERIPPort, ¶ms ); return params._ret; } uint8_t __thiscall winISteamUtils_SteamUtils007_GetCurrentBatteryPower(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils007_GetCurrentBatteryPower_params params = + struct ISteamUtils_SteamUtils007_GetCurrentBatteryPower_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils007_GetCurrentBatteryPower( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_GetCurrentBatteryPower, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils007_GetAppID(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils007_GetAppID_params params = + struct ISteamUtils_SteamUtils007_GetAppID_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils007_GetAppID( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_GetAppID, ¶ms ); return params._ret; } void __thiscall winISteamUtils_SteamUtils007_SetOverlayNotificationPosition(struct w_steam_iface *_this, uint32_t eNotificationPosition) { - struct cppISteamUtils_SteamUtils007_SetOverlayNotificationPosition_params params = + struct ISteamUtils_SteamUtils007_SetOverlayNotificationPosition_params params = { .linux_side = _this->u_iface, .eNotificationPosition = eNotificationPosition, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils007_SetOverlayNotificationPosition( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_SetOverlayNotificationPosition, ¶ms ); } bool __thiscall winISteamUtils_SteamUtils007_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, bool *pbFailed) { - struct cppISteamUtils_SteamUtils007_IsAPICallCompleted_params params = + struct ISteamUtils_SteamUtils007_IsAPICallCompleted_params params = { .linux_side = _this->u_iface, .hSteamAPICall = hSteamAPICall, .pbFailed = pbFailed, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils007_IsAPICallCompleted( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_IsAPICallCompleted, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils007_GetAPICallFailureReason(struct w_steam_iface *_this, uint64_t hSteamAPICall) { - struct cppISteamUtils_SteamUtils007_GetAPICallFailureReason_params params = + struct ISteamUtils_SteamUtils007_GetAPICallFailureReason_params params = { .linux_side = _this->u_iface, .hSteamAPICall = hSteamAPICall, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils007_GetAPICallFailureReason( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_GetAPICallFailureReason, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils007_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, bool *pbFailed) { - struct cppISteamUtils_SteamUtils007_GetAPICallResult_params params = + struct ISteamUtils_SteamUtils007_GetAPICallResult_params params = { .linux_side = _this->u_iface, .hSteamAPICall = hSteamAPICall, @@ -1401,81 +1391,81 @@ bool __thiscall winISteamUtils_SteamUtils007_GetAPICallResult(struct w_steam_ifa .pbFailed = pbFailed, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils007_GetAPICallResult( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_GetAPICallResult, ¶ms ); return params._ret; } void __thiscall winISteamUtils_SteamUtils007_RunFrame(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils007_RunFrame_params params = + struct ISteamUtils_SteamUtils007_RunFrame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils007_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_RunFrame, ¶ms ); } uint32_t __thiscall winISteamUtils_SteamUtils007_GetIPCCallCount(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils007_GetIPCCallCount_params params = + struct ISteamUtils_SteamUtils007_GetIPCCallCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils007_GetIPCCallCount( ¶ms ); + 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 *)) { - struct cppISteamUtils_SteamUtils007_SetWarningMessageHook_params params = + struct ISteamUtils_SteamUtils007_SetWarningMessageHook_params params = { .linux_side = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils007_SetWarningMessageHook( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_SetWarningMessageHook, ¶ms ); } bool __thiscall winISteamUtils_SteamUtils007_IsOverlayEnabled(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils007_IsOverlayEnabled_params params = + struct ISteamUtils_SteamUtils007_IsOverlayEnabled_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils007_IsOverlayEnabled( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_IsOverlayEnabled, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils007_BOverlayNeedsPresent(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils007_BOverlayNeedsPresent_params params = + struct ISteamUtils_SteamUtils007_BOverlayNeedsPresent_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils007_BOverlayNeedsPresent( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_BOverlayNeedsPresent, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUtils_SteamUtils007_CheckFileSignature(struct w_steam_iface *_this, const char *szFileName) { - struct cppISteamUtils_SteamUtils007_CheckFileSignature_params params = + struct ISteamUtils_SteamUtils007_CheckFileSignature_params params = { .linux_side = _this->u_iface, .szFileName = szFileName, }; params.szFileName = steamclient_dos_to_unix_path( szFileName, 0 ); TRACE("%p\n", _this); - cppISteamUtils_SteamUtils007_CheckFileSignature( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_CheckFileSignature, ¶ms ); steamclient_free_path( params.szFileName ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils007_ShowGamepadTextInput(struct w_steam_iface *_this, uint32_t eInputMode, uint32_t eLineInputMode, const char *pchDescription, uint32_t unCharMax, const char *pchExistingText) { - struct cppISteamUtils_SteamUtils007_ShowGamepadTextInput_params params = + struct ISteamUtils_SteamUtils007_ShowGamepadTextInput_params params = { .linux_side = _this->u_iface, .eInputMode = eInputMode, @@ -1485,66 +1475,66 @@ bool __thiscall winISteamUtils_SteamUtils007_ShowGamepadTextInput(struct w_steam .pchExistingText = pchExistingText, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils007_ShowGamepadTextInput( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_ShowGamepadTextInput, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils007_GetEnteredGamepadTextLength(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils007_GetEnteredGamepadTextLength_params params = + struct ISteamUtils_SteamUtils007_GetEnteredGamepadTextLength_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils007_GetEnteredGamepadTextLength( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_GetEnteredGamepadTextLength, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils007_GetEnteredGamepadTextInput(struct w_steam_iface *_this, char *pchText, uint32_t cchText) { - struct cppISteamUtils_SteamUtils007_GetEnteredGamepadTextInput_params params = + struct ISteamUtils_SteamUtils007_GetEnteredGamepadTextInput_params params = { .linux_side = _this->u_iface, .pchText = pchText, .cchText = cchText, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils007_GetEnteredGamepadTextInput( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_GetEnteredGamepadTextInput, ¶ms ); return params._ret; } const char * __thiscall winISteamUtils_SteamUtils007_GetSteamUILanguage(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils007_GetSteamUILanguage_params params = + struct ISteamUtils_SteamUtils007_GetSteamUILanguage_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils007_GetSteamUILanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_GetSteamUILanguage, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils007_IsSteamRunningInVR(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils007_IsSteamRunningInVR_params params = + struct ISteamUtils_SteamUtils007_IsSteamRunningInVR_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils007_IsSteamRunningInVR( ¶ms ); + 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) { - struct cppISteamUtils_SteamUtils007_SetOverlayNotificationInset_params params = + struct ISteamUtils_SteamUtils007_SetOverlayNotificationInset_params params = { .linux_side = _this->u_iface, .nHorizontalInset = nHorizontalInset, .nVerticalInset = nVerticalInset, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils007_SetOverlayNotificationInset( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_SetOverlayNotificationInset, ¶ms ); } extern vtable_ptr winISteamUtils_SteamUtils007_vtable; @@ -1591,8 +1581,6 @@ struct w_steam_iface *create_winISteamUtils_SteamUtils007(void *u_iface) return r; } -#include "cppISteamUtils_SteamUtils008.h" - DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils008_GetSecondsSinceAppActive, 4) DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils008_GetSecondsSinceComputerActive, 4) DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils008_GetConnectedUniverse, 4) @@ -1624,62 +1612,62 @@ DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils008_StartVRDashboard, 4) uint32_t __thiscall winISteamUtils_SteamUtils008_GetSecondsSinceAppActive(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils008_GetSecondsSinceAppActive_params params = + struct ISteamUtils_SteamUtils008_GetSecondsSinceAppActive_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils008_GetSecondsSinceAppActive( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_GetSecondsSinceAppActive, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils008_GetSecondsSinceComputerActive(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils008_GetSecondsSinceComputerActive_params params = + struct ISteamUtils_SteamUtils008_GetSecondsSinceComputerActive_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils008_GetSecondsSinceComputerActive( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_GetSecondsSinceComputerActive, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils008_GetConnectedUniverse(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils008_GetConnectedUniverse_params params = + struct ISteamUtils_SteamUtils008_GetConnectedUniverse_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils008_GetConnectedUniverse( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_GetConnectedUniverse, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils008_GetServerRealTime(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils008_GetServerRealTime_params params = + struct ISteamUtils_SteamUtils008_GetServerRealTime_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils008_GetServerRealTime( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_GetServerRealTime, ¶ms ); return params._ret; } const char * __thiscall winISteamUtils_SteamUtils008_GetIPCountry(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils008_GetIPCountry_params params = + struct ISteamUtils_SteamUtils008_GetIPCountry_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils008_GetIPCountry( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_GetIPCountry, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils008_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) { - struct cppISteamUtils_SteamUtils008_GetImageSize_params params = + struct ISteamUtils_SteamUtils008_GetImageSize_params params = { .linux_side = _this->u_iface, .iImage = iImage, @@ -1687,13 +1675,13 @@ bool __thiscall winISteamUtils_SteamUtils008_GetImageSize(struct w_steam_iface * .pnHeight = pnHeight, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils008_GetImageSize( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_GetImageSize, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils008_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) { - struct cppISteamUtils_SteamUtils008_GetImageRGBA_params params = + struct ISteamUtils_SteamUtils008_GetImageRGBA_params params = { .linux_side = _this->u_iface, .iImage = iImage, @@ -1701,84 +1689,84 @@ bool __thiscall winISteamUtils_SteamUtils008_GetImageRGBA(struct w_steam_iface * .nDestBufferSize = nDestBufferSize, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils008_GetImageRGBA( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_GetImageRGBA, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils008_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) { - struct cppISteamUtils_SteamUtils008_GetCSERIPPort_params params = + struct ISteamUtils_SteamUtils008_GetCSERIPPort_params params = { .linux_side = _this->u_iface, .unIP = unIP, .usPort = usPort, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils008_GetCSERIPPort( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_GetCSERIPPort, ¶ms ); return params._ret; } uint8_t __thiscall winISteamUtils_SteamUtils008_GetCurrentBatteryPower(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils008_GetCurrentBatteryPower_params params = + struct ISteamUtils_SteamUtils008_GetCurrentBatteryPower_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils008_GetCurrentBatteryPower( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_GetCurrentBatteryPower, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils008_GetAppID(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils008_GetAppID_params params = + struct ISteamUtils_SteamUtils008_GetAppID_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils008_GetAppID( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_GetAppID, ¶ms ); return params._ret; } void __thiscall winISteamUtils_SteamUtils008_SetOverlayNotificationPosition(struct w_steam_iface *_this, uint32_t eNotificationPosition) { - struct cppISteamUtils_SteamUtils008_SetOverlayNotificationPosition_params params = + struct ISteamUtils_SteamUtils008_SetOverlayNotificationPosition_params params = { .linux_side = _this->u_iface, .eNotificationPosition = eNotificationPosition, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils008_SetOverlayNotificationPosition( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_SetOverlayNotificationPosition, ¶ms ); } bool __thiscall winISteamUtils_SteamUtils008_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, bool *pbFailed) { - struct cppISteamUtils_SteamUtils008_IsAPICallCompleted_params params = + struct ISteamUtils_SteamUtils008_IsAPICallCompleted_params params = { .linux_side = _this->u_iface, .hSteamAPICall = hSteamAPICall, .pbFailed = pbFailed, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils008_IsAPICallCompleted( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_IsAPICallCompleted, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils008_GetAPICallFailureReason(struct w_steam_iface *_this, uint64_t hSteamAPICall) { - struct cppISteamUtils_SteamUtils008_GetAPICallFailureReason_params params = + struct ISteamUtils_SteamUtils008_GetAPICallFailureReason_params params = { .linux_side = _this->u_iface, .hSteamAPICall = hSteamAPICall, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils008_GetAPICallFailureReason( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_GetAPICallFailureReason, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils008_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, bool *pbFailed) { - struct cppISteamUtils_SteamUtils008_GetAPICallResult_params params = + struct ISteamUtils_SteamUtils008_GetAPICallResult_params params = { .linux_side = _this->u_iface, .hSteamAPICall = hSteamAPICall, @@ -1788,81 +1776,81 @@ bool __thiscall winISteamUtils_SteamUtils008_GetAPICallResult(struct w_steam_ifa .pbFailed = pbFailed, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils008_GetAPICallResult( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_GetAPICallResult, ¶ms ); return params._ret; } void __thiscall winISteamUtils_SteamUtils008_RunFrame(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils008_RunFrame_params params = + struct ISteamUtils_SteamUtils008_RunFrame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils008_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_RunFrame, ¶ms ); } uint32_t __thiscall winISteamUtils_SteamUtils008_GetIPCCallCount(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils008_GetIPCCallCount_params params = + struct ISteamUtils_SteamUtils008_GetIPCCallCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils008_GetIPCCallCount( ¶ms ); + 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 *)) { - struct cppISteamUtils_SteamUtils008_SetWarningMessageHook_params params = + struct ISteamUtils_SteamUtils008_SetWarningMessageHook_params params = { .linux_side = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils008_SetWarningMessageHook( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_SetWarningMessageHook, ¶ms ); } bool __thiscall winISteamUtils_SteamUtils008_IsOverlayEnabled(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils008_IsOverlayEnabled_params params = + struct ISteamUtils_SteamUtils008_IsOverlayEnabled_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils008_IsOverlayEnabled( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_IsOverlayEnabled, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils008_BOverlayNeedsPresent(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils008_BOverlayNeedsPresent_params params = + struct ISteamUtils_SteamUtils008_BOverlayNeedsPresent_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils008_BOverlayNeedsPresent( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_BOverlayNeedsPresent, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUtils_SteamUtils008_CheckFileSignature(struct w_steam_iface *_this, const char *szFileName) { - struct cppISteamUtils_SteamUtils008_CheckFileSignature_params params = + struct ISteamUtils_SteamUtils008_CheckFileSignature_params params = { .linux_side = _this->u_iface, .szFileName = szFileName, }; params.szFileName = steamclient_dos_to_unix_path( szFileName, 0 ); TRACE("%p\n", _this); - cppISteamUtils_SteamUtils008_CheckFileSignature( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_CheckFileSignature, ¶ms ); steamclient_free_path( params.szFileName ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils008_ShowGamepadTextInput(struct w_steam_iface *_this, uint32_t eInputMode, uint32_t eLineInputMode, const char *pchDescription, uint32_t unCharMax, const char *pchExistingText) { - struct cppISteamUtils_SteamUtils008_ShowGamepadTextInput_params params = + struct ISteamUtils_SteamUtils008_ShowGamepadTextInput_params params = { .linux_side = _this->u_iface, .eInputMode = eInputMode, @@ -1872,87 +1860,87 @@ bool __thiscall winISteamUtils_SteamUtils008_ShowGamepadTextInput(struct w_steam .pchExistingText = pchExistingText, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils008_ShowGamepadTextInput( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_ShowGamepadTextInput, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils008_GetEnteredGamepadTextLength(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils008_GetEnteredGamepadTextLength_params params = + struct ISteamUtils_SteamUtils008_GetEnteredGamepadTextLength_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils008_GetEnteredGamepadTextLength( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_GetEnteredGamepadTextLength, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils008_GetEnteredGamepadTextInput(struct w_steam_iface *_this, char *pchText, uint32_t cchText) { - struct cppISteamUtils_SteamUtils008_GetEnteredGamepadTextInput_params params = + struct ISteamUtils_SteamUtils008_GetEnteredGamepadTextInput_params params = { .linux_side = _this->u_iface, .pchText = pchText, .cchText = cchText, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils008_GetEnteredGamepadTextInput( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_GetEnteredGamepadTextInput, ¶ms ); return params._ret; } const char * __thiscall winISteamUtils_SteamUtils008_GetSteamUILanguage(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils008_GetSteamUILanguage_params params = + struct ISteamUtils_SteamUtils008_GetSteamUILanguage_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils008_GetSteamUILanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_GetSteamUILanguage, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils008_IsSteamRunningInVR(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils008_IsSteamRunningInVR_params params = + struct ISteamUtils_SteamUtils008_IsSteamRunningInVR_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils008_IsSteamRunningInVR( ¶ms ); + 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) { - struct cppISteamUtils_SteamUtils008_SetOverlayNotificationInset_params params = + struct ISteamUtils_SteamUtils008_SetOverlayNotificationInset_params params = { .linux_side = _this->u_iface, .nHorizontalInset = nHorizontalInset, .nVerticalInset = nVerticalInset, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils008_SetOverlayNotificationInset( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_SetOverlayNotificationInset, ¶ms ); } bool __thiscall winISteamUtils_SteamUtils008_IsSteamInBigPictureMode(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils008_IsSteamInBigPictureMode_params params = + struct ISteamUtils_SteamUtils008_IsSteamInBigPictureMode_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils008_IsSteamInBigPictureMode( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_IsSteamInBigPictureMode, ¶ms ); return params._ret; } void __thiscall winISteamUtils_SteamUtils008_StartVRDashboard(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils008_StartVRDashboard_params params = + struct ISteamUtils_SteamUtils008_StartVRDashboard_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils008_StartVRDashboard( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_StartVRDashboard, ¶ms ); } extern vtable_ptr winISteamUtils_SteamUtils008_vtable; @@ -2001,8 +1989,6 @@ struct w_steam_iface *create_winISteamUtils_SteamUtils008(void *u_iface) return r; } -#include "cppISteamUtils_SteamUtils009.h" - DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils009_GetSecondsSinceAppActive, 4) DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils009_GetSecondsSinceComputerActive, 4) DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils009_GetConnectedUniverse, 4) @@ -2040,62 +2026,62 @@ DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils009_GetIPv6ConnectivityState, 8 uint32_t __thiscall winISteamUtils_SteamUtils009_GetSecondsSinceAppActive(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils009_GetSecondsSinceAppActive_params params = + struct ISteamUtils_SteamUtils009_GetSecondsSinceAppActive_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_GetSecondsSinceAppActive( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_GetSecondsSinceAppActive, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils009_GetSecondsSinceComputerActive(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils009_GetSecondsSinceComputerActive_params params = + struct ISteamUtils_SteamUtils009_GetSecondsSinceComputerActive_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_GetSecondsSinceComputerActive( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_GetSecondsSinceComputerActive, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils009_GetConnectedUniverse(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils009_GetConnectedUniverse_params params = + struct ISteamUtils_SteamUtils009_GetConnectedUniverse_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_GetConnectedUniverse( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_GetConnectedUniverse, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils009_GetServerRealTime(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils009_GetServerRealTime_params params = + struct ISteamUtils_SteamUtils009_GetServerRealTime_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_GetServerRealTime( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_GetServerRealTime, ¶ms ); return params._ret; } const char * __thiscall winISteamUtils_SteamUtils009_GetIPCountry(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils009_GetIPCountry_params params = + struct ISteamUtils_SteamUtils009_GetIPCountry_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_GetIPCountry( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_GetIPCountry, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils009_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) { - struct cppISteamUtils_SteamUtils009_GetImageSize_params params = + struct ISteamUtils_SteamUtils009_GetImageSize_params params = { .linux_side = _this->u_iface, .iImage = iImage, @@ -2103,13 +2089,13 @@ bool __thiscall winISteamUtils_SteamUtils009_GetImageSize(struct w_steam_iface * .pnHeight = pnHeight, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_GetImageSize( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_GetImageSize, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils009_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) { - struct cppISteamUtils_SteamUtils009_GetImageRGBA_params params = + struct ISteamUtils_SteamUtils009_GetImageRGBA_params params = { .linux_side = _this->u_iface, .iImage = iImage, @@ -2117,84 +2103,84 @@ bool __thiscall winISteamUtils_SteamUtils009_GetImageRGBA(struct w_steam_iface * .nDestBufferSize = nDestBufferSize, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_GetImageRGBA( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_GetImageRGBA, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils009_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) { - struct cppISteamUtils_SteamUtils009_GetCSERIPPort_params params = + struct ISteamUtils_SteamUtils009_GetCSERIPPort_params params = { .linux_side = _this->u_iface, .unIP = unIP, .usPort = usPort, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_GetCSERIPPort( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_GetCSERIPPort, ¶ms ); return params._ret; } uint8_t __thiscall winISteamUtils_SteamUtils009_GetCurrentBatteryPower(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils009_GetCurrentBatteryPower_params params = + struct ISteamUtils_SteamUtils009_GetCurrentBatteryPower_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_GetCurrentBatteryPower( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_GetCurrentBatteryPower, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils009_GetAppID(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils009_GetAppID_params params = + struct ISteamUtils_SteamUtils009_GetAppID_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_GetAppID( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_GetAppID, ¶ms ); return params._ret; } void __thiscall winISteamUtils_SteamUtils009_SetOverlayNotificationPosition(struct w_steam_iface *_this, uint32_t eNotificationPosition) { - struct cppISteamUtils_SteamUtils009_SetOverlayNotificationPosition_params params = + struct ISteamUtils_SteamUtils009_SetOverlayNotificationPosition_params params = { .linux_side = _this->u_iface, .eNotificationPosition = eNotificationPosition, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_SetOverlayNotificationPosition( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_SetOverlayNotificationPosition, ¶ms ); } bool __thiscall winISteamUtils_SteamUtils009_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, bool *pbFailed) { - struct cppISteamUtils_SteamUtils009_IsAPICallCompleted_params params = + struct ISteamUtils_SteamUtils009_IsAPICallCompleted_params params = { .linux_side = _this->u_iface, .hSteamAPICall = hSteamAPICall, .pbFailed = pbFailed, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_IsAPICallCompleted( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_IsAPICallCompleted, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils009_GetAPICallFailureReason(struct w_steam_iface *_this, uint64_t hSteamAPICall) { - struct cppISteamUtils_SteamUtils009_GetAPICallFailureReason_params params = + struct ISteamUtils_SteamUtils009_GetAPICallFailureReason_params params = { .linux_side = _this->u_iface, .hSteamAPICall = hSteamAPICall, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_GetAPICallFailureReason( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_GetAPICallFailureReason, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils009_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, bool *pbFailed) { - struct cppISteamUtils_SteamUtils009_GetAPICallResult_params params = + struct ISteamUtils_SteamUtils009_GetAPICallResult_params params = { .linux_side = _this->u_iface, .hSteamAPICall = hSteamAPICall, @@ -2204,81 +2190,81 @@ bool __thiscall winISteamUtils_SteamUtils009_GetAPICallResult(struct w_steam_ifa .pbFailed = pbFailed, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_GetAPICallResult( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_GetAPICallResult, ¶ms ); return params._ret; } void __thiscall winISteamUtils_SteamUtils009_RunFrame(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils009_RunFrame_params params = + struct ISteamUtils_SteamUtils009_RunFrame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_RunFrame, ¶ms ); } uint32_t __thiscall winISteamUtils_SteamUtils009_GetIPCCallCount(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils009_GetIPCCallCount_params params = + struct ISteamUtils_SteamUtils009_GetIPCCallCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_GetIPCCallCount( ¶ms ); + 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 *)) { - struct cppISteamUtils_SteamUtils009_SetWarningMessageHook_params params = + struct ISteamUtils_SteamUtils009_SetWarningMessageHook_params params = { .linux_side = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_SetWarningMessageHook( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_SetWarningMessageHook, ¶ms ); } bool __thiscall winISteamUtils_SteamUtils009_IsOverlayEnabled(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils009_IsOverlayEnabled_params params = + struct ISteamUtils_SteamUtils009_IsOverlayEnabled_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_IsOverlayEnabled( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_IsOverlayEnabled, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils009_BOverlayNeedsPresent(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils009_BOverlayNeedsPresent_params params = + struct ISteamUtils_SteamUtils009_BOverlayNeedsPresent_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_BOverlayNeedsPresent( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_BOverlayNeedsPresent, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUtils_SteamUtils009_CheckFileSignature(struct w_steam_iface *_this, const char *szFileName) { - struct cppISteamUtils_SteamUtils009_CheckFileSignature_params params = + struct ISteamUtils_SteamUtils009_CheckFileSignature_params params = { .linux_side = _this->u_iface, .szFileName = szFileName, }; params.szFileName = steamclient_dos_to_unix_path( szFileName, 0 ); TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_CheckFileSignature( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_CheckFileSignature, ¶ms ); steamclient_free_path( params.szFileName ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils009_ShowGamepadTextInput(struct w_steam_iface *_this, uint32_t eInputMode, uint32_t eLineInputMode, const char *pchDescription, uint32_t unCharMax, const char *pchExistingText) { - struct cppISteamUtils_SteamUtils009_ShowGamepadTextInput_params params = + struct ISteamUtils_SteamUtils009_ShowGamepadTextInput_params params = { .linux_side = _this->u_iface, .eInputMode = eInputMode, @@ -2288,136 +2274,136 @@ bool __thiscall winISteamUtils_SteamUtils009_ShowGamepadTextInput(struct w_steam .pchExistingText = pchExistingText, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_ShowGamepadTextInput( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_ShowGamepadTextInput, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils009_GetEnteredGamepadTextLength(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils009_GetEnteredGamepadTextLength_params params = + struct ISteamUtils_SteamUtils009_GetEnteredGamepadTextLength_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_GetEnteredGamepadTextLength( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_GetEnteredGamepadTextLength, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils009_GetEnteredGamepadTextInput(struct w_steam_iface *_this, char *pchText, uint32_t cchText) { - struct cppISteamUtils_SteamUtils009_GetEnteredGamepadTextInput_params params = + struct ISteamUtils_SteamUtils009_GetEnteredGamepadTextInput_params params = { .linux_side = _this->u_iface, .pchText = pchText, .cchText = cchText, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_GetEnteredGamepadTextInput( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_GetEnteredGamepadTextInput, ¶ms ); return params._ret; } const char * __thiscall winISteamUtils_SteamUtils009_GetSteamUILanguage(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils009_GetSteamUILanguage_params params = + struct ISteamUtils_SteamUtils009_GetSteamUILanguage_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_GetSteamUILanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_GetSteamUILanguage, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils009_IsSteamRunningInVR(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils009_IsSteamRunningInVR_params params = + struct ISteamUtils_SteamUtils009_IsSteamRunningInVR_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_IsSteamRunningInVR( ¶ms ); + 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) { - struct cppISteamUtils_SteamUtils009_SetOverlayNotificationInset_params params = + struct ISteamUtils_SteamUtils009_SetOverlayNotificationInset_params params = { .linux_side = _this->u_iface, .nHorizontalInset = nHorizontalInset, .nVerticalInset = nVerticalInset, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_SetOverlayNotificationInset( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_SetOverlayNotificationInset, ¶ms ); } bool __thiscall winISteamUtils_SteamUtils009_IsSteamInBigPictureMode(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils009_IsSteamInBigPictureMode_params params = + struct ISteamUtils_SteamUtils009_IsSteamInBigPictureMode_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_IsSteamInBigPictureMode( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_IsSteamInBigPictureMode, ¶ms ); return params._ret; } void __thiscall winISteamUtils_SteamUtils009_StartVRDashboard(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils009_StartVRDashboard_params params = + struct ISteamUtils_SteamUtils009_StartVRDashboard_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_StartVRDashboard( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_StartVRDashboard, ¶ms ); } bool __thiscall winISteamUtils_SteamUtils009_IsVRHeadsetStreamingEnabled(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils009_IsVRHeadsetStreamingEnabled_params params = + struct ISteamUtils_SteamUtils009_IsVRHeadsetStreamingEnabled_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_IsVRHeadsetStreamingEnabled( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_IsVRHeadsetStreamingEnabled, ¶ms ); return params._ret; } void __thiscall winISteamUtils_SteamUtils009_SetVRHeadsetStreamingEnabled(struct w_steam_iface *_this, bool bEnabled) { - struct cppISteamUtils_SteamUtils009_SetVRHeadsetStreamingEnabled_params params = + struct ISteamUtils_SteamUtils009_SetVRHeadsetStreamingEnabled_params params = { .linux_side = _this->u_iface, .bEnabled = bEnabled, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_SetVRHeadsetStreamingEnabled( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_SetVRHeadsetStreamingEnabled, ¶ms ); } bool __thiscall winISteamUtils_SteamUtils009_IsSteamChinaLauncher(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils009_IsSteamChinaLauncher_params params = + struct ISteamUtils_SteamUtils009_IsSteamChinaLauncher_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_IsSteamChinaLauncher( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_IsSteamChinaLauncher, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils009_InitFilterText(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils009_InitFilterText_params params = + struct ISteamUtils_SteamUtils009_InitFilterText_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_InitFilterText( ¶ms ); + 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, bool bLegalOnly) { - struct cppISteamUtils_SteamUtils009_FilterText_params params = + struct ISteamUtils_SteamUtils009_FilterText_params params = { .linux_side = _this->u_iface, .pchOutFilteredText = pchOutFilteredText, @@ -2426,19 +2412,19 @@ int32_t __thiscall winISteamUtils_SteamUtils009_FilterText(struct w_steam_iface .bLegalOnly = bLegalOnly, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_FilterText( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_FilterText, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils009_GetIPv6ConnectivityState(struct w_steam_iface *_this, uint32_t eProtocol) { - struct cppISteamUtils_SteamUtils009_GetIPv6ConnectivityState_params params = + struct ISteamUtils_SteamUtils009_GetIPv6ConnectivityState_params params = { .linux_side = _this->u_iface, .eProtocol = eProtocol, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils009_GetIPv6ConnectivityState( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_GetIPv6ConnectivityState, ¶ms ); return params._ret; } @@ -2494,8 +2480,6 @@ struct w_steam_iface *create_winISteamUtils_SteamUtils009(void *u_iface) return r; } -#include "cppISteamUtils_SteamUtils010.h" - DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils010_GetSecondsSinceAppActive, 4) DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils010_GetSecondsSinceComputerActive, 4) DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils010_GetConnectedUniverse, 4) @@ -2537,62 +2521,62 @@ DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils010_DismissFloatingGamepadTextI uint32_t __thiscall winISteamUtils_SteamUtils010_GetSecondsSinceAppActive(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils010_GetSecondsSinceAppActive_params params = + struct ISteamUtils_SteamUtils010_GetSecondsSinceAppActive_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_GetSecondsSinceAppActive( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_GetSecondsSinceAppActive, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils010_GetSecondsSinceComputerActive(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils010_GetSecondsSinceComputerActive_params params = + struct ISteamUtils_SteamUtils010_GetSecondsSinceComputerActive_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_GetSecondsSinceComputerActive( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_GetSecondsSinceComputerActive, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils010_GetConnectedUniverse(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils010_GetConnectedUniverse_params params = + struct ISteamUtils_SteamUtils010_GetConnectedUniverse_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_GetConnectedUniverse( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_GetConnectedUniverse, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils010_GetServerRealTime(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils010_GetServerRealTime_params params = + struct ISteamUtils_SteamUtils010_GetServerRealTime_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_GetServerRealTime( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_GetServerRealTime, ¶ms ); return params._ret; } const char * __thiscall winISteamUtils_SteamUtils010_GetIPCountry(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils010_GetIPCountry_params params = + struct ISteamUtils_SteamUtils010_GetIPCountry_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_GetIPCountry( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_GetIPCountry, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils010_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) { - struct cppISteamUtils_SteamUtils010_GetImageSize_params params = + struct ISteamUtils_SteamUtils010_GetImageSize_params params = { .linux_side = _this->u_iface, .iImage = iImage, @@ -2600,13 +2584,13 @@ bool __thiscall winISteamUtils_SteamUtils010_GetImageSize(struct w_steam_iface * .pnHeight = pnHeight, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_GetImageSize( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_GetImageSize, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils010_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) { - struct cppISteamUtils_SteamUtils010_GetImageRGBA_params params = + struct ISteamUtils_SteamUtils010_GetImageRGBA_params params = { .linux_side = _this->u_iface, .iImage = iImage, @@ -2614,84 +2598,84 @@ bool __thiscall winISteamUtils_SteamUtils010_GetImageRGBA(struct w_steam_iface * .nDestBufferSize = nDestBufferSize, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_GetImageRGBA( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_GetImageRGBA, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils010_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) { - struct cppISteamUtils_SteamUtils010_GetCSERIPPort_params params = + struct ISteamUtils_SteamUtils010_GetCSERIPPort_params params = { .linux_side = _this->u_iface, .unIP = unIP, .usPort = usPort, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_GetCSERIPPort( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_GetCSERIPPort, ¶ms ); return params._ret; } uint8_t __thiscall winISteamUtils_SteamUtils010_GetCurrentBatteryPower(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils010_GetCurrentBatteryPower_params params = + struct ISteamUtils_SteamUtils010_GetCurrentBatteryPower_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_GetCurrentBatteryPower( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_GetCurrentBatteryPower, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils010_GetAppID(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils010_GetAppID_params params = + struct ISteamUtils_SteamUtils010_GetAppID_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_GetAppID( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_GetAppID, ¶ms ); return params._ret; } void __thiscall winISteamUtils_SteamUtils010_SetOverlayNotificationPosition(struct w_steam_iface *_this, uint32_t eNotificationPosition) { - struct cppISteamUtils_SteamUtils010_SetOverlayNotificationPosition_params params = + struct ISteamUtils_SteamUtils010_SetOverlayNotificationPosition_params params = { .linux_side = _this->u_iface, .eNotificationPosition = eNotificationPosition, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_SetOverlayNotificationPosition( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_SetOverlayNotificationPosition, ¶ms ); } bool __thiscall winISteamUtils_SteamUtils010_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, bool *pbFailed) { - struct cppISteamUtils_SteamUtils010_IsAPICallCompleted_params params = + struct ISteamUtils_SteamUtils010_IsAPICallCompleted_params params = { .linux_side = _this->u_iface, .hSteamAPICall = hSteamAPICall, .pbFailed = pbFailed, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_IsAPICallCompleted( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_IsAPICallCompleted, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils010_GetAPICallFailureReason(struct w_steam_iface *_this, uint64_t hSteamAPICall) { - struct cppISteamUtils_SteamUtils010_GetAPICallFailureReason_params params = + struct ISteamUtils_SteamUtils010_GetAPICallFailureReason_params params = { .linux_side = _this->u_iface, .hSteamAPICall = hSteamAPICall, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_GetAPICallFailureReason( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_GetAPICallFailureReason, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils010_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, bool *pbFailed) { - struct cppISteamUtils_SteamUtils010_GetAPICallResult_params params = + struct ISteamUtils_SteamUtils010_GetAPICallResult_params params = { .linux_side = _this->u_iface, .hSteamAPICall = hSteamAPICall, @@ -2701,81 +2685,81 @@ bool __thiscall winISteamUtils_SteamUtils010_GetAPICallResult(struct w_steam_ifa .pbFailed = pbFailed, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_GetAPICallResult( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_GetAPICallResult, ¶ms ); return params._ret; } void __thiscall winISteamUtils_SteamUtils010_RunFrame(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils010_RunFrame_params params = + struct ISteamUtils_SteamUtils010_RunFrame_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_RunFrame( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_RunFrame, ¶ms ); } uint32_t __thiscall winISteamUtils_SteamUtils010_GetIPCCallCount(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils010_GetIPCCallCount_params params = + struct ISteamUtils_SteamUtils010_GetIPCCallCount_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_GetIPCCallCount( ¶ms ); + 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 *)) { - struct cppISteamUtils_SteamUtils010_SetWarningMessageHook_params params = + struct ISteamUtils_SteamUtils010_SetWarningMessageHook_params params = { .linux_side = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_SetWarningMessageHook( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_SetWarningMessageHook, ¶ms ); } bool __thiscall winISteamUtils_SteamUtils010_IsOverlayEnabled(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils010_IsOverlayEnabled_params params = + struct ISteamUtils_SteamUtils010_IsOverlayEnabled_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_IsOverlayEnabled( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_IsOverlayEnabled, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils010_BOverlayNeedsPresent(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils010_BOverlayNeedsPresent_params params = + struct ISteamUtils_SteamUtils010_BOverlayNeedsPresent_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_BOverlayNeedsPresent( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_BOverlayNeedsPresent, ¶ms ); return params._ret; } uint64_t __thiscall winISteamUtils_SteamUtils010_CheckFileSignature(struct w_steam_iface *_this, const char *szFileName) { - struct cppISteamUtils_SteamUtils010_CheckFileSignature_params params = + struct ISteamUtils_SteamUtils010_CheckFileSignature_params params = { .linux_side = _this->u_iface, .szFileName = szFileName, }; params.szFileName = steamclient_dos_to_unix_path( szFileName, 0 ); TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_CheckFileSignature( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_CheckFileSignature, ¶ms ); steamclient_free_path( params.szFileName ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils010_ShowGamepadTextInput(struct w_steam_iface *_this, uint32_t eInputMode, uint32_t eLineInputMode, const char *pchDescription, uint32_t unCharMax, const char *pchExistingText) { - struct cppISteamUtils_SteamUtils010_ShowGamepadTextInput_params params = + struct ISteamUtils_SteamUtils010_ShowGamepadTextInput_params params = { .linux_side = _this->u_iface, .eInputMode = eInputMode, @@ -2785,137 +2769,137 @@ bool __thiscall winISteamUtils_SteamUtils010_ShowGamepadTextInput(struct w_steam .pchExistingText = pchExistingText, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_ShowGamepadTextInput( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_ShowGamepadTextInput, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils010_GetEnteredGamepadTextLength(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils010_GetEnteredGamepadTextLength_params params = + struct ISteamUtils_SteamUtils010_GetEnteredGamepadTextLength_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_GetEnteredGamepadTextLength( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_GetEnteredGamepadTextLength, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils010_GetEnteredGamepadTextInput(struct w_steam_iface *_this, char *pchText, uint32_t cchText) { - struct cppISteamUtils_SteamUtils010_GetEnteredGamepadTextInput_params params = + struct ISteamUtils_SteamUtils010_GetEnteredGamepadTextInput_params params = { .linux_side = _this->u_iface, .pchText = pchText, .cchText = cchText, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_GetEnteredGamepadTextInput( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_GetEnteredGamepadTextInput, ¶ms ); return params._ret; } const char * __thiscall winISteamUtils_SteamUtils010_GetSteamUILanguage(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils010_GetSteamUILanguage_params params = + struct ISteamUtils_SteamUtils010_GetSteamUILanguage_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_GetSteamUILanguage( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_GetSteamUILanguage, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils010_IsSteamRunningInVR(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils010_IsSteamRunningInVR_params params = + struct ISteamUtils_SteamUtils010_IsSteamRunningInVR_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_IsSteamRunningInVR( ¶ms ); + 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) { - struct cppISteamUtils_SteamUtils010_SetOverlayNotificationInset_params params = + struct ISteamUtils_SteamUtils010_SetOverlayNotificationInset_params params = { .linux_side = _this->u_iface, .nHorizontalInset = nHorizontalInset, .nVerticalInset = nVerticalInset, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_SetOverlayNotificationInset( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_SetOverlayNotificationInset, ¶ms ); } bool __thiscall winISteamUtils_SteamUtils010_IsSteamInBigPictureMode(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils010_IsSteamInBigPictureMode_params params = + struct ISteamUtils_SteamUtils010_IsSteamInBigPictureMode_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_IsSteamInBigPictureMode( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_IsSteamInBigPictureMode, ¶ms ); return params._ret; } void __thiscall winISteamUtils_SteamUtils010_StartVRDashboard(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils010_StartVRDashboard_params params = + struct ISteamUtils_SteamUtils010_StartVRDashboard_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_StartVRDashboard( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_StartVRDashboard, ¶ms ); } bool __thiscall winISteamUtils_SteamUtils010_IsVRHeadsetStreamingEnabled(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils010_IsVRHeadsetStreamingEnabled_params params = + struct ISteamUtils_SteamUtils010_IsVRHeadsetStreamingEnabled_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_IsVRHeadsetStreamingEnabled( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_IsVRHeadsetStreamingEnabled, ¶ms ); return params._ret; } void __thiscall winISteamUtils_SteamUtils010_SetVRHeadsetStreamingEnabled(struct w_steam_iface *_this, bool bEnabled) { - struct cppISteamUtils_SteamUtils010_SetVRHeadsetStreamingEnabled_params params = + struct ISteamUtils_SteamUtils010_SetVRHeadsetStreamingEnabled_params params = { .linux_side = _this->u_iface, .bEnabled = bEnabled, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_SetVRHeadsetStreamingEnabled( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_SetVRHeadsetStreamingEnabled, ¶ms ); } bool __thiscall winISteamUtils_SteamUtils010_IsSteamChinaLauncher(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils010_IsSteamChinaLauncher_params params = + struct ISteamUtils_SteamUtils010_IsSteamChinaLauncher_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_IsSteamChinaLauncher( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_IsSteamChinaLauncher, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils010_InitFilterText(struct w_steam_iface *_this, uint32_t unFilterOptions) { - struct cppISteamUtils_SteamUtils010_InitFilterText_params params = + struct ISteamUtils_SteamUtils010_InitFilterText_params params = { .linux_side = _this->u_iface, .unFilterOptions = unFilterOptions, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_InitFilterText( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_InitFilterText, ¶ms ); 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) { - struct cppISteamUtils_SteamUtils010_FilterText_params params = + struct ISteamUtils_SteamUtils010_FilterText_params params = { .linux_side = _this->u_iface, .eContext = eContext, @@ -2925,36 +2909,36 @@ int32_t __thiscall winISteamUtils_SteamUtils010_FilterText(struct w_steam_iface .nByteSizeOutFilteredText = nByteSizeOutFilteredText, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_FilterText( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_FilterText, ¶ms ); return params._ret; } uint32_t __thiscall winISteamUtils_SteamUtils010_GetIPv6ConnectivityState(struct w_steam_iface *_this, uint32_t eProtocol) { - struct cppISteamUtils_SteamUtils010_GetIPv6ConnectivityState_params params = + struct ISteamUtils_SteamUtils010_GetIPv6ConnectivityState_params params = { .linux_side = _this->u_iface, .eProtocol = eProtocol, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_GetIPv6ConnectivityState( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_GetIPv6ConnectivityState, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils010_IsSteamRunningOnSteamDeck(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils010_IsSteamRunningOnSteamDeck_params params = + struct ISteamUtils_SteamUtils010_IsSteamRunningOnSteamDeck_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_IsSteamRunningOnSteamDeck( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_IsSteamRunningOnSteamDeck, ¶ms ); return params._ret; } bool __thiscall winISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput(struct w_steam_iface *_this, uint32_t eKeyboardMode, int32_t nTextFieldXPosition, int32_t nTextFieldYPosition, int32_t nTextFieldWidth, int32_t nTextFieldHeight) { - struct cppISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput_params params = + struct ISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput_params params = { .linux_side = _this->u_iface, .eKeyboardMode = eKeyboardMode, @@ -2964,29 +2948,29 @@ bool __thiscall winISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput(struct .nTextFieldHeight = nTextFieldHeight, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput, ¶ms ); return params._ret; } void __thiscall winISteamUtils_SteamUtils010_SetGameLauncherMode(struct w_steam_iface *_this, bool bLauncherMode) { - struct cppISteamUtils_SteamUtils010_SetGameLauncherMode_params params = + struct ISteamUtils_SteamUtils010_SetGameLauncherMode_params params = { .linux_side = _this->u_iface, .bLauncherMode = bLauncherMode, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_SetGameLauncherMode( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_SetGameLauncherMode, ¶ms ); } bool __thiscall winISteamUtils_SteamUtils010_DismissFloatingGamepadTextInput(struct w_steam_iface *_this) { - struct cppISteamUtils_SteamUtils010_DismissFloatingGamepadTextInput_params params = + struct ISteamUtils_SteamUtils010_DismissFloatingGamepadTextInput_params params = { .linux_side = _this->u_iface, }; TRACE("%p\n", _this); - cppISteamUtils_SteamUtils010_DismissFloatingGamepadTextInput( ¶ms ); + STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_DismissFloatingGamepadTextInput, ¶ms ); return params._ret; } diff --git a/lsteamclient/winISteamVideo.c b/lsteamclient/winISteamVideo.c index c81f3b0e..dfc9d632 100644 --- a/lsteamclient/winISteamVideo.c +++ b/lsteamclient/winISteamVideo.c @@ -3,31 +3,29 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); -#include "cppISteamVideo_STEAMVIDEO_INTERFACE_V001.h" - 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) { - struct cppISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL_params params = + struct ISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL_params params = { .linux_side = _this->u_iface, .unVideoAppID = unVideoAppID, }; TRACE("%p\n", _this); - cppISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL( ¶ms ); + STEAMCLIENT_CALL( ISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL, ¶ms ); } bool __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting(struct w_steam_iface *_this, int32_t *pnNumViewers) { - struct cppISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting_params params = + struct ISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting_params params = { .linux_side = _this->u_iface, .pnNumViewers = pnNumViewers, }; TRACE("%p\n", _this); - cppISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting( ¶ms ); + STEAMCLIENT_CALL( ISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting, ¶ms ); return params._ret; } @@ -51,8 +49,6 @@ struct w_steam_iface *create_winISteamVideo_STEAMVIDEO_INTERFACE_V001(void *u_if return r; } -#include "cppISteamVideo_STEAMVIDEO_INTERFACE_V002.h" - DEFINE_THISCALL_WRAPPER(winISteamVideo_STEAMVIDEO_INTERFACE_V002_GetVideoURL, 8) DEFINE_THISCALL_WRAPPER(winISteamVideo_STEAMVIDEO_INTERFACE_V002_IsBroadcasting, 8) DEFINE_THISCALL_WRAPPER(winISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFSettings, 8) @@ -60,41 +56,41 @@ DEFINE_THISCALL_WRAPPER(winISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringFor void __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V002_GetVideoURL(struct w_steam_iface *_this, uint32_t unVideoAppID) { - struct cppISteamVideo_STEAMVIDEO_INTERFACE_V002_GetVideoURL_params params = + struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetVideoURL_params params = { .linux_side = _this->u_iface, .unVideoAppID = unVideoAppID, }; TRACE("%p\n", _this); - cppISteamVideo_STEAMVIDEO_INTERFACE_V002_GetVideoURL( ¶ms ); + STEAMCLIENT_CALL( ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetVideoURL, ¶ms ); } bool __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V002_IsBroadcasting(struct w_steam_iface *_this, int32_t *pnNumViewers) { - struct cppISteamVideo_STEAMVIDEO_INTERFACE_V002_IsBroadcasting_params params = + struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_IsBroadcasting_params params = { .linux_side = _this->u_iface, .pnNumViewers = pnNumViewers, }; TRACE("%p\n", _this); - cppISteamVideo_STEAMVIDEO_INTERFACE_V002_IsBroadcasting( ¶ms ); + STEAMCLIENT_CALL( ISteamVideo_STEAMVIDEO_INTERFACE_V002_IsBroadcasting, ¶ms ); return params._ret; } void __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFSettings(struct w_steam_iface *_this, uint32_t unVideoAppID) { - struct cppISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFSettings_params params = + struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFSettings_params params = { .linux_side = _this->u_iface, .unVideoAppID = unVideoAppID, }; TRACE("%p\n", _this); - cppISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFSettings( ¶ms ); + STEAMCLIENT_CALL( ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFSettings, ¶ms ); } bool __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringForApp(struct w_steam_iface *_this, uint32_t unVideoAppID, char *pchBuffer, int32_t *pnBufferSize) { - struct cppISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringForApp_params params = + struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringForApp_params params = { .linux_side = _this->u_iface, .unVideoAppID = unVideoAppID, @@ -102,7 +98,7 @@ bool __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringForApp(stru .pnBufferSize = pnBufferSize, }; TRACE("%p\n", _this); - cppISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringForApp( ¶ms ); + STEAMCLIENT_CALL( ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringForApp, ¶ms ); return params._ret; }